/* 成品站内容区（与模板 mystyle 并存） */
/* 首页板块背景需通栏；内容宽度由各 *-inner 控制 */
.allcontain {
	max-width: none;
	width: 100%;
	margin: 0;
}
.page-hero {
	padding: 36px 20px 20px;
	text-align: center;
	background: linear-gradient(180deg, #f5f7fa 0%, #fff 100%);
	border-bottom: 1px solid #e6e6e6;
}
.page-hero h1 {
	margin: 0 0 8px;
	font-size: 28px;
	color: #1a1a1a;
}
.page-hero p {
	margin: 0 auto;
	max-width: 640px;
	color: #666;
	line-height: 1.6;
}

/* 业务范围页顶部大图 */
.business-banner {
	position: relative;
	height: 480px;
	overflow: hidden;
	background: #e8eef5;
}
.business-banner-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}
.business-banner-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background:
		linear-gradient(105deg, rgba(245, 247, 251, 0.88) 0%, rgba(236, 241, 247, 0.72) 48%, rgba(226, 232, 240, 0.45) 100%),
		linear-gradient(180deg, transparent 68%, rgba(255, 255, 255, 0.55) 100%);
}
.business-banner-content {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	height: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 88px 24px 48px;
}
.business-banner-badge {
	display: inline-block;
	color: #0b5ed7;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.business-banner-content h1 {
	margin: 14px 0 14px;
	font-size: 48px;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.2;
}
.business-banner-content > p {
	margin: 0 0 28px;
	max-width: 560px;
	color: #475569;
	font-size: 16px;
	line-height: 1.7;
}
.business-banner-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.business-banner-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.business-banner-btn--primary {
	background: #0b5ed7;
	color: #fff;
	border: 1px solid #0b5ed7;
}
.business-banner-btn--primary:hover {
	background: #0a53be;
	border-color: #0a53be;
	color: #fff;
	text-decoration: none;
}
.business-banner-btn--ghost {
	background: rgba(255, 255, 255, 0.55);
	color: #0f172a;
	border: 1px solid rgba(15, 23, 42, 0.2);
}
.business-banner-btn--ghost:hover {
	background: #fff;
	border-color: rgba(15, 23, 42, 0.35);
	color: #0f172a;
	text-decoration: none;
}
@media (max-width: 991px) {
	.business-banner {
		height: 400px;
	}
	.business-banner-content h1 {
		font-size: 36px;
	}
}
@media (max-width: 575px) {
	.business-banner {
		height: auto;
		min-height: 360px;
	}
	.business-banner-content {
		padding: 96px 20px 40px;
	}
	.business-banner-content h1 {
		font-size: 30px;
	}
	.business-banner-content > p {
		font-size: 14px;
		margin-bottom: 22px;
	}
	.business-banner-btn {
		width: 100%;
	}
}

.business-blocks {
	background: #f5f7fb;
}
.business-block {
	scroll-margin-top: 80px;
	padding: 72px 24px;
}
.business-block:nth-child(even) {
	background: #fff;
}
.business-block-inner {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 56px;
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
}
.business-block--reverse .business-block-inner {
	grid-template-columns: 1.05fr 1fr;
}
.business-block--reverse .business-block-copy {
	order: 2;
}
.business-block--reverse .business-block-media {
	order: 1;
}
.business-block-tag {
	display: inline-block;
	color: #3b82f6;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
}
.business-block-copy h2 {
	margin: 10px 0 14px;
	font-size: 34px;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.25;
}
.business-block-desc {
	margin: 0 0 28px;
	color: #64748b;
	font-size: 15px;
	line-height: 1.8;
}
.business-block-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-bottom: 24px;
}
.business-block-stat strong {
	display: block;
	color: #3b82f6;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
}
.business-block-stat span {
	display: block;
	margin-top: 6px;
	color: #94a3b8;
	font-size: 13px;
	line-height: 1.4;
}
.business-block-stats--cards .business-block-stat {
	padding: 14px 12px;
	border-radius: 12px;
	background: #f1f5f9;
	text-align: center;
}
.business-block-stats--cards .business-block-stat strong {
	font-size: 24px;
}
.business-block-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.business-block-list li {
	position: relative;
	padding: 8px 0 8px 28px;
	color: #64748b;
	font-size: 14px;
	line-height: 1.6;
}
.business-block-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 12px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #3b82f6 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M6.5 11.2L3.3 8l1.1-1.1 2.1 2.1 4.6-4.6L12.2 5.5z'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.business-block-sites {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}
.business-block-sites li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px 16px;
	border-radius: 12px;
	background: #fff;
	border: 1px solid #e2e8f0;
}
.business-block-site-num {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: #3b82f6;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
}
.business-block-sites strong {
	display: block;
	margin-bottom: 4px;
	color: #0f172a;
	font-size: 15px;
}
.business-block-sites span:not(.business-block-site-num) {
	color: #94a3b8;
	font-size: 13px;
	line-height: 1.5;
}
.business-block-media {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}
.business-block-media img {
	display: block;
	width: 100%;
	height: 360px;
	object-fit: cover;
}
.business-block-caption {
	position: absolute;
	left: 20px;
	bottom: 18px;
	z-index: 2;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-shadow: 0 1px 8px rgba(15, 23, 42, 0.45);
}
.business-block-media::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 42%;
	background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.45) 100%);
	pointer-events: none;
}
@media (max-width: 991px) {
	.business-block {
		padding: 48px 20px;
	}
	.business-block-inner,
	.business-block--reverse .business-block-inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.business-block--reverse .business-block-copy,
	.business-block--reverse .business-block-media {
		order: initial;
	}
	.business-block-copy h2 {
		font-size: 28px;
	}
	.business-block-media img {
		height: 280px;
	}
}
@media (max-width: 575px) {
	.business-block-stats {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.business-block-stat strong {
		font-size: 24px;
	}
	.business-block-media img {
		height: 220px;
	}
}

.page-section {
	padding: 40px 20px;
	max-width: 1000px;
	margin: 0 auto;
}
.page-section h2 {
	margin-top: 0;
	font-size: 22px;
	color: #222;
	border-left: 4px solid #336699;
	padding-left: 12px;
}
.page-section p,
.page-section li {
	color: #555;
	line-height: 1.8;
	font-size: 15px;
}
.core-services {
	background: linear-gradient(180deg, #eaf2fb 0%, #e4eef8 100%);
	padding: 56px 20px 64px;
}
.core-services-inner {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}
.core-badge {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 999px;
	background: #e8f1ff;
	color: #0b5ed7;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
}
.core-title {
	margin: 16px 0 10px;
	font-size: 32px;
	font-weight: 700;
	color: #1a1a1a;
	border: none !important;
	padding: 0 !important;
}
.core-lead {
	margin: 0 auto 36px;
	max-width: 560px;
	color: #666;
	font-size: 15px;
	line-height: 1.7;
}
.core-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	text-align: left;
}
.core-card {
	background: #fff;
	border-radius: 14px;
	padding: 28px 26px 24px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
	transition: box-shadow .2s, transform .2s;
}
.core-card:hover {
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
	transform: translateY(-2px);
}
.core-icon {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: #0b5ed7;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}
.core-icon svg {
	width: 24px;
	height: 24px;
}
.core-card h3 {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
}
.core-card p {
	margin: 0 0 18px;
	color: #666;
	font-size: 14px;
	line-height: 1.7;
	min-height: 3.4em;
}
.core-more {
	color: #0b5ed7;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}
.core-more:hover {
	color: #084298;
	text-decoration: none;
}
@media (max-width: 991px) {
	.core-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 575px) {
	.core-title {
		font-size: 26px;
	}
	.core-grid {
		grid-template-columns: 1fr;
	}
}
.about-us {
	padding: 56px 20px 64px;
	background: linear-gradient(180deg, #f8fafc 0%, #f3f6fa 100%);
}
.about-us-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 48px;
	align-items: stretch;
}
.about-us-badge {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 8px;
	background: #e8f1ff;
	color: #0b5ed7;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
}
.about-us-copy h2 {
	margin: 14px 0 16px;
	font-size: 32px;
	font-weight: 700;
	color: #1a1a1a;
	border: none !important;
	padding: 0 !important;
}
.about-us-copy .about-lead {
	margin: 0 0 12px;
	color: #666;
	font-size: 14px;
	line-height: 1.85;
}
.about-timeline {
	list-style: none;
	margin: 28px 0 0;
	padding: 0 0 0 18px;
	border-left: 2px solid #cfe0ff;
}
.about-timeline li {
	position: relative;
	padding: 0 0 24px 22px;
}
.about-timeline li:last-child {
	padding-bottom: 0;
}
.about-timeline li:before {
	content: "";
	position: absolute;
	left: -25px;
	top: 4px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #0b5ed7;
	box-shadow: 0 0 0 4px #e8f1ff;
}
.about-timeline .year {
	display: block;
	color: #0b5ed7;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 4px;
}
.about-timeline h3 {
	margin: 0 0 4px;
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a;
}
.about-timeline p {
	margin: 0;
	color: #666;
	font-size: 13px;
	line-height: 1.6;
}
.about-us-media {
	position: relative;
	min-height: 100%;
	align-self: stretch;
	overflow: hidden;
	border-radius: 24px;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}
.about-us-media img {
	position: absolute;
	left: 0;
	top: -8%;
	display: block;
	width: 100%;
	height: 116%;
	object-fit: cover;
	border-radius: 0;
	box-shadow: none;
	will-change: transform;
}
.about-badge-card {
	position: absolute;
	left: 20px;
	bottom: 24px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
	max-width: calc(100% - 40px);
}
.about-badge-card .check {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #e8f1ff;
	color: #0b5ed7;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.about-badge-card .check svg {
	width: 20px;
	height: 20px;
}
.about-badge-card strong {
	display: block;
	color: #1a1a1a;
	font-size: 16px;
	line-height: 1.2;
}
.about-badge-card span {
	display: block;
	color: #666;
	font-size: 12px;
	margin-top: 2px;
}
.about-us-more {
	display: inline-block;
	margin-top: 20px;
	color: #0b5ed7;
	font-weight: 600;
	text-decoration: none;
}
.about-us-more:hover {
	color: #084298;
	text-decoration: none;
}
/* 关键数据 */
.about-stats {
	background: #fff;
	padding: 48px 20px 56px;
	border-top: 1px solid #eef2f7;
}
.about-stats-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}
.about-stat strong {
	display: block;
	font-size: 42px;
	font-weight: 700;
	color: #0b5ed7;
	line-height: 1.2;
	letter-spacing: -0.02em;
}
.about-stat span {
	display: block;
	margin-top: 8px;
	color: #666;
	font-size: 14px;
	line-height: 1.5;
}
@media (max-width: 767px) {
	.about-stats-inner {
		grid-template-columns: 1fr 1fr;
		gap: 28px 16px;
	}
	.about-stat strong {
		font-size: 32px;
	}
}
@media (max-width: 420px) {
	.about-stats-inner {
		grid-template-columns: 1fr;
	}
}

/* 组织架构 */
.about-org {
	background: #e8eef6;
	padding: 64px 20px 72px;
}
.about-org-inner {
	max-width: 1180px;
	margin: 0 auto;
}
.about-org-head {
	text-align: center;
	margin-bottom: 40px;
}
.org-badge {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 999px;
	background: #e8f1ff;
	color: #0b5ed7;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
}
.about-org-head h2 {
	margin: 14px 0 0;
	font-size: 32px;
	font-weight: 700;
	color: #1a1a1a;
	border: none !important;
	padding: 0 !important;
}
.org-chart {
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow-x: auto;
	padding-bottom: 8px;
}
.org-node {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 28px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
	text-align: center;
	white-space: nowrap;
}
.org-node-primary {
	min-width: 160px;
	background: #0b5ed7;
	color: #fff;
	box-shadow: 0 6px 16px rgba(11, 94, 215, 0.22);
}
.org-node-company {
	min-width: 0;
	max-width: 220px;
	padding: 12px 16px;
	font-size: 14px;
	white-space: normal;
}
.org-vline {
	display: block;
	width: 2px;
	height: 24px;
	background: #c5ced8;
	flex-shrink: 0;
}
.org-branch {
	position: relative;
	width: 100%;
}
.org-hline {
	position: absolute;
	top: 0;
	height: 2px;
	background: #c5ced8;
}
.org-row {
	display: grid;
	width: 100%;
	gap: 16px;
}
.org-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 0;
}
.org-col .org-vline {
	height: 24px;
}
.org-branch-subs {
	width: 100%;
}
.org-branch-subs .org-hline {
	/* 三列等分 + gap:20px×2，横线两端对齐首尾列中心 */
	left: calc((100% - 40px) / 6);
	right: calc((100% - 40px) / 6);
}
.org-row-subs {
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	align-items: start;
}
.org-col-wuhan {
	width: 100%;
}
.org-col-hubei,
.org-col-shanghai {
	padding-top: 0;
}
.org-branch-depts {
	width: 100%;
}
.org-branch-depts .org-hline {
	/* 四列等分 + gap:12px×3，横线两端对齐首尾列中心 */
	left: calc((100% - 36px) / 8);
	right: calc((100% - 36px) / 8);
}
.org-row-depts {
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	align-items: start;
}
.org-dept-title {
	margin: 0;
	padding: 4px 0 10px;
	font-size: 15px;
	font-weight: 700;
	color: #1a1a1a;
	text-align: center;
	line-height: 1.4;
}
.org-tree {
	list-style: none;
	margin: 0;
	padding: 0 0 0 18px;
	width: 100%;
	max-width: 160px;
	position: relative;
}
.org-tree::before {
	content: "";
	position: absolute;
	left: 6px;
	top: 0;
	bottom: 14px;
	width: 2px;
	background: #c5ced8;
}
.org-tree li {
	position: relative;
	margin: 0 0 10px;
	padding: 0 0 0 14px;
	font-size: 13px;
	font-weight: 500;
	color: #334155;
	line-height: 1.45;
	text-align: left;
}
.org-tree li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 12px;
	height: 2px;
	background: #c5ced8;
}
.org-tree-company {
	margin-top: 0;
	max-width: 140px;
}
@media (max-width: 991px) {
	.org-row-subs {
		grid-template-columns: 1fr;
		max-width: 560px;
		margin: 0 auto;
	}
	.org-branch-subs .org-hline,
	.org-branch-depts .org-hline {
		display: none;
	}
	.org-row-depts {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px 24px;
	}
	.org-node-company {
		max-width: 280px;
	}
	.org-tree {
		max-width: 180px;
	}
}
@media (max-width: 575px) {
	.about-org-head h2 {
		font-size: 26px;
	}
	.org-hline {
		display: none;
	}
	.org-row-subs,
	.org-row-depts {
		grid-template-columns: 1fr;
		width: 100%;
		max-width: 280px;
		margin-left: auto;
		margin-right: auto;
	}
	.org-node-primary {
		width: 100%;
		min-width: 0;
		max-width: none;
	}
	.org-node {
		white-space: normal;
	}
	.org-tree {
		max-width: 100%;
	}
}

/* 发展历程时间轴 */
.about-milestones {
	position: relative;
	padding: 72px 20px 56px;
	overflow: hidden;
	background: #f7f9fc;
}
.about-milestones-inner {
	position: relative;
	z-index: 1;
	max-width: 1100px;
	margin: 0 auto;
}
.about-milestones-head {
	text-align: center;
	margin-bottom: 48px;
}
.milestones-badge {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 999px;
	background: #e8f1ff;
	color: #0b5ed7;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
}
.about-milestones-head h2 {
	margin: 14px 0 0;
	font-size: 34px;
	font-weight: 700;
	color: #1a2b3c;
	border: none !important;
	padding: 0 !important;
}
.milestones-stage {
	display: grid;
	grid-template-columns: minmax(160px, 240px) 1fr;
	gap: 28px 40px;
	align-items: start;
	min-height: 420px;
	margin-bottom: 48px;
}
.milestones-year-block {
	padding-top: 4px;
}
.milestones-year-display {
	font-size: 84px;
	font-weight: 700;
	line-height: 0.95;
	letter-spacing: -0.03em;
	color: #0b5ed7;
}
.milestones-stage-title {
	margin: 16px 0 0;
	color: #334155;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.55;
}
.milestones-content {
	min-width: 0;
}
.milestones-events {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.milestones-events li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: #475569;
	font-size: 14px;
	line-height: 1.7;
}
.milestones-event-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 2px;
	color: #64748b;
}
.milestones-event-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}
.milestones-event-date {
	color: #0f172a;
	font-size: 14px;
	font-weight: 700;
}
.milestones-event-text {
	color: #475569;
}
.milestones-event-figure {
	display: block;
	padding-left: 32px;
}
.milestones-figure {
	margin: 4px 0 0;
	max-width: 420px;
}
.milestones-figure img {
	display: block;
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.milestones-figure figcaption {
	margin-top: 10px;
	color: #64748b;
	font-size: 13px;
	text-align: center;
}
.milestones-nav {
	display: flex;
	align-items: center;
	gap: 16px;
}
.milestones-nav-btn {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border: none;
	border-radius: 50%;
	background: rgba(11, 94, 215, 0.78);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .2s, transform .2s;
}
.milestones-nav-btn:hover {
	background: #0b5ed7;
	transform: scale(1.04);
}
.milestones-nav-btn svg {
	width: 18px;
	height: 18px;
}
.milestones-track-wrap {
	flex: 1;
	min-width: 0;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.milestones-track-wrap::-webkit-scrollbar {
	display: none;
}
.milestones-track {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	min-width: 420px;
	padding: 8px 8px 0;
}
.milestones-track:before {
	content: "";
	position: absolute;
	left: 18px;
	right: 18px;
	top: 15px;
	height: 2px;
	background: #c5d4e8;
}
.milestones-dot {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	width: 56px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	color: #64748b;
	font-size: 13px;
	font-weight: 600;
}
.milestones-dot-mark {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 2px solid #f7f9fc;
	background: #fff;
	box-shadow: 0 0 0 1.5px #94a3b8;
	transition: background .2s, box-shadow .2s, transform .2s;
}
.milestones-dot-label {
	letter-spacing: 0.02em;
}
.milestones-dot:hover .milestones-dot-mark {
	transform: scale(1.08);
	box-shadow: 0 0 0 1.5px #0b5ed7;
}
.milestones-dot.is-active {
	color: #0b5ed7;
}
.milestones-dot.is-active .milestones-dot-mark {
	background: #0b5ed7;
	border-color: #0b5ed7;
	box-shadow: 0 0 0 4px rgba(11, 94, 215, 0.18);
}
@media (max-width: 767px) {
	.about-milestones {
		padding: 56px 16px 40px;
	}
	.about-milestones-head {
		margin-bottom: 32px;
	}
	.about-milestones-head h2 {
		font-size: 28px;
	}
	.milestones-stage {
		grid-template-columns: 1fr;
		gap: 16px;
		min-height: 0;
		margin-bottom: 36px;
	}
	.milestones-year-display {
		font-size: 56px;
	}
	.milestones-stage-title {
		margin-top: 10px;
		font-size: 13px;
	}
	.milestones-events {
		gap: 14px;
	}
	.milestones-events li {
		font-size: 13px;
	}
	.milestones-figure {
		max-width: none;
	}
	.milestones-figure img {
		height: 160px;
	}
	.milestones-nav {
		gap: 10px;
	}
	.milestones-nav-btn {
		width: 36px;
		height: 36px;
	}
	.milestones-track {
		min-width: 360px;
	}
}

.about-honors {
	background: #fff;
	padding: 64px 20px 72px;
}
.about-honors-inner {
	max-width: 1100px;
	margin: 0 auto;
}
.about-honors-head {
	text-align: center;
	margin-bottom: 36px;
}
.honors-badge {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 999px;
	background: #0b5ed7;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
}
.about-honors-inner h2 {
	margin: 14px 0 10px;
	font-size: 32px;
	font-weight: 700;
	color: #1a1a1a;
	border: none !important;
	padding: 0 !important;
}
.about-honors-lead {
	margin: 0 auto;
	max-width: 520px;
	color: #666;
	font-size: 14px;
	line-height: 1.7;
}
.honors-card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.honors-card {
	background: #fff;
	border-radius: 14px;
	padding: 28px 18px 26px;
	text-align: center;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
	border: 1px solid #eef2f7;
	transition: transform .2s, box-shadow .2s;
}
.honors-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.honors-card--photo {
	padding: 0;
	overflow: hidden;
}
.honors-photo {
	margin: 0;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.honors-photo img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	background: #f7f8fa;
	padding: 16px 16px 8px;
}
.honors-photo figcaption {
	padding: 14px 18px 20px;
	text-align: center;
}
.honors-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 16px;
	border-radius: 14px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
}
.honors-icon svg {
	width: 26px;
	height: 26px;
}
.honors-icon-orange {
	background: linear-gradient(180deg, #ff9f43 0%, #f97316 100%);
}
.honors-icon-blue {
	background: linear-gradient(180deg, #3b82f6 0%, #0b5ed7 100%);
}
.honors-icon-green {
	background: linear-gradient(180deg, #34d399 0%, #10b981 100%);
}
.honors-icon-purple {
	background: linear-gradient(180deg, #a78bfa 0%, #7c3aed 100%);
}
.honors-card h3 {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.4;
}
.honors-card p {
	margin: 0;
	color: #666;
	font-size: 13px;
	line-height: 1.6;
}
@media (max-width: 991px) {
	.honors-card-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 575px) {
	.about-honors-inner h2 {
		font-size: 26px;
	}
	.honors-card-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 991px) {
	.about-us-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.about-us-media {
		min-height: 420px;
	}
}
@media (max-width: 575px) {
	.about-us-copy h2 {
		font-size: 26px;
	}
	.about-us-media {
		min-height: 300px;
	}
}

/* 关于西马：顶部轮播 + 企业简介 */
.about-banner {
	position: relative;
	height: 420px;
	overflow: hidden;
	background: #0b5ed7;
}
.about-banner-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}
.about-banner-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgba(248, 250, 252, 0.82) 0%, rgba(241, 245, 249, 0.68) 45%, rgba(226, 232, 240, 0.55) 100%),
		linear-gradient(180deg, transparent 72%, rgba(245, 247, 251, 0.55) 100%);
}
.about-banner-content {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
	pointer-events: none;
}
.about-banner-badge {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 8px;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.06);
	color: #0b5ed7;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
}
.about-banner-badge::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #0b5ed7;
	flex-shrink: 0;
}
.about-banner-content h1 {
	margin: 14px 0 10px;
	font-size: 44px;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.2;
}
.about-banner-content p {
	margin: 0;
	color: #475569;
	font-size: 16px;
	line-height: 1.6;
}

/* 关于页内部导航 */
html {
	scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}
.about-subnav {
	position: sticky;
	top: 88px;
	z-index: 900;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid #e6eaf0;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.about-subnav-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.about-subnav a {
	flex: 0 0 auto;
	padding: 14px 18px;
	color: #666;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: color .2s, border-color .2s;
	white-space: nowrap;
}
.about-subnav a:hover {
	color: #0b5ed7;
	text-decoration: none;
}
.about-subnav a.is-active {
	color: #0b5ed7;
	border-bottom-color: #0b5ed7;
}
#profile,
#organization,
#milestones,
#honors {
	scroll-margin-top: 152px;
}
@media (max-width: 767px) {
	.about-subnav {
		top: 80px;
	}
	.about-subnav a {
		padding: 12px 14px;
		font-size: 13px;
	}
	#profile,
	#organization,
	#milestones,
	#honors {
		scroll-margin-top: 136px;
	}
}

.about-profile {
	padding: 64px 20px 72px;
	background: #fff;
}
.about-profile-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 36px;
}
.about-profile-badge {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 999px;
	background: #e8f1ff;
	color: #0b5ed7;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
}
.about-profile-copy h2 {
	margin: 16px 0 18px;
	font-size: 32px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.35;
	border: none !important;
	padding: 0 !important;
}
.about-profile-copy .about-profile-media {
	margin: 0 0 24px;
}
.about-profile-copy p {
	margin: 0 0 14px;
	color: #555;
	font-size: 15px;
	line-height: 1.9;
}
.about-em {
	color: #0b5ed7;
	font-weight: 700;
}
.about-profile-highlights {
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 28px;
}
.about-profile-highlights li {
	position: relative;
	padding-left: 18px;
	color: #333;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
}
.about-profile-highlights li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #0b5ed7;
}
.about-profile-media {
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}
.about-profile-media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 21 / 9;
	object-fit: cover;
}
@media (max-width: 991px) {
	.about-banner {
		height: 320px;
	}
	.about-banner-content h1 {
		font-size: 36px;
	}
	.about-profile-inner {
		gap: 28px;
	}
	.about-profile-media img {
		aspect-ratio: 16 / 9;
	}
}
@media (max-width: 575px) {
	.about-banner {
		height: 260px;
	}
	.about-banner-content h1 {
		font-size: 28px;
	}
	.about-banner-content p {
		font-size: 14px;
	}
	.about-profile {
		padding: 48px 16px 56px;
	}
	.about-profile-copy h2 {
		font-size: 24px;
	}
	.about-profile-highlights {
		flex-direction: column;
		gap: 10px;
	}
}
.news-dynamics {
	background: linear-gradient(180deg, #f2f6f4 0%, #eef3f1 100%);
	padding: 56px 20px 64px;
}
.news-dynamics-inner {
	max-width: 1100px;
	margin: 0 auto;
}
.news-dynamics-head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 28px;
}
.news-dynamics-head .core-badge {
	display: inline-block;
	margin-bottom: 10px;
}
.news-dynamics-head h2 {
	margin: 0;
	font-size: 32px;
	font-weight: 700;
	color: #1a1a1a;
	border: none !important;
	padding: 0 !important;
}
.news-dynamics-all {
	color: #0b5ed7;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}
.news-dynamics-all:hover {
	color: #084298;
	text-decoration: none;
}
.news-card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.news-card {
	display: block;
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
	text-decoration: none !important;
	color: inherit;
	transition: box-shadow .2s, transform .2s;
}
.news-card:hover {
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
	transform: translateY(-2px);
}
.news-card-media {
	position: relative;
	height: 180px;
	overflow: hidden;
}
.news-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1);
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}
.news-card:hover .news-card-media img {
	transform: scale(1.12);
}
.news-card-tag {
	position: absolute;
	left: 14px;
	top: 14px;
	z-index: 1;
	padding: 4px 12px;
	border-radius: 999px;
	background: #0b5ed7;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
}
.news-card-body {
	padding: 18px 18px 22px;
}
.news-card-date {
	display: block;
	margin-bottom: 8px;
	color: #999;
	font-size: 13px;
}
.news-card-body h3 {
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.45;
}
.news-card:hover .news-card-body h3,
.news-card.is-accent h3 {
	color: #0b5ed7;
}
.news-card-body p {
	margin: 0;
	color: #666;
	font-size: 13px;
	line-height: 1.7;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
@media (max-width: 991px) {
	.news-card-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 575px) {
	.news-dynamics-head h2 {
		font-size: 26px;
	}
	.news-card-grid {
		grid-template-columns: 1fr;
	}
}

/* —— 新闻媒体页 —— */
.news-banner {
	position: relative;
	height: 420px;
	overflow: hidden;
	background: #0b5ed7;
}
.news-banner-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}
.news-banner-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgba(248, 250, 252, 0.82) 0%, rgba(241, 245, 249, 0.68) 45%, rgba(226, 232, 240, 0.55) 100%),
		linear-gradient(180deg, transparent 72%, rgba(245, 247, 251, 0.55) 100%);
}
.news-banner-content {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
}
.news-banner-badge {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 8px;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.06);
	color: #0b5ed7;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
}
.news-banner-badge::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #0b5ed7;
	flex-shrink: 0;
}
.news-banner-content h1 {
	margin: 14px 0 10px;
	font-size: 44px;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.2;
}
.news-banner-content p {
	margin: 0;
	color: #475569;
	font-size: 16px;
	line-height: 1.6;
}
@media (max-width: 991px) {
	.news-banner {
		height: 320px;
	}
	.news-banner-content h1 {
		font-size: 36px;
	}
}
@media (max-width: 575px) {
	.news-banner {
		height: 260px;
	}
	.news-banner-content h1 {
		font-size: 28px;
	}
	.news-banner-content p {
		font-size: 14px;
	}
}

.news-page {
	background: #f5f7fb;
	padding: 40px 20px 64px;
}
.news-page-inner {
	max-width: 1100px;
	margin: 0 auto;
}
.news-block {
	margin-bottom: 40px;
}
.news-block-title {
	margin: 0 0 20px;
	padding-left: 12px;
	border-left: 4px solid #0b5ed7;
	font-size: 20px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.2;
}
.news-tag {
	position: absolute;
	left: 12px;
	top: 12px;
	z-index: 1;
	padding: 3px 10px;
	border-radius: 4px;
	background: #0b5ed7;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
}
.news-tag-notice {
	background: #d97706;
}
.news-tag-industry {
	background: #334155;
}
.news-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: #999;
	font-size: 13px;
}
.news-meta-date,
.news-meta-views {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: #999;
	font-size: 13px;
}
.news-meta-date svg,
.news-meta-views svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
	flex-shrink: 0;
}

.news-featured {
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	gap: 20px;
	align-items: stretch;
}
.news-feature-main {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #e8ecf1;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
	text-decoration: none !important;
	color: inherit;
	transition: box-shadow .2s, transform .2s;
}
.news-feature-main:hover {
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
	transform: translateY(-2px);
}
.news-feature-main-media {
	position: relative;
	height: 260px;
	overflow: hidden;
}
.news-feature-main-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-feature-main:hover .news-feature-main-media img {
	transform: scale(1.06);
}
.news-feature-main-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 20px 22px 22px;
}
.news-feature-main-body h3 {
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.4;
}
.news-feature-main:hover .news-feature-main-body h3 {
	color: #0b5ed7;
}
.news-feature-main-body p {
	margin: 0 0 18px;
	color: #666;
	font-size: 14px;
	line-height: 1.7;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.news-feature-main-body .news-meta {
	margin-top: auto;
}

.news-feature-side {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.news-feature-side-card {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #e8ecf1;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
	text-decoration: none !important;
	color: inherit;
	transition: box-shadow .2s, transform .2s;
}
.news-feature-side-card:hover {
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
	transform: translateY(-2px);
}
.news-feature-side-media {
	position: relative;
	height: 110px;
	overflow: hidden;
	flex-shrink: 0;
}
.news-feature-side-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-feature-side-card:hover .news-feature-side-media img {
	transform: scale(1.06);
}
.news-feature-side-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 14px 16px 16px;
}
.news-feature-side-body h3 {
	margin: 0 0 6px;
	font-size: 15px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.news-feature-side-card:hover .news-feature-side-body h3 {
	color: #0b5ed7;
}
.news-feature-side-body p {
	margin: 0 0 10px;
	color: #666;
	font-size: 13px;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.news-feature-side-body .news-meta-date {
	margin-top: auto;
}

.news-latest-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.news-latest-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #e8ecf1;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
	text-decoration: none !important;
	color: inherit;
	transition: box-shadow .2s, transform .2s;
}
.news-latest-card:hover {
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
	transform: translateY(-2px);
}
.news-latest-media {
	position: relative;
	height: 160px;
	overflow: hidden;
}
.news-latest-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-latest-card:hover .news-latest-media img {
	transform: scale(1.08);
}
.news-latest-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 16px 16px 18px;
}
.news-latest-body h3 {
	margin: 0 0 8px;
	font-size: 15px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.news-latest-card:hover .news-latest-body h3 {
	color: #0b5ed7;
}
.news-latest-body p {
	margin: 0 0 14px;
	color: #666;
	font-size: 13px;
	line-height: 1.65;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.news-latest-body .news-meta {
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid #f0f2f5;
}

.news-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 8px;
}
.news-page-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid #e2e8f0;
	background: #fff;
	color: #64748b;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none !important;
	transition: background .15s, color .15s, border-color .15s;
}
.news-page-btn:hover {
	border-color: #0b5ed7;
	color: #0b5ed7;
}
.news-page-btn.is-active {
	background: #0b5ed7;
	border-color: #0b5ed7;
	color: #fff;
}
.news-page-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	pointer-events: none;
}
button.news-page-btn {
	cursor: pointer;
	font-family: inherit;
	padding: 0;
}
.news-page-ellipsis {
	color: #94a3b8;
	font-size: 14px;
	padding: 0 2px;
	user-select: none;
}

.news-status {
	margin: 0 0 24px;
	padding: 14px 18px;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.6;
	background: #f1f5f9;
	color: #475569;
}
.news-status--loading {
	background: #eff6ff;
	color: #1d4ed8;
}
.news-status--empty {
	background: #f8fafc;
	color: #64748b;
}
.news-status--error {
	background: #fef2f2;
	color: #b91c1c;
}
.news-empty {
	grid-column: 1 / -1;
	margin: 0;
	padding: 32px 16px;
	text-align: center;
	color: #94a3b8;
	font-size: 14px;
}

.news-banner--detail {
	min-height: 220px;
}
.news-detail-back {
	color: rgba(255, 255, 255, 0.92) !important;
	text-decoration: none !important;
	font-size: 14px;
}
.news-detail-back:hover {
	text-decoration: underline !important;
}

.news-detail-page {
	padding: 40px 20px 72px;
	background: #f7f8fb;
}
.news-detail-inner {
	max-width: 820px;
	margin: 0 auto;
}
.news-article {
	background: #fff;
	border-radius: 12px;
	padding: 36px 40px 48px;
	box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}
.news-article-head {
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eef2f7;
}
.news-article-head .news-tag {
	margin-bottom: 12px;
}
.news-article-head h1 {
	margin: 0 0 14px;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.35;
	color: #1a2b3c;
	border: none !important;
	padding: 0 !important;
}
.news-article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	font-size: 13px;
	color: #64748b;
}
.news-article-cover {
	margin: 0 0 28px;
	border-radius: 10px;
	overflow: hidden;
}
.news-article-cover img {
	display: block;
	width: 100%;
	height: auto;
}
.news-article-body {
	font-size: 16px;
	line-height: 1.85;
	color: #334155;
	overflow-wrap: anywhere;
}
.news-article-body p {
	margin: 0 0 1em;
}
.news-article-body img {
	max-width: 100% !important;
	height: auto !important;
	display: block;
	margin: 16px auto;
}
.news-article-body section,
.news-article-body div {
	max-width: 100%;
}
.news-article-body a {
	color: #0b5ed7;
}

@media (max-width: 575px) {
	.news-article {
		padding: 24px 18px 36px;
		border-radius: 8px;
	}
	.news-article-head h1 {
		font-size: 22px;
	}
	.news-banner--detail {
		min-height: 180px;
	}
}

@media (max-width: 991px) {
	.news-featured {
		grid-template-columns: 1fr;
	}
	.news-feature-main-media {
		height: 220px;
	}
	.news-feature-side {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 16px;
	}
	.news-latest-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 575px) {
	.news-page {
		padding: 28px 16px 48px;
	}
	.news-feature-side {
		grid-template-columns: 1fr;
	}
	.news-feature-main-body h3 {
		font-size: 17px;
	}
	.news-latest-grid {
		grid-template-columns: 1fr;
	}
}

/* —— 首页企业文化区块 —— */
.culture-section {
	background: linear-gradient(180deg, #f3f4f9 0%, #eef0f6 100%);
	padding: 64px 20px 72px;
}
.culture-section-inner {
	max-width: 1100px;
	margin: 0 auto;
}
.culture-section-head {
	text-align: center;
	margin-bottom: 40px;
}
.culture-badge {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 999px;
	background: #0b5ed7;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
}
.culture-section-head h2 {
	margin: 14px 0 12px;
	font-size: 32px;
	font-weight: 700;
	color: #1a2b3c;
	border: none !important;
	padding: 0 !important;
}
.culture-section-head p {
	margin: 0 auto;
	max-width: 520px;
	color: #666;
	font-size: 15px;
	line-height: 1.7;
}
.culture-card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.culture-card {
	background: #fff;
	border-radius: 14px;
	padding: 36px 28px 32px;
	text-align: center;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
	border: 1px solid #eef2f7;
	transition: transform .2s, box-shadow .2s;
}
.culture-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.culture-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 18px;
	border-radius: 14px;
	background: #e8f1ff;
	color: #0b5ed7;
	display: flex;
	align-items: center;
	justify-content: center;
}
.culture-icon svg {
	width: 26px;
	height: 26px;
}
.culture-card h3 {
	margin: 0 0 14px;
	font-size: 20px;
	font-weight: 700;
	color: #1a2b3c;
}
.culture-card p {
	margin: 0;
	color: #666;
	font-size: 14px;
	line-height: 1.9;
}
@media (max-width: 991px) {
	.culture-card-grid {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin: 0 auto;
	}
}
@media (max-width: 575px) {
	.culture-section-head h2 {
		font-size: 26px;
	}
}

/* —— 企业文化页 —— */
.culture-banner {
	position: relative;
	height: 420px;
	overflow: hidden;
	background: #0b5ed7;
}
.culture-banner-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}
.culture-banner-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgba(248, 250, 252, 0.82) 0%, rgba(241, 245, 249, 0.68) 45%, rgba(226, 232, 240, 0.55) 100%),
		linear-gradient(180deg, transparent 72%, rgba(245, 247, 251, 0.55) 100%);
}
.culture-banner-content {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
}
.culture-banner-badge {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 8px;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.06);
	color: #0b5ed7;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
}
.culture-banner-badge::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #0b5ed7;
	flex-shrink: 0;
}
.culture-banner-content h1 {
	margin: 14px 0 10px;
	font-size: 44px;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.2;
}
.culture-banner-content p {
	margin: 0;
	color: #475569;
	font-size: 16px;
	line-height: 1.6;
}

.culture-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 12px 5px 10px;
	border-radius: 4px;
	background: #e8f1ff;
	color: #0b5ed7;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
}
.culture-tag::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 2px;
	background: #0b5ed7;
	flex-shrink: 0;
}

.culture-section-intro {
	text-align: center;
	margin-bottom: 40px;
}
.culture-section-intro .culture-tag {
	margin-bottom: 14px;
}
.culture-section-intro h2 {
	margin: 0;
	font-size: 30px;
	font-weight: 700;
	color: #1a2b3c;
	border: none !important;
	padding: 0 !important;
	line-height: 1.3;
}

.culture-mission {
	background: #fff;
	padding: 72px 20px 64px;
}
.culture-mission-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 48px;
	align-items: center;
}
.culture-mission-copy .culture-tag {
	margin-bottom: 28px;
}
.culture-mission-copy h2 {
	margin: 0 0 12px;
	font-size: 24px;
	font-weight: 700;
	color: #1a2b3c;
	border: none !important;
	padding: 0 !important;
}
.culture-mission-copy h2 + p {
	margin: 0 0 28px;
}
.culture-mission-copy p {
	margin: 0;
	color: #5a6a7a;
	font-size: 15px;
	line-height: 1.9;
}
.culture-mission-media {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}
.culture-mission-media img {
	display: block;
	width: 100%;
	height: 360px;
	object-fit: cover;
}

.culture-values {
	background: #f5f8fc;
	padding: 64px 20px 72px;
}
.culture-values-inner {
	max-width: 1100px;
	margin: 0 auto;
}
.culture-value-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.culture-value-card {
	background: #fff;
	border-radius: 14px;
	padding: 28px 28px 26px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
	border: 1px solid #eef2f7;
	transition: transform .2s, box-shadow .2s;
}
.culture-value-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.culture-value-icon {
	width: 44px;
	height: 44px;
	margin-bottom: 16px;
	border-radius: 50%;
	background: #e8f1ff;
	color: #0b5ed7;
	display: flex;
	align-items: center;
	justify-content: center;
}
.culture-value-icon svg {
	width: 22px;
	height: 22px;
}
.culture-value-card h3 {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 700;
	color: #0b5ed7;
}
.culture-value-card p {
	margin: 0;
	color: #666;
	font-size: 14px;
	line-height: 1.85;
}

.culture-spirit {
	background: #fff;
	padding: 64px 20px 56px;
}
.culture-spirit-inner {
	max-width: 860px;
	margin: 0 auto;
}
.culture-spirit-lead {
	margin: 16px auto 0;
	max-width: 720px;
	color: #5a6a7a;
	font-size: 15px;
	line-height: 1.9;
}
.culture-spirit-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
	text-align: center;
}
.culture-spirit-stat strong {
	display: block;
	font-size: 42px;
	font-weight: 700;
	color: #0b5ed7;
	line-height: 1.15;
	letter-spacing: -0.02em;
}
.culture-spirit-stat span {
	display: block;
	margin-top: 8px;
	color: #888;
	font-size: 14px;
	line-height: 1.5;
}

.culture-gallery {
	background: #f5f8fc;
	padding: 64px 20px 72px;
}
.culture-gallery-inner {
	max-width: 1100px;
	margin: 0 auto;
}
.culture-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	grid-auto-flow: dense;
}
.culture-gallery-item {
	margin: 0;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: #dce6f2;
}
.culture-gallery-item--feature {
	grid-column: 3 / 5;
	grid-row: span 2;
	aspect-ratio: auto;
	min-height: 0;
}
.culture-gallery-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}
.culture-gallery-item:hover img {
	transform: scale(1.04);
}

.culture-csr {
	background: #fff;
	padding: 64px 20px 72px;
}
.culture-csr-inner {
	max-width: 1100px;
	margin: 0 auto;
}
.culture-csr-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.culture-csr-media {
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 18px;
	aspect-ratio: 16 / 10;
	background: #e8eef6;
}
.culture-csr-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.culture-csr-card h3 {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 700;
	color: #0b5ed7;
}
.culture-csr-card p {
	margin: 0;
	color: #666;
	font-size: 14px;
	line-height: 1.85;
}

.culture-honors {
	background: #f5f8fc;
	padding: 64px 20px 72px;
}
.culture-honors-inner {
	max-width: 1100px;
	margin: 0 auto;
}
.culture-honors-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.culture-honor-card {
	background: #fff;
	border-radius: 14px;
	padding: 28px 18px 26px;
	text-align: center;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
	border: 1px solid #eef2f7;
	transition: transform .2s, box-shadow .2s;
}
.culture-honor-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.culture-honor-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 16px;
	border-radius: 14px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
}
.culture-honor-icon svg {
	width: 26px;
	height: 26px;
}
.culture-honor-icon-orange {
	background: linear-gradient(180deg, #ff9f43 0%, #f97316 100%);
}
.culture-honor-icon-blue {
	background: linear-gradient(180deg, #3b82f6 0%, #0b5ed7 100%);
}
.culture-honor-icon-green {
	background: linear-gradient(180deg, #34d399 0%, #10b981 100%);
}
.culture-honor-icon-purple {
	background: linear-gradient(180deg, #a78bfa 0%, #7c3aed 100%);
}
.culture-honor-card h3 {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.4;
}
.culture-honor-card p {
	margin: 0;
	color: #666;
	font-size: 13px;
	line-height: 1.6;
}

@media (max-width: 991px) {
	.culture-banner {
		height: 320px;
	}
	.culture-banner-content h1 {
		font-size: 36px;
	}
	.culture-mission-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.culture-mission-media img {
		height: 280px;
	}
	.culture-value-grid {
		grid-template-columns: 1fr;
		max-width: 520px;
		margin: 0 auto;
	}
	.culture-gallery-grid {
		grid-template-columns: 1fr 1fr;
	}
	.culture-gallery-item--feature {
		grid-column: 1 / -1;
		grid-row: auto;
		aspect-ratio: 16 / 9;
	}
	.culture-csr-grid {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin: 0 auto;
	}
	.culture-honors-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 575px) {
	.culture-banner {
		height: 260px;
	}
	.culture-banner-content h1 {
		font-size: 28px;
	}
	.culture-banner-content p {
		font-size: 14px;
	}
	.culture-section-intro h2 {
		font-size: 24px;
	}
	.culture-mission-copy h2 {
		font-size: 20px;
	}
	.culture-mission-media img {
		height: 220px;
	}
	.culture-spirit-stats {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.culture-spirit-stat strong {
		font-size: 34px;
	}
	.culture-gallery-grid {
		grid-template-columns: 1fr;
	}
	.culture-honors-grid {
		grid-template-columns: 1fr;
	}
}
.honor-list {
	list-style: none;
	padding: 0;
}
.honor-list li {
	padding: 12px 0 12px 28px;
	position: relative;
	border-bottom: 1px solid #f0f0f0;
}
.honor-list li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 18px;
	width: 10px;
	height: 10px;
	background: #336699;
	border-radius: 50%;
}
.contact-cards {
	padding: 36px 24px 28px;
	background: #fff;
}
.contact-cards-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.contact-card {
	background: #fff;
	border-radius: 18px;
	padding: 36px 32px;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
	border: 1px solid #f1f5f9;
}
.contact-card-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e8f1ff;
	color: #2563eb;
	margin-bottom: 22px;
}
.contact-card-icon svg {
	width: 26px;
	height: 26px;
}
.contact-card h2 {
	margin: 0 0 14px;
	font-size: 20px;
	font-weight: 700;
	color: #1e293b;
	border: none;
	padding: 0;
}
.contact-card-value {
	display: block;
	margin: 0 0 12px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.35;
	color: #2563eb;
	text-decoration: none;
	word-break: break-all;
}
.contact-card-value:hover,
.contact-card-value:focus {
	color: #1d4ed8;
	text-decoration: none;
}
.contact-card-address {
	margin: 0 0 10px;
	font-size: 16px;
	line-height: 1.6;
	color: #475569;
	font-weight: 500;
}
.contact-card-meta {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #94a3b8;
}
.contact-card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.contact-card-tags span {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 999px;
	background: #eef5ff;
	color: #3b82f6;
	font-size: 12px;
	line-height: 1.4;
}
.contact-location {
	padding: 28px 24px 72px;
	background: #fff;
}
.contact-location-inner {
	max-width: 1100px;
	margin: 0 auto;
}
.contact-location-head {
	margin-bottom: 24px;
}
.contact-location-badge {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 8px;
	background: #e8f1ff;
	color: #2563eb;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
}
.contact-location-head h2 {
	margin: 14px 0 0;
	font-size: 32px;
	font-weight: 700;
	color: #1e293b;
	border: none;
	padding: 0;
}
.contact-map {
	position: relative;
	display: block;
	max-width: 820px;
	height: auto;
	border-radius: 18px;
	overflow: hidden;
	background: #eef2f7;
	border: 1px solid #e8eef5;
	text-decoration: none;
	color: inherit;
}
.contact-map img {
	display: block;
	width: 100%;
	height: auto;
}
.contact-map-open {
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 10px;
	background: #fff;
	color: #1e293b;
	font-size: 14px;
	font-weight: 600;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.14);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-map-open svg {
	width: 18px;
	height: 18px;
	color: #2563eb;
}
.contact-map:hover .contact-map-open,
.contact-map:focus-visible .contact-map-open {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}
.contact-guide {
	margin-top: 20px;
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 22px 24px;
	border-radius: 16px;
	background: #f3f4f6;
}
.contact-guide-icon {
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e8f1ff;
	color: #2563eb;
}
.contact-guide-icon svg {
	width: 22px;
	height: 22px;
}
.contact-guide-body h3 {
	margin: 2px 0 8px;
	font-size: 18px;
	font-weight: 700;
	color: #1e293b;
}
.contact-guide-body p {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: #64748b;
}
@media (max-width: 991px) {
	.contact-cards-inner {
		grid-template-columns: 1fr;
		max-width: 520px;
	}
	.contact-location-head h2 {
		font-size: 28px;
	}
	.contact-map {
		max-width: 100%;
	}
}
@media (max-width: 575px) {
	.contact-cards {
		padding: 24px 16px 16px;
	}
	.contact-card {
		padding: 28px 22px;
	}
	.contact-card-value {
		font-size: 18px;
	}
	.contact-location {
		padding: 16px 16px 56px;
	}
	.contact-map {
		max-width: 100%;
	}
	.contact-guide {
		padding: 18px 16px;
	}
}
.site-footer {
	background: #0b1220;
	color: #9ca3af;
	padding: 56px 24px 28px;
	text-align: left;
	margin-top: 0;
}
.site-footer .footer-inner {
	max-width: 1100px;
	margin: 0 auto;
}
.site-footer .footer-main {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 36px 40px;
	padding-bottom: 40px;
}
.site-footer .footer-col {
	flex: 1 1 160px;
	min-width: 140px;
}
.site-footer .footer-brand {
	flex: 1.4 1 260px;
	max-width: 340px;
}
.site-footer .footer-brand-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}
.site-footer .footer-logo {
	height: 48px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
	flex-shrink: 0;
	padding: 8px 12px;
	background: #fff;
	border-radius: 10px;
}
.site-footer .footer-desc {
	margin: 0;
	font-size: 13px;
	line-height: 1.85;
	color: #9ca3af;
}
.site-footer .footer-col h4 {
	margin: 0 0 18px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
}
.site-footer .footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.site-footer .footer-col li {
	margin: 0 0 12px;
}
.site-footer .footer-col a {
	color: #9ca3af;
	text-decoration: none;
	font-size: 14px;
	transition: color .2s;
}
.site-footer .footer-col a:hover {
	color: #fff;
}
.site-footer .footer-social {
	display: flex;
	gap: 12px;
}
.site-footer .footer-social-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: #1a2332;
	color: #fff !important;
	transition: background .2s;
}
.site-footer .footer-social-btn:hover {
	background: #2a3548;
}
.site-footer .footer-social-btn svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}
/* —— 微信二维码弹层 —— */
body.wechat-qr-open {
	overflow: hidden;
}
.wechat-qr-modal {
	position: fixed;
	inset: 0;
	z-index: 10050;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 16px;
	background: rgba(15, 23, 42, 0.62);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}
.wechat-qr-modal[hidden] {
	display: none !important;
}
.wechat-qr-dialog {
	position: relative;
	width: min(720px, 100%);
	padding: 28px 24px 24px;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}
.wechat-qr-close {
	position: absolute;
	top: 10px;
	right: 12px;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: #64748b;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}
.wechat-qr-close:hover {
	background: #f1f5f9;
	color: #0f172a;
}
.wechat-qr-title {
	margin: 0 28px 18px 0;
	font-size: 18px;
	font-weight: 600;
	color: #0f172a;
}
.wechat-qr-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.wechat-qr-item {
	margin: 0;
	text-align: center;
}
.wechat-qr-item img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
	background: #f8fafc;
}
.wechat-qr-item figcaption {
	margin-top: 10px;
	font-size: 13px;
	color: #475569;
}
@media (max-width: 575px) {
	.wechat-qr-dialog {
		padding: 22px 14px 16px;
	}
	.wechat-qr-grid {
		grid-template-columns: 1fr;
		gap: 14px;
		max-height: min(70vh, 560px);
		overflow-y: auto;
	}
}
.site-footer .footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding-top: 20px;
	border-top: 1px solid #1e293b;
	font-size: 12px;
	color: #6b7280;
}
.site-footer .footer-bottom a {
	color: #6b7280;
	text-decoration: none;
}
.site-footer .footer-bottom a:hover {
	color: #9ca3af;
}
@media (max-width: 767px) {
	.site-footer {
		padding: 40px 20px 24px;
	}
	.site-footer .footer-brand {
		max-width: none;
	}
	.site-footer .footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}
/* —— 顶部导航 —— */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #fff;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
	transition: background .25s ease, box-shadow .25s ease;
}
.site-header-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 12px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.site-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none !important;
	flex-shrink: 0;
}
.site-brand img {
	height: 64px;
	width: auto;
	max-width: 300px;
	object-fit: contain;
	display: block;
}
.site-nav {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	justify-content: center;
}
.site-nav a {
	display: inline-block;
	padding: 8px 12px;
	color: #334155;
	font-size: 16px;
	text-decoration: none !important;
	border-bottom: 2px solid transparent;
	transition: color .2s, border-color .2s;
}
.site-nav a:hover {
	color: #0b5ed7;
}
.site-nav a.is-active {
	color: #0b5ed7;
	font-weight: 600;
	border-bottom-color: #0b5ed7;
}
.site-header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}
.site-search-btn {
	width: 36px;
	height: 36px;
	border: none;
	background: transparent;
	color: #64748b;
	border-radius: 50%;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: color .25s ease, background .25s ease;
}
.site-search-btn:hover {
	background: #f1f5f9;
	color: #0b5ed7;
}
.site-search-btn svg {
	width: 18px;
	height: 18px;
}
.site-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 9px 18px;
	border-radius: 999px;
	background: #0b5ed7;
	color: #fff !important;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none !important;
	white-space: nowrap;
	transition: background .25s ease, color .25s ease;
}
.site-cta:hover {
	background: #084298;
	color: #fff !important;
}
.site-nav-toggle {
	display: none;
	width: 40px;
	height: 40px;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background: #fff;
	cursor: pointer;
	transition: background .25s ease, border-color .25s ease;
}
.site-nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: #334155;
	transition: background .25s ease;
}

/* 首页：顶栏叠在 Banner 上，初始透明，滚动后变白 */
.site-header--over-hero {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	background: transparent;
	box-shadow: none;
}
.site-header--over-hero .site-nav a {
	color: rgba(255, 255, 255, 0.92);
}
.site-header--over-hero .site-nav a:hover,
.site-header--over-hero .site-nav a.is-active {
	color: #fff;
	border-bottom-color: #fff;
}
.site-header--over-hero .site-search-btn {
	color: #fff;
}
.site-header--over-hero .site-search-btn:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}
.site-header--over-hero .site-cta {
	background: #fff;
	color: #0b5ed7 !important;
}
.site-header--over-hero .site-cta:hover {
	background: #eef5ff;
	color: #0b5ed7 !important;
}
.site-header--over-hero .site-nav-toggle {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.35);
}
.site-header--over-hero .site-nav-toggle span {
	background: #fff;
}
.site-header--over-hero.is-solid {
	background: #fff;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}
/* 淡色 Banner 页：顶栏初始用深色文字，避免白字看不见 */
.site-header--over-light:not(.is-solid) .site-nav a {
	color: #334155;
}
.site-header--over-light:not(.is-solid) .site-nav a:hover,
.site-header--over-light:not(.is-solid) .site-nav a.is-active {
	color: #0b5ed7;
	border-bottom-color: #0b5ed7;
}
.site-header--over-light:not(.is-solid) .site-search-btn {
	color: #64748b;
}
.site-header--over-light:not(.is-solid) .site-search-btn:hover {
	background: #f1f5f9;
	color: #0b5ed7;
}
.site-header--over-light:not(.is-solid) .site-cta {
	background: #0b5ed7;
	color: #fff !important;
}
.site-header--over-light:not(.is-solid) .site-cta:hover {
	background: #0a54c2;
	color: #fff !important;
}
.site-header--over-light:not(.is-solid) .site-nav-toggle {
	background: #f1f5f9;
	border-color: #e2e8f0;
}
.site-header--over-light:not(.is-solid) .site-nav-toggle span {
	background: #334155;
}
.site-header--over-hero.is-solid .site-nav a {
	color: #334155;
}
.site-header--over-hero.is-solid .site-nav a:hover {
	color: #0b5ed7;
}
.site-header--over-hero.is-solid .site-nav a.is-active {
	color: #0b5ed7;
	border-bottom-color: #0b5ed7;
}
.site-header--over-hero.is-solid .site-search-btn {
	color: #64748b;
}
.site-header--over-hero.is-solid .site-search-btn:hover {
	background: #f1f5f9;
	color: #0b5ed7;
}
.site-header--over-hero.is-solid .site-cta {
	background: #0b5ed7;
	color: #fff !important;
}
.site-header--over-hero.is-solid .site-cta:hover {
	background: #084298;
	color: #fff !important;
}
.site-header--over-hero.is-solid .site-nav-toggle {
	background: #fff;
	border-color: #e2e8f0;
}
.site-header--over-hero.is-solid .site-nav-toggle span {
	background: #334155;
}

@media (max-width: 991px) {
	.site-header-inner {
		flex-wrap: wrap;
	}
	.site-nav-toggle {
		display: inline-block;
		margin-left: auto;
	}
	.site-header-actions .site-cta {
		display: none;
	}
	.site-nav {
		display: none;
		width: 100%;
		flex-direction: column;
		align-items: stretch;
		padding-top: 8px;
	}
	.site-nav.is-open {
		display: flex;
	}
	.site-nav a {
		border-bottom: none;
		padding: 12px 4px;
		border-left: 3px solid transparent;
	}
	.site-nav a.is-active {
		border-left-color: #0b5ed7;
		background: #f8fbff;
	}
	.site-header--over-hero:not(.is-solid) .site-nav.is-open a {
		color: #fff;
	}
	.site-header--over-hero:not(.is-solid) .site-nav.is-open a.is-active {
		background: rgba(255, 255, 255, 0.12);
		border-left-color: #fff;
	}
	.site-header--over-light:not(.is-solid) .site-nav.is-open a {
		color: #334155;
	}
	.site-header--over-light:not(.is-solid) .site-nav.is-open a.is-active {
		background: #f8fbff;
		border-left-color: #0b5ed7;
	}
	.site-header--over-hero.is-solid .site-nav a.is-active {
		border-left-color: #0b5ed7;
		background: #f8fbff;
	}
}

/* —— 首页 Banner 全屏轮播 —— */
.hero-banner {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 520px;
	overflow: hidden;
	color: #fff;
	background: #0b1220;
}
.hero-banner .carousel,
.hero-banner .carousel-inner,
.hero-banner .carousel-inner > .item {
	height: 100%;
}
.hero-banner .carousel-inner > .item {
	position: relative;
}
.hero-slide {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transform: scale(1.02);
}
.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(8, 28, 68, 0.5) 0%, rgba(8, 28, 68, 0.68) 45%, rgba(8, 28, 68, 0.82) 100%);
}
.hero-content {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 100%;
	max-width: 900px;
	padding: 20px 20px 48px;
	text-align: center;
}
.hero-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 13px;
	margin-bottom: 28px;
}
.hero-pill .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #22c55e;
	box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}
.hero-kicker {
	margin: 0 0 20px;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
}
.hero-content h1 {
	margin: 0 0 28px;
	font-size: 42px;
	font-weight: 700;
	line-height: 1.35;
	color: #fff;
}
.hero-desc {
	margin: 0 auto 40px;
	max-width: 640px;
	font-size: 15px;
	line-height: 2;
	color: rgba(255, 255, 255, 0.88);
}
.hero-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-bottom: 56px;
}
.btn-hero-primary {
	display: inline-flex;
	align-items: center;
	padding: 11px 22px;
	border-radius: 999px;
	background: #fff;
	color: #0b5ed7 !important;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none !important;
}
.btn-hero-primary:hover {
	background: #eef5ff;
}
.btn-hero-ghost {
	display: inline-flex;
	align-items: center;
	padding: 11px 22px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #fff !important;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none !important;
}
.btn-hero-ghost:hover {
	background: rgba(255, 255, 255, 0.18);
}
.hero-scroll {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	color: #fff;
}
.hero-scroll-mouse {
	position: relative;
	width: 22px;
	height: 34px;
	border: 1.5px solid rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	box-sizing: border-box;
}
.hero-scroll-mouse i {
	position: absolute;
	left: 50%;
	top: 7px;
	width: 3px;
	height: 7px;
	margin-left: -1.5px;
	border-radius: 2px;
	background: #fff;
	animation: hero-scroll-wheel 1.6s ease-in-out infinite;
}
.hero-scroll-text {
	font-size: 11px;
	letter-spacing: 0.22em;
	color: rgba(255, 255, 255, 0.92);
	font-weight: 500;
}
@keyframes hero-scroll-wheel {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	60% {
		opacity: 0;
		transform: translateY(8px);
	}
	100% {
		opacity: 0;
		transform: translateY(8px);
	}
}
.hero-banner .carousel-indicators {
	bottom: 28px;
	z-index: 3;
}
.hero-banner .carousel-indicators li {
	width: 10px;
	height: 10px;
	margin: 0 5px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.35);
}
.hero-banner .carousel-indicators .active {
	width: 10px;
	height: 10px;
	margin: 0 5px;
	background: #fff;
}
.hero-banner .carousel-control {
	z-index: 3;
	width: 8%;
	opacity: 0.7;
	background-image: none !important;
	filter: none;
}
.hero-banner .carousel-control:hover {
	opacity: 1;
}
.hero-banner .carousel-control .glyphicon {
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
@media (max-width: 767px) {
	.hero-banner {
		height: 100vh;
		min-height: 480px;
	}
	.hero-content h1 {
		font-size: 28px;
	}
	.hero-content {
		padding: 16px 16px 56px;
	}
	.hero-actions {
		margin-bottom: 24px;
	}
}

.header-bar {
	display: none;
}
.biz-anchor {
	scroll-margin-top: 80px;
	padding-top: 20px;
	margin-bottom: 48px;
}
.biz-anchor img {
	max-width: 100%;
	height: auto;
	margin: 16px 0;
	border: 1px solid #eee;
}

/* —— 滚动渐现 / 视差 —— */
.reveal {
	opacity: 0;
	transform: translate3d(0, 56px, 0);
	transition: opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}
.reveal.is-in {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}
@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.about-us-media img {
		transform: none !important;
	}
}
