* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	width: 100%;
	min-height: 100vh;
	font-family: 'Microsoft YaHei', 'PingFang SC', Arial, sans-serif;
	background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
}

.wrapper {
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 30px 20px;
}

.header {
	text-align: center;
	margin-bottom: 30px;
	animation: fadeInDown 0.8s ease-out;
}

.header h1 {
	font-size: 36px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 12px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
}

.main {
	width: 100%;
	max-width: 1400px;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: fadeInUp 0.8s ease-out;
}

.panorama {
	width: 100%;
	height: 500px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
	border: 2px solid rgba(255, 255, 255, 0.1);
}

.tips-bar {
	text-align: center;
	margin-top: 30px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	backdrop-filter: blur(10px);
	animation: fadeIn 1s ease-out 0.5s both;
}

.tips-bar span {
	display: inline-block;
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	margin: 0 20px;
	padding: 8px 16px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
}

.tips-bar span::before {
	content: "👆 ";
}

/* 动画 */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* 响应式设计 */
@media screen and (max-width: 1024px) {
	.panorama {
		height: 450px;
	}

	.header h1 {
		font-size: 30px;
	}
}

@media screen and (max-width: 768px) {
	.wrapper {
		padding: 20px 15px;
	}

	.header h1 {
		font-size: 26px;
	}

	.header p {
		font-size: 14px;
	}

	.panorama {
		height: 350px;
		border-radius: 12px;
	}

	.tips-bar {
		padding: 15px;
		margin-top: 20px;
	}

	.tips-bar span {
		display: block;
		margin: 8px 0;
		font-size: 13px;
	}
}

@media screen and (max-width: 480px) {
	.wrapper {
		padding: 15px 10px;
	}

	.header {
		margin-bottom: 20px;
	}

	.header h1 {
		font-size: 22px;
	}

	.header p {
		font-size: 13px;
	}

	.panorama {
		height: 280px;
		border-radius: 10px;
	}

	.tips-bar span {
		font-size: 12px;
		padding: 6px 12px;
	}
}

/* 全景查看器样式覆盖 */
.pv-container {
	border-radius: 15px;
}

.pv-inner {
	cursor: grab !important;
}

.pv-inner:active {
	cursor: grabbing !important;
}

@media screen and (max-width: 768px) {
	.pv-container {
		border-radius: 12px;
	}
}

@media screen and (max-width: 480px) {
	.pv-container {
		border-radius: 10px;
	}
}

