.banner {
	width: 100%;
	height: 370px;
	position: relative;
}

.banner img {
	width: 100%;
	height: 100%;
}

.banner_dw {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.banner_title {
	text-align: center;
	font-family: Source Han Sans CN;
	font-weight: 500;
	font-size: 48px;
	color: #333333;
	margin-bottom: 26px;
}

.banner_text {
	text-align: center;
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 20px;
	color: #333333;
}

.label_title {
	text-align: center;
	font-family: Source Han Sans CN;
	font-weight: bold;
	font-size: 36px;
	color: #333333;
	margin: 0 auto;
	position: relative;
}

.label_title_text {
	position: relative;
	z-index: 1;
}

.label_title-line {
	width: 92px;
	height: 14px;
	position: absolute;
	left: 50%;
	bottom: 3px;
	transform: translateX(-50%);
	background: #8FBCFF;
	border-radius: 7px;
	z-index: 0;
}

/* 产品概览样式 */
.overview-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
}

.overview-content {
	display: flex;
	align-items: center;
	gap: 60px;
}

.overview-left {
	flex: 1;
}

.overview-left h2 {
	font-family: Source Han Sans CN;
	font-weight: bold;
	font-size: 42px;
	color: #333333;
	margin-bottom: 24px;
	line-height: 1.2;
}

.overview-subtitle {
	font-family: Source Han Sans CN;
	font-weight: 500;
	font-size: 20px;
	color: #458BFA;
	margin-bottom: 30px;
}

.overview-desc {
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 18px;
	color: #666666;
	line-height: 1.6;
	margin-bottom: 40px;
}

.overview-desc p {
	margin-bottom: 16px;
}

.overview-highlights {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 40px;
}

.overview-highlights .highlight-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.overview-highlights .highlight-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.overview-highlights .highlight-item i {
	font-size: 28px;
	color: #458BFA;
	margin-top: 4px;
}

.overview-highlights .highlight-content h4 {
	font-family: Source Han Sans CN;
	font-weight: 600;
	font-size: 16px;
	color: #333333;
	margin-bottom: 8px;
}

.overview-highlights .highlight-content p {
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 14px;
	color: #666666;
	line-height: 1.5;
	margin: 0;
}

.overview-buttons {
	display: flex;
	gap: 20px;
}

.btn-primary, .btn-secondary {
	padding: 16px 32px;
	border-radius: 8px;
	font-family: Source Han Sans CN;
	font-weight: 500;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
}

.btn-primary {
	background: linear-gradient(135deg, #458BFA 0%, #667eea 100%);
	color: white;
	box-shadow: 0 4px 20px rgba(69, 139, 250, 0.3);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(69, 139, 250, 0.4);
}

.btn-secondary {
	background: white;
	color: #458BFA;
	border: 2px solid #458BFA;
}

.btn-secondary:hover {
	background: #458BFA;
	color: white;
}

.overview-right {
	flex: 1;
}

.overview-visuals {
	position: relative;
}

.overview-visuals .main-image {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.overview-stats {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
	text-align: center;
	flex: 1;
}

.stat-number {
	font-family: Source Han Sans CN;
	font-weight: bold;
	font-size: 28px;
	color: #458BFA;
	margin-bottom: 8px;
}

.stat-label {
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 14px;
	color: #666666;
}

/* 技术优势样式 */
.tech-advantages {
	padding: 80px 0;
	background: #f8faff;
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 60px;
}

.advantage-item {
	background: white;
	border-radius: 16px;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.advantage-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #458BFA 0%, #667eea 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
}

.advantage-icon i {
	font-size: 36px;
	color: white;
}

.advantage-title {
	font-family: Source Han Sans CN;
	font-weight: bold;
	font-size: 24px;
	color: #333333;
	margin-bottom: 15px;
}

.advantage-desc {
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	line-height: 1.6;
}

/* 服务保障样式 */
.service-guarantee {
	padding: 80px 0;
	background: #fff;
}
.service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}
.service-card {
	background: #f8faff;
	border-radius: 16px;
	padding: 30px;
	text-align: center;
	transition: all 0.3s;
	border: 2px solid transparent;
}
.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0,0,0,0.1);
	border-color: #458BFA;
}
.service-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #458BFA 0%, #667eea 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}
.service-icon i {
	font-size: 36px;
	color: white;
}
.service-card h3 {
	font-size: 1.3rem;
	font-weight: bold;
	color: #333;
	margin-bottom: 15px;
}
.service-desc {
	font-size: 0.9rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 20px;
}
.service-features {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.service-feature {
	font-size: 0.85rem;
	color: #458BFA;
	font-weight: 500;
}

/* 认证资质样式 */
.certifications {
	padding: 80px 0;
	background: #f8faff;
}
.cert-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}
.cert-card {
	background: #fff;
	border-radius: 16px;
	padding: 30px;
	text-align: center;
	transition: all 0.3s;
	box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.cert-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.cert-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #458BFA 0%, #667eea 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}
.cert-icon i {
	font-size: 36px;
	color: white;
}
.cert-card h3 {
	font-size: 1.3rem;
	font-weight: bold;
	color: #333;
	margin-bottom: 15px;
}
.cert-desc {
	font-size: 0.9rem;
	color: #666;
	line-height: 1.6;
}

/* FAQ样式 */
.faq-section {
	padding: 80px 0;
	background: #fff;
}
.faq-list {
	max-width: 800px;
	margin: 0 auto;
}
.faq-item {
	background: #f8faff;
	border-radius: 12px;
	margin-bottom: 16px;
	overflow: hidden;
	transition: all 0.3s;
}
.faq-item:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.faq-question {
	padding: 20px 24px;
	background: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	font-weight: 500;
	color: #333;
	transition: all 0.3s;
}
.faq-question:hover {
	background: #f0f8ff;
}
.faq-question i {
	color: #458BFA;
	transition: transform 0.3s;
}
.faq-item.active .faq-question i {
	transform: rotate(180deg);
}
.faq-answer {
	padding: 0 24px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s;
	color: #666;
	line-height: 1.6;
}
.faq-item.active .faq-answer {
	padding: 0 24px 20px;
	max-height: 200px;
}

/* 互动体验样式 */
.interactive-section {
	padding: 80px 0;
	background: #f8faff;
}
.interactive-content {
	display: flex;
	gap: 60px;
	align-items: center;
}
.interactive-left {
	flex: 1;
}
.interactive-left h3 {
	font-size: 1.8rem;
	font-weight: bold;
	color: #333;
	margin-bottom: 30px;
}
.interactive-features {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 30px;
}
.interactive-feature {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 1rem;
	color: #666;
}
.interactive-feature i {
	color: #458BFA;
	font-weight: bold;
}
.interactive-actions {
	display: flex;
	gap: 20px;
}
.btn-primary, .btn-secondary {
	padding: 12px 30px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s;
	display: inline-block;
}
.btn-primary {
	background: linear-gradient(135deg, #458BFA 0%, #667eea 100%);
	color: white;
}
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(69, 139, 250, 0.3);
}
.btn-secondary {
	background: #fff;
	color: #458BFA;
	border: 2px solid #458BFA;
}
.btn-secondary:hover {
	background: #458BFA;
	color: white;
	transform: translateY(-2px);
}
.interactive-right {
	flex: 1;
}
.demo-info {
	background: #fff;
	border-radius: 16px;
	padding: 30px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.demo-info h4 {
	font-size: 1.3rem;
	font-weight: bold;
	color: #333;
	margin-bottom: 20px;
	text-align: center;
}
.demo-account {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.account-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px;
	background: #f8faff;
	border-radius: 8px;
}
.account-item .label {
	font-size: 0.9rem;
	color: #666;
}
.account-item .value {
	font-size: 0.9rem;
	font-weight: bold;
	color: #458BFA;
}

/* 应用场景样式 */
.scenarios-section {
	padding: 80px 0;
	background: white;
}

.scenarios-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

.scenario-item {
	background: #f8faff;
	border-radius: 16px;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.scenario-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	border-color: #458BFA;
}

.scenario-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #458BFA 0%, #667eea 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
}

.scenario-icon i {
	font-size: 36px;
	color: white;
}

.scenario-title {
	font-family: Source Han Sans CN;
	font-weight: bold;
	font-size: 24px;
	color: #333333;
	margin-bottom: 15px;
}

.scenario-desc {
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	line-height: 1.6;
	margin-bottom: 25px;
}

.scenario-features {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.feature-tag {
	background: #458BFA;
	color: white;
	padding: 6px 12px;
	border-radius: 20px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 14px;
}

/* 核心功能样式 */
.core-features {
	padding: 80px 0;
	background: #f8faff;
}

.features-tabs {
	margin-top: 60px;
}

.tab-nav {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 8px;
	margin-bottom: 50px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.tab-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 10px 6px;
	background: white;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	min-height: 80px;
	justify-content: center;
}

.tab-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.tab-item.active {
	border-color: #458BFA;
	background: linear-gradient(135deg, #458BFA 0%, #667eea 100%);
	color: white;
}

.tab-item i {
	font-size: 20px;
}

.tab-item.active i {
	color: white;
}

.tab-item span {
	font-family: Source Han Sans CN;
	font-weight: 500;
	font-size: 11px;
	text-align: center;
	line-height: 1.2;
}

.tab-content {
	background: white;
	border-radius: 16px;
	padding: 50px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.tab-pane {
	display: none;
}

.tab-pane.active {
	display: block;
}

.feature-detail {
	display: flex;
	align-items: center;
	gap: 60px;
}

.feature-left {
	flex: 1;
}

.feature-left h3 {
	font-family: Source Han Sans CN;
	font-weight: bold;
	font-size: 32px;
	color: #333333;
	margin-bottom: 40px;
}

.feature-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.feature-list .feature-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.feature-list .feature-item i {
	font-size: 28px;
	color: #458BFA;
	margin-top: 4px;
}

.feature-text h4 {
	font-family: Source Han Sans CN;
	font-weight: 500;
	font-size: 20px;
	color: #333333;
	margin-bottom: 8px;
}

.feature-text p {
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	line-height: 1.6;
}

.feature-right {
	flex: 1;
	text-align: center;
}

.feature-right img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* 技术优势样式 */
.tech-advantages {
	padding: 80px 0;
	background: white;
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

.advantage-item {
	padding: 40px 30px;
	background: white;
	border-radius: 16px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid #f0f0f0;
}

.advantage-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
	background: linear-gradient(135deg, #458BFA 0%, #667eea 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.advantage-icon i {
	font-size: 36px;
	color: white;
}

.advantage-title {
	font-family: Source Han Sans CN;
	font-weight: bold;
	font-size: 24px;
	color: #333333;
	margin-bottom: 16px;
}

.advantage-desc {
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	line-height: 1.6;
}

/* 客户案例样式 */
.customer-cases {
	padding: 80px 0;
	background: #f8faff;
}

.cases-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

.case-item {
	padding: 40px 30px;
	background: white;
	border-radius: 16px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: all 0.3s ease;
}

.case-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.case-logo {
	margin-bottom: 20px;
}

.case-logo img {
	height: 60px;
	width: auto;
}

.case-title {
	font-family: Source Han Sans CN;
	font-weight: bold;
	font-size: 24px;
	color: #333333;
	margin-bottom: 16px;
}

.case-desc {
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	line-height: 1.6;
	margin-bottom: 24px;
}

.case-results {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.case-results span {
	padding: 8px 16px;
	background: #f0f8ff;
	color: #458BFA;
	border-radius: 20px;
	font-family: Source Han Sans CN;
	font-weight: 500;
	font-size: 14px;
}

/* 数据统计样式 */
.data-stats {
	padding: 80px 0;
	background: linear-gradient(135deg, #458BFA 0%, #667eea 100%);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.stat-item {
	text-align: center;
	color: white;
}

.stat-number {
	font-family: Source Han Sans CN;
	font-weight: bold;
	font-size: 48px;
	margin-bottom: 12px;
	line-height: 1;
}

.stat-label {
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 18px;
	opacity: 0.9;
}

/* 联系我们样式 */
.contact-section {
	padding: 80px 0;
	background: white;
}

.contact-content {
	display: flex;
	align-items: center;
	gap: 60px;
}

.contact-left {
	flex: 1;
}

.contact-left h3 {
	font-family: Source Han Sans CN;
	font-weight: bold;
	font-size: 36px;
	color: #333333;
	margin-bottom: 16px;
}

.contact-left p {
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 18px;
	color: #666666;
	line-height: 1.6;
	margin-bottom: 40px;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 24px;
	background: #f8faff;
	border-radius: 12px;
	border-left: 4px solid #458BFA;
}

.contact-item i {
	font-size: 24px;
	color: #458BFA;
}

.contact-item span {
	font-family: Source Han Sans CN;
	font-weight: 500;
	font-size: 18px;
	color: #333333;
}

.contact-right {
	flex: 1;
	text-align: center;
}

.contact-buttons {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}

.contact-buttons .btn-primary,
.contact-buttons .btn-secondary {
	min-width: 200px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
	.tab-nav {
		grid-template-columns: repeat(4, 1fr);
		max-width: 900px;
	}
}

@media (max-width: 768px) {
	.tab-nav {
		grid-template-columns: repeat(4, 1fr);
		gap: 6px;
	}
	
	.tab-item {
		padding: 8px 4px;
		min-height: 70px;
	}
	
	.tab-item i {
		font-size: 18px;
	}
	
	.tab-item span {
		font-size: 10px;
	}
	
	.tab-content {
		padding: 30px 20px;
	}
	
	.feature-detail {
		flex-direction: column;
		gap: 40px;
	}
	
	.feature-left h3 {
		font-size: 24px;
		margin-bottom: 30px;
	}
	
	.feature-list {
		gap: 20px;
	}
	
	.feature-list .feature-item {
		gap: 15px;
	}
	
	.feature-list .feature-item i {
		font-size: 24px;
	}
	
	.feature-text h4 {
		font-size: 18px;
	}
	
	.feature-text p {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.tab-nav {
		grid-template-columns: repeat(3, 1fr);
		max-width: 400px;
	}
	
	.tab-item {
		flex-direction: row;
		justify-content: flex-start;
		padding: 8px 10px;
		min-height: auto;
	}
	
	.tab-item i {
		font-size: 14px;
		margin-right: 6px;
	}
	
	.tab-item span {
		font-size: 11px;
	}
	
	.core-features {
		padding: 60px 0;
	}
	
	.features-tabs {
		margin-top: 40px;
	}
}

.page1 {
	padding-top: 68px;
	padding-bottom: 68px;
}

.page1_float {
	margin-top: 68px;
	overflow: hidden;
}

.page1_item {
	width: 315px;
	height: 110px;
	text-align: center;
	line-height: 110px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	font-size: 25px;
	color: #FFFFFF;
	background: #C2D8FF;
	border-radius: 10px;
	cursor: pointer;
	float: left;
	margin: 0 20px 23px 0;
}

.page1_item:nth-child(4n) {
	margin-right: 0;
}

/* 设置每个 .page1_item 的背景图 */
.page1_item:nth-child(1) {
	background-image: url('../images/product_page1_1.png');
}

.page1_item:nth-child(2) {
	background-image: url('../images/product_page1_2.png');
}

.page1_item:nth-child(3) {
	background-image: url('../images/product_page1_3.png');
}

.page1_item:nth-child(4) {
	background-image: url('../images/product_page1_4.png');
}

.page1_item:nth-child(5) {
	background-image: url('../images/product_page1_5.png');
}

.page1_item:nth-child(6) {
	background-image: url('../images/product_page1_6.png');
}

.page1_item:nth-child(7) {
	background-image: url('../images/product_page1_7.png');
}

.page1_item:nth-child(8) {
	background-image: url('../images/product_page1_8.png');
}

.page_container {
	width: 1220px;
	margin: 0 auto;
}

.page_main_lf {
	width: 50%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page_main_lf img {
	width: 517px;
	height: 301px;
	box-shadow: 0px 6px 40px 0px rgba(35, 66, 116, 0.11);
}

.page_main_rt {
	width: 50%;
	height: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.page_main_rt_row {
	width: 100%;
	height: 100px;
	padding-left: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 10px;
}

.page_main_rt_title {
	font-family: Source Han Sans CN;
	font-weight: 500;
	font-size: 24px;
	color: #333333;
}

.page_main_rt_subhead {
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.more {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 16px;
	color: #458BFA;
	cursor: pointer;
}

.more img {
	margin-left: 10px;
}

.page2 {
	padding-top: 68px;
	padding-bottom: 68px;
}

.page2_main {
	width: 100%;
	height: 550px;
	display: flex;
	align-items: center;
}

.page3 {
	padding-top: 68px;
	padding-bottom: 68px;
}

.page3_main {
	width: 100%;
	height: 550px;
	display: flex;
	align-items: center;
}

.page4 {
	padding-top: 68px;
	padding-bottom: 68px;
}

.page4_main {
	width: 100%;
	height: 550px;
	display: flex;
	align-items: center;
}

.page5 {
	padding-top: 68px;
	padding-bottom: 68px;
}

.page5_main {
	width: 100%;
	height: 550px;
	display: flex;
	align-items: center;
}

.page6 {
	padding-top: 68px;
	padding-bottom: 68px;
}

.page6_main {
	width: 100%;
	height: 550px;
	display: flex;
	align-items: center;
}

.page7 {
	padding-top: 68px;
	padding-bottom: 68px;
}

.page7_main {
	width: 100%;
	height: 550px;
	display: flex;
	align-items: center;
}

.page8 {
	padding-top: 68px;
	padding-bottom: 68px;
}

.page8_main {
	width: 100%;
	height: 550px;
	display: flex;
	align-items: center;
}

.page9 {
	padding-top: 68px;
	padding-bottom: 68px;
}

.page9_main {
	width: 100%;
	height: 550px;
	display: flex;
	align-items: center;
}

.product_more {
	width: 1220px;
	margin: 0 auto;
}

.product_more_title {
	font-family: Source Han Sans CN;
	font-weight: bold;
	font-size: 36px;
	color: #333333;
	text-align: center;
	margin-bottom: 68px;
}

.product_more_item_flex {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product_more_item_info {
	width: 50%;
	height: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.product_more_item_title {
	font-family: Source Han Sans CN;
	font-weight: 500;
	font-size: 24px;
	color: #333333;
	position: relative;
}

.product_more_item_title::after {
	content: '';
	width: 100%;
	height: 2px;
	background: #458BFA;
	position: absolute;
	bottom: -10px;
	left: 0;
}

.product_more_item_content {
	width: 100%;
	height: 100px;
	padding-left: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 10px;
}

.product_more_item_content p{
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.product_more_item_btn{
	width: 100%;
	height: 100px;
	padding-left: 50px;
	display: flex;
	align-items: center;
}

.product_more_item_btn a{
	width: 120px;
	height: 40px;
	background: #458BFA;
	border-radius: 20px;
	color: white;
	text-align: center;
	line-height: 40px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 16px;
	text-decoration: none;
}

.product_more_item_titles{
	font-family: Source Han Sans CN;
	font-weight: 500;
	font-size: 24px;
	color: #333333;
	position: relative;
}

.product_more_item_titles::after {
	content: '';
	width: 100%;
	height: 2px;
	background: #458BFA;
	position: absolute;
	bottom: -10px;
	left: 0;
}

.product_more_item_contents {
	width: 100%;
	height: 100px;
	padding-left: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 10px;
}

.product_more_item_contents p{
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.product_more_item_btns{
	width: 100%;
	height: 100px;
	padding-left: 50px;
	display: flex;
	align-items: center;
}

.product_more_item_btns a{
	width: 120px;
	height: 40px;
	background: #458BFA;
	border-radius: 20px;
	color: white;
	text-align: center;
	line-height: 40px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 16px;
	text-decoration: none;
}

/* 行业对比样式 */
.industry-comparison {
	padding: 80px 0;
	background: #f8faff;
}

.comparison-content {
	margin-top: 60px;
}

.comparison-table {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.table-header {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	background: linear-gradient(135deg, #458BFA 0%, #667eea 100%);
	color: white;
}

.header-item {
	padding: 20px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	font-size: 18px;
	text-align: center;
}

.table-row {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	border-bottom: 1px solid #f0f0f0;
}

.table-row:last-child {
	border-bottom: none;
}

.row-item {
	padding: 20px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 16px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.row-item:first-child {
	text-align: left;
	justify-content: flex-start;
	font-weight: 500;
}

.row-item.highlight {
	color: #458BFA;
	font-weight: bold;
}

/* 数据统计样式 */
.stats-section {
	padding: 80px 0;
	background: white;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

.stat-item {
	background: #f8faff;
	border-radius: 16px;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.stat-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	border-color: #458BFA;
}

.stat-number {
	font-family: Source Han Sans CN;
	font-weight: bold;
	font-size: 48px;
	color: #458BFA;
	margin-bottom: 15px;
}

.stat-label {
	font-family: Source Han Sans CN;
	font-weight: bold;
	font-size: 20px;
	color: #333333;
	margin-bottom: 10px;
}

.stat-desc {
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 14px;
	color: #666666;
	line-height: 1.6;
}

/* 资质认证样式 */
.certifications {
	padding: 80px 0;
	background: #f8faff;
}

.certifications-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

.certification-item {
	background: white;
	border-radius: 16px;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.certification-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.certification-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #458BFA 0%, #667eea 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
}

.certification-icon i {
	font-size: 36px;
	color: white;
}

.certification-title {
	font-family: Source Han Sans CN;
	font-weight: bold;
	font-size: 20px;
	color: #333333;
	margin-bottom: 15px;
}

.certification-desc {
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	line-height: 1.6;
}

/* 合作伙伴样式 */
.partners {
	padding: 80px 0;
	background: white;
}

.partners-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 40px;
	margin-top: 60px;
	align-items: center;
}

.partner-item {
	text-align: center;
	transition: all 0.3s ease;
}

.partner-item:hover {
	transform: translateY(-5px);
}

.partner-item img {
	max-width: 120px;
	height: auto;
	filter: grayscale(100%);
	transition: all 0.3s ease;
}

.partner-item:hover img {
	filter: grayscale(0%);
}

.partner-name {
	font-family: Source Han Sans CN;
	font-weight: 500;
	font-size: 16px;
	color: #666666;
	margin-top: 15px;
}

/* 顶部LOGO墙+Slogan+主卖点+认证LOGO样式 */
.hero-section {
  padding: 60px 0 40px 0;
  background: linear-gradient(135deg, #f8faff 0%, #e6edfa 100%);
  text-align: center;
}
.hero-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.brand-logo {
  height: 60px;
  margin-bottom: 8px;
}
.cert-logos {
  display: flex;
  gap: 18px;
  align-items: center;
}
.cert-logos img {
  height: 36px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 4px 8px;
}
.hero-slogan h1 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.hero-sub {
  font-size: 1.2rem;
  color: #458BFA;
  margin-bottom: 18px;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}
.hero-features .feature-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 10px 22px;
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: box-shadow 0.2s;
}
.hero-features .feature-item i {
  color: #458BFA;
  font-size: 1.2em;
}
.hero-actions {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 36px;
  border-radius: 24px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, #458BFA 0%, #667eea 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(69,139,250,0.08);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #667eea 0%, #458BFA 100%);
}
.btn-secondary {
  background: #fff;
  color: #458BFA;
  border: 2px solid #458BFA;
}
.btn-secondary:hover {
  background: #f0f8ff;
}
@media (max-width: 900px) {
  .overview-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .overview-highlights {
    grid-template-columns: 1fr;
  }
  
  .overview-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-features {
    gap: 10px;
  }
  .hero-features .feature-item {
    padding: 8px 12px;
    font-size: 0.98rem;
  }
}
@media (max-width: 600px) {
  .hero-section {
    padding: 36px 0 20px 0;
  }
  .hero-logos {
    gap: 10px;
  }
  .brand-logo {
    height: 40px;
  }
  .cert-logos img {
    height: 24px;
    padding: 2px 4px;
  }
  .hero-slogan h1 {
    font-size: 1.3rem;
  }
  .hero-sub {
    font-size: 0.95rem;
  }
  .hero-features {
    gap: 6px;
  }
  .hero-features .feature-item {
    padding: 6px 8px;
    font-size: 0.92rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .btn-primary, .btn-secondary {
    padding: 10px 0;
    width: 90vw;
    max-width: 320px;
    font-size: 1rem;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

/* 产品全景介绍区样式 */
.product-overview-section {
  padding: 80px 0;
  background: #fff;
}
.overview-flex {
  display: flex;
  gap: 60px;
  align-items: center;
}
.overview-visuals {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.overview-arch, .overview-flow {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}
.overview-arch:hover, .overview-flow:hover {
  transform: translateY(-4px);
}
.overview-highlights {
  flex: 1;
}
.overview-highlights h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 30px;
  text-align: center;
}
.highlight-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.highlight-card {
  background: #f8faff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: #458BFA;
}
.highlight-card i {
  font-size: 2.5rem;
  color: #458BFA;
  margin-bottom: 16px;
}
.card-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}
.card-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* 功能矩阵表样式 */
.feature-matrix-section {
  padding: 80px 0;
  background: #f8faff;
}
.matrix-title {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  text-align: center;
  margin-bottom: 50px;
}
.matrix-table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.matrix-table th {
  background: linear-gradient(135deg, #458BFA 0%, #667eea 100%);
  color: #fff;
  padding: 16px 20px;
  text-align: left;
  font-weight: bold;
}
.matrix-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: top;
}
.matrix-table tr:hover {
  background: #f8faff;
}
.matrix-table td:first-child {
  font-weight: bold;
  color: #333;
  background: #f0f8ff;
}
.matrix-table .support {
  color: #458BFA;
  font-weight: bold;
  text-align: center;
}

/* 响应式适配 */
@media (max-width: 900px) {
  .overview-flex {
    flex-direction: column;
    gap: 40px;
  }
  .highlight-cards {
    grid-template-columns: 1fr;
  }
  .overview-highlights h2 {
    font-size: 1.6rem;
  }
  .matrix-title {
    font-size: 1.6rem;
  }
}
@media (max-width: 600px) {
  .product-overview-section {
    padding: 60px 0;
  }
  .overview-highlights h2 {
    font-size: 1.3rem;
  }
  .highlight-card {
    padding: 20px;
  }
  .highlight-card i {
    font-size: 2rem;
  }
  .card-title {
    font-size: 1rem;
  }
  .card-desc {
    font-size: 0.85rem;
  }
  .matrix-title {
    font-size: 1.3rem;
  }
  .matrix-table {
    font-size: 0.85rem;
  }
  .matrix-table th,
  .matrix-table td {
    padding: 10px 12px;
  }
}

/* AI专区样式 */
.ai-section {
  padding: 80px 0;
  background: #fff;
}
.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  text-align: center;
  margin-bottom: 50px;
}
.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.ai-card {
  background: #f8faff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.ai-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border-color: #458BFA;
}
.ai-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #458BFA 0%, #667eea 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.ai-icon i {
  font-size: 36px;
  color: white;
}
.ai-card h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}
.ai-features {
  text-align: left;
}
.ai-feature {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.ai-feature:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #458BFA;
  font-weight: bold;
}

/* 安全专区样式 */
.security-section {
  padding: 80px 0;
  background: #f8faff;
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.security-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.security-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.security-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #458BFA 0%, #667eea 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.security-icon i {
  font-size: 36px;
  color: white;
}
.security-card h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}
.security-features {
  text-align: left;
}
.security-feature {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.security-feature:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #458BFA;
  font-weight: bold;
}

/* API专区样式 */
.api-section {
  padding: 80px 0;
  background: #fff;
}
.api-content {
  text-align: center;
}
.api-intro {
  margin-bottom: 40px;
}
.api-intro p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
.api-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.api-card {
  background: #f8faff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.api-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border-color: #458BFA;
}
.api-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #458BFA 0%, #667eea 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.api-icon i {
  font-size: 36px;
  color: white;
}
.api-card h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}
.api-features {
  text-align: left;
}
.api-feature {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.api-feature:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #458BFA;
  font-weight: bold;
}
.api-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* 响应式适配 */
@media (max-width: 900px) {
  .section-title {
    font-size: 1.6rem;
  }
  .ai-grid,
  .security-grid,
  .api-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .ai-section,
  .security-section,
  .api-section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 1.3rem;
  }
  .ai-grid,
  .security-grid,
  .api-grid {
    grid-template-columns: 1fr;
  }
  .ai-card,
  .security-card,
  .api-card {
    padding: 24px;
  }
  .ai-icon,
  .security-icon,
  .api-icon {
    width: 60px;
    height: 60px;
  }
  .ai-icon i,
  .security-icon i,
  .api-icon i {
    font-size: 28px;
  }
  .api-actions {
    flex-direction: column;
    gap: 10px;
  }
}

/* 行业解决方案样式 */
.industry-solutions {
  padding: 80px 0;
  background: #f8faff;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.solution-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.solution-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #458BFA 0%, #667eea 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.solution-icon i {
  font-size: 36px;
  color: white;
}
.solution-card h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}
.solution-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.solution-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.feature-tag {
  background: #e3f2fd;
  color: #458BFA;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}
.solution-case {
  font-size: 0.85rem;
  color: #888;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

/* 数据大屏样式 */
.data-dashboard {
  padding: 80px 0;
  background: #fff;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.dashboard-item {
  text-align: center;
  padding: 30px 20px;
  background: #f8faff;
  border-radius: 16px;
  transition: all 0.3s;
}
.dashboard-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.dashboard-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #458BFA;
  margin-bottom: 10px;
}
.dashboard-label {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}
.dashboard-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* 客户案例样式 */
.customer-cases {
  padding: 80px 0;
  background: #f8faff;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.case-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.case-logo {
  width: 80px;
  height: 80px;
  background: #f0f8ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.case-logo img {
  max-width: 60px;
  max-height: 60px;
}
.case-card h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}
.case-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.case-results {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: #f8faff;
  border-radius: 8px;
}
.result-label {
  font-size: 0.9rem;
  color: #666;
}
.result-value {
  font-size: 1rem;
  font-weight: bold;
  color: #458BFA;
}

/* 响应式适配 */
@media (max-width: 900px) {
  .solutions-grid,
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dashboard-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .industry-solutions,
  .data-dashboard,
  .customer-cases {
    padding: 60px 0;
  }
  .solutions-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solution-card,
  .case-card {
    padding: 24px;
  }
  .dashboard-item {
    padding: 24px 16px;
  }
  .dashboard-number {
    font-size: 2rem;
  }
  .dashboard-label {
    font-size: 1rem;
  }
  .solution-icon,
  .case-logo {
    width: 60px;
    height: 60px;
  }
  .solution-icon i {
    font-size: 28px;
  }
  .case-logo img {
    max-width: 40px;
    max-height: 40px;
  }
}

/* 响应式适配 */
@media (max-width: 900px) {
  .service-grid,
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .interactive-content {
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .service-guarantee,
  .certifications,
  .faq-section,
  .interactive-section {
    padding: 60px 0;
  }
  .service-grid,
  .cert-grid {
    grid-template-columns: 1fr;
  }
  .service-card,
  .cert-card {
    padding: 24px;
  }
  .service-icon,
  .cert-icon {
    width: 60px;
    height: 60px;
  }
  .service-icon i,
  .cert-icon i {
    font-size: 28px;
  }
  .interactive-left h3 {
    font-size: 1.5rem;
  }
  .interactive-actions {
    flex-direction: column;
    gap: 10px;
  }
  .demo-info {
    padding: 24px;
  }
  .faq-question {
    padding: 16px 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 0 20px 16px;
  }
}

/* 行业对比样式 */
.industry-comparison {
	padding: 80px 0;
	background: #f8faff;
}

.comparison-content {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.comparison-table {
	width: 100%;
}

.table-header {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	background: linear-gradient(135deg, #458BFA 0%, #667eea 100%);
	color: white;
	font-weight: 600;
}

.header-item {
	padding: 20px 16px;
	text-align: center;
	font-family: Source Han Sans CN;
	font-size: 16px;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.header-item:last-child {
	border-right: none;
}

.table-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	border-bottom: 1px solid #f0f0f0;
	transition: all 0.3s ease;
}

.table-row:hover {
	background: #f8faff;
}

.table-row:last-child {
	border-bottom: none;
}

.row-item {
	padding: 16px;
	text-align: center;
	font-family: Source Han Sans CN;
	font-size: 14px;
	color: #333333;
	border-right: 1px solid #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.row-item:first-child {
	font-weight: 600;
	text-align: left;
	justify-content: flex-start;
}

.row-item:last-child {
	border-right: none;
}

.row-item.highlight {
	color: #458BFA;
	font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 768px) {
	.industry-comparison {
		padding: 60px 0;
	}
	
	.table-header,
	.table-row {
		grid-template-columns: 1fr;
		gap: 8px;
	}
	
	.header-item,
	.row-item {
		padding: 12px 16px;
		border-right: none;
		border-bottom: 1px solid #f0f0f0;
		text-align: left;
		justify-content: flex-start;
	}
	
	.header-item:last-child,
	.row-item:last-child {
		border-bottom: none;
	}
	
	.row-item:first-child {
		background: #f8faff;
		font-weight: 600;
	}
	
	.row-item:nth-child(2),
	.row-item:nth-child(3) {
		background: white;
	}
}

@media (max-width: 480px) {
	.industry-comparison {
		padding: 40px 0;
	}
	
	.header-item,
	.row-item {
		padding: 10px 12px;
		font-size: 12px;
	}
}