@import url('/hero-visual.css?v=20260810v');

/* ========== 子页面公共样式 ========== */
/* 主题色变量（各页面覆盖） */
:root {
	--tc: #0090ff;
	--tc-light: #40a9ff;
	--tc-rgb: 0, 144, 255;
}

.cms-layout:not(.cms-full) > div {
	max-width: 1380px
}

/* ========== Hero Banner ========== */
.page-hero {
	height: 360px;
	position: relative;
	padding: 80px 0 60px;
	background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, var(--tc) 100%);
	overflow: hidden;
}

.page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 80% 50%, rgba(var(--tc-rgb), .15) 0%, transparent 50%);
}

.page-hero-content {
	position: relative;
	z-index: 2;
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 20px;
}

.page-hero-badge {
	display: inline-block;
	padding: 6px 16px;
	background: rgba(var(--tc-rgb), .5);
	color: var(--tc-light);
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	margin: 10px 0;
}

.page-hero .page-hero-title {
	font-size: 42px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 16px;
}

.page-hero-desc {
	font-size: 18px;
	color: rgba(255, 255, 255, .8);
	line-height: 1.8;
	max-width: 700px;
}

/* ========== 内容区域 ========== */
.content-section {
	padding: 60px 0
}

.content-section.alt {
	background: #f8fafc
}

.section-title {
	text-align: center;
	margin-bottom: 48px;
}

.section-title h2 {
	font-size: 32px;
	color: #001b3b;
	margin-bottom: 12px;
}

.section-title p {
	color: #666;
	font-size: 16px;
}

/* ========== 功能卡片 ========== */
.feature-grid {
	display: grid;
	grid-template-columns:repeat(3, 1fr);
	gap: 24px;
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 20px;
}

.feature-card {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	padding: 32px;
	transition: all .3s;
	display: grid;
	grid-template-columns:56px 1fr;
	column-gap: 20px;
	align-items: start;
}

.feature-card:hover {
	box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
	transform: translateY(-4px);
}

.feature-icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	grid-column: 1;
	grid-row: 1 / -1;
}

.feature-card h3 {
	font-size: 20px;
	color: #001b3b;
	margin: 0 0 8px;
	grid-column: 2;
}

.feature-card p {
	color: #666;
	line-height: 1.8;
	font-size: 14px;
	margin: 0;
	grid-column: 2;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
	grid-column: 2;
}

.tag-list span {
	padding: 4px 12px;
	background: #f5f7fa;
	border-radius: 4px;
	font-size: 12px;
	color: #666;
}

/* ========== 痛点/核心图标 ========== */
.pain-icon {
	background: rgba(var(--tc-rgb), .1);
	color: var(--tc)
}

.core-icon {
	background: linear-gradient(135deg, var(--tc), var(--tc-light));
	color: #fff
}

/* ========== 方案卡片（xyfa/index用） ========== */
.solution-grid {
	display: grid;
	grid-template-columns:repeat(3, 1fr);
	gap: 24px;
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 20px;
}

.solution-card {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	overflow: hidden;
	transition: all .3s;
	text-decoration: none;
	display: block;
}

.solution-card:hover {
	box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
	transform: translateY(-4px);
}

.solution-card-top {
	height: 6px
}

.solution-card-body {
	padding: 32px 28px
}

.solution-card h3 {
	font-size: 20px;
	color: #001b3b;
	margin-bottom: 12px;
}

.solution-card p {
	color: #666;
	line-height: 1.8;
	font-size: 14px;
	margin-bottom: 16px;
}

.solution-card .tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 16px;
}

.solution-card .tags span {
	padding: 3px 10px;
	background: #f5f7fa;
	border-radius: 4px;
	font-size: 12px;
	color: #888;
}

.solution-card .more {
	font-size: 14px;
	font-weight: 600;
}

/* ========== CTA区域 ========== */
.cta-section {
	background: linear-gradient(135deg, #0a1628, #1e3a5f);
	padding: 60px 0;
	text-align: center;
}

.cta-section h2 {
	color: #fff;
	font-size: 32px;
	margin-bottom: 16px;
}

.cta-section p {
	color: rgba(255, 255, 255, .7);
	font-size: 16px;
	margin-bottom: 32px;
}

.cms-page a.cta-btn {
	display: inline-block;
	padding: 16px 48px;
	background: linear-gradient(135deg, var(--tc), var(--tc-light));
	color: #fff;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(var(--tc-rgb), .4);
	transition: all .3s;
}

.cms-page a.cta-btn:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(var(--tc-rgb), .5);
}

/* ========== 数据统计 ========== */
.stats-section {
	background: #fff;
	padding: 60px 0;
	border-top: 1px solid #f0f0f0;
	border-bottom: 1px solid #f0f0f0;
}

.stats-grid {
	display: grid;
	grid-template-columns:repeat(4, 1fr);
	gap: 40px;
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
}

.stat-number {
	font-size: 36px;
	font-weight: 800;
	color: var(--tc);
	margin-bottom: 8px;
}

.stat-label {
	font-size: 14px;
	color: #666;
}

/* ========== 联系方式卡片 ========== */
.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 20px;
}

.contact-grid-2 {
	grid-template-columns: repeat(2, 1fr);
	max-width: 920px;
}

.contact-card {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	padding: 36px 28px;
	text-align: center;
	transition: all .3s;
}

.contact-card:hover {
	box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
	transform: translateY(-4px);
}

.contact-icon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.contact-icon svg {
	width: 28px;
	height: 28px;
}

.contact-card h3 {
	font-size: 18px;
	color: #001b3b;
	margin: 0 0 12px;
}

.contact-main {
	font-size: 22px;
	font-weight: 700;
	color: var(--tc);
	margin: 0 0 6px;
	line-height: 1.3;
}

.contact-sub {
	font-size: 14px;
	color: #333;
	margin: 0 0 12px;
}

.contact-tip {
	font-size: 13px;
	color: #888;
	line-height: 1.6;
	margin: 0;
}

/* ========== 服务流程步骤 ========== */
.process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}

.process-step {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	padding: 32px 24px;
	position: relative;
	transition: all .3s;
}

.process-step:hover {
	box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
	transform: translateY(-4px);
}

.process-num {
	font-size: 28px;
	font-weight: 800;
	color: rgba(var(--tc-rgb), .2);
	margin-bottom: 12px;
	letter-spacing: .04em;
}

.process-step h3 {
	font-size: 18px;
	color: #001b3b;
	margin: 0 0 10px;
}

.process-step p {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
	margin: 0;
}

/* ========== FAQ ========== */
.faq-list {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-item {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 10px;
	padding: 0 24px;
	transition: border-color .2s, box-shadow .2s;
}

.faq-item[open] {
	border-color: rgba(var(--tc-rgb), .35);
	box-shadow: 0 6px 24px rgba(var(--tc-rgb), .08);
}

.faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 20px 28px 20px 0;
	font-size: 16px;
	font-weight: 600;
	color: #001b3b;
	position: relative;
	outline: none;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 22px;
	font-weight: 400;
	color: var(--tc);
	line-height: 1;
}

.faq-item[open] summary::after {
	content: '−';
}

.faq-item p {
	margin: 0 0 20px;
	padding-top: 0;
	border-top: 1px solid #f0f0f0;
	padding-top: 16px;
	font-size: 14px;
	color: #666;
	line-height: 1.8;
}

/* ========== 关于我们：简介双栏 ========== */
.about-intro {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 48px;
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 20px;
	align-items: start;
}

.about-label {
	display: inline-block;
	padding: 4px 12px;
	background: rgba(var(--tc-rgb), .1);
	color: var(--tc);
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 16px;
}

.about-intro-text h2 {
	font-size: 28px;
	color: #001b3b;
	margin: 0 0 20px;
	line-height: 1.4;
}

.about-intro-text p {
	font-size: 15px;
	color: #555;
	line-height: 1.9;
	margin: 0 0 14px;
}

.about-intro-panel {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.about-panel-item {
	background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
	border-radius: 12px;
	padding: 24px 28px;
	color: #fff;
}

.about-panel-item strong {
	display: block;
	font-size: 15px;
	color: var(--tc-light);
	margin-bottom: 8px;
	letter-spacing: .04em;
}

.about-panel-item span {
	font-size: 14px;
	color: rgba(255, 255, 255, .78);
	line-height: 1.7;
}

/* ========== 时间轴 ========== */
.timeline {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 36px;
	top: 8px;
	bottom: 8px;
	width: 2px;
	background: linear-gradient(180deg, var(--tc), rgba(var(--tc-rgb), .15));
}

.timeline-item {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 28px;
	margin-bottom: 28px;
	position: relative;
}

.timeline-item:last-child {
	margin-bottom: 0;
}

.timeline-year {
	width: 72px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	background: linear-gradient(135deg, var(--tc), var(--tc-light));
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	border-radius: 18px;
	position: relative;
	z-index: 1;
	box-shadow: 0 4px 12px rgba(var(--tc-rgb), .35);
}

.timeline-body {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	padding: 24px 28px;
	transition: all .3s;
}

.timeline-body:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 0, .06);
}

.timeline-body h3 {
	font-size: 18px;
	color: #001b3b;
	margin: 0 0 8px;
}

.timeline-body p {
	font-size: 14px;
	color: #666;
	line-height: 1.8;
	margin: 0;
}

