.container {
	max-width: 1200px;
	margin: 0 auto;
}

/* ===== 按钮通用 ===== */
.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #4f46e5, #7c3aed);
	color: #fff;
	padding: 16px 40px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.1rem;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(79, 70, 229, 0.35);
}
.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(79, 70, 229, 0.45);
	background: linear-gradient(135deg, #4338ca, #6d28d9);
}
.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: transparent;
	color: #4f46e5;
	padding: 14px 36px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	border: 2px solid #4f46e5;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}
.btn-secondary:hover {
	background: #4f46e5;
	color: #fff;
	transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
	padding: 60px 0 80px;
	background: linear-gradient(165deg, #f8faff 0%, #eef2ff 100%);
	position: relative;
	overflow: hidden;
}
.hero::after {
	content: '';
	position: absolute;
	right: -10%;
	top: -30%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(79, 70, 229, 0.06) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	align-items: center;
	position: relative;
	z-index: 2;
}
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(79, 70, 229, 0.12);
	color: #4f46e5;
	padding: 6px 16px;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 20px;
	border: 1px solid rgba(79, 70, 229, 0.15);
}
.hero-badge i {
	font-size: 0.75rem;
}
.hero h1 {
	font-size: 3.2rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 20px;
	color: #1a1a2e;
}
.hero h1 .highlight {
	background: linear-gradient(135deg, #4f46e5, #7c3aed);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.hero p {
	font-size: 1.2rem;
	color: #4b5563;
	max-width: 520px;
	margin-bottom: 32px;
}
.hero-stats {
	display: flex;
	gap: 40px;
	margin-bottom: 36px;
	flex-wrap: wrap;
}
.hero-stats-item {
	display: flex;
	flex-direction: column;
}
.hero-stats-item .number {
	font-size: 2rem;
	font-weight: 800;
	color: #1a1a2e;
	line-height: 1.2;
}
.hero-stats-item .label {
	font-size: 0.85rem;
	color: #6b7280;
}
.hero-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}
.hero-visual-box {
	background: #ffffff;
	border-radius: 28px;
	padding: 20px 30px 40px 30px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
	width: 100%;
	max-width: 590px;
	border: 1px solid rgba(79, 70, 229, 0.08);
	position: relative;
}
.hero-visual-box .quote-icon {
	color: #4f46e5;
	font-size: 2.2rem;
	opacity: 0.2;
}
.hero-visual-box .ai-answer {
	background: #f8faff;
	border-radius: 16px;
	padding: 20px 24px;
	border-left: 4px solid #4f46e5;
	margin: 16px 0 20px;
}
.hero-visual-box .ai-answer p {
	font-size: 1rem;
	color: #1a1a2e;
	margin: 0;
}
.hero-visual-box .ai-answer .brand-mention {
	color: #4f46e5;
	font-weight: 700;
}
.hero-visual-box .tag-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 12px;
}
.hero-visual-box .tag-row span {
	background: #eef2ff;
	color: #4f46e5;
	padding: 4px 14px;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 500;
}

/* ===== 痛点 & 数据 ===== */
.section {
	padding: 70px 0;
}
.section-label {
	display: inline-block;
	background: rgba(79, 70, 229, 0.10);
	color: #4f46e5;
	padding: 4px 16px;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 12px;
}
.section-title {
	font-size: 2.4rem;
	font-weight: 800;
	color: #1a1a2e;
	margin-bottom: 16px;
}
.section-title .highlight {
	background: linear-gradient(135deg, #4f46e5, #7c3aed);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.section-desc {
	font-size: 1.1rem;
	color: #4b5563;
	margin-bottom: 40px;
}
.text-center {
	text-align: center;
}
.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

/* ===== 痛点卡片 ===== */
.pain-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 20px;
}
.pain-card {
	background: #fff;
	padding: 32px 28px;
	border-radius: 24px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	border: 1px solid #f0f2f8;
	transition: all 0.3s ease;
}
.pain-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}
.pain-card .icon {
	font-size: 2.2rem;
	color: #4f46e5;
	margin-bottom: 16px;
}
.pain-card h4 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 8px;
}
.pain-card p {
	color: #6b7280;
	font-size: 0.95rem;
}

/* ===== 解决方案 ===== */
.solution-section {
	background: linear-gradient(165deg, #1a1a2e, #2d2a5e);
	color: #fff;
}
.solution-section .section-label {
	background: rgba(255, 255, 255, 0.12);
	color: #a5b4fc;
}
.solution-section .section-title {
	color: #fff;
}
.solution-section .section-title .highlight {
	background: linear-gradient(135deg, #a5b4fc, #818cf8);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.solution-section .section-desc {
	color: #c7d2fe;
}

.solution-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 20px;
}
.solution-card {
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 32px 24px;
	border-radius: 24px;
	transition: all 0.3s ease;
}
.solution-card:hover {
	background: rgba(255, 255, 255, 0.10);
	transform: translateY(-4px);
}
.solution-card .icon {
	font-size: 2rem;
	color: #a5b4fc;
	margin-bottom: 14px;
}
.solution-card h4 {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: #fff;
}
.solution-card p {
	color: #c7d2fe;
	font-size: 0.95rem;
}

/* ===== 功能模块 ===== */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 20px;
}
.feature-item {
	background: #fff;
	padding: 28px 24px;
	border-radius: 20px;
	border: 1px solid #f0f2f8;
	transition: all 0.3s ease;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
}
.feature-item:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
	transform: translateY(-4px);
}
.feature-item .icon {
	font-size: 1.8rem;
	color: #4f46e5;
	margin-bottom: 12px;
}
.feature-item h4 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 6px;
}
.feature-item p {
	font-size: 0.9rem;
	color: #6b7280;
}

/* ===== 轮播图样式 ===== */
.carousel-section {
	padding: 60px 0 80px;
	background: #f8faff;
}
.carousel-container {
	position: relative;
	overflow: hidden;
	margin: 0 auto;
}
.carousel-track {
	display: flex;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.carousel-slide {
	min-width: 100%;
	box-sizing: border-box;
	padding: 20px 30px;
	display: flex;
	justify-content: center;
}
.slide-content {
	background: linear-gradient(135deg, #f0f4ff, #e8edff);
	border-radius: 32px;
	padding: 20px 10px;
	text-align: center;
	width: 100%;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
	transition: transform 0.3s ease;
}
.slide-content .icon {
	font-size: 4.2rem;
	color: #4f46e5;
}
.slide-content .icon img{display:block;width:100%;}
.slide-content h3 {
	font-size: 1.9rem;
	font-weight: 700;
	color: #1a1a2e;
}
.slide-content p {
	color: #4b5563;
	font-size: 1.1rem;
	line-height: 1.7;
	margin: 0 auto;
}
.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.9);
	border: none;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
	cursor: pointer;
	font-size: 1.2rem;
	color: #1a1a2e;
	transition: all 0.2s;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}
.carousel-btn:hover {
	background: #4f46e5;
	color: #fff;
	box-shadow: 0 4px 16px rgba(79, 70, 229, 0.3);
}
.carousel-btn.prev {
	left: 12px;
}
.carousel-btn.next {
	right: 12px;
}
.carousel-indicators {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 28px;
}
.carousel-indicators span {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #d1d5db;
	cursor: pointer;
	transition: 0.3s ease;
}
.carousel-indicators span.active {
	background: #4f46e5;
	width: 32px;
	border-radius: 20px;
}

/* ===== 双栏布局（数字资产 + 模式） ===== */
.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}
.two-col .content h3 {
	font-size: 1.8rem;
	font-weight: 800;
	margin-bottom: 16px;
}
.two-col .content p {
	color: #4b5563;
	margin-bottom: 16px;
}
.two-col .content ul {
	list-style: none;
	padding: 0;
}
.two-col .content ul li {
	padding: 8px 0;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: #1a1a2e;
}
.two-col .content ul li i {
	color: #4f46e5;
	font-size: 1.1rem;
	margin-top: 4px;
}
.two-col .content ul li strong{
	width:12%;
}
.asset-box {
	background: #fff;
	border-radius: 24px;
	padding: 32px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
	border: 1px solid #f0f2f8;
}
.asset-box .stat-row {
	display: flex;
	gap: 24px;
	margin: 16px 0;
	flex-wrap: wrap;
}
.asset-box .stat-row .stat {
	flex: 1;
	min-width: 80px;
}
.asset-box .stat-row .stat .num {
	font-size: 1.8rem;
	font-weight: 800;
	color: #4f46e5;
}
.asset-box .stat-row .stat .lbl {
	font-size: 0.85rem;
	color: #6b7280;
}

/* ===== 合作模式 ===== */
.mode-section {
	background: #f8faff;
}
.mode-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 20px;
}
.mode-card {
	background: #fff;
	padding: 28px 20px;
	border-radius: 20px;
	text-align: center;
	border: 1px solid #f0f2f8;
	transition: all 0.3s ease;
}
.mode-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}
.mode-card .icon {
	font-size: 2.2rem;
	color: #4f46e5;
	margin-bottom: 12px;
}
.mode-card h4 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 6px;
}
.mode-card p {
	font-size: 0.9rem;
	color: #6b7280;
}

/* ===== 对比表格 ===== */
.compare-box {
	background: #fff;
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
	border: 1px solid #f0f2f8;
	margin-top: 30px;
}
.compare-box table {
	width: 100%;
	border-collapse: collapse;
}
.compare-box th,
.compare-box td {
	padding: 16px 20px;
	text-align: left;
	border-bottom: 1px solid #f0f2f8;
}
.compare-box th {
	font-weight: 700;
	color: #1a1a2e;
	background: #f8faff;
	font-size: 1rem;
}
.compare-box td {
	color: #4b5563;
}
.compare-box .check {
	color: #4f46e5;
	font-weight: 700;
}
.compare-box .cross {
	color: #9ca3af;
}

/* ===== CTA ===== */
.cta-section {
	background: linear-gradient(135deg, #1a1a2e, #2d2a5e);
	color: #fff;
	padding: 70px 0;
	text-align: center;
}
.cta-section h2 {
	font-size: 2.6rem;
	font-weight: 800;
	margin-bottom: 16px;
}
.cta-section p {
	font-size: 1.15rem;
	color: #c7d2fe;
}
.cta-section .btn-primary {
	background: linear-gradient(135deg, #818cf8, #4f46e5);
	box-shadow: 0 8px 32px rgba(79, 70, 229, 0.4);
}
.cta-section .btn-primary:hover {
	box-shadow: 0 12px 40px rgba(79, 70, 229, 0.55);
}



/* ===== 响应式 ===== */
@media (max-width: 1024px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.hero-visual-box {
		max-width: 100%;
	}
	.solution-grid,
	.feature-grid,
	.pain-grid,
	.mode-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.two-col {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.2rem;
	}
	.hero-stats {
		gap: 20px;
	}
	.hero-stats-item .number {
		font-size: 1.5rem;
	}
	.section-title {
		font-size: 1.8rem;
	}
	.solution-grid,
	.feature-grid,
	.pain-grid,
	.mode-grid {
		grid-template-columns: 1fr;
	}
	.compare-box {
		padding: 20px;
		overflow-x: auto;
	}
	.cta-section h2 {
		font-size: 2rem;
	}
	.carousel-slide {
		padding: 12px 16px;
	}
	.slide-content {
		padding: 32px 20px;
	}
	.slide-content .icon {
		font-size: 3rem;
	}
	.slide-content h3 {
		font-size: 1.5rem;
	}
	.carousel-btn {
		width: 36px;
		height: 36px;
		font-size: 0.9rem;
	}
}

/*留言板*/
.message{display:block;padding:80px 0;background:#fff;}
.mestitle,.remarks{display:block;text-align:center;}
.mestitle .titleh{font-size:28px;color:#333;font-weight:700}
.mestitle .contp{font-size:20px;color:#666;margin-top:10px;}
.formd form{display:flex;justify-content:space-evenly;padding:0 200px;margin-top:40px;}
.formd form .xmane,.formd form .iphone{width:300px;position:relative;border:solid 1px #f0f3fa;box-sizing:border-box;}
.formd form .xmane input,.formd form .iphone input{display:block;width:100%;height:100%;box-sizing:border-box;line-height:60px;padding:20px 10px;padding-left:60px;font-size:14px;}
.formd form .xmane:before{display:block;position:absolute;left:15px;top:15px;content:'';background:url(../../images/xingming.png) no-repeat;width:30px;height:30px;}
.formd form .iphone:before{display:block;position:absolute;left:15px;top:15px;content:'';background:url(../../images/dianhua.png) no-repeat;width:30px;height:30px;}
.formd form .submit{width:180px;height:60px;}
.formd form .submit input{display:block;width:100%;height:100%;text-align:center;line-height:60px;background: linear-gradient(135deg, #4f46e5, #7c3aed);color:#fff;border:solid 1px #316fff;font-size:20px;cursor:pointer;box-sizing:border-box;}
.remarks{margin-top:30px;}
.remarks .main{font-size:24px;color:#333;font-weight:700}
.remarks .small{font-size:24px;margin-top:5px;color:#666;}
font{color:#f50303;font-weight:700;}