/* =========================================================================
   Acetop GS - 领峰环球贵金属平台主题
   主色调：#2283da
   ========================================================================= */

:root {
	--primary: #2283da;
	--primary-dark: #1b6cb8;
	--primary-darker: #155a99;
	--primary-soft: rgba(34, 131, 218, 0.08);
	--dark: #0a2540;
	--dark-2: #0e2f52;
	--text: #22303e;
	--text-light: #5b6b7b;
	--line: #e7edf3;
	--bg-light: #f5f9fd;
	--bg-white: #ffffff;
	--radius: 12px;
	--shadow: 0 6px 30px rgba(10, 37, 64, 0.08);
	--container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
	color: var(--text);
	background: var(--bg-white);
	line-height: 1.75;
	font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5 { line-height: 1.3; font-weight: 700; color: var(--dark); }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}
.skip-link:focus {
	position: fixed; top: 8px; left: 8px; z-index: 100000;
	width: auto; height: auto; clip: auto;
	padding: 8px 16px; background: var(--primary); color: #fff;
}

.global-container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 20px;
}

/* ---------- 按钮 ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 28px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all 0.25s ease;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }
.btn-ghost { border-color: #fff; color: #fff; background: transparent; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.btn-ghost-light { border-color: var(--primary); color: var(--primary); background: #fff; }
.btn-ghost-light:hover { background: var(--primary-soft); }
.btn-light { background: #fff; color: var(--primary-darker); }
.btn-light:hover { transform: translateY(-2px); color: var(--primary-darker); }
.btn-lg { padding: 15px 36px; font-size: 17px; }

/* ---------- 头部 ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--line);
}
.site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 72px;
}
.site-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.site-logo-text .logo-cn { font-size: 24px; font-weight: 800; color: var(--primary); letter-spacing: 2px; }
.site-logo-text .logo-en { font-size: 11px; color: var(--text-light); letter-spacing: 3px; }
.custom-logo { max-height: 56px; width: auto; }

.primary-menu { display: flex; gap: 6px; }
.primary-menu li { position: relative; }
.primary-menu a {
	display: block;
	padding: 10px 14px;
	color: var(--text);
	font-weight: 600;
	font-size: 15px;
	border-radius: 8px;
}
.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a { color: var(--primary); background: var(--primary-soft); }
.primary-menu .sub-menu {
	position: absolute;
	top: 100%; left: 0;
	min-width: 180px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 10px;
	box-shadow: var(--shadow);
	padding: 8px;
	display: none;
}
.primary-menu li:hover > .sub-menu { display: block; }

.site-header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta-btn { padding: 10px 22px; font-size: 15px; white-space: nowrap; }

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	padding: 8px;
	cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--dark); transition: 0.25s; }

/* ---------- 面包屑 ---------- */
.breadcrumb { padding: 16px 20px 0; }
.breadcrumb-list { display: flex; flex-wrap: wrap; gap: 6px; font-size: 13px; color: var(--text-light); }
.breadcrumb-list li + li::before { content: "/"; margin-right: 6px; color: #b9c5d0; }

/* ---------- Hero ---------- */
.hero {
	background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 55%, #143d6b 100%);
	color: #fff;
	position: relative;
	overflow: hidden;
	padding: 90px 0 100px;
}
.hero::after {
	content: "";
	position: absolute;
	right: -200px; top: -200px;
	width: 640px; height: 640px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(34, 131, 218, 0.45), transparent 70%);
	pointer-events: none;
}
.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 56px;
	align-items: center;
	position: relative;
	z-index: 1;
}
.hero h1 { color: #fff; font-size: 44px; margin-bottom: 20px; }
.hero h1 .hl { color: #6db3ef; }
.hero-sub { font-size: 17px; color: rgba(255, 255, 255, 0.85); margin-bottom: 20px; }
.hero-points { margin-bottom: 32px; }
.hero-points li {
	position: relative;
	padding-left: 26px;
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.92);
}
.hero-points li::before {
	content: "";
	position: absolute; left: 0; top: 11px;
	width: 10px; height: 10px;
	border-radius: 50%;
	background: var(--primary);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-card {
	background: transparent;
	border: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-card img {
	width: 100%;
	max-width: 480px;
	height: auto;
	filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.35));
}

/* ---------- 通用板块 ---------- */
.section { padding: 88px 0; }
.section-light { background: var(--bg-light); }
.section-white { background: var(--bg-white); }
.section-dark { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255, 255, 255, 0.82); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 52px; }
.section-head h2 { font-size: 34px; margin-bottom: 14px; }
.section-head p { color: var(--text-light); font-size: 17px; }
.section-dark .section-head p { color: rgba(255, 255, 255, 0.7); }

.list-title { font-size: 30px; }

/* ---------- 核心优势 ---------- */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}
.feature-item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 32px 26px;
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-item:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(34, 131, 218, 0.16); }
.feature-num {
	font-size: 15px;
	font-weight: 800;
	color: var(--primary);
	background: var(--primary-soft);
	width: 44px; height: 44px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 10px;
	margin-bottom: 18px;
}
.feature-item h3 { font-size: 19px; margin-bottom: 10px; }
.feature-item p { font-size: 14.5px; color: var(--text-light); }

/* ---------- 科普板块 ---------- */
.knowledge-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 56px;
	align-items: center;
}
.knowledge-body h2 { font-size: 32px; margin-bottom: 16px; }
.knowledge-body > p { margin-bottom: 20px; color: var(--text-light); }
.section-dark .knowledge-body > p { color: rgba(255, 255, 255, 0.82); }
.knowledge-note { margin-top: 18px; font-size: 15px; color: var(--text-light) !important; }
.knowledge-body .btn { margin-top: 10px; }

.dot-list { margin-bottom: 10px; }
.dot-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 14px;
	color: var(--text);
}
.dot-list li::before {
	content: "";
	position: absolute; left: 6px; top: 11px;
	width: 11px; height: 11px;
	border-radius: 50%;
	background: var(--primary);
}
.dot-list-light li { color: rgba(255, 255, 255, 0.9); }

.knowledge-visual {
	border-radius: 18px;
	padding: 36px 32px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-height: 360px;
	justify-content: center;
}
.kv-gold {
	background: linear-gradient(160deg, #123a63 0%, var(--primary-darker) 100%);
	box-shadow: var(--shadow);
}
.kv-dark {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.14);
}
.kv-title { font-size: 15px; letter-spacing: 2px; color: #9cc9f2; margin-bottom: 6px; }
.kv-item {
	background: rgba(255, 255, 255, 0.95);
	color: var(--dark);
	padding: 14px 20px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 17px;
}
.kv-dark .kv-item { background: rgba(255, 255, 255, 0.1); color: #fff; border: 1px solid rgba(255, 255, 255, 0.2); }

/* ---------- 开户四步 ---------- */
.steps-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	counter-reset: step;
	margin-bottom: 40px;
}
.step-item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 30px 24px;
	box-shadow: var(--shadow);
	position: relative;
}
.step-no {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	background: var(--primary);
	border-radius: 50px;
	padding: 4px 14px;
	margin-bottom: 14px;
}
.step-item h3 { font-size: 18px; margin-bottom: 10px; }
.step-item p { font-size: 14.5px; color: var(--text-light); }
.steps-cta { text-align: center; }

/* ---------- 文章列表 ---------- */
.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}
.post-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	display: flex;
	flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(34, 131, 218, 0.16); }
.post-card-thumb { display: block; height: 200px; overflow: hidden; background: var(--primary-soft); }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.post-card:hover .post-card-thumb img { transform: scale(1.05); }
.post-card-placeholder {
	display: flex; align-items: center; justify-content: center;
	height: 100%;
	color: var(--primary);
	font-weight: 700;
	letter-spacing: 2px;
}
.post-card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.post-card-title { font-size: 18px; margin-bottom: 10px; }
.post-card-title a { color: var(--dark); }
.post-card-title a:hover { color: var(--primary); }
.post-card-excerpt { font-size: 14px; color: var(--text-light); flex: 1; }
.post-card-meta {
	display: flex; align-items: center; justify-content: space-between;
	margin-top: 16px;
	font-size: 13px;
	color: var(--text-light);
}
.post-card-more { font-weight: 600; }

.empty-tip { text-align: center; color: var(--text-light); padding: 30px 0; }

.pagination { margin-top: 44px; text-align: center; }
.pagination .page-numbers {
	display: inline-flex;
	align-items: center; justify-content: center;
	min-width: 40px; height: 40px;
	padding: 0 12px;
	margin: 0 4px;
	border: 1px solid var(--line);
	border-radius: 8px;
	color: var(--text);
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ---------- 文章详情 ---------- */
.single-container { max-width: 860px; }
.single-header { margin-bottom: 28px; }
.single-header h1 { font-size: 32px; margin-bottom: 14px; }
.single-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 13.5px; color: var(--text-light); }
.single-thumb { margin-bottom: 28px; border-radius: var(--radius); overflow: hidden; }
.single-content { font-size: 16.5px; }
.single-content p { margin-bottom: 18px; }
.single-content h2, .single-content h3 { margin: 32px 0 14px; }
.single-content h2 { font-size: 24px; }
.single-content h3 { font-size: 20px; }
.single-content ul, .single-content ol { margin: 0 0 18px 24px; }
.single-content ul { list-style: disc; }
.single-content ol { list-style: decimal; }
.single-content li { margin-bottom: 8px; }
.single-content img { border-radius: 10px; margin: 10px 0; }
.single-content blockquote {
	border-left: 4px solid var(--primary);
	background: var(--primary-soft);
	padding: 14px 20px;
	border-radius: 0 10px 10px 0;
	margin-bottom: 18px;
}
.single-footer { margin-top: 36px; }
.single-cta {
	display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
	background: var(--primary-soft);
	border: 1px solid rgba(34, 131, 218, 0.25);
	border-radius: var(--radius);
	padding: 20px 26px;
}
.single-cta span { font-weight: 700; color: var(--dark); }
.post-nav { display: flex; justify-content: space-between; gap: 20px; margin-top: 30px; font-size: 14px; }

/* ---------- FAQ 手风琴 ---------- */
.faq-container { max-width: 880px; }
.accordion { display: flex; flex-direction: column; gap: 14px; }
.accordion-item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 12px;
	overflow: hidden;
	transition: border-color 0.25s ease;
}
.accordion-item.active { border-color: var(--primary); box-shadow: 0 8px 26px rgba(34, 131, 218, 0.12); }
.accordion-header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: none;
	border: 0;
	padding: 22px 26px;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
}
.accordion-question { font-size: 17px; font-weight: 700; color: var(--dark); }
.accordion-icon {
	position: relative;
	flex: 0 0 auto;
	width: 30px; height: 30px;
	border-radius: 50%;
	background: var(--primary-soft);
}
.accordion-icon::before,
.accordion-icon::after {
	content: "";
	position: absolute;
	top: 50%; left: 50%;
	background: var(--primary);
	transition: transform 0.25s ease;
}
.accordion-icon::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.accordion-icon::after { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.accordion-item.active .accordion-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}
.accordion-content p { padding: 0 26px 22px; color: var(--text-light); font-size: 15.5px; }
.accordion-item.active .accordion-content { max-height: 800px; }

/* ---------- 底部转化区 ---------- */
.section-cta {
	background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 100%);
	text-align: center;
}
.section-cta h2 { color: #fff; font-size: 32px; margin-bottom: 12px; }
.section-cta p { color: rgba(255, 255, 255, 0.9); margin-bottom: 28px; }
.cta-inner { display: flex; flex-direction: column; align-items: center; }

/* ---------- 页脚 ---------- */
.site-footer { background: var(--dark); color: rgba(255, 255, 255, 0.78); padding-bottom: 90px; }
.footer-top {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 2fr);
	gap: 48px;
	padding-top: 64px;
	padding-bottom: 44px;
}
.footer-logo { font-size: 26px; font-weight: 800; color: #fff; letter-spacing: 2px; }
.footer-desc { margin-top: 14px; font-size: 14.5px; max-width: 360px; }
.footer-widgets { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.footer-widget h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.footer-menu li { margin-bottom: 10px; }
.footer-menu a { color: rgba(255, 255, 255, 0.72); font-size: 14.5px; }
.footer-menu a:hover { color: #6db3ef; }
.footer-risk { font-size: 13px; line-height: 1.7; color: rgba(255, 255, 255, 0.55); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 20px 0 0; }
.footer-bottom-inner {
	display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
	font-size: 13px; color: rgba(255, 255, 255, 0.55);
}


.float-buttons {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0, 87, 177, 0.2);
	padding: 15px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 60px;
	box-sizing: border-box;
	z-index: 999;
	pointer-events: auto;
	backdrop-filter: blur(6px);
}
.float-btn {
	display: inline-block;
	padding: 12px 30px;
	background-color: var(--primary);
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-size: 20px;
	font-weight: 500;
	transition: background-color 0.3s ease, transform 0.2s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	min-width: 300px;
	text-align: center;
	position: relative;
	z-index: 1;
}
.float-btn:hover {
	background-color: var(--primary-dark);
	transform: translateY(-2px);
	color: #fff;
	text-decoration: none;
}


.qrcode-float {
	position: fixed;
	bottom: 250px;
	right: 40px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	z-index: 10000;
	width: 180px;
	transition: all 0.3s ease;
	background: linear-gradient(180deg, var(--primary) 0%, var(--primary-darker) 100%);
	background-size: cover;
	padding-top: 14px;
}
.qrcode-float::before {
	content: "官方APP下载";
	display: block;
	text-align: center;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 10px;
}
.qrcode-float:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.qrcode-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 20px 20px;
	background: #fff;
	border-radius: 0 0 12px 12px;
}
.qrcode-item { text-align: center; margin-bottom: 15px; width: 100%; }
.qrcode-item:last-child { margin-bottom: 0; }
.qrcode-item img {
	width: 180px;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 5px;
	background: #fff;
}
.qrcode-item p { margin-top: 8px; font-size: 16px; color: #333; font-weight: 500; }

/* =========================================================================
   M端隐藏悬浮二维码 + 底部悬浮按钮（按需求示例保持不变）
   ========================================================================= */
@media (max-width: 768px) {
	.qrcode-float,
	.float-buttons {
		display: none !important;
	}
}

/* ---------- 响应式 ---------- */
@media (max-width: 1080px) {
	.feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hero h1 { font-size: 36px; }
}

@media (max-width: 900px) {
	.primary-menu {
		display: none;
		position: absolute;
		top: 100%; left: 0; right: 0;
		flex-direction: column;
		background: #fff;
		border-bottom: 1px solid var(--line);
		box-shadow: var(--shadow);
		padding: 12px 20px 20px;
		gap: 2px;
	}
	.primary-menu.is-open { display: flex; }
	.primary-menu .sub-menu { position: static; display: block; box-shadow: none; border: 0; padding-left: 16px; }
	.nav-toggle { display: flex; }
	.header-cta-btn { display: none; }
	.hero-grid, .knowledge-grid { grid-template-columns: 1fr; gap: 36px; }
	.hero { padding: 56px 0 64px; }
	.section { padding: 60px 0; }
	.section-head h2, .knowledge-body h2, .section-cta h2 { font-size: 26px; }
	.footer-top { grid-template-columns: 1fr; gap: 32px; }
	.footer-widgets { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	.feature-grid, .steps-grid, .post-grid { grid-template-columns: 1fr; }
	.hero h1 { font-size: 29px; }
	.hero-quote-price { font-size: 40px; }
	.float-btn { min-width: 0; }
	.single-header h1 { font-size: 25px; }
}

/* =========================================================================
   V2 升级：页面横幅 / 博客列表+侧边栏 / APP板块 / 关于页 / 资金安全页
   ========================================================================= */

/* ---------- 页面横幅（列表/详情/单页顶部） ---------- */
.page-banner {
	background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, #143d6b 100%);
	color: #fff;
	padding: 56px 0;
	position: relative;
	overflow: hidden;
}
.page-banner::after {
	content: "";
	position: absolute;
	right: -140px; bottom: -180px;
	width: 420px; height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(34, 131, 218, 0.4), transparent 70%);
}
.page-banner-block { position: relative; z-index: 1; }
.page-banner-title { color: #fff; font-size: 34px; margin-bottom: 10px; }
.page-banner-nav { display: flex; flex-wrap: wrap; gap: 8px; font-size: 14px; color: rgba(255, 255, 255, 0.75); }
.page-banner-nav li + li::before { content: "/"; margin-right: 8px; color: rgba(255, 255, 255, 0.4); }
.page-banner-nav a { color: rgba(255, 255, 255, 0.75); }
.page-banner-nav a:hover { color: #6db3ef; }

/* ---------- 博客布局：主列 + 侧边栏 ---------- */
.blog-section { padding: 64px 0; }
.blog-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 32px;
	align-items: start;
}
.blog-main > * + * { margin-top: 26px; }

.blog-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.blog-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(34, 131, 218, 0.14); }
.blog-card-thumb { display: block; height: 200px; overflow: hidden; background: var(--primary-soft); }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.05); }
.blog-card-body { padding: 28px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta {
	display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
	font-size: 13px; font-weight: 600; color: var(--text-light);
}
.blog-card-meta li { display: inline-flex; align-items: center; gap: 6px; }
.blog-card-meta li + li::before { content: "·"; margin-right: 8px; color: #b9c5d0; }
.blog-card-meta a { color: inherit; }
.blog-card-meta a:hover { color: var(--primary); }
.blog-card-title { font-size: 19px; margin: 14px 0 10px; line-height: 1.45; }
.blog-card-title a { color: var(--dark); }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt {
	font-size: 14.5px; color: var(--text-light); flex: 1;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-more { margin-top: 16px; font-size: 14px; font-weight: 700; }

/* ---------- 侧边栏 ---------- */
.blog-aside { display: flex; flex-direction: column; gap: 26px; position: sticky; top: 92px; }
.aside-box {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 4px 40px rgba(0, 0, 0, 0.05);
}
.aside-title {
	position: relative;
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	color: var(--dark);
	padding-bottom: 10px;
	margin-bottom: 24px;
}
.aside-title::after {
	content: "";
	position: absolute; bottom: 0; left: 0;
	width: 100%; height: 2px;
	background: var(--primary);
	border-radius: 2px;
}
.aside-posts { display: flex; flex-direction: column; gap: 20px; }
.aside-post-item { display: flex; gap: 14px; align-items: flex-start; }
.aside-post-thumb {
	flex: 0 0 90px;
	height: 64px;
	border-radius: 6px;
	overflow: hidden;
	background: var(--primary-soft);
	display: flex; align-items: center; justify-content: center;
}
.aside-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.aside-post-placeholder { font-size: 12px; color: var(--primary); font-weight: 700; text-align: center; padding: 0 6px; }
.aside-post-body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.aside-post-date { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--text-light); }
.aside-post-title {
	font-size: 14.5px; font-weight: 700; color: var(--dark); line-height: 1.45;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.aside-post-title:hover { color: var(--primary); }
.aside-desc { font-size: 14px; color: var(--text-light); margin-bottom: 18px; }
.aside-btn { width: 100%; }
.aside-empty { font-size: 14px; color: var(--text-light); }
.aside-box-app { background: linear-gradient(160deg, var(--primary-soft), #fff); }
.aside-qr { display: flex; gap: 18px; justify-content: center; }
.aside-qr a { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text); }
.aside-qr img { width: 96px; height: 96px; object-fit: cover; border: 1px solid var(--line); border-radius: 8px; background: #fff; padding: 4px; }

/* ---------- APP 板块（part-app） ---------- */
.app-titlebox { text-align: center; margin-bottom: 36px; }
.app-title-img { display: inline-block; max-height: 96px; width: auto; }
.app-contentbox {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 40px;
	align-items: center;
}
.app-phone-img { width: 100%; max-width: 420px; margin: 0 auto; }
.app-subtitle img { max-height: 64px; width: auto; margin-bottom: 18px; }
.app-detailbox img { width: 100%; max-width: 520px; margin-bottom: 24px; }
.app-code { display: flex; gap: 22px; margin-bottom: 26px; flex-wrap: wrap; }

.app-btnbox { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.app-btn { display: inline-block; transition: transform 0.2s ease; }
.app-btn:hover { transform: translateY(-3px); }
.app-btn img { height: 52px; width: auto; }
.app-textbox { font-size: 13px; color: var(--text-light); line-height: 1.9; }
.app-textbox a { color: var(--primary); }

/* ---------- 关于领峰环球页 ---------- */
.about-stats-section { padding: 56px 0; }
.about-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}
.about-stat {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	text-align: center;
	padding: 32px 20px;
}
.about-stat strong { display: block; font-size: 36px; color: var(--primary); font-weight: 800; line-height: 1.2; }
.about-stat strong .unit { font-size: 18px; }
.about-stat span { font-size: 14px; color: var(--text-light); }
.about-block {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: 48px;
	padding: 44px 0;
	border-bottom: 1px solid var(--line);
}
.about-block:last-child { border-bottom: 0; padding-bottom: 0; }
.about-block-head h2 { font-size: 28px; margin-bottom: 12px; }
.about-block-lead { font-size: 15.5px; color: var(--primary); font-weight: 600; }
.about-block-body p { margin-bottom: 14px; color: var(--text-light); font-size: 15.5px; }
.about-honors {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}
.about-honor {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 24px 22px;
	font-weight: 700;
	color: var(--dark);
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: var(--shadow);
}
.about-honor::before {
	content: "";
	flex: 0 0 auto;
	width: 22px; height: 22px;
	border-radius: 50%;
	background: var(--primary);
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") no-repeat center / contain;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") no-repeat center / contain;
}

/* ---------- 资金安全页 ---------- */
.safety-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}
.safety-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 32px 26px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.safety-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(34, 131, 218, 0.16); }
.safety-card h3 { font-size: 19px; margin-bottom: 10px; }
.safety-card p { font-size: 14.5px; color: var(--text-light); }

/* ---------- APP下载页 · 应用信息 ---------- */
.app-info-container { max-width: 860px; }
.app-info-table {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
}
.app-info-row {
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 16px;
	padding: 18px 26px;
	font-size: 15px;
	border-bottom: 1px solid var(--line);
}
.app-info-row:last-child { border-bottom: 0; }
.app-info-row span { color: var(--text-light); }
.page-app-section { padding-bottom: 32px; }

/* ---------- 单页后台内容区 ---------- */
.page-content-section { padding-top: 24px; }

/* ---------- 响应式（V2 新增部分） ---------- */
@media (max-width: 1080px) {
	.blog-layout { grid-template-columns: minmax(0, 1fr) 320px; }
	.app-contentbox { grid-template-columns: 1fr; }
	.safety-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
	.blog-layout { grid-template-columns: 1fr; }
	.blog-aside { position: static; }
	.blog-list { grid-template-columns: 1fr; }
	.page-banner { padding: 40px 0; }
	.page-banner-title { font-size: 27px; }
	.part-app { padding: 32px 22px; }
	.about-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.about-block { grid-template-columns: 1fr; gap: 18px; }
	.about-honors { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
	.safety-grid, .about-honors { grid-template-columns: 1fr; }
	.app-code { gap: 14px; }
	.app-btn img { height: 44px; }
	.app-info-row { grid-template-columns: 1fr; gap: 4px; }
}

/* =========================================================================
   V3：首页APP板块改版 / 栏目标签 / APP下载页(adl) / 资金安全页(cs)
   ========================================================================= */

/* ---------- 首页 APP 板块（V2 文案式右栏 + 三列码钮对齐） ---------- */
.app-subtitle-text { margin-bottom: 18px; }
.app-subtitle-text h2 { font-size: 30px; color: var(--dark); }
.app-subtitle-text .app-slogan {
	display: inline-block;
	margin-top: 8px;
	padding: 6px 18px;
	border-radius: 50px;
	background: var(--primary-soft);
	color: var(--primary);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 2px;
}
.app-features { margin-bottom: 26px; }
.app-features li {
	position: relative;
	padding: 12px 0 12px 18px;
	border-bottom: 1px dashed var(--line);
}
.app-features li:last-child { border-bottom: 0; }
.app-features li::before {
	content: "";
	position: absolute; left: 0; top: 22px;
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--primary);
}
.app-feature-name {
	display: block;
	font-weight: 800;
	font-size: 17px;
	color: var(--dark);
	margin-bottom: 2px;
}
.app-features p { font-size: 14.5px; color: var(--text-light); }

/* 三列布局：二维码 + 标签 + 下载按钮 一一对齐 */
.app-code {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-bottom: 22px;
}
.app-code-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 16px 12px;
	box-shadow: var(--shadow);
}

.app-code-label { font-size: 15px; font-weight: 700; color: var(--dark); }
.app-dl-btn { display: block; width: 100%; transition: transform 0.2s ease; }
.app-dl-btn:hover { transform: translateY(-2px); }
.app-dl-btn img { width: 100%; max-width: 150px; height: auto; margin: 0 auto; }

/* ---------- 首页栏目标签 & 卡片栏目角标 ---------- */
.cat-chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin: -24px 0 40px;
}
.cat-chips a {
	display: inline-block;
	padding: 8px 20px;
	border-radius: 50px;
	border: 1px solid var(--line);
	background: #fff;
	color: var(--text);
	font-size: 14.5px;
	font-weight: 600;
	transition: all 0.2s ease;
}
.cat-chips a:hover {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}
.post-card-thumb { position: relative; }
.post-card-cat {
	position: absolute;
	left: 14px; bottom: 14px;
	padding: 4px 14px;
	border-radius: 50px;
	background: rgba(34, 131, 218, 0.92);
	color: #fff;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 1px;
}
.post-card-cats { margin-bottom: 8px; }
.post-card-cats a {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	color: var(--primary);
}

/* ---------- APP下载页（adl，1:1 还原官方四屏） ---------- */
.adl-section {
	background: #0b0b0d;
	color: #fff;
	padding: 72px 0 56px;
	position: relative;
	overflow: hidden;
}
.adl-s3 { background: linear-gradient(180deg, #0b0b0d 0%, #1a1008 100%); }
.adl-s4 { background: linear-gradient(180deg, #1a1008 0%, #0b0b0d 100%); }
.adl-wrap { text-align: center; }
.adl-img { display: block; margin-left: auto; margin-right: auto; }
.adl-s1-tit { width: 100%; max-width: 760px; margin-bottom: 36px; }
.adl-s1-feats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	align-items: start;
	max-width: 980px;
	margin: 0 auto;
}
.adl-s1-feats img { width: 100%; }
.adl-arrow { display: inline-block; margin-top: 40px; opacity: 0.85; transition: transform 0.2s ease, opacity 0.2s ease; }
.adl-arrow:hover { transform: translateY(4px); opacity: 1; }
.adl-s2-tit { width: 100%; max-width: 860px; margin-bottom: 30px; }
.adl-s2-stage { position: relative; display: inline-block; }
.adl-s2-phone { max-width: 340px; width: 100%; }
.adl-s2-icon { position: absolute; width: 180px; }
.adl-s2-icon1 { left: -200px; top: 40px; }
.adl-s2-icon2 { right: -200px; top: 140px; }
.adl-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 40px;
	align-items: center;
	max-width: 1020px;
	margin: 0 auto 36px;
	text-align: left;
}
.adl-split > .adl-img { margin: 0; width: 100%; }
.adl-s3-phone { max-width: 420px; }
.adl-s3-deco {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
}
.adl-s3-deco img { max-height: 110px; width: auto; }
.adl-s4-phone { max-width: 380px; }
.adl-s4-deco { display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.adl-s4-deco img { max-width: 260px; }

/* 金色下载按钮 + 悬停二维码弹层 */
.adl-btns {
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: center;
}
.adl-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 220px;
	padding: 14px 30px;
	border-radius: 50px;
	background: linear-gradient(180deg, #f7c66b 0%, #e8a33d 100%);
	color: #5c3a08;
	font-size: 17px;
	font-weight: 800;
	letter-spacing: 1px;
	box-shadow: 0 6px 18px rgba(232, 163, 61, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.adl-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(232, 163, 61, 0.5); color: #5c3a08; }
.adl-btn i {
	width: 20px; height: 20px;
	border-radius: 4px;
	background: #5c3a08;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M17 1H7C5.9 1 5 1.9 5 3v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14z'/></svg>") no-repeat center / contain;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M17 1H7C5.9 1 5 1.9 5 3v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14z'/></svg>") no-repeat center / contain;
}
.adl-popper {
	display: none;
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%);
	z-index: 30;
	background: #fff;
	border-radius: 12px;
	padding: 14px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
	white-space: nowrap;
}
.adl-popper > span {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 8px;
}
.adl-popper img { width: 140px; height: 140px; object-fit: contain; }
.adl-btn:hover .adl-popper,
.adl-btn:focus .adl-popper { display: block; }

/* ---------- 资金安全页（cs，1:1 还原官方） ---------- */
.cs-banner { position: relative; }
.cs-banner-img { width: 100%; display: block; }
.cs-banner-btn {
	position: absolute;
	left: 50%;
	bottom: 8%;
	transform: translateX(-50%);
	padding: 14px 54px;
	border-radius: 50px;
	background: linear-gradient(180deg, #f7c66b 0%, #e8a33d 100%);
	color: #5c3a08;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: 4px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	transition: transform 0.2s ease;
}
.cs-banner-btn:hover { transform: translateX(-50%) translateY(-3px); color: #5c3a08; }

.cs-part { padding: 72px 0; background-size: cover; background-position: center; }
.cs-part1 { background: linear-gradient(180deg, #eef5fc 0%, #ffffff 100%); }
.cs-part2 { background: linear-gradient(180deg, #fdf6ea 0%, #ffffff 100%); }
.cs-part4 { background: linear-gradient(180deg, #eef5fc 0%, #ffffff 100%); }
.cs-part-tit { text-align: center; margin-bottom: 44px; }
.cs-part-tit img { display: inline-block; max-width: 560px; width: 100%; }

.cs-p1-main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px minmax(0, 1fr);
	gap: 24px;
	align-items: center;
	margin-bottom: 40px;
}
.cs-p1-list { display: flex; flex-direction: column; gap: 18px; }
.cs-p1-list img { width: 100%; max-width: 320px; }
.cs-p1-list-l { align-items: flex-start; }
.cs-p1-list-r { align-items: flex-end; }
.cs-p1-wheel { position: relative; width: 300px; height: 300px; margin: 0 auto; }
.cs-p1-wheel-bg { width: 100%; height: 100%; object-fit: contain; }
.cs-p1-icon {
	position: absolute;
	width: 78px; height: 78px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform 0.2s ease;
}
.cs-p1-icon:hover { transform: scale(1.08); }
.cs-p1-icon1 { left: 50%; top: -18px; transform: translateX(-50%); background-image: url("../images/safety/p1_icon1.png"); }
.cs-p1-icon2 { left: -18px; top: 62px; background-image: url("../images/safety/p1_icon2.png"); }
.cs-p1-icon3 { left: -18px; top: 160px; background-image: url("../images/safety/p1_icon3.png"); }
.cs-p1-icon4 { left: 50%; bottom: -18px; transform: translateX(-50%); background-image: url("../images/safety/p1_icon4.png"); }
.cs-p1-icon5 { right: -18px; top: 160px; background-image: url("../images/safety/p1_icon5.png"); }
.cs-p1-icon6 { right: -18px; top: 62px; background-image: url("../images/safety/p1_icon6.png"); }
.cs-p1-icon1:hover { background-image: url("../images/safety/p1_icon1_hover.png"); }
.cs-p1-icon2:hover { background-image: url("../images/safety/p1_icon2_hover.png"); }
.cs-p1-icon3:hover { background-image: url("../images/safety/p1_icon3_hover.png"); }
.cs-p1-icon4:hover { background-image: url("../images/safety/p1_icon4_hover.png"); }
.cs-p1-icon5:hover { background-image: url("../images/safety/p1_icon5_hover.png"); }
.cs-p1-icon6:hover { background-image: url("../images/safety/p1_icon6_hover.png"); }

.cs-part-btn { display: block; width: 220px; margin: 0 auto; transition: transform 0.2s ease; }
.cs-part-btn:hover { transform: translateY(-4px); }
.cs-part-btn img { width: 100%; }

.cs-p2-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: 40px;
}
.cs-p2-list img { width: 100%; }

.cs-part3 { padding: 40px 0; background: linear-gradient(135deg, #143d6b 0%, var(--primary-darker) 100%); }
.cs-p3-main {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	flex-wrap: wrap;
	color: #fff;
	padding: 30px 20px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px dashed rgba(255, 255, 255, 0.35);
	transition: background 0.2s ease;
}
.cs-p3-main:hover { background: rgba(255, 255, 255, 0.12); }
.cs-p3-badge {
	padding: 4px 14px;
	border-radius: 50px;
	background: #e8a33d;
	color: #5c3a08;
	font-size: 13px;
	font-weight: 800;
}
.cs-p3-main strong { font-size: 24px; letter-spacing: 2px; }
.cs-p3-link { font-size: 16px; color: #f7c66b; font-weight: 700; }

.cs-p4-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}
.cs-p4-list a {
	display: block;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cs-p4-list a:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(34, 131, 218, 0.18); }
.cs-p4-list img { width: 100%; display: block; }

/* ---------- 响应式（V3） ---------- */
@media (max-width: 1080px) {
	.cs-p1-main { grid-template-columns: 1fr 260px 1fr; }
	.cs-p2-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.adl-s2-icon { width: 130px; }
	.adl-s2-icon1 { left: -130px; }
	.adl-s2-icon2 { right: -130px; }
}
@media (max-width: 900px) {
	.adl-s1-feats { grid-template-columns: 1fr; gap: 20px; }
	.adl-split { grid-template-columns: 1fr; text-align: center; }
	.adl-split > .adl-img { margin: 0 auto; }
	.adl-btns { align-items: center; }
	.adl-s2-icon { display: none; }
	.cs-p1-main { grid-template-columns: 1fr; }
	.cs-p1-list-l, .cs-p1-list-r { align-items: center; }
	.cs-p1-wheel { display: none; }
	.cs-p2-list, .cs-p4-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.cs-banner-btn { padding: 10px 36px; font-size: 16px; }
}
@media (max-width: 640px) {
	.cs-p2-list, .cs-p4-list { grid-template-columns: 1fr; }
	.cs-p3-main strong { font-size: 19px; }
	.adl-btn { min-width: 0; width: 100%; max-width: 320px; }
	.app-code { gap: 12px; }
}

/* =========================================================================
   V4：首页APP码钮重设计 / 静态APP下载页(adl2) / 资金安全美化 / 移动端底部浮窗
   ========================================================================= */

/* ---------- 首页 APP：横向卡片（二维码左 + 名称按钮右） ---------- */
.app-code {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 22px;
}
.app-code-item {
	display: flex;
	align-items: center;
	gap: 14px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 14px 16px;
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.app-code-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(34, 131, 218, 0.16);
}
.app-qr {
	flex: 0 0 92px;
	width: 92px;
	height: 92px;
	object-fit: contain;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: #fff;
	padding: 5px;
}
.app-code-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	min-width: 0;
}
.app-code-label { font-size: 15px; font-weight: 800; color: var(--dark); }
.app-dl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 9px 18px;
	border-radius: 50px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-darker) 100%);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	box-shadow: 0 4px 14px rgba(34, 131, 218, 0.3);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.app-dl-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(34, 131, 218, 0.42);
	color: #fff;
}
.app-dl-ico {
	flex: 0 0 15px;
	width: 15px;
	height: 15px;
	background: #fff;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M17.05 20.28c-.98.95-2.05.8-3.08.35-1.09-.46-2.09-.48-3.24 0-1.44.62-2.2.44-3.06-.35C2.79 15.25 3.51 7.59 9.05 7.31c1.35.07 2.29.74 3.08.8.98-.2 1.92-.86 3.16-.77 1.44.12 2.53.69 3.24 1.72-2.96 1.77-2.53 5.67.43 6.78-.6 1.55-1.37 3.08-1.91 4.44zM12.03 7.25c-.15-2.23 1.66-4.07 3.74-4.25.29 2.58-2.34 4.5-3.74 4.25z'/></svg>") no-repeat center / contain;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M17.05 20.28c-.98.95-2.05.8-3.08.35-1.09-.46-2.09-.48-3.24 0-1.44.62-2.2.44-3.06-.35C2.79 15.25 3.51 7.59 9.05 7.31c1.35.07 2.29.74 3.08.8.98-.2 1.92-.86 3.16-.77 1.44.12 2.53.69 3.24 1.72-2.96 1.77-2.53 5.67.43 6.78-.6 1.55-1.37 3.08-1.91 4.44zM12.03 7.25c-.15-2.23 1.66-4.07 3.74-4.25.29 2.58-2.34 4.5-3.74 4.25z'/></svg>") no-repeat center / contain;
}
.app-dl-ico-android {
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M17.6 9.48l1.84-3.18c.16-.31.04-.7-.26-.85-.29-.15-.65-.06-.83.22l-1.88 3.24a11.43 11.43 0 00-8.94 0L5.65 5.67c-.19-.29-.58-.38-.87-.2-.28.18-.37.54-.22.83L6.4 9.48A10.81 10.81 0 003 18h18a10.81 10.81 0 00-3.4-8.52zM7 15.25a1.25 1.25 0 110-2.5 1.25 1.25 0 010 2.5zm10 0a1.25 1.25 0 110-2.5 1.25 1.25 0 010 2.5z'/></svg>");
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M17.6 9.48l1.84-3.18c.16-.31.04-.7-.26-.85-.29-.15-.65-.06-.83.22l-1.88 3.24a11.43 11.43 0 00-8.94 0L5.65 5.67c-.19-.29-.58-.38-.87-.2-.28.18-.37.54-.22.83L6.4 9.48A10.81 10.81 0 003 18h18a10.81 10.81 0 00-3.4-8.52zM7 15.25a1.25 1.25 0 110-2.5 1.25 1.25 0 010 2.5zm10 0a1.25 1.25 0 110-2.5 1.25 1.25 0 010 2.5z'/></svg>");
}
.app-dl-ico-hongmeng {
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M4 9c2-4 7-5 10-2 1.5 1.4 1.8 3.2 1.2 5H21v2h-6.2c1 1.9 2.4 3.6 4.2 5h-2.6c-1.7-1.5-3-3.2-4-5H4v-2h7.9c.5-1.3.3-2.5-.7-3.4C9.4 7 6.4 7.4 5.2 10L4 9z'/></svg>");
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M4 9c2-4 7-5 10-2 1.5 1.4 1.8 3.2 1.2 5H21v2h-6.2c1 1.9 2.4 3.6 4.2 5h-2.6c-1.7-1.5-3-3.2-4-5H4v-2h7.9c.5-1.3.3-2.5-.7-3.4C9.4 7 6.4 7.4 5.2 10L4 9z'/></svg>");
}

/* ---------- 静态 APP下载页（adl2） ---------- */
.adl2-hero {
	background: linear-gradient(160deg, #0a2540 0%, #143d6b 60%, #1a5290 100%);
	padding: 72px 0 64px;
	color: #fff;
}
.adl2-sec { padding: 64px 0; }
.adl2-sec-alt { background: var(--primary-soft); }
.adl2-wrap { text-align: center; }
.adl2-tit { display: block; margin: 0 auto 30px; max-width: 720px; width: 100%; height: auto; }
.adl2-tit-dark { max-width: 640px; }
.adl2-feats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	max-width: 900px;
	margin: 0 auto 40px;
}
.adl2-feats img { width: 100%; height: auto; }
.adl2-dl {
	display: flex;
	justify-content: center;
	gap: 22px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}
.adl2-dl-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	background: #fff;
	border-radius: 16px;
	padding: 20px 22px;
	min-width: 170px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.adl2-qr { width: 120px; height: 120px; object-fit: contain; }
.adl2-dl-name { font-size: 15px; font-weight: 800; color: var(--dark); }
.adl2-btn {
	display: inline-block;
	padding: 10px 26px;
	border-radius: 50px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-darker) 100%);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	box-shadow: 0 6px 16px rgba(34, 131, 218, 0.35);
	transition: transform 0.2s ease;
}
.adl2-btn:hover { transform: translateY(-3px); color: #fff; }
.adl2-note { font-size: 13.5px; color: rgba(255, 255, 255, 0.72); }
.adl2-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 40px;
	align-items: center;
	max-width: 1000px;
	margin: 0 auto;
	text-align: left;
}
.adl2-split-rev { direction: rtl; }
.adl2-split-rev > * { direction: ltr; }
.adl2-copy { width: 100%; max-width: 420px; height: auto; margin: 0 auto; display: block; }
.adl2-shot { width: 100%; max-width: 420px; height: auto; margin: 0 auto; display: block; }
.adl2-phone-box { position: relative; display: inline-block; }
.adl2-phone { max-width: 300px; width: 100%; height: auto; }
.adl2-float { max-width: 220px; width: 100%; height: auto; }
.adl2-tags {
	display: flex;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
	margin-top: 34px;
}
.adl2-tags img { max-height: 96px; width: auto; }
.adl2-cta { margin-top: 40px; display: inline-block; }

/* ---------- 资金安全页美化（卡片版） ---------- */
.cs-p1-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: 44px;
	list-style: none;
	padding: 0;
}
.cs-p1-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 30px 24px;
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cs-p1-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(34, 131, 218, 0.16);
	border-color: rgba(34, 131, 218, 0.4);
}
.cs-p1-icon-img { width: 64px; height: 64px; object-fit: contain; }
.cs-p1-text { max-width: 260px; width: 100%; height: auto; }
.cs-p2-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	margin-bottom: 44px;
	list-style: none;
	padding: 0;
}
.cs-p2-card {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 26px 20px;
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cs-p2-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 36px rgba(232, 163, 61, 0.2);
}
.cs-p2-card img { max-width: 100%; height: auto; }
.cs-p4-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	list-style: none;
	padding: 0;
}
.cs-p4-grid a {
	display: block;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cs-p4-grid a:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(34, 131, 218, 0.2); }
.cs-p4-grid img { width: 100%; display: block; height: auto; }


.footer-btn-fixed {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background: rgba(10, 37, 64, 0.92);
	backdrop-filter: blur(8px);
	padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
	box-sizing: border-box;
	pointer-events: auto;
}
.footer-btn-content {
	display: flex;
	gap: 12px;
	max-width: 640px;
	margin: 0 auto;
}
.footer-btn-fixed .btn {
	flex: 1 1 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 10px;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	text-decoration: none;
	min-width: 0;
}
.footer-btn-fixed .btn-l { background: linear-gradient(135deg, #3a97e6 0%, var(--primary) 100%); }
.footer-btn-fixed .btn-r { background: linear-gradient(135deg, #e8a33d 0%, #d98f1f 100%); }
.footer-btn-fixed .btn i {
	flex: 0 0 17px;
	width: 17px;
	height: 17px;
	background: #fff;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M5 4a3 3 0 00-3 3v10a3 3 0 003 3h14a3 3 0 003-3V7a3 3 0 00-3-3H5zm7 2.2a5.8 5.8 0 015.8 5.8 5.8 5.8 0 01-5.8 5.8A5.8 5.8 0 016.2 12 5.8 5.8 0 0112 6.2zm0 2.1a3.7 3.7 0 100 7.4 3.7 3.7 0 000-7.4zM18.4 5a1.3 1.3 0 110 2.6 1.3 1.3 0 010-2.6z'/></svg>") no-repeat center / contain;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M5 4a3 3 0 00-3 3v10a3 3 0 003 3h14a3 3 0 003-3V7a3 3 0 00-3-3H5zm7 2.2a5.8 5.8 0 015.8 5.8 5.8 5.8 0 01-5.8 5.8A5.8 5.8 0 016.2 12 5.8 5.8 0 0112 6.2zm0 2.1a3.7 3.7 0 100 7.4 3.7 3.7 0 000-7.4zM18.4 5a1.3 1.3 0 110 2.6 1.3 1.3 0 010-2.6z'/></svg>") no-repeat center / contain;
}

/* ---------- V4 响应式 ---------- */
@media (max-width: 1080px) {
	.adl2-split { grid-template-columns: 1fr; text-align: center; gap: 26px; }
	.adl2-feats { gap: 14px; }
}
@media (max-width: 900px) {
	.adl2-hero { padding: 48px 0 44px; }
	.adl2-sec { padding: 44px 0; }
	.adl2-feats { grid-template-columns: 1fr; max-width: 420px; }
	.adl2-dl { gap: 14px; }
	.cs-p1-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.cs-p2-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.cs-p4-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.app-code { grid-template-columns: 1fr; }
	.app-code-item { padding: 14px; }
	/* 移动端：首页 APP 不显示二维码，仅保留下载按钮 */
	.app-qr { display: none !important; }
	.app-code-info { flex-direction: row; align-items: center; justify-content: space-between; width: 100%; }
	/* 移动端：显示底部固定浮窗 */
	.footer-btn-fixed { display: block; }
	.site-footer { padding-bottom: 76px; }
}
@media (max-width: 640px) {
	.cs-p1-grid, .cs-p2-grid, .cs-p4-grid { grid-template-columns: 1fr; }
	.adl2-dl-item { width: 100%; max-width: 300px; }
	.adl2-tags img { max-height: 64px; }
}

/* =========================================================================
   V5：APP页文本版(adl3) / 防变形兜底
   ========================================================================= */

/* 全站图片防变形兜底（单页内的展示图） */
.adl3-sec img, .adl3-hero img, .cs-part img, .about-block img {
	max-width: 100%;
	height: auto;
}

/* ---------- APP下载页（adl3 文本版） ---------- */
.adl3-hero {
	background: linear-gradient(160deg, #0a2540 0%, #143d6b 60%, #1a5290 100%);
	padding: 80px 0 64px;
	color: #fff;
}
.adl3-wrap { text-align: center; }
.adl3-title { color: #fff; font-size: 44px; margin-bottom: 14px; letter-spacing: 2px; }
.adl3-slogan {
	display: inline-block;
	padding: 8px 26px;
	border-radius: 50px;
	background: rgba(34, 131, 218, 0.28);
	border: 1px solid rgba(109, 179, 239, 0.45);
	color: #cfe6fb;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 4px;
	margin-bottom: 46px;
}
.adl3-feats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	max-width: 960px;
	margin: 0 auto 50px;
}
.adl3-feat {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 16px;
	padding: 30px 22px;
	text-align: center;
	transition: background 0.25s ease, transform 0.25s ease;
}
.adl3-feat:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-4px); }
.adl3-feat h3 { color: #fff; font-size: 19px; margin-bottom: 10px; }
.adl3-feat p { font-size: 14px; color: rgba(255, 255, 255, 0.72); line-height: 1.8; }
.adl3-feat-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-darker) 100%);
	margin-bottom: 14px;
}
.adl3-feat-ico::after {
	content: "";
	width: 26px;
	height: 26px;
	background: #fff;
	display: block;
}
.adl3-ico-live::after {
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 9a3 3 0 100 6 3 3 0 000-6zm-6.4-5.4l1.4 1.4a7 7 0 000 10l-1.4 1.4a9 9 0 010-12.8zm12.8 0a9 9 0 010 12.8l-1.4-1.4a7 7 0 000-10l1.4-1.4z'/></svg>") no-repeat center / contain;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 9a3 3 0 100 6 3 3 0 000-6zm-6.4-5.4l1.4 1.4a7 7 0 000 10l-1.4 1.4a9 9 0 010-12.8zm12.8 0a9 9 0 010 12.8l-1.4-1.4a7 7 0 000-10l1.4-1.4z'/></svg>") no-repeat center / contain;
}
.adl3-ico-trade::after {
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M3.5 18.5l6-6 4 4L20 9.5 21.5 11l-8 8-4-4-4.5 4.5z'/></svg>") no-repeat center / contain;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M3.5 18.5l6-6 4 4L20 9.5 21.5 11l-8 8-4-4-4.5 4.5z'/></svg>") no-repeat center / contain;
}
.adl3-ico-news::after {
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M4 5h16a1 1 0 011 1v12a1 1 0 01-1 1H4a1 1 0 01-1-1V6a1 1 0 011-1zm2 4h7v1.5H6V9zm0 3.5h7V14H6v-1.5zm9-3.5h3v5h-3V9z'/></svg>") no-repeat center / contain;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M4 5h16a1 1 0 011 1v12a1 1 0 01-1 1H4a1 1 0 01-1-1V6a1 1 0 011-1zm2 4h7v1.5H6V9zm0 3.5h7V14H6v-1.5zm9-3.5h3v5h-3V9z'/></svg>") no-repeat center / contain;
}
.adl3-dl {
	display: flex;
	justify-content: center;
	gap: 22px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}
.adl3-dl-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	background: #fff;
	border-radius: 16px;
	padding: 22px 24px;
	min-width: 172px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}
.adl3-qr { width: 122px; height: 122px; object-fit: contain; }
.adl3-dl-name { font-size: 15px; font-weight: 800; color: var(--dark); }
.adl3-btn {
	display: inline-block;
	padding: 10px 26px;
	border-radius: 50px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-darker) 100%);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	box-shadow: 0 6px 16px rgba(34, 131, 218, 0.35);
	transition: transform 0.2s ease;
}
.adl3-btn:hover { transform: translateY(-3px); color: #fff; }
.adl3-note { font-size: 13.5px; color: rgba(255, 255, 255, 0.72); }

.adl3-sec { padding: 72px 0; overflow: hidden; }
.adl3-sec-alt { background: var(--primary-soft); }
.adl3-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 56px;
	align-items: center;
	max-width: 1060px;
	margin: 0 auto;
}
.adl3-copybox { text-align: left; }
.adl3-h2 {
	font-size: 32px;
	color: var(--dark);
	line-height: 1.35;
	margin-bottom: 26px;
}
.adl3-h2 span {
	display: block;
	font-size: 17px;
	color: var(--primary);
	font-weight: 700;
	margin-top: 8px;
	letter-spacing: 1px;
}
.adl3-list { display: flex; flex-direction: column; gap: 16px; }
.adl3-list li {
	position: relative;
	padding: 16px 18px 16px 20px;
	background: #fff;
	border: 1px solid var(--line);
	border-left: 4px solid var(--primary);
	border-radius: 10px;
	font-size: 15px;
	color: var(--text-light);
	box-shadow: var(--shadow);
}
.adl3-list li strong { color: var(--dark); font-size: 16px; margin-right: 8px; }
.adl3-shotbox { text-align: center; }
.adl3-shot {
	width: auto;
	max-width: 340px;
	max-height: 560px;
	object-fit: contain;
	margin: 0 auto;
	display: block;
	border-radius: 18px;
	box-shadow: 0 18px 44px rgba(10, 37, 64, 0.18);
}
.adl3-cta-row { text-align: center; margin-top: 52px; }

/* ---------- V5 响应式 ---------- */
@media (max-width: 1080px) {
	.adl3-split { grid-template-columns: 1fr; gap: 36px; }
	.adl3-split-rev .adl3-copybox { order: 2; }
	.adl3-split-rev .adl3-shotbox { order: 1; }
}
@media (max-width: 900px) {
	.adl3-hero { padding: 52px 0 48px; }
	.adl3-title { font-size: 32px; }
	.adl3-slogan { letter-spacing: 2px; margin-bottom: 32px; }
	.adl3-feats { grid-template-columns: 1fr; max-width: 440px; gap: 14px; margin-bottom: 36px; }
	.adl3-sec { padding: 48px 0; }
	.adl3-h2 { font-size: 26px; }
	.adl3-copybox { text-align: center; }
	.adl3-list li { text-align: left; }
	.adl3-dl { gap: 14px; }
	.adl3-dl-item { width: 100%; max-width: 300px; }
	.adl3-shot { max-height: 420px; }
}

/* =========================================================================
   V6：关于页图文相间(about-media) / APP页图左(imgleft) / 扁平无圆角底部浮窗
   ========================================================================= */

/* ---------- 关于领峰环球：图文相间 ---------- */
.about-media {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 56px;
	align-items: center;
	padding: 20px 0;
}
.about-media-flip .about-media-visual { order: -1; }
.about-media-index {
	display: inline-block;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 4px;
	color: var(--primary);
	margin-bottom: 12px;
}
.about-media-copy h2 {
	font-size: 30px;
	color: var(--dark);
	margin-bottom: 16px;
	position: relative;
	padding-bottom: 16px;
}
.about-media-copy h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 52px;
	height: 3px;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--primary), rgba(34, 131, 218, 0.15));
}
.about-media-lead {
	font-size: 16.5px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 14px;
}
.about-media-copy p:not(.about-media-lead) {
	font-size: 15.5px;
	color: var(--text-light);
	line-height: 1.95;
	margin-bottom: 12px;
}
.about-media-visual {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 18px 44px rgba(10, 37, 64, 0.16);
}
.about-media-visual img {
	display: block;
	width: 100%;
	height: 260px;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.about-media-visual:hover img { transform: scale(1.04); }
.about-media-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.35);
	pointer-events: none;
}

/* ---------- APP页：图左文右变体 ---------- */
.adl3-split-imgleft { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); }
.adl3-split-imgleft .adl3-shotbox { order: -1; }

/* ---------- 扁平无圆角底部浮窗（PC + 移动端统一风格） ---------- */
.float-buttons {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	gap: 0;
	padding: 0;
	background: none;
	box-shadow: 0 -4px 18px rgba(10, 37, 64, 0.25);
	z-index: 999;
	pointer-events: auto;
	box-sizing: border-box;
}
.float-btn {
	flex: 1 1 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-width: 0;
	padding: 0;
	height: 62px;
	border-radius: 0;
	font-size: 21px;
	font-weight: 800;
	letter-spacing: 2px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	position: relative;
	z-index: 1;
	transition: filter 0.2s ease;
}
.float-btn:hover { filter: brightness(1.08); color: #fff; text-decoration: none; transform: none; box-shadow: none; }
.float-btn-blue { background: linear-gradient(180deg, #2e86dd 0%, #1f6cc0 100%); }
.float-btn-gold { background: linear-gradient(180deg, #cfa06a 0%, #b98753 100%); }
.float-ico {
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.9);
	background: rgba(255, 255, 255, 0.18);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}
.float-ico::before {
	content: "";
	width: 17px;
	height: 17px;
	background: #fff;
	display: block;
}
.float-ico-web::before {
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2a10 10 0 100 20 10 10 0 000-20zm7.9 9h-3a15.6 15.6 0 00-1.2-5.2A8 8 0 0119.9 11zM12 4c.9 1.2 2 3.6 2.2 7H9.8c.2-3.4 1.3-5.8 2.2-7zM8.3 5.8A15.6 15.6 0 007.1 11h-3a8 8 0 014.2-5.2zM4.1 13h3c.1 1.9.5 3.7 1.2 5.2A8 8 0 014.1 13zM12 20c-.9-1.2-2-3.6-2.2-7h4.4c-.2 3.4-1.3 5.8-2.2 7zm3.7-1.8c.7-1.5 1.1-3.3 1.2-5.2h3a8 8 0 01-4.2 5.2z'/></svg>") no-repeat center / contain;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2a10 10 0 100 20 10 10 0 000-20zm7.9 9h-3a15.6 15.6 0 00-1.2-5.2A8 8 0 0119.9 11zM12 4c.9 1.2 2 3.6 2.2 7H9.8c.2-3.4 1.3-5.8 2.2-7zM8.3 5.8A15.6 15.6 0 007.1 11h-3a8 8 0 014.2-5.2zM4.1 13h3c.1 1.9.5 3.7 1.2 5.2A8 8 0 014.1 13zM12 20c-.9-1.2-2-3.6-2.2-7h4.4c-.2 3.4-1.3-5.8-2.2-7zm3.7-1.8c.7-1.5 1.1-3.3 1.2-5.2h3a8 8 0 01-4.2 5.2z'/></svg>") no-repeat center / contain;
}
.float-ico-user::before {
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 12a5 5 0 100-10 5 5 0 000 10zm0 2c-4.4 0-8 2.2-8 5v3h16v-3c0-2.8-3.6-5-8-5z'/></svg>") no-repeat center / contain;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 12a5 5 0 100-10 5 5 0 000 10zm0 2c-4.4 0-8 2.2-8 5v3h16v-3c0-2.8-3.6-5-8-5z'/></svg>") no-repeat center / contain;
}

/* 移动端底部浮窗：同款扁平风格 */
.footer-btn-fixed {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background: none;
	backdrop-filter: none;
	padding: 0;
	box-sizing: border-box;
	pointer-events: auto;
	box-shadow: 0 -4px 18px rgba(10, 37, 64, 0.25);
}
.footer-btn-content {
	display: flex;
	gap: 0;
	max-width: none;
	margin: 0;
}
.footer-btn-fixed .btn {
	flex: 1 1 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0;
	height: 56px;
	border-radius: 0;
	font-size: 17px;
	font-weight: 800;
	letter-spacing: 1px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	min-width: 0;
}
.footer-btn-fixed .btn:hover { transform: none; }
.footer-btn-fixed .btn-l { background: linear-gradient(180deg, #2e86dd 0%, #1f6cc0 100%); }
.footer-btn-fixed .btn-r { background: linear-gradient(180deg, #cfa06a 0%, #b98753 100%); }
.footer-btn-fixed .btn i {
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.9);
	background: rgba(255, 255, 255, 0.18);
	box-sizing: border-box;
	position: relative;
}
.footer-btn-fixed .btn i::before {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 15px;
	height: 15px;
	background: #fff;
}
.footer-btn-fixed .btn-l i::before {
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M17 1H7C5.9 1 5 1.9 5 3v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14z'/></svg>") no-repeat center / contain;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M17 1H7C5.9 1 5 1.9 5 3v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14z'/></svg>") no-repeat center / contain;
}
.footer-btn-fixed .btn-r i::before {
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2a10 10 0 100 20 10 10 0 000-20zm7.9 9h-3a15.6 15.6 0 00-1.2-5.2A8 8 0 0119.9 11zM12 4c.9 1.2 2 3.6 2.2 7H9.8c.2-3.4 1.3-5.8 2.2-7zM8.3 5.8A15.6 15.6 0 007.1 11h-3a8 8 0 014.2-5.2zM4.1 13h3c.1 1.9.5 3.7 1.2 5.2A8 8 0 014.1 13zM12 20c-.9-1.2-2-3.6-2.2-7h4.4c-.2 3.4-1.3 5.8-2.2 7zm3.7-1.8c.7-1.5 1.1-3.3 1.2-5.2h3a8 8 0 01-4.2 5.2z'/></svg>") no-repeat center / contain;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2a10 10 0 100 20 10 10 0 000-20zm7.9 9h-3a15.6 15.6 0 00-1.2-5.2A8 8 0 0119.9 11zM12 4c.9 1.2 2 3.6 2.2 7H9.8c.2-3.4 1.3-5.8 2.2-7zM8.3 5.8A15.6 15.6 0 007.1 11h-3a8 8 0 014.2-5.2zM4.1 13h3c.1 1.9.5 3.7 1.2 5.2A8 8 0 014.1 13zM12 20c-.9-1.2-2-3.6-2.2-7h4.4c-.2 3.4-1.3 5.8-2.2 7zm3.7-1.8c.7-1.5 1.1-3.3 1.2-5.2h3a8 8 0 01-4.2 5.2z'/></svg>") no-repeat center / contain;
}

/* ---------- V6 响应式 ---------- */
@media (max-width: 900px) {
	.about-media { grid-template-columns: 1fr; gap: 24px; padding: 8px 0; }
	.about-media-flip .about-media-visual { order: 0; }
	.about-media-copy h2 { font-size: 24px; }
	.about-media-visual img { height: 200px; }
	.adl3-split-imgleft .adl3-shotbox { order: 0; }
	.float-btn { height: 56px; font-size: 17px; letter-spacing: 1px; gap: 8px; }
	.float-ico { flex-basis: 28px; width: 28px; height: 28px; }
	.float-ico::before { width: 14px; height: 14px; }
}

/* =========================================================================
   V7：PC底部浮窗恢复原版居中双按钮；移动端扁平对半浮窗修复显示
   ========================================================================= */

/* ---------- PC 底部浮窗：恢复原版样式（居中、间距、半透明底条） ---------- */
.float-buttons {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0, 87, 177, 0.2);
	padding: 15px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 60px;
	box-sizing: border-box;
	z-index: 999;
	pointer-events: auto;
	box-shadow: none;
}
.float-btn {
	flex: 0 0 auto;
	display: inline-block;
	padding: 12px 30px;
	background-color: #2283da;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: normal;
	transition: background-color 0.3s ease, transform 0.2s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	min-width: 300px;
	text-align: center;
	position: relative;
	z-index: 1;
	height: auto;
	filter: none;
}
.float-btn:hover {
	background-color: #1b6cc0;
	transform: translateY(-2px);
	color: #fff;
	text-decoration: none;
	filter: none;
}

/* ---------- 移动端底部浮窗：扁平对半分栏（截图-2 样式） ---------- */
.footer-btn-fixed {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background: none;
	padding: 0;
	box-sizing: border-box;
	pointer-events: auto;
	box-shadow: 0 -4px 18px rgba(10, 37, 64, 0.25);
}
.footer-btn-content {
	display: flex;
	gap: 0;
	max-width: none;
	margin: 0;
}
.footer-btn-fixed .btn {
	flex: 1 1 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0;
	height: 56px;
	border-radius: 0;
	font-size: 17px;
	font-weight: 800;
	letter-spacing: 1px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	min-width: 0;
	box-shadow: none;
	transition: none;
}
.footer-btn-fixed .btn:hover { transform: none; background: inherit; color: #fff; }
.footer-btn-fixed .btn-l { background: #2e86dd; }
.footer-btn-fixed .btn-r { background: #ec6976; }
.footer-btn-fixed .btn i {
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.9);
	background: rgba(255, 255, 255, 0.15);
	box-sizing: border-box;
	position: relative;
}
.footer-btn-fixed .btn i::before {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 16px;
	height: 16px;
	background: #fff;
}
.footer-btn-fixed .btn-l i::before {
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M17 1H7C5.9 1 5 1.9 5 3v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14z'/></svg>") no-repeat center / contain;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M17 1H7C5.9 1 5 1.9 5 3v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14z'/></svg>") no-repeat center / contain;
}
.footer-btn-fixed .btn-r i::before {
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2a10 10 0 100 20 10 10 0 000-20zm7.9 9h-3a15.6 15.6 0 00-1.2-5.2A8 8 0 0119.9 11zM12 4c.9 1.2 2 3.6 2.2 7H9.8c.2-3.4-1.3-5.8-2.2-7zm3.7-1.8c.7-1.5 1.1-3.3 1.2-5.2h3a8 8 0 01-4.2 5.2zM8.3 5.8A15.6 15.6 0 007.1 11h-3a8 8 0 014.2-5.2zM4.1 13h3c.1 1.9.5 3.7 1.2 5.2A8 8 0 014.1 13zM12 20c-.9-1.2-2-3.6-2.2-7h4.4c-.2 3.4-1.3 5.8-2.2 7z'/></svg>") no-repeat center / contain;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2a10 10 0 100 20 10 10 0 000-20zm7.9 9h-3a15.6 15.6 0 00-1.2-5.2A8 8 0 0119.9 11zM12 4c.9 1.2 2 3.6 2.2 7H9.8c.2-3.4-1.3-5.8-2.2-7zm3.7-1.8c.7-1.5 1.1-3.3 1.2-5.2h3a8 8 0 01-4.2 5.2zM8.3 5.8A15.6 15.6 0 007.1 11h-3a8 8 0 014.2-5.2zM4.1 13h3c.1 1.9.5 3.7 1.2 5.2A8 8 0 014.1 13zM12 20c-.9-1.2-2-3.6-2.2-7h4.4c-.2 3.4-1.3 5.8-2.2 7z'/></svg>") no-repeat center / contain;
}


@media (max-width: 900px) {

	.footer-btn-fixed { display: block; }
	.site-footer { padding-bottom: 76px; }
	.footer-btn-fixed .btn { font-size: 16px; }
	.footer-btn-fixed .btn i { flex-basis: 30px; width: 30px; height: 30px; }
	.footer-btn-fixed .btn i::before { width: 14px; height: 14px; }
}


.app-guide-container {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1001;
	align-items: center;
	gap: 10px;
	padding: 10px 34px 10px 12px;
	box-sizing: border-box;
	background: #fff;
	box-shadow: 0 2px 10px rgba(10, 37, 64, 0.12);
}
.app-guide-container .close-btn {
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	display: inline-flex;
}
.app-guide-container .close-btn img { width: 100%; height: 100%; object-fit: contain; }
.app-guide-container .app-logo {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	object-fit: contain;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(10, 37, 64, 0.15);
}
.app-guide-container .guide-content {
	flex: 1 1 auto;
	min-width: 0;
	line-height: 1.35;
}
.app-guide-container .guide-content p { margin: 0; }
.app-guide-container .guide-content p:first-child {
	font-size: 15px;
	font-weight: 800;
	color: #0a2540;
}
.app-guide-container .guide-content p:first-child span {
	margin-left: 6px;
	padding: 1px 8px;
	border-radius: 4px;
	background: #e8f2fc;
	color: #2283da;
	font-size: 12px;
	font-weight: 700;
	vertical-align: 1px;
}
.app-guide-container .guide-content p:last-child {
	font-size: 12.5px;
	color: #7d8b99;
	margin-top: 2px;
}
.app-guide-container .download-btn {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 88px;
	height: 36px;
	padding: 0 16px;
	border-radius: 18px;
	color: #fff;
	font-size: 14.5px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 3px 10px rgba(34, 131, 218, 0.35);
}

@media (max-width: 900px) {
	.app-guide-container { display: flex; }
	/* 引导条出现时，头部与页面下移让位 */
	.site-header { top: 64px !important; }
	body { padding-top: 64px; }
	/* 关闭引导条后恢复原位 */
	body.app-guide-closed { padding-top: 0; }
	body.app-guide-closed .site-header { top: 0 !important; }
	body.app-guide-closed .app-guide-container { display: none !important; }
}
