:root {
	/* 背景色体系 */
	--bg-dark: #081a17;
	/* 深墨绿背景，比纯黑更有质感 */
	--bg-light: #fdfdfd;
	/* 纯净白 */
	--bg-accent: #f4f6f5;
	/* 浅灰装饰色 */

	/* 主色调 */
	--primary-gold: #d4af37;
	/* 香槟金 */
	--primary-dark: #0f2e28;
	/* 模块深底色 */

	/* 文字颜色 */
	--text-main: #1a1a1a;
	--text-light: #ffffff;
	--text-gray: #666666;

	/* 高端阴影 */
	--shadow-card: 0 15px 35px rgba(0, 0, 0, 0.08);
	--shadow-gold: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* ================= 全局重置 ================= */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	line-height: 1.6;
	color: var(--text-main);
	background-color: var(--bg-light);
}

a {
	text-decoration: none;
	color: inherit;
	transition: 0.3s;
}

ul {
	list-style: none;
}

/* 通用容器 */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* 金色渐变文字 */
.gold-text {
	background: linear-gradient(45deg, #d4af37, #f2d06b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* 按钮样式 */
.btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 4px;
	/* 方角更显商务 */
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.4s ease;
}

.btn-gold {
	background: linear-gradient(90deg, #d4af37, #c5a028);
	color: #fff;
	box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

.btn-outline {
	border: 1px solid var(--primary-gold);
	color: var(--primary-gold);
	background: transparent;
}

.btn-outline:hover {
	background: var(--primary-gold);
	color: #fff;
}

/* ================= 头部导航 ================= */
header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	height: 80px;
}

.nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.logo {
	font-size: 24px;
	font-weight: 800;
	color: var(--primary-dark);
	letter-spacing: 2px;
}

.logo span {
	color: var(--primary-gold);
}

.nav-links {
	display: flex;
	gap: 40px;
}

.nav-links a {
	font-size: 15px;
	font-weight: 500;
	color: var(--text-main);
	position: relative;
}

.nav-links a:hover {
	color: var(--primary-gold);
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-gold);
	transition: width 0.3s;
}

.nav-links a:hover::after {
	width: 100%;
}

/* ================= Hero 区域 (高端黑金风) ================= */
.hero {
	background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
	position: relative;
	height: 800px;
	display: flex;
	align-items: center;
	text-align: center;
	color: white;
	margin-top: 80px;
	/* 避开导航栏 */
}

/* 黑色遮罩层，提升文字可读性 */
.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(8, 26, 23, 0.9), rgba(8, 26, 23, 0.7));
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 56px;
	line-height: 1.2;
	margin-bottom: 20px;
	font-weight: 700;
}

.hero p {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 40px;
}

/* ================= 业务优势 (卡片悬浮) ================= */
.features {
	padding: 100px 0;
	background-color: var(--bg-light);
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 36px;
	margin-bottom: 15px;
	color: var(--primary-dark);
}

.section-title p {
	color: var(--text-gray);
}

.section-title .line {
	width: 60px;
	height: 3px;
	background: var(--primary-gold);
	margin: 20px auto 0;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.feature-card {
	background: white;
	padding: 40px 30px;
	border: 1px solid #eee;
	transition: 0.4s;
	position: relative;
	overflow: hidden;
}

/* 顶部金色线条装饰 */
.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--primary-gold);
	transform: scaleX(0);
	transition: 0.4s;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-card);
	border-color: transparent;
}

.feature-card:hover::before {
	transform: scaleX(1);
}

.icon-box {
	font-size: 40px;
	margin-bottom: 25px;
	color: var(--primary-gold);
}

.feature-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--primary-dark);
}

.feature-card p {
	color: var(--text-gray);
	font-size: 14px;
	line-height: 1.8;
}

/* ================= 关于我们 (左右布局) ================= */
.about {
	padding: 100px 0;
	background-color: var(--bg-accent);
}

.about-wrapper {
	display: flex;
	align-items: center;
	gap: 60px;
}

.about-img {
	flex: 1;
	position: relative;
}

.about-img img {
	width: 100%;
	border-radius: 4px;
	box-shadow: var(--shadow-card);
}

/* 装饰方块 */
.about-img::after {
	content: '';
	position: absolute;
	bottom: -20px;
	right: -20px;
	width: 150px;
	height: 150px;
	border: 2px solid var(--primary-gold);
	z-index: -1;
}

.about-text {
	flex: 1;
}

.about-text h2 {
	font-size: 32px;
	margin-bottom: 20px;
	color: var(--primary-dark);
}

.about-text p {
	margin-bottom: 20px;
	color: var(--text-gray);
	text-align: justify;
}

.stats-row {
	display: flex;
	gap: 40px;
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #ddd;
}

.stat-item h4 {
	font-size: 36px;
	color: var(--primary-gold);
	font-weight: 800;
}

.stat-item span {
	font-size: 14px;
	color: var(--text-gray);
}

/* ================= 合作流程 (深色背景) ================= */
.process {
	padding: 100px 0;
	background-color: var(--primary-dark);
	color: white;
}

.process .section-title h2 {
	color: white;
}

.process .section-title p {
	color: rgba(255, 255, 255, 0.6);
}

.process-steps {
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
	text-align: center;
}

.step {
	position: relative;
	flex: 1;
	padding: 0 20px;
}

.step-num {
	width: 60px;
	height: 60px;
	line-height: 60px;
	border: 1px solid var(--primary-gold);
	color: var(--primary-gold);
	border-radius: 50%;
	margin: 0 auto 25px;
	font-size: 24px;
	font-weight: bold;
	transition: 0.3s;
}

.step:hover .step-num {
	background: var(--primary-gold);
	color: var(--primary-dark);
}

.step h3 {
	margin-bottom: 15px;
	font-size: 18px;
}

.step p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
}

/* 流程连线 */
.step:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 30px;
	right: -50%;
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, 0.1);
	z-index: 0;
}

/* ================= 底部 CTA ================= */
.cta {
	padding: 80px 0;
	text-align: center;
	background: white;
}

.cta h2 {
	font-size: 36px;
	margin-bottom: 30px;
	color: var(--primary-dark);
}

/* ================= 页脚 ================= */
footer {
	background: #111;
	color: #555;
	padding: 30px 0;
	text-align: center;
	font-size: 14px;
}

/* ================= 移动端适配 ================= */
@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	/* 移动端暂隐菜单 */
	.hero h1 {
		font-size: 36px;
	}

	.feature-grid,
	.about-wrapper,
	.process-steps {
		flex-direction: column;
		display: flex;
	}

	.step:not(:last-child)::after {
		display: none;
	}

	.step {
		margin-bottom: 40px;
	}

	.about-img {
		margin-bottom: 30px;
	}

	.about-img::after {
		display: none;
	}
}

/* ================= 新增：为什么选择我们 (对比风格) ================= */
.why-us {
	padding: 100px 0;
	/* 使用深色背景，与上下板块区分 */
	background: radial-gradient(circle at center, #1a2a26 0%, #081a17 100%);
	color: white;
}

.why-us .section-title h2 {
	color: white;
}

.why-us .section-title p {
	color: rgba(255, 255, 255, 0.7);
}

.comparison-box {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	margin-top: 50px;
}

/* 左侧：传统代理的痛点 */
.pain-list,
.gain-list {
	flex: 1;
	padding: 40px;
	border-radius: 12px;
}

.pain-list {
	background: rgba(255, 255, 255, 0.05);
	border: 1px dashed rgba(255, 255, 255, 0.2);
}

.pain-list h3 {
	font-size: 24px;
	margin-bottom: 30px;
	color: #aaa;
}

.pain-list li {
	margin-bottom: 20px;
	color: #888;
	display: flex;
	align-items: center;
	gap: 15px;
}

.pain-list li::before {
	content: '✖';
	color: #ff4d4f;
	font-weight: bold;
}

/* 右侧：GlobalX 的优势 */
.gain-list {
	background: rgba(212, 175, 55, 0.1);
	/* 金色微透明背景 */
	border: 1px solid var(--primary-gold);
	position: relative;
	overflow: hidden;
}

.gain-list h3 {
	font-size: 24px;
	margin-bottom: 30px;
	color: var(--primary-gold);
}

.gain-list li {
	margin-bottom: 20px;
	color: white;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 15px;
}

.gain-list li::before {
	content: '✔';
	color: var(--primary-gold);
	font-weight: bold;
	font-size: 18px;
}

/* 底部 Telegram 按钮区域 */
.tg-connect-area {
	text-align: center;
	margin-top: 60px;
}

.tg-big-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	padding: 18px 60px;
	background: linear-gradient(90deg, #2AABEE 0%, #229ED9 100%);
	/* Telegram 官方蓝 */
	color: white;
	font-size: 18px;
	font-weight: bold;
	border-radius: 50px;
	box-shadow: 0 10px 30px rgba(42, 171, 238, 0.3);
	transition: all 0.3s;
}

.tg-big-btn:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(42, 171, 238, 0.5);
}

.tg-icon {
	width: 24px;
	height: 24px;
	fill: white;
}

/* 移动端适配 */
@media (max-width: 768px) {
	.comparison-box {
		flex-direction: column;
	}

	.pain-list {
		display: none;
	}

	/* 移动端为了简洁，可以隐藏“痛点”部分，只保留优势 */
}

/* ================= 新增：客户现场反馈 (黑金卡片风格) ================= */
.reviews {
	padding: 100px 0;
	/* 使用极深的墨绿色背景，比上一板块略深，制造层次感 */
	background-color: #050f0d;
	color: white;
}

.reviews .section-title h2 {
	color: white;
}

.reviews .section-title p {
	color: rgba(255, 255, 255, 0.6);
}

.review-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	/* 3列布局 */
	gap: 30px;
	margin-top: 50px;
}

.review-card {
	/* 卡片背景：微透明的深色，带一点磨砂感 */
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 30px;
	transition: all 0.4s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* 悬停效果：边框变金，上浮 */
.review-card:hover {
	border-color: var(--primary-gold);
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	background: rgba(255, 255, 255, 0.05);
}

/* --- 卡片顶部：用户信息 + 标签 --- */
.card-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 20px;
}

.user-info {
	display: flex;
	align-items: center;
	gap: 15px;
}

.user-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(212, 175, 55, 0.3);
}

.user-text h4 {
	font-size: 18px;
	font-weight: bold;
	color: white;
	line-height: 1.2;
}

.user-text span {
	font-size: 12px;
	color: #888;
}

/* 标签样式 (胶囊状) */
.tag-badge {
	padding: 4px 12px;
	border: 1px solid var(--primary-gold);
	color: var(--primary-gold);
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
	white-space: nowrap;
}

/* --- 卡片中部：评价内容 --- */
.review-quote {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
	margin-bottom: 25px;
	min-height: 80px;
	/* 保持卡片高度一致 */
	position: relative;
}

/* --- 卡片底部：数据展示 --- */
.card-data {
	display: flex;
	gap: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 15px;
}

.data-item {
	font-size: 13px;
	color: #aaa;
	font-family: monospace;
	/* 更有数据感 */
}

.data-item strong {
	color: var(--primary-gold);
	margin-left: 5px;
}

/* 移动端适配 */
@media (max-width: 768px) {
	.review-grid {
		grid-template-columns: 1fr;
		/* 手机端变为单列 */
	}

	.review-card {
		margin-bottom: 20px;
	}
}

/* ================= 新增：全球业务矩阵 (黑金版) ================= */
.global-matrix {
	padding: 100px 0;
	/* 使用深邃的放射渐变背景，营造地球/宇宙的深邃感 */
	background: radial-gradient(circle at center, #0f2e28 0%, #000000 100%);
	color: white;
	text-align: center;
}

/* 顶部金色小标题 */
.matrix-subtitle {
	font-size: 16px;
	font-weight: bold;
	color: var(--primary-gold);
	margin-bottom: 20px;
	letter-spacing: 2px;
	text-transform: uppercase;
	display: inline-block;
	position: relative;
}

/* 装饰线：小标题两侧的横线 */
.matrix-subtitle::before,
.matrix-subtitle::after {
	content: '';
	display: inline-block;
	width: 30px;
	height: 1px;
	background: var(--primary-gold);
	vertical-align: middle;
	margin: 0 15px;
	opacity: 0.6;
}

/* 核心大标题 */
.matrix-title {
	font-size: 42px;
	font-weight: 800;
	color: white;
	max-width: 900px;
	margin: 0 auto 80px;
	line-height: 1.4;
	text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* 4列卡片布局 */
.matrix-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 60px;
}

.matrix-card {
	background: rgba(255, 255, 255, 0.02);
	/* 极淡的透明背景 */
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 40px 20px;
	transition: all 0.4s ease;
}

/* 悬停效果：边框变金，背景微亮 */
.matrix-card:hover {
	border-color: var(--primary-gold);
	background: rgba(15, 46, 40, 0.6);
	/* 悬停时显示墨绿色 */
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* 卡片内文字样式 */
.region-code {
	font-size: 20px;
	font-weight: bold;
	color: #00ffbf;
	/* 保留一点图片中的青色科技感，或者改成 var(--primary-gold) */
	color: var(--primary-gold);
	/* 改为金色以保持统一 */
	margin-bottom: 15px;
	display: block;
	letter-spacing: 1px;
}

.region-desc {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
}

/* 底部幽灵按钮 (Outline Button) */
.btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 50px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	color: white;
	font-size: 16px;
	transition: all 0.3s;
}

.btn-ghost:hover {
	border-color: var(--primary-gold);
	color: var(--primary-gold);
	background: rgba(212, 175, 55, 0.05);
}

/* 移动端适配 */
@media (max-width: 768px) {
	.matrix-title {
		font-size: 28px;
	}

	.matrix-grid {
		grid-template-columns: 1fr 1fr;
	}

	/* 手机端变为2列 */
	.matrix-card {
		padding: 30px 10px;
	}
}

@media (max-width: 480px) {
	.matrix-grid {
		grid-template-columns: 1fr;
	}

	/* 小屏手机变为1列 */
}

/* ================= 新增：售后保障 (透明承诺风格) ================= */
.guarantee {
	padding: 100px 0;
	/* 使用浅色背景，代表“透明”、“公开”，打破深色背景的压抑感 */
	background-color: #fff;
	position: relative;
}

.guarantee .section-title h2 {
	color: var(--text-main);
}

.guarantee .section-title p {
	color: var(--text-gray);
}

.guarantee-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 50px;
}

.gu-card {
	background: #fff;
	padding: 30px 20px;
	text-align: center;
	border: 1px solid #eee;
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}

/* 悬停效果：卡片上浮，投影加深，底部出现金线 */
.gu-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	border-color: transparent;
}

.gu-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--primary-gold);
	transform: scaleX(0);
	transition: transform 0.3s ease;
	transform-origin: center;
}

.gu-card:hover::after {
	transform: scaleX(1);
}

/* 图标容器 */
.gu-icon-box {
	width: 70px;
	height: 70px;
	margin: 0 auto 25px;
	background: var(--bg-accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: var(--primary-gold);
	transition: all 0.3s;
}

.gu-card:hover .gu-icon-box {
	background: var(--primary-gold);
	color: white;
}

.gu-card h3 {
	font-size: 18px;
	margin-bottom: 15px;
	color: var(--text-main);
	font-weight: 700;
}

.gu-card p {
	font-size: 13px;
	color: var(--text-gray);
	line-height: 1.6;
}

/* 移动端适配 */
@media (max-width: 768px) {
	.guarantee-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.gu-card {
		padding: 30px;
	}
}

/* ================= 导航栏下拉菜单样式 ================= */

/* 下拉菜单容器 */
.dropdown {
	position: relative;
	display: inline-block;
	height: 100%;
	/* 确保高度填满导航栏，防止鼠标移开时菜单消失 */
}

/* 下拉按钮本身样式 (继承原有链接样式并微调) */
.dropbtn {
	cursor: pointer;
	display: inline-block;
	height: 100%;
	display: flex;
	/* 让文字垂直居中 */
	align-items: center;
}

/* 下拉内容框 (默认隐藏) */
.dropdown-content {
	display: none;
	/* 默认不显示 */
	position: absolute;
	top: 100%;
	/* 在导航栏正下方显示 */
	left: 50%;
	transform: translateX(-50%);
	/* 居中对齐 */
	background-color: rgba(8, 26, 23, 0.95);
	/* 使用主题深墨绿背景，带微透明 */
	backdrop-filter: blur(10px);
	/* 高级毛玻璃效果 */
	min-width: 160px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	z-index: 1001;
	border-top: 3px solid var(--primary-gold);
	/* 顶部金色线条装饰 */
	border-radius: 0 0 4px 4px;
	padding: 5px 0;
}

/* 下拉框里的每一个选项链接 */
.dropdown-content a {
	color: rgba(255, 255, 255, 0.9) !important;
	/* 强制白色文字 */
	padding: 12px 20px;
	text-decoration: none;
	display: block;
	text-align: center;
	font-size: 14px;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	/* 极细的分隔线 */
}

/* 去掉最后一个选项的底边框 */
.dropdown-content a:last-child {
	border-bottom: none;
}

/* 鼠标悬停在选项上时的效果 */
.dropdown-content a:hover {
	background-color: var(--primary-gold);
	/* 金色背景 */
	color: var(--bg-dark) !important;
	/* 深色文字 */
	padding-left: 25px;
	/* 文字微微右移的动效 */
}

/* 下拉列表 hover 显示机制 */
.dropdown:hover .dropdown-content {
	display: block;
	animation: fadeIn 0.3s ease;
	/* 淡入动画 */
}

/* 简单的淡入动画 */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translate(-50%, 10px);
	}

	to {
		opacity: 1;
		transform: translate(-50%, 0);
	}
}

/* 修正：下拉链接不需要原有的底部线条动画 */
.dropdown a::after {
	display: none;
}

/* ================= 新增：核心业务范围 (图文卡片) ================= */
.services {
	padding: 100px 0;
	/* 使用深色渐变背景，与上下的深色板块自然过渡 */
	background: linear-gradient(180deg, #081a17 0%, #0b1016 100%);
	color: white;
}

.services .section-title h2 {
	color: white;
}

.services .section-title p {
	color: rgba(255, 255, 255, 0.7);
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	/* 2列布局 */
	gap: 30px;
	/* 卡片间距 */
	margin-top: 50px;
}

.service-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	overflow: hidden;
	/* 确保图片放大时不溢出圆角 */
	transition: all 0.4s ease;
	group: hover;
}

/* 悬停效果：卡片上浮，边框变金 */
.service-card:hover {
	transform: translateY(-8px);
	border-color: var(--primary-gold);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.service-img-box {
	width: 100%;
	height: 250px;
	/* 固定图片高度 */
	overflow: hidden;
	position: relative;
}

.service-img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* 保证图片填满且不变形 */
	transition: transform 0.5s ease;
}

/* 悬停时图片微放大 */
.service-card:hover .service-img-box img {
	transform: scale(1.05);
}

/* 图片上的半透明遮罩（可选，增加文字可读性） */
.service-img-box::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
}

.service-content {
	padding: 30px;
}

.service-content h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: white;
	font-weight: 700;
}

.service-content p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
	margin-bottom: 0;
}

/* 装饰性箭头 */
.service-link {
	display: inline-block;
	margin-top: 20px;
	color: var(--primary-gold);
	font-size: 14px;
	font-weight: 600;
	opacity: 0;
	/* 默认隐藏 */
	transform: translateX(-10px);
	transition: all 0.3s ease;
}

.service-card:hover .service-link {
	opacity: 1;
	transform: translateX(0);
}

/* 移动端适配 */
@media (max-width: 768px) {
	.service-grid {
		grid-template-columns: 1fr;
	}

	/* 手机端单列 */
	.service-img-box {
		height: 200px;
	}
}

/* ================= 新增：双栏高端页尾 (仿图片布局-黑金版) ================= */
.site-footer {
	background-color: #020605;
	/* 极深墨色背景 */
	color: #999;
	padding: 80px 0 30px;
	border-top: 1px solid rgba(212, 175, 55, 0.2);
	/* 顶部金色分割线 */
}

/* 核心布局：左右两栏 */
.footer-layout {
	display: flex;
	justify-content: space-between;
	/* 左右分开 */
	align-items: flex-start;
	/* 顶部对齐 */
	gap: 60px;
	padding-bottom: 60px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	/* 底部版权分割线 */
}

/* --- 左侧：品牌与简介 --- */
.footer-left {
	flex: 1;
	/* 占据剩余空间 */
	max-width: 500px;
}

.footer-title {
	font-size: 32px;
	font-weight: 800;
	color: white;
	margin-bottom: 20px;
	letter-spacing: 1px;
}

.footer-desc {
	font-size: 15px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 35px;
}

/* 在线客服按钮 (复用黑金风格) */
.footer-btn {
	display: inline-block;
	padding: 14px 40px;
	background: #333;
	/* 默认深灰底 */
	color: white;
	font-size: 16px;
	font-weight: bold;
	border: 1px solid rgba(255, 255, 255, 0.2);
	cursor: pointer;
	transition: all 0.3s;
}

.footer-btn:hover {
	background: var(--primary-gold);
	border-color: var(--primary-gold);
	color: #000;
	/* 悬停变黑字金底 */
}

/* --- 右侧：服务列表 --- */
.footer-left {
	flex: 0 0 400px;
	/* 固定宽度 */
}

.service-list-title {
	font-size: 18px;
	font-weight: bold;
	color: white;
	margin-bottom: 25px;
	border-left: 4px solid var(--primary-gold);
	/* 左侧金色竖条装饰 */
	padding-left: 15px;
}

.service-list {
	list-style: none;
}

.service-list li {
	margin-bottom: 15px;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
	display: flex;
	align-items: center;
}

/* 金色箭头装饰 » */
.service-list li::before {
	content: '»';
	color: var(--primary-gold);
	font-size: 20px;
	margin-right: 10px;
	font-weight: bold;
	line-height: 1;
}

.service-list li:hover {
	color: var(--primary-gold);
	transform: translateX(5px);
	transition: transform 0.3s;
}

/* --- 底部版权 --- */
.footer-copyright {
	text-align: center;
	padding-top: 30px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.3);
}

/* 移动端适配 */
@media (max-width: 768px) {
	.footer-layout {
		flex-direction: column;
		/* 手机上变成上下排列 */
		gap: 40px;
	}

	.footer-left {
		max-width: 100%;
	}

	.footer-right {
		flex: auto;
		width: 100%;
	}
}

/* ================= 新增：高亮通告栏 (加大霸气版) ================= */
.special-notice {
	background-color: #050f0d;
	padding: 50px 0;
	/* 增加上下高度，容纳大字 */
	position: relative;
	overflow: hidden;
}

.notice-box {
	background: linear-gradient(90deg, rgba(212, 175, 55, 0.05) 0%, rgba(8, 26, 23, 0.95) 50%, rgba(212, 175, 55, 0.05) 100%);
	border: 1px solid rgba(212, 175, 55, 0.4);
	border-radius: 16px;
	padding: 35px 20px;
	/* 增加内边距 */
	text-align: center;
	position: relative;
	box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.notice-box::before,
.notice-box::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	/* 装饰条变宽 */
	height: 70%;
	background: var(--primary-gold);
	border-radius: 4px;
}

.notice-box::before {
	left: 0;
}

.notice-box::after {
	right: 0;
}

.notice-content {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	/* 拉大间距 */
	flex-wrap: wrap;
}

/* --- 核心修改点：字号全面加大 --- */

/* 第一句：先投后付 */
.highlight-offer {
	font-size: 28px;
	/* 普通文字加大到 28px */
	font-weight: 800;
	color: #fff;
	text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
	display: flex;
	align-items: center;
	gap: 15px;
	letter-spacing: 1px;
}

/* 金色数字强调 (特大号) */
.highlight-offer span {
	color: var(--primary-gold);
	font-size: 42px;
	/* 数字加大到 42px，非常醒目 */
	font-family: 'Impact', 'Arial Black', sans-serif;
	/* 换成更粗的字体 */
	line-height: 1;
}

/* 第二句：项目标签 */
.project-tags {
	display: flex;
	gap: 12px;
	align-items: center;
}

.p-tag {
	font-size: 18px;
	/* 标签文字加大到 18px */
	font-weight: bold;
	color: white;
	background: rgba(255, 255, 255, 0.15);
	padding: 8px 18px;
	/* 标签变大 */
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s;
}

.p-tag:hover {
	border-color: var(--primary-gold);
	background: var(--primary-gold);
	color: #000;
	/* 悬停变黑字 */
	transform: translateY(-4px);
	box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.fire-icon {
	font-size: 32px;
	/* 图标也放大 */
	animation: pulse 1.5s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.2);
		opacity: 0.8;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/* 移动端适配 */
@media (max-width: 768px) {
	.notice-content {
		flex-direction: column;
		gap: 20px;
	}

	.highlight-offer {
		font-size: 20px;
		/* 手机上稍微收敛一点，防止换行太乱 */
		justify-content: center;
		text-align: center;
		flex-wrap: wrap;
	}

	.highlight-offer span {
		font-size: 32px;
	}

	/* 手机上数字依然要大 */

	.project-tags {
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 10px;
	}

	.p-tag {
		font-size: 14px;
		padding: 6px 12px;
	}
}

/* ================= 新增：法律条款折叠样式 ================= */
.legal-bar {
	margin-bottom: 20px;
	font-size: 14px;
}

.legal-trigger {
	color: #888;
	cursor: pointer;
	margin: 0 15px;
	padding-bottom: 2px;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
	/* 虚线底边，提示可点击 */
	transition: all 0.3s;
	user-select: none;
	/* 防止双击选中文字 */
}

.legal-trigger:hover {
	color: var(--primary-gold);
	border-bottom-color: var(--primary-gold);
}

/* 展开的内容框 */
.legal-content-box {
	display: none;
	/* 默认隐藏 */
	background: rgba(255, 255, 255, 0.05);
	/* 微透明深色背景 */
	padding: 25px;
	margin: 20px auto;
	border-radius: 8px;
	text-align: left;
	/* 文本左对齐 */
	font-size: 13px;
	line-height: 1.8;
	color: #aaa;
	max-width: 900px;
	border-left: 3px solid var(--primary-gold);
	/* 左侧金色竖条装饰 */
	animation: fadeIn 0.4s ease;
	/* 淡入动画 */
}

.legal-content-box h4 {
	color: white;
	margin-bottom: 10px;
	font-size: 16px;
}

.legal-content-box p {
	margin-bottom: 10px;
}

/* 简单的淡入动画关键帧 */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ================= 新增：右下角悬浮按钮组 ================= */
.floating-bar {
	position: fixed;
	bottom: 40px;
	right: 30px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 15px;
	/* 两个按钮之间的间距 */
}

.float-btn {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
}

.float-btn svg {
	width: 32px;
	height: 32px;
	fill: white;
}

/* 悬停动画：放大并上浮 */
.float-btn:hover {
	transform: scale(1.1) translateY(-5px);
}

/* Telegram 品牌色 (蓝) */
.float-tg {
	background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
	border: 2px solid rgba(255, 255, 255, 0.2);
}

/* WeChat 品牌色 (绿) */
.float-wx {
	background: linear-gradient(135deg, #07C160 0%, #06AD56 100%);
	border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Tooltip 提示文字 (鼠标放上去显示) */
.float-btn::before {
	content: attr(data-tip);
	position: absolute;
	right: 75px;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.8);
	color: white;
	padding: 6px 12px;
	border-radius: 4px;
	font-size: 12px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
}

.float-btn:hover::before {
	opacity: 1;
}

/* ================= 微信二维码弹窗 (Modal) ================= */
.wx-modal-overlay {
	display: none;
	/* 默认隐藏 */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	/* 深色遮罩 */
	backdrop-filter: blur(8px);
	/* 高端毛玻璃模糊 */
	z-index: 10000;
	align-items: center;
	justify-content: center;
	animation: fadeIn 0.3s;
}

.wx-modal-box {
	background: white;
	padding: 30px;
	border-radius: 16px;
	text-align: center;
	position: relative;
	max-width: 320px;
	width: 90%;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	animation: zoomIn 0.3s;
}

.wx-modal-box h3 {
	color: #333;
	font-size: 20px;
	margin-bottom: 20px;
	font-weight: bold;
}

.wx-qr-img {
	width: 200px;
	height: 200px;
	background: #f0f0f0;
	/* 二维码加载前的占位色 */
	margin: 0 auto;
	display: block;
	object-fit: cover;
}

.wx-id-text {
	margin-top: 15px;
	color: #666;
	font-size: 14px;
	background: #f5f5f5;
	padding: 8px;
	border-radius: 4px;
}

.close-btn {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 28px;
	color: #999;
	cursor: pointer;
	line-height: 1;
	transition: color 0.3s;
}

.close-btn:hover {
	color: #333;
}

/* 弹窗动画 */
@keyframes zoomIn {
	from {
		transform: scale(0.8);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

.floating-bar {
	position: fixed;
	bottom: 40px;
	right: 30px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.float-btn {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
	cursor: pointer;
	transition: transform 0.3s;
	background: white;
}

.float-btn:hover {
	transform: scale(1.1) translateY(-5px);
}

/* 核心修复：确保图标是白色的，且尺寸合适 */
.float-btn svg {
	width: 28px;
	height: 28px;
	fill: white;
	/* 强制白色填充 */
}

/* Telegram 蓝色渐变背景 */
.float-tg {
	background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
}

/* 微信 绿色渐变背景 */
.float-wx {
	background: linear-gradient(135deg, #07C160 0%, #06AD56 100%);
}

/* 微信弹窗样式保持不变 */
.wx-modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
	z-index: 10000;
	align-items: center;
	justify-content: center;
}

.wx-modal-box {
	background: white;
	padding: 30px;
	border-radius: 12px;
	text-align: center;
	width: 300px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.wx-qr-img {
	width: 200px;
	height: 200px;
	object-fit: cover;
	margin: 15px auto;
	display: block;
}

.close-btn {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 30px;
	color: #999;
	cursor: pointer;
}