/* 主视觉区域样式 */
.hero-section {
	height: 100vh;
	background: url('../images/hero-bg.jpg') center center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.hero-content {
	color: #fff;
	padding: 0 20px;
}

.hero-content .title {
	font-size: 5rem;
	font-weight: 700;
	margin-bottom: 5rem;
	letter-spacing: 0.6rem;
	animation: fadeInUp 1s ease;
}

.hero-content p {
	font-size: 1.75rem;
	font-weight: 500;
	letter-spacing: 0.9625rem;
	animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
	from {
		opacity: 0;

		transform: translateY(30px);
	}

	to {
		opacity: 1;

		transform: translateY(0);
	}
}

/* 轮播区域样式 */
.carousel-section {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.carousel-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: url('../images/carousel-bg.png') no-repeat center center;
	background-size: cover;
	z-index: 1;
}

.carousel-container {
	position: relative;
	width: 100%;
	height: 100vh;
	z-index: 2;
	overflow: hidden;
	padding: 0 5%;
	perspective: 3000px;
}

.carousel-track {
	display: flex;
	height: 100%;
	position: relative;
	align-items: center;
	justify-content: center;
	transform-style: preserve-3d;
}

.carousel-slide {
	position: absolute;
	width: 100%;
	height: 75%;
	animation: both 0.6s ease;
	opacity: 0;
	pointer-events: none;
	transform-origin: center center;
	transform-style: preserve-3d;
	transform: translateX(100%) rotateY(-90deg);
	border-radius: 65px;
	overflow: hidden;
}

.carousel-slide.prev {
	transform: translateX(-65%) rotateX(1deg) rotateY(-95deg) scale3d(1.1, -1, 1);
	opacity: 0.8;
	z-index: 1;
	pointer-events: auto;
	height: 75%;
}

.carousel-slide.active {
	transform: translateX(0) rotateY(0) translateZ(-400px) scale(0.95);
	opacity: 1;
	z-index: 2;
	pointer-events: auto;
	filter: brightness(0.6);
	height: 75%;
}

.carousel-slide.next {
	transform: translateX(65%) rotateX(1deg) rotateY(95deg) scale3d(1.1, -1, 1);
	opacity: 0.8;
	z-index: 1;
	pointer-events: auto;
	height: 75%;
}

.slide-inner {
	width: 100%;
	height: 100%;
	position: relative;
	transform-style: preserve-3d;
	backface-visibility: hidden;
}

.slide-inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	pointer-events: none;
	box-shadow: inset 0px 4px 10px 0px #ffffff, inset 0px 4px 10px 0px rgba(0, 0, 0, 0.3), inset 0px 4px 10px 0px #ffffff, inset 0px 4px 10px 0px #ffffff;
	border-radius: 65px;
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s ease;
	transform-style: preserve-3d;
	backface-visibility: hidden;
	border-radius: 65px;
}

.carousel-slide.prev .slide-inner::before {
	box-shadow: inset 0px 4px 10px 0px #ffffff, inset 0px 4px 10px 0px rgba(0, 0, 0, 0.3), inset 0px 4px 10px 0px #ffffff, inset 0px 4px 10px 0px #ffffff;
}

.carousel-slide.active .slide-inner::before {
	box-shadow: unset;
}

.carousel-slide.next .slide-inner::before {
	box-shadow: inset 0px 4px 10px 0px #ffffff, inset 0px 4px 10px 0px rgba(0, 0, 0, 0.3), inset 0px 4px 10px 0px #ffffff, inset 0px 4px 10px 0px #ffffff;
}

.carousel-slide.prev::after {
	background: linear-gradient(60deg, rgba(255, 255, 255, 0.2), transparent);
}

.carousel-slide.next::after {
	background: linear-gradient(-60deg, rgba(255, 255, 255, 0.2), transparent);
}

.carousel-overlay {
	position: absolute;
	bottom: 5%;
	right: 20%;
	z-index: 5;
	height: 70%;
}

.character-img {
	height: 100% !important;
	width: auto;
	position: relative;
	animation: floatUpDown 2s ease-in-out infinite;
}

@keyframes floatUpDown {
	0%,
	100% {
		bottom: 0;
	}
	50% {
		bottom: 20px;
	}
}

/* 指示点样式 */
.carousel-dots {
	position: absolute;
	bottom: 15%;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 4;
}

@keyframes bounce {
	0%,
	100% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(0, -20px, 0);
	}
}

.carousel-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #d9d9d9;
	cursor: pointer;
	transition: all 0.3s ease;
}

.carousel-dot.active {
	background: rgba(38, 136, 255, 1);
	transform: scale(1.2);
}

/* 响应式适配 */
@media (max-width: 1200px) {
	.hero-content .title {
		font-size: 4rem;
		letter-spacing: 0.4rem;
	}

	.hero-content p {
		font-size: 1.5rem;
		letter-spacing: 0.7rem;
	}

	.character-img {
		height: 60%;
	}
}

@media (max-width: 768px) {
	.hero-content .title {
		font-size: 3rem;
		letter-spacing: 0.3rem;
		margin-bottom: 3rem;
	}

	.hero-content p {
		font-size: 1.2rem;
		letter-spacing: 0.5rem;
	}

	.carousel-section {
		height: 60vh;
	}

	.carousel-container {
		height: 100%;
	}

	.carousel-slide,
	.carousel-slide.prev,
	.carousel-slide.active,
	.carousel-slide.next {
		height: 100%;
		border-radius: 20px;
	}

	.carousel-slide.prev {
		transform: translateX(-50%) rotateY(-45deg) scale(0.8);
		opacity: 0.6;
	}

	.carousel-slide.active {
		transform: translateX(0) rotateY(0) translateZ(-200px);
		opacity: 1;
	}

	.carousel-slide.next {
		transform: translateX(50%) rotateY(45deg) scale(0.8);
		opacity: 0.6;
	}

	.carousel-overlay {
		bottom: 0;
		right: 0;
		height: 45vh;
	}

	.character-img {
		height: 100% !important;
	}

	.carousel-dots {
		bottom: 52%;
		z-index: 6;
	}

	.slide-inner::before {
		border-radius: 20px;
	}

	.carousel-slide img {
		border-radius: 20px;
	}
}

@media (max-width: 576px) {
	.hero-content .title {
		font-size: 2rem;
		letter-spacing: 0.2rem;
		margin-bottom: 2rem;
	}

	.hero-content p {
		font-size: 1rem;
		letter-spacing: 0.3rem;
	}

	.carousel-section {
		height: 100vh;
		min-height: 600px;
	}

	.carousel-container {
		height: 50vh;
	}

	.carousel-slide.prev {
		transform: translateX(-40%) rotateY(-45deg) scale(0.7);
	}

	.carousel-slide.next {
		transform: translateX(40%) rotateY(45deg) scale(0.7);
	}

	.character-img {
		height: 35vh !important;
	}

	.carousel-dots {
		bottom: 0%;
	}
}

/* 处理较低高度的设备 */
@media (max-height: 600px) {
	.hero-content .title {
		margin-bottom: 2rem;
	}

	.character-img {
		height: 80vh;
	}

	.carousel-section {
		height: auto;
		min-height: 600px;
	}

	.carousel-container {
		height: 50vh;
		margin-top: 20px;
	}

	.character-img {
		height: 35vh !important;
	}

	.carousel-dots {
		bottom: 45%;
	}
}

/* VR特性区域样式 */
.vr-features {
	background: url('../images/features-bg.png') no-repeat center center;
	padding: 100px 0;
	position: relative;
	background-size: 50% 60%;
    background-position: 1000px 500px;
}

/* 顶部标题样式 */
.section-header {
	text-align: center;
	margin-bottom: 100px;
	position: relative;
}

.main-title {
	font-size: 38px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 30px;
	letter-spacing: 1.44px;
	position: relative;
	display: inline-block;
}

/* 修改标题下方的装饰线 */
.main-title::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -45px;
	transform: translateX(-50%);
	width: 130px;
	height: 100%;
	background: url('../images/title-decoration.png') no-repeat center;
	background-size: contain;
}

.subtitle {
	font-size: 18px;
	color: #fff;
	margin-top: 30px;
}

/* VR空间区域 */
.vr-space {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 40px;
}

.vr-space-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
	align-items: center;
}

.text-area {
	padding-right: 40px;
}

.section-title {
	font-size: 36px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 30px;
	text-align: left;
}

.section-desc {
	color: rgba(255, 255, 255, 0.7);
	text-align: left;
	line-height: 1.8;
	font-size: 16px;
}

.vr-space-image,
.feature-image {
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
}

.vr-space-image,
.feature-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* 图标区域 */
.feature-icons {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 20px;
	width: 100%;
	margin-top: 60px;
}

.feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 15px;
	transition: transform 0.3s ease; /* 添加过渡效果 */
}

.feature-item img {
	width: 100%;
	margin-bottom: 8px;
	
}

.feature-item:hover {
    transform: scale(1.1); /* 鼠标悬浮时放大 */
}

/* 响应式布局 */
@media (max-width: 1200px) {
	.feature-icons {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 992px) {
	.vr-space-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.text-area {
		padding-right: 0;
	}

	.feature-icons {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 576px) {
	.feature-icons {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* 沉浸式体验区域 */
.immersive-space {
	max-width: 1440px;
	margin: 90px auto 0;
	padding: 0 40px;
}

.immersive-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
	align-items: center;
}

/* 响应式布局补充 */
@media (max-width: 992px) {
	.immersive-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

/* 遇见@科学家MR游戏 */
.mr-game {
	width: 100%;
	height: 100vh;
	/* background: url('../images/mr-game-bg.png') no-repeat center center; */
	background-size: cover;
	/* padding: 80px 0; */
	padding-bottom: 80px;
	position: relative;
}

.mr-game-content {
	position: absolute;
	right: 10%;
	top: 20%;
	transform: translateY(-20%);
	width: 490px;
	min-height: 500px;
	background: url('../images/frame_line.png') no-repeat center center;
	background-size: 100% 100%;
	backdrop-filter: blur(41px);
	box-sizing: border-box;
	border-radius: 20px;
	padding: 40px;
}

.mr-game-content img {
	width: 266px;
	height: 42px;
}

.mr-game-content .sub-title {
	font-size: 36px;
	font-weight: bold;
	color: #fff;
	margin-top: 38px;
	margin-bottom: 30px;
}

.mr-game-content p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.8;
	padding-bottom: 30px;
}

.button {
	display: inline-block;
	padding: 15px 50px;
	color: #fff;
	border-radius: 3px;
	background: #2688ff;
	margin-top: 30px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.button:hover {
	background: #1a6fd4;
}

@media (max-width: 1900px) and (min-width: 1400px) {
	.vr-features .section-header{
		padding-top: 110px;
	}

	.carousel-new .carousel-item-new {
		width: 837px;
		height: 445px;
		top: 10%;
	}

	.vr-large-space{
		padding-bottom: 130px;
	}

}

@media (min-width: 1940px) {
	.vr-features .section-header{
		padding-top: 110px;
	}

	.carousel-new .carousel-item-new {
		width: 837px;
		height: 445px;
		top: 10%;
	}

	.vr-large-space{
		padding-bottom: 130px;
	}
}

/* 响应式适配 */
@media (max-width: 1440px) {
	.mr-game-content {
		right: 5%;
		width: 380px;
	}
	.mr-game-content .sub-title {
		font-size: 30px;
	}
	.vr-features .section-header{
		padding-top: 100px;
	}
	.vr-large-space{
		padding-bottom: 130px;
	}

	.carousel-new .carousel-item-new {
		width: 1037px;
		height: 545px;
		top: 10%;
	}
}

@media (max-width: 1200px) {
	.mr-game-content {
		width: 340px;
		padding: 30px;
	}

	.mr-game-content .sub-title {
		font-size: 32px;
	}

	.mr-game-content p {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.mr-game {
		height: auto;
		min-height: 100vh;
		padding: 60px 20px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.mr-game-content {
		position: relative;
		right: auto;
		top: auto;
		transform: none;
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}

	.mr-game-content img {
		width: 200px;
		height: auto;
	}

	.mr-game-content .sub-title {
		font-size: 28px;
		margin-top: 20px;
	}

	.mr-game-content .button {
		padding: 12px 40px;
		margin-top: 20px;
	}
}

@media (max-width: 480px) {
	.mr-game {
		padding: 40px 15px;
	}

	.mr-game-content {
		padding: 25px;
	}

	.mr-game-content img {
		width: 160px;
	}

	.mr-game-content .sub-title {
		font-size: 24px;
	}

	.mr-game-content p {
		font-size: 14px;
	}

	.mr-game-content .button {
		padding: 10px 30px;
		font-size: 14px;
	}
}

/* vr大空间 */
.vr-large-space {
	background: url('../images/space-bg.jpg') no-repeat center center;
	background-size: cover;
	/* padding: 100px 20px; */
	/* position: relative; */
	min-height: 100vh;
	padding-top: 50px;
	/* display: flex;
	flex-direction: column;
	justify-content: center; */
}

.vr-large-space .section-header {
	text-align: center;
	margin-bottom: 60px;
}

.vr-large-space .main-title {
	font-size: 38px;
	color: #fff;
	margin-bottom: 20px;
	font-weight: bold;
}

.vr-large-space .subtitle {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.88);
}

.vr-large-space-content {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.space-icons {
	max-width: 1440px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	width: 100%;
	padding: 0 20px;
	box-sizing: border-box;
}

.space-icons .icon-item {
	width: 100%;
	padding: 30px;
	box-sizing: border-box;
	background: url('../images/card-bg.png') no-repeat center center;
	background-size: 100% 100%;
	border-radius: 6px;
	display: flex;
	align-items: flex-start;
	transition: transform 0.3s ease;
}

.space-icons .icon-item:hover {
	transform: translateY(-5px);
}

.icon-item img {
	width: 48px !important;
	height: auto;
	margin-right: 15px;
	flex-shrink: 0;
}

.icon-item .text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.icon-item .text span:nth-child(1) {
	font-size: 18px !important;
	color: #ffffff;
	font-weight: 600;
}

.icon-item .text span:nth-child(2) {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.5;
}

.process {
	width: 100%;
	max-width: 1440px;
	display: flex;
	margin: 80px auto 0;
	flex-direction: column;
	padding: 0 20px;
	box-sizing: border-box;
	align-items: flex-start;
}

.process .process-title {
	display: flex;
	flex-direction: column;
	margin-bottom: 40px;
	gap: 15px;
}

.process-title span:nth-child(1) {
	font-size: 36px;
	font-weight: 600;
	color: #ffffff;
}

.process-title span:nth-child(2) {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.88);
}

.process-list {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	flex-wrap: wrap;
	gap: 15px;
}

.process-list .process-item {
	width: 137px;
	height: 48px;
	border-radius: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	border: 1px solid #ffffff;
	transition: all 0.3s ease;
	cursor: pointer;
	/* background-image: url('../images/border111.png');
	background-size: 100% 100%;
	background-repeat: no-repeat; */
}

.process-list .process-item:hover {
	background: rgba(255, 255, 255, 0.1);
}

.process-list .process-item span {
	width: 5px;
	height: 5px;
	background: #ffffff;
	border-radius: 50%;
	margin: 0 10px;
}

.process .tips {
	font-size: 18px;
	font-weight: normal;
	line-height: 1.5;
	letter-spacing: 1px;
	color: #ffffff;
	margin: 20px 0 30px;
}

.process .button {
	display: inline-block;
	min-width: 165px;
	padding: 12px 30px;
	background: #2688ff;
	color: #fff;
	text-align: center;
	border-radius: 4px;
	font-size: 16px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.process .button:hover {
	background: #1a6fd4;
	transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 1200px) {
	.vr-large-space {
		padding: 60px 20px;
	}

	.vr-large-space .main-title {
		font-size: 32px;
	}

	.space-icons {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.process-title span:nth-child(1) {
		font-size: 32px;
	}

	.process .tips {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.vr-large-space {
		padding: 50px 15px;
		min-height: auto;
	}

	.vr-large-space .main-title {
		font-size: 28px;
	}

	.vr-large-space .subtitle {
		font-size: 16px;
	}

	.space-icons {
		padding: 0 10px;
		gap: 15px;
	}

	.space-icons .icon-item {
		padding: 20px;
	}

	.icon-item img {
		width: 36px !important;
	}

	.icon-item .text span:nth-child(1) {
		font-size: 16px !important;
	}

	.icon-item .text span:nth-child(2) {
		font-size: 12px;
	}

	.process {
		margin: 50px auto 0;
		padding: 0 10px;
	}

	.process-title span:nth-child(1) {
		font-size: 26px;
	}

	.process-list .process-item {
		width: calc(50% - 10px);
		height: 40px;
		font-size: 14px;
	}

	.process .button {
		width: 100%;
		min-width: unset;
		padding: 10px 20px;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.vr-large-space {
		padding: 40px 10px;
	}

	.vr-large-space .main-title {
		font-size: 24px;
	}

	.vr-large-space .subtitle {
		font-size: 14px;
	}

	.space-icons {
		grid-template-columns: 1fr;
	}

	.process-title span:nth-child(1) {
		font-size: 22px;
	}

	.process-list .process-item {
		width: 100%;
	}

	.process .tips {
		font-size: 14px;
		letter-spacing: 0.5px;
		text-align: center;
	}
}

/* 优势展示区域 */
.advantages-section {
	background: #1c1b1e;
	position: relative;
}

.advantages-section .section-header {
	text-align: center;
	position: absolute;
	top: 5%;
	left: 0;
	width: 100%;
	z-index: 10;
}

.advantages-container {
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.advantage-card {
	position: relative;
	height: 100vh;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.5s ease;
}

.advantage-card:hover {
	transform: translateY(-10px);
}

.advantage-card:nth-child(1) .advantage-bg {
	background: url('../images/advantage-bg-1.jpg') no-repeat center center;
	background-size: cover;
}

.advantage-card:nth-child(2) .advantage-bg {
	background: url('../images/advantage-bg-2.jpg') no-repeat center center;
	background-size: cover;
}

.advantage-card:nth-child(3) .advantage-bg {
	background: url('../images/advantage-bg-3.jpg') no-repeat center center;
	background-size: cover;
}

.advantage-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	transition: transform 0.5s ease;
}

.advantage-card:hover .advantage-bg {
	transform: scale(1.1);
}

.advantage-content {
	position: relative;
	z-index: 2;
	padding: 40px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 50%);
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease;
}

.advantage-card:hover .advantage-content {
	opacity: 1;
	transform: translateY(0);
}

.advantage-content h3 {
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 15px;
}

.advantage-content p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

/* Responsive styles for advantages section */
@media (max-width: 1200px) {
	.advantages-section .main-title {
		font-size: 32px;
	}

	.advantages-section .subtitle {
		font-size: 16px;
	}

	.advantages-container {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}

	.advantage-card {
		height: 350px;
	}

	.advantage-content {
		padding: 30px;
	}

	.advantage-content h3 {
		font-size: 22px;
	}

	.advantage-content p {
		font-size: 14px;
	}
}

@media (max-width: 992px) {
	.advantages-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.advantages-section {
		padding: 50px 15px;
	}

	.advantages-section .section-header {
		margin-bottom: 40px;
	}

	.advantages-section .main-title {
		font-size: 28px;
	}

	.advantages-section .subtitle {
		font-size: 14px;
		margin-top: 20px;
	}

	.advantages-container {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.advantage-card {
		height: 300px;
	}

	.advantage-content {
		padding: 25px;
		opacity: 1;
		transform: translateY(0);
		background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.9) 40%);
	}

	.advantage-content h3 {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.advantage-content p {
		font-size: 14px;
		-webkit-line-clamp: 3;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
}

@media (max-width: 480px) {
	.advantages-section {
		padding: 40px 10px;
	}

	.advantages-section .section-header {
		margin-bottom: 30px;
	}

	.advantages-section .main-title {
		font-size: 24px;
	}

	.advantages-section .subtitle {
		font-size: 13px;
		margin-top: 15px;
	}

	.advantage-card {
		height: 250px;
	}

	.advantage-content {
		padding: 20px;
	}

	.advantage-content h3 {
		font-size: 18px;
	}

	.advantage-content p {
		font-size: 13px;
		line-height: 1.4;
	}
}

/* 添加动画效果 */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.advantage-card {
	animation: fadeInUp 0.8s ease forwards;
	opacity: 0;
}

.advantage-card:nth-child(1) {
	animation-delay: 0.2s;
}

.advantage-card:nth-child(2) {
	animation-delay: 0.4s;
}

.advantage-card:nth-child(3) {
	animation-delay: 0.6s;
}

/* 业务领域展示区域 */
.business-areas {
	background: #191631;
	/* padding: 100px 20px; */
	padding: 50px 20px 100px 20px;
	position: relative;
}

.business-areas .section-header {
	text-align: center;
	margin-bottom: 60px;
}

.business-areas .main-title {
	font-size: 38px;
	color: #fff;
	margin-bottom: 20px;
	font-weight: bold;
}

.business-areas .subtitle {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.88);
}

.areas-container {
	max-width: 1440px;
	margin: 0 auto;
	position: relative;
}

.area-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px;
	margin-bottom: 30px;
	position: relative;
}

.area-row:last-child {
	margin-bottom: 0;
}

.area-card {
	/* background: rgba(255, 255, 255, 0.05); */
	overflow: hidden;
	transition: all 0.3s ease;
	position: relative;
}

.area-card:hover {
	transform: translateY(-5px);
}

.area-image {
	width: 100%;
	height: 263px;
	border-radius: 10px;
	overflow: hidden;
}

.area-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.area-card:hover .area-image img {
	transform: scale(1.1);
}

.area-content {
	margin: 0 20px;
	padding: 20px;
	margin-top: -20px;
	border-radius: 10px;
	box-sizing: border-box;
	border: 2px solid;
	/* border-image: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 45%); */
	box-shadow: inset 0px 4px 13px 0px rgba(255, 255, 255, 0.7);
}

.area-content h3 {
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 15px;
	text-align: center;
}

.area-content ul {
	/* list-style: none; */
	padding: 0;
	margin: 0;
}

.area-content ul li {
	color: rgba(255, 255, 255, 0.8);
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 8px;
	padding-left: 20px;
	position: relative;
}

/* .area-content ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 6px;
	height: 6px;
	background: #fff;
	border-radius: 50%;
} */

/* Responsive styles */
@media (max-width: 1200px) {
	.business-areas {
		padding: 60px 20px;
	}

	.business-areas .main-title {
		font-size: 32px;
	}

	.area-row {
		gap: 20px;
	}

	.area-image {
		height: 180px;
	}
}

@media (max-width: 992px) {
	.area-row {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.business-areas {
		padding: 50px 15px;
	}

	.business-areas .main-title {
		font-size: 28px;
	}

	.business-areas .subtitle {
		font-size: 16px;
	}

	.area-row {
		grid-template-columns: 1fr;
		gap: 15px;
		margin-bottom: 15px;
	}

	.area-row::before {
		display: none;
	}

	.area-image {
		height: 160px;
	}

	.area-content {
		padding: 15px;
	}

	.area-content h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.area-content ul li {
		font-size: 13px;
		margin-bottom: 6px;
	}
}

@media (max-width: 480px) {
	.business-areas {
		padding: 40px 10px;
	}

	.business-areas .main-title {
		font-size: 24px;
	}

	.business-areas .subtitle {
		font-size: 14px;
	}

	.area-image {
		height: 140px;
	}

	.area-content h3 {
		font-size: 16px;
	}

	.area-content ul li {
		font-size: 12px;
		padding-left: 15px;
	}

	.area-content ul li::before {
		width: 4px;
		height: 4px;
		top: 7px;
	}
}

/* 添加入场动画 */
@keyframes fadeInScale {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.area-card {
	animation: fadeInScale 0.6s ease forwards;
	opacity: 0;
}

.area-row:nth-child(1) .area-card:nth-child(1) {
	animation-delay: 0.1s;
}
.area-row:nth-child(1) .area-card:nth-child(2) {
	animation-delay: 0.2s;
}
.area-row:nth-child(1) .area-card:nth-child(3) {
	animation-delay: 0.3s;
}
.area-row:nth-child(2) .area-card:nth-child(1) {
	animation-delay: 0.4s;
}
.area-row:nth-child(2) .area-card:nth-child(2) {
	animation-delay: 0.5s;
}
.area-row:nth-child(2) .area-card:nth-child(3) {
	animation-delay: 0.6s;
}

/* 添加全局动画效果 */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* 为现有元素添加动画类 */
.scroll-reveal {
	opacity: 1;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.scroll-reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

/* 添加按钮波纹效果 */
.button {
	position: relative;
	overflow: hidden;
}

.button .ripple {
	position: absolute;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	transform: scale(0);
	animation: ripple 0.6s linear;
	pointer-events: none;
}

@keyframes ripple {
	to {
		transform: scale(4);
		opacity: 0;
	}
}

/* 优化图片悬停效果 */
.hover-zoom {
	transition: transform 0.3s ease;
}

.hover-zoom:hover {
	transform: scale(1.05);
}

/* 优化现有动画效果 */
.hero-content .title,
.hero-content p {
	animation: fadeInUp 0.8s ease forwards;
}

.carousel-slide {
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mr-game-content {
	animation: fadeInUp 0.8s ease forwards;
}

.space-icons .icon-item {
	animation: fadeInUp 0.6s ease forwards;
	animation-delay: calc(var(--item-index) * 0.1s);
}

.process-item {
	animation: scaleIn 0.6s ease forwards;
	animation-delay: calc(var(--item-index) * 0.1s);
}

.advantage-card {
	animation: fadeInUp 0.8s ease forwards;
	animation-delay: calc(var(--item-index) * 0.2s);
}

.area-card {
	animation: scaleIn 0.6s ease forwards;
	animation-delay: calc(var(--item-index) * 0.1s);
}

/* 保持原有的响应式样式不变，只添加优化 */
@media (max-width: 768px) {
	.scroll-reveal {
		transform: translateY(20px);
	}

	.button .ripple {
		transform-origin: center;
	}
}

/* 重写轮播图 */
.carousel-group {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.carousel-container-new {
	position: relative;
	width: 2000px;
	height: 700px;
	perspective: 1000px;
	transform-style: preserve-3d;
}

.carousel-new {
	position: relative;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transition: transform 0.5s ease;
}

.carousel-item-new {
	position: absolute;
	width: 1237px;
	height: 645px;
	border-radius: 30px;
	left: 50%;
	transform-origin: center;
	transition: all 0.5s ease;
	cursor: pointer;
}

.carousel-item-new img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.carousel-item-new.active-new {
	transform: translateX(-50%) scale(1);
	z-index: 2;
}

.carousel-item-new.prev-new {
	transform: translateX(-150%) scale(0.7);
	z-index: 1;
	opacity: 0.7;
}

.carousel-item-new.next-new {
	transform: translateX(50%) scale(0.7);
	z-index: 1;
	opacity: 0.7;
}

.controls-new {
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 20px;
}

.controls-new button {
	padding: 10px 20px;
	background: #333;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background 0.3s;
}

.controls-new button:hover {
	background: #555;
}


