/* 全局样式重置 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	/* scroll-behavior: smooth; */ /* 移除smooth滚动，让返回顶部更快 */
}

body {
	font-family: Source Han Sans SC, Source Han Sans SC;
	line-height: 1.6;
	color: #333;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

/* 头部导航 */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s ease;
	color: #fff;
	background: transparent;
	height: 80px;
}

.header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
	padding: 0 20px;
}

.logo {
	display: flex;
	align-items: center;
	min-width: 0;
	flex-shrink: 0;
	flex: 0 0 auto;
}

.logo-img {
	width: 293px;
	height: 40px;
	transition: all 0.3s ease, opacity 0.2s ease;
	transform: scale(1);
	display: block;
	visibility: visible;
	object-fit: contain;
	background: transparent;
	opacity: 1;
}

.logo-img:hover {
	transform: scale(1.05);
}

.logo-img.scrolled {
	/* 移除content属性，避免图片显示问题 */
}

.logo-text {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	min-width: 0;
	transition: all 0.3s ease;
	transform: scale(1);
}

.logo-text:hover {
	transform: scale(1.02);
}

.logo-text.scrolled {
	color: #fff;
}

.nav {
	margin-left: 0;
	min-width: 0;
	display: flex;
	flex: 1;
	justify-content: center;
	flex: 1 1 auto;
}

.nav-list {
	display: flex;
	list-style: none;
	gap: 40px;
	flex-wrap: nowrap;
	align-items: center;
}

.nav-link {
	color: #333;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
	position: relative;
	white-space: nowrap;
	display: block;
	padding: 18px 0;
	transform: scale(1);
}

.nav-link:hover,
.nav-link.active {
	color: #66CCFF;
	transform: scale(1.05);
}

.nav-link.scrolled {
	color: #fff;
}

.header.scrolled {
	background: #fff;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header.scrolled .nav-link {
	color: #333;
}

.header.scrolled .contact-info {
	color: #333;
}

/* 确保滚动状态下的样式优先级最高 */
.header.scrolled .nav .nav-list .nav-link {
	color: #333 !important;
}

.header.scrolled .nav .nav-list .nav-link:hover {
	color: #66CCFF !important;
}

.header.scrolled .nav .nav-list .nav-link.active {
	color: #2050A2 !important;
}


/* 小屏幕时滚动状态保持深蓝色背景 */
@media (max-width: 768px) {
	/* 使用更强的选择器确保优先级 */
	body .header.scrolled,
	html .header.scrolled,
	.header.scrolled {
		background: #00243e !important;
		color: #fff !important;
		background-color: #00243e !important;
	}
	
	body .header.scrolled .nav-link,
	html .header.scrolled .nav-link,
	.header.scrolled .nav-link {
		color: #fff !important;
	}
	
	body .header.scrolled .nav .nav-list .nav-link,
	html .header.scrolled .nav .nav-list .nav-link,
	.header.scrolled .nav .nav-list .nav-link {
		color: #fff !important;
	}
	
	body .header.scrolled .nav .nav-list .nav-link:hover,
	html .header.scrolled .nav .nav-list .nav-link:hover,
	.header.scrolled .nav .nav-list .nav-link:hover {
		color: #66CCFF !important;
	}
	
	body .header.scrolled .nav .nav-list .nav-link.active,
	html .header.scrolled .nav .nav-list .nav-link.active,
	.header.scrolled .nav .nav-list .nav-link.active {
		color: #66CCFF !important;
	}
	
	body .header.scrolled .contact-info,
	html .header.scrolled .contact-info,
	.header.scrolled .contact-info {
		color: #fff !important;
	}
	
	/* 确保所有导航相关元素都使用正确的颜色 */
	body .header.scrolled *,
	html .header.scrolled *,
	.header.scrolled * {
		color: #fff !important;
	}
	
	/* 特殊处理hover和active状态 */
	body .header.scrolled .nav .nav-list .nav-link:hover,
	html .header.scrolled .nav .nav-list .nav-link:hover,
	body .header.scrolled .nav .nav-list .nav-link.active,
	html .header.scrolled .nav .nav-list .nav-link.active,
	.header.scrolled .nav .nav-list .nav-link:hover,
	.header.scrolled .nav .nav-list .nav-link.active {
		color: #66CCFF !important;
	}
	
	/* 强制覆盖所有可能的颜色设置 */
	body .header.scrolled .nav,
	html .header.scrolled .nav,
	body .header.scrolled .nav-list,
	html .header.scrolled .nav-list,
	body .header.scrolled .nav-list li,
	html .header.scrolled .nav-list li,
	body .header.scrolled .nav-list .nav-link,
	html .header.scrolled .nav-list .nav-link,
	.header.scrolled .nav,
	.header.scrolled .nav-list,
	.header.scrolled .nav-list li,
	.header.scrolled .nav-list .nav-link {
		color: #fff !important;
	}
	
	/* 确保logo文字也使用正确的颜色 */
	body .header.scrolled .logo-text,
	html .header.scrolled .logo-text,
	.header.scrolled .logo-text {
		color: #fff !important;
	}
}

.nav-link.scrolled:hover {
	color: #66CCFF;
	transform: scale(1.05);
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	width: 0;
	height: 2px;
	background: #2050A2;
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

/* 当前页面高亮样式增强 - 使用更强的选择器 */
.header .nav .nav-list .nav-link.active,
.nav-link.active {
	color: #2050A2;
	text-shadow: 0 0 1px rgba(32, 80, 162, 0.3);
}

.header .nav .nav-list .nav-link.active::after,
.nav-link.active::after {
	width: 100%;
	height: 4px;
	bottom: -8px;
}

/* 确保滚动状态下的active样式优先级最高 */
.nav-link.scrolled.active {
	color: #2050A2 !important;
	font-weight: 600 !important;
	text-shadow: 0 0 1px rgba(32, 80, 162, 0.3) !important;
}

.nav-link.scrolled.active::after {
	width: 100% !important;
	height: 4px !important;
	bottom: -8px !important;
	background: #2050A2 !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.contact-info {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #333;
	font-size: 16px;
	min-width: 0;
	flex-shrink: 0;
	flex: 0 0 auto;
	transition: all 0.3s ease;
	transform: scale(1);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.contact-info:hover {
	transform: scale(1.02);
}

.contact-info.scrolled {
	color: #333;
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background: #fff;
	transition: all 0.3s ease;
}

.mobile-menu-toggle.scrolled span {
	background: #fff;
}

/* 确保active状态下按钮仍然是白色 */
.mobile-menu-toggle.active span {
	background: #fff;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
	background: #fff;
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
	background: #fff;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(10px, -10px);
	background: #fff;
}

/* 移动端导航菜单样式 */
.nav.show {
	display: flex;
	position: fixed;
	top: 80px;
	left: 0;
	right: 0;
	background-color: #00243e;
	flex-direction: column;
	padding: 20px;
	z-index: 1001;
	animation: slideDown 0.3s ease;
	width: 100vw;
	height: auto;
	min-height: 300px;
}

.nav.show .nav-list {
	flex-direction: column;
	gap: 20px;
	align-items: center;
}

.nav.show .nav-link {
	color: #fff;
	padding: 15px 0;
	width: 100%;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav.show .nav-link:last-child {
	border-bottom: none;
}

.nav.show .nav-link:hover,
.nav.show .nav-link.active {
	color: #66CCFF;
}

/* 移动端菜单动画 */
@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Hero区域 */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	box-sizing: border-box;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.circuit-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('../img/index/banner.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
}

.hero .container {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-top: 0;
}

.hero-content {
	width: 100%;
	position: relative;
	z-index: 2;
	text-align: left;
}

.hero-title {
	font-size: 60px;
	color: #fff;
	margin-bottom: 60px;
	line-height: 1.2;
	animation: fadeInUp 1s ease;
}

.hero-subtitle {
	font-size: 28px;
	color: #fff;
	margin-bottom: 100px;
	opacity: 0.9;
	animation: fadeInUp 1s ease 0.2s both;
	font-weight: 400;
}

.hero-btn {
	background: transparent;
	color: #fff;
	width: 260px;
	height: 68px;
	line-height: 68px;
	border-radius: 8px;
	border: 1px solid #FFFFFF;
	cursor: pointer;
	transition: all 0.3s ease;
	animation: fadeInUp 1s ease 0.4s both;
	font-weight: 400;
	font-size: 28px;
}

.hero-btn:hover {
	background: #fff;
	color: #0A1931;
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* 核心业务 */
.core-business {
	padding: 106px 0;
	background: #fff;
}

.section-header {
	text-align: center;
	margin-bottom: 84px;
}

.section-title {
	font-size: 48px;
	color: #333;
	margin-bottom: 48px;
}

.section-desc {
	font-size: 20px;
	color: #000;
	margin: 0 auto;
	line-height: 42px;
	font-weight: 300;
}

.business-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
}

.business-card {
	background: #fff;
	padding: 40px 30px;
	border-radius: 15px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border: 1px solid #f0f0f0;
	transform: translateY(0);
}

.business-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-icon {
	height: 231px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.business-card:hover .card-icon {
	transform: scale(1.1);
}

/* 小程序图标样式 */
.miniprogram-icon {
	position: relative;
	width: 200px;
	height: 139px;
}

.miniprogram-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* APP图标样式 */
.app-icon {
	position: relative;
	width: 150px;
	height: 183px;
}

.app-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* 网站图标样式 */
.website-icon {
	position: relative;
	width: 200px;
	height: 155px;
}

.website-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.card-title {
	font-size: 28px;
	color: #000;
	line-height: 42px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
	font-weight: 500;
}

.business-card:hover .card-title {
	color: #2050A2;
}

.card-underline {
	width: 50px;
	height: 3px;
	background: #007bff;
	margin: 0 auto 20px;
	transition: all 0.3s ease;
}

.business-card:hover .card-underline {
	width: 80px;
	background: #2050A2;
}

.card-features {
	list-style: none;
	text-align: center;
}

.card-features li {
	color: #000000;
	line-height: 42px;
	position: relative;
	font-weight: 300;
	font-size: 14px;
	margin-bottom: 0;
	padding-left: 0;
}

.card-features li::before {
	display: none;
}

/* 成功案例 */
.success-cases {
	padding-bottom: 106px;
}

.cases-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 48px;
}

.case-item {
	background: #fff;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.case-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.case-image {
	width: 100%;
	height: 300px;
	padding: 20px 20px;
	overflow: hidden;
	background-color: #fff;
	box-sizing: border-box;
}

.case-image img {
	width: 100%;
	height: 100%;
	transition: transform 0.3s ease;
}

.case-item:hover .case-image img {
	transform: scale(1.1);
}

.case-title {
	font-weight: 500;
	font-size: 20px;
	color: #000000;
	line-height: 42px;
	text-align: center;
	margin-top: 24px;
}

.case-desc {
	color: #9B9A9D;
	font-weight: 300;
	font-size: 14px;
	line-height: 42px;
	text-align: center;
}

/* 定制解决方案 */
.custom-solutions {
	padding: 100px 0;
	background: #f5f8fa;
}

.solution-card {
	background: #fff;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.solution-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.main-solution {
	grid-column: 1 / -1;
}

.solution-title {
	font-size: 28px;
	font-weight: 600;
	color: #333;
	margin-bottom: 20px;
}

.solution-desc {
	color: #666;
	line-height: 1.8;
	margin-bottom: 25px;
}

.solution-btn {
	background: linear-gradient(135deg, #66CCFF 0%, #3399FF 100%);
	color: #fff;
	border: none;
	padding: 12px 25px;
	border-radius: 25px;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.solution-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(102, 204, 255, 0.4);
}

/* 服务流程 */
.service-process {
	padding: 100px 0;
	background: #fff;
}

.service-process .container {
	width: 100%;
	max-width: 100%;
}

.process-steps {
	width: 100%;
	display: flex;
	align-items: flex-start;
	gap: 0;
	flex-wrap: wrap;
	padding-bottom: 106px;
}

.process-step {
	flex: 1;
	text-align: center;
	transition: all 0.3s ease;
	border-right: 1px solid #D9D9D9;
	padding: 20px 20px;
	box-sizing: border-box;
}

.process-step:last-child {
	border-right: 0;
}

.process-step:hover {
	transform: translateY(-5px);
}

.step-icon {
	width: 80px;
	height: 80px;
	background: #f8f9fa;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	transition: all 0.3s ease;
}

.step-icon i {
	font-size: 32px;
	color: #007bff;
}

.process-step:hover .step-icon {
	background: #007bff;
	transform: scale(1.1);
}

.process-step:hover .step-icon i {
	color: #fff;
}

.step-title {
	font-weight: 400;
	font-size: 20px;
	color: #000000;
	line-height: 42px;
	margin-bottom: 12px;
	margin-top: 49px;
}

.step-details {
	list-style: none;
	text-align: center;
}

.step-details li {
	font-weight: 300;
	font-size: 14px;
	color: #000000;
	line-height: 42px;
	position: relative;
}

/* 为什么选择我们 */
.why-choose-us {
	padding: 106px 0;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.why-choose-us .container {
	max-width: 100%;
	width: 100%;
}

.choose-content {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 100%;
}

.choose-text-card {
	flex: 1;
	max-width: 500px;
	background: #fff;
	border-radius: 15px;
	padding: 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.choose-text-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.choose-text h3 {
	font-size: 28px;
	font-weight: 600;
	color: #333;
	margin-bottom: 20px;
	line-height: 1.3;
}

.choose-text p {
	color: #666;
	line-height: 1.8;
	font-size: 16px;
}

.choose-carousel-container {
	width: 100%;
	max-width: 100%;
	position: relative;
	overflow: hidden;
}

/* 为什么选择我们区域的Swiper轮播样式 */
.choose-swiper {
	width: 100%;
	height: 580px;
	overflow: hidden;
}

.choose-swiper .swiper-wrapper .swiper-slide {
	/* 让Swiper自动计算宽度 */
}

.choose-swiper .swiper-wrapper .swiper-slide img {
	width: 100%;
	height: 100%;
}

.choose-swiper .swiper-wrapper .swiper-slide-prev {
	margin-top: 58px;
	height: 464px;
	width: calc((100% - 1000px - 128px) / 2) !important; /* 剩余宽度的一半 */
	overflow: hidden; /* 隐藏超出部分 */
	border-radius: 10px; /* 添加圆角 */
}

.choose-swiper .swiper-wrapper .swiper-slide-prev img {
	height: 464px;
	width: auto; /* 图片保持原始比例 */
	max-width: none; /* 不限制最大宽度 */
	transform: translateX(-50%); /* 向左偏移，显示图片右半部分 */
	border-radius: 10px; /* 图片也添加圆角 */
}

.choose-swiper .swiper-wrapper .swiper-slide-next {
	margin-top: 58px;
	height: 464px;
	width: calc((100% - 1000px - 128px) / 2) !important; /* 剩余宽度的一半 */
	overflow: hidden; /* 隐藏超出部分 */
	border-radius: 10px; /* 添加圆角 */
}

.choose-swiper .swiper-wrapper .swiper-slide-next img {
	height: 464px;
	width: auto; /* 图片保持原始比例 */
	max-width: none; /* 不限制最大宽度 */
	transform: translateX(0); /* 不偏移，显示图片左半部分 */
	border-radius: 10px; /* 图片也添加圆角 */
}

.choose-swiper .swiper-wrapper .swiper-slide-active {
	width: 1000px !important; /* 中间slide的宽度 */
}

.choose-swiper .swiper-slide {
	position: relative;
	cursor: pointer;
}

.choose-swiper .choose-cont {
	position: absolute;
	top: 0;
	left: 0;
	padding: 84px;
	z-index: 10;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	/* 初始化时所有文案都隐藏 */
	opacity: 0;
	visibility: hidden;
	/* 更流畅的过渡动画 */
	transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
	/* 初始状态稍微向上偏移 */
	transform: translateY(10px);
	pointer-events: none;
	/* 添加渐变背景色，确保文案清晰可见 */
	background: linear-gradient(90deg, rgba(42, 108, 175, 0) 0%, rgba(42, 108, 175, 0.95) 95%, rgba(42, 108, 175, 1) 100%);
	border-radius: 8px;
}

.choose-cont-list {
	width: 600px;
	color: #fff;
	padding: 0;
	margin: 0;
	/* 确保文案内容完全可见 */
	position: relative;
	z-index: 11;
}

/* 只有当前激活的slide在鼠标经过时才显示文案 */
.choose-swiper .swiper-slide-active:hover .choose-cont {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

/* 非激活的slide即使鼠标经过也不显示文案 */
.choose-swiper .swiper-slide:not(.swiper-slide-active):hover .choose-cont {
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	pointer-events: none;
}

/* 文案显示状态控制类 */
.choose-cont.hidden {
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	pointer-events: none;
}

.choose-cont.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.choose-cont .choose-title {
	font-weight: 500;
	font-size: 28px;
	line-height: 42px;
	margin-bottom: 35px;
}

.choose-cont .choose-text {
	font-weight: 300;
	font-size: 16px;
	line-height: 32px;
}

/* 联系我们 */
.contact-section {
	background: #fff;
}

.contact-header {
	background: #f8f9fa;
	padding: 60px 0;
	text-align: center;
}

.contact-header h2 {
	font-size: 40px;
	font-weight: 700;
	color: #333;
}

.contact-content {
	background: #2050A2;
	color: #fff;
	padding: 84px 0 0 0;
}

.contact-content h3 {
	font-size: 32px;
	font-weight: 500;
	margin-bottom: 76px;
	line-height: 42px;
}

.contact-info-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-info-list p {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 18px;
}

.contact-info-list i {
	color: #fff;
	font-size: 20px;
	width: 20px;
}

/* 页脚 */
.footer-bottom {
	text-align: center;
	font-weight: 300;
	font-size: 16px;
	line-height: 42px;
	color: #fff;
	padding-top: 106px;
}

.footer {
	background: #1a1a1a;
	color: #fff;
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section h4 {
	font-size: 20px;
	margin-bottom: 20px;
	color: #00ffff;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 10px;
}

.footer-section ul li a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: #00ffff;
}

.footer-section p {
	color: #ccc;
	margin-bottom: 10px;
}

.footer-section i {
	color: #00ffff;
	margin-right: 10px;
}

/* 返回顶部按钮 */
.back-to-top {
	width: 56px;
	height: 56px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	position: relative;
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s ease; /* 从0.3s减少到0.2s，让动画更快 */
	transform: translateY(20px); /* 添加初始位移 */
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0); /* 显示时回到原位 */
}

.back-to-top:hover {
	background: rgba(0, 0, 0, 0.7);
	transform: translateY(-2px); /* 悬停时轻微上移 */
	transition: all 0.15s ease; /* 悬停动画更快 */
}

/* 动画效果 */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 定制解决方案区域 */
.solutions-section {
	padding: 106px 0;
	background: #EDF4FF;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden; /* 防止内容溢出 */
}

.solutions-content {
	display: flex;
	align-items: center;
	width: 100%;
	color: #000000;
}

.solutions-left {
	width: 620px;
	padding-right: 162px;
	box-sizing: border-box;
}

.solutions-subtitle {
	font-size: 36px;
	line-height: 42px;
	margin-bottom: 48px;
	font-weight: 500;
}

.solutions-description {
	font-size: 18px;
	line-height: 42px;
	margin-bottom: 60px;
	text-align: justify;
}

.solutions-btn {
	width: 260px;
	height: 68px;
	line-height: 68px;
	background: #52C3F1;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	color: #FFFFFF;
	font-size: 24px;
	border: 1px solid #52C3F1;
}

.solutions-btn:hover {
	background: #0056b3;
	transform: translateY(-2px);
}

.solutions-right {
	position: absolute;
	right: 0;
	bottom: 106px;
	z-index: 2;
	width: 888px;
	max-width: 100%; /* 防止宽度溢出 */
	overflow: hidden; /* 防止内容溢出 */
}

/* Swiper轮播样式 */
.solutions-swiper {
	width: 100%;
	height: 460px;
	border-radius: 15px;
	overflow: hidden;
	background: transparent;
	padding: 0;
	box-sizing: border-box;
}

.solutions-swiper .swiper-wrapper {
	display: flex;
	align-items: center;
}

.solutions-swiper .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	transition: all 0.3s ease;
	height: 100%;
}

.solutions-swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

