/* ============================================================
   aboutv2.css — 关于我们系列 · 金色科技风
   ============================================================ */

body.ab-body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	background: #0b0a08;
	font-family: "Microsoft YaHei", "PingFang SC", -apple-system, BlinkMacSystemFont, sans-serif;
	color: #f3e7c7;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
body.ab-body * { box-sizing: border-box; }
body.ab-body a { text-decoration: none; }

.ab-page {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background:
		radial-gradient(ellipse 70% 45% at 12% 12%, rgba(212, 168, 75, 0.14), transparent 55%),
		radial-gradient(ellipse 50% 40% at 92% 78%, rgba(250, 216, 89, 0.07), transparent 50%),
		linear-gradient(160deg, #120f0b 0%, #0b0a08 45%, #16120c 100%);
}

/* ---------- 场景氛围 ---------- */
.ab-scene {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}
.ab-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(212, 168, 75, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(212, 168, 75, 0.07) 1px, transparent 1px);
	background-size: 48px 48px;
	transform: perspective(600px) rotateX(55deg) translateY(-18%) scale(1.4);
	transform-origin: center top;
	animation: abGrid 18s linear infinite;
	opacity: 0.4;
}
@keyframes abGrid {
	0% { background-position: 0 0; }
	100% { background-position: 0 48px; }
}
.ab-scan {
	position: absolute;
	left: 0;
	right: 0;
	height: 110px;
	background: linear-gradient(180deg, transparent, rgba(250, 216, 89, 0.1), transparent);
	animation: abScan 7s ease-in-out infinite;
}
@keyframes abScan {
	0%, 100% { top: -10%; opacity: 0; }
	25% { opacity: 1; }
	100% { top: 110%; opacity: 0; }
}
.ab-beam {
	position: absolute;
	width: 2px;
	height: 160px;
	background: linear-gradient(180deg, transparent, #fad859, transparent);
	opacity: 0.28;
	animation: abBeam 4.5s ease-in-out infinite;
}
.ab-beam-1 { left: 8%; top: 18%; }
.ab-beam-2 { right: 12%; top: 36%; height: 200px; animation-direction: reverse; }
@keyframes abBeam {
	0%, 100% { transform: translateY(0); opacity: 0.12; }
	50% { transform: translateY(36px); opacity: 0.45; }
}
.ab-particle {
	position: absolute;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #fad859;
	box-shadow: 0 0 10px #d4a84b;
	animation: abFloat 7s ease-in-out infinite;
}
.ab-particle-1 { left: 10%; top: 42%; }
.ab-particle-2 { left: 48%; top: 72%; animation-delay: 1.4s; }
.ab-particle-3 { right: 18%; top: 28%; animation-delay: 2.2s; }
@keyframes abFloat {
	0%, 100% { transform: translateY(0); opacity: 0.35; }
	50% { transform: translateY(-20px); opacity: 1; }
}

/* ---------- 顶栏 ---------- */
.ab-top {
	position: sticky;
	top: 0;
	z-index: 200;
	background: rgba(14, 12, 9, 0.88);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(212, 168, 75, 0.28);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.ab-top-inner {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	height: 66px;
	display: flex;
	align-items: center;
	gap: 24px;
}
.ab-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
	color: #fad859 !important;
}
.ab-brand img {
	height: 36px;
	width: auto;
	display: block;
	border-radius: 4px;
}
.ab-brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}
.ab-brand-text em {
	font-style: normal;
	font-size: 15px;
	font-weight: 700;
	color: #fad859;
}
.ab-brand-text small {
	font-size: 10px;
	letter-spacing: 1.5px;
	color: rgba(243, 231, 199, 0.45);
	margin-top: 2px;
}

.ab-nav {
	flex: 1;
	display: flex;
	align-items: stretch;
	justify-content: center;
	height: 100%;
	gap: 4px;
}
.ab-nav-item {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 0 16px;
	height: 100%;
	font-size: 14px;
	font-weight: 500;
	color: rgba(243, 231, 199, 0.62) !important;
	border-bottom: 2px solid transparent;
	transition: color 0.2s, border-color 0.2s;
}
.ab-nav-item:hover {
	color: #fad859 !important;
}
.ab-nav-item.is-on {
	color: #fad859 !important;
	border-bottom-color: #fad859;
	font-weight: 700;
	text-shadow: 0 0 16px rgba(250, 216, 89, 0.35);
}

.ab-home {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	height: 36px;
	padding: 0 16px;
	border: 1px solid rgba(212, 168, 75, 0.5);
	border-radius: 999px;
	color: #f3e7c7 !important;
	font-size: 13px;
	font-weight: 600;
	transition: all 0.25s ease;
}
.ab-home:hover {
	background: rgba(212, 168, 75, 0.18);
	border-color: #fad859;
	color: #fad859 !important;
}

/* ---------- Hero ---------- */
.ab-hero {
	position: relative;
	z-index: 1;
	overflow: hidden;
	border-bottom: 1px solid rgba(212, 168, 75, 0.18);
}
.ab-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 44px 24px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}
.ab-hero-kicker {
	display: inline-block;
	margin-bottom: 12px;
	padding: 4px 12px;
	border: 1px solid rgba(212, 168, 75, 0.4);
	border-radius: 999px;
	font-size: 12px;
	letter-spacing: 1px;
	color: #d4a84b;
	background: rgba(212, 168, 75, 0.1);
}
.ab-hero-copy h1 {
	margin: 0 0 12px;
	font-size: 36px;
	font-weight: 800;
	letter-spacing: 1px;
	line-height: 1.25;
	background: linear-gradient(90deg, #fff8e8, #fad859, #d4a84b);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.ab-hero-copy p {
	margin: 0;
	font-size: 15px;
	color: rgba(243, 231, 199, 0.6);
	max-width: 520px;
	line-height: 1.7;
}
.ab-hero-orb {
	position: relative;
	width: 120px;
	height: 120px;
	flex-shrink: 0;
}
.ab-orb-ring {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px solid rgba(212, 168, 75, 0.35);
}
.ab-orb-ring-1 {
	animation: abSpin 12s linear infinite;
	border-top-color: #fad859;
}
.ab-orb-ring-2 {
	inset: 16px;
	animation: abSpin 7s linear infinite reverse;
	border-bottom-color: #d4a84b;
}
.ab-orb-core {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 28px;
	height: 28px;
	margin: -14px 0 0 -14px;
	border-radius: 50%;
	background: radial-gradient(circle, #fad859, #a67c2d);
	box-shadow: 0 0 28px rgba(250, 216, 89, 0.55);
	animation: abPulse 2s ease-in-out infinite;
}
@keyframes abSpin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
@keyframes abPulse {
	0%, 100% { transform: scale(1); opacity: 0.85; }
	50% { transform: scale(1.12); opacity: 1; }
}

/* ---------- 主内容 ---------- */
.ab-main {
	position: relative;
	z-index: 1;
	flex: 1;
	padding: 36px 0 48px;
}
.ab-main-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	animation: abIn 0.55s ease-out both;
}
@keyframes abIn {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}

/* ---------- 通用面板 ---------- */
.ab-panel {
	position: relative;
	background: linear-gradient(165deg, rgba(28, 24, 18, 0.96), rgba(16, 13, 10, 0.98));
	border: 1px solid rgba(212, 168, 75, 0.28);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(250, 216, 89, 0.1);
}
.ab-panel-bar {
	height: 3px;
	background: linear-gradient(90deg, #a67c2d, #fad859, #d4a84b, #a67c2d);
	background-size: 200% 100%;
	animation: abBarFlow 4s linear infinite;
}
@keyframes abBarFlow {
	0% { background-position: 0 0; }
	100% { background-position: 200% 0; }
}
.ab-panel-body {
	padding: 36px 40px;
}

/* 富文本 */
.ab-rich h1,
.ab-rich h2,
.ab-rich h3 {
	color: #fff8e8;
	font-weight: 700;
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(212, 168, 75, 0.2);
	text-align: left;
}
.ab-rich h1 { font-size: 24px; }
.ab-rich h2 { font-size: 20px; }
.ab-rich h3 { font-size: 17px; }
.ab-rich p {
	color: rgba(243, 231, 199, 0.72);
	font-size: 15px;
	line-height: 1.9;
	margin: 0 0 16px;
	text-align: left;
}
.ab-rich img {
	max-width: 100%;
	height: auto;
	margin: 12px 0;
	border-radius: 8px;
	border: 1px solid rgba(212, 168, 75, 0.2);
}
.ab-rich a {
	color: #fad859;
	border-bottom: 1px solid transparent;
}
.ab-rich a:hover { border-bottom-color: #fad859; }
.ab-rich ul,
.ab-rich ol {
	margin: 12px 0;
	padding-left: 22px;
	text-align: left;
}
.ab-rich li {
	color: rgba(243, 231, 199, 0.7);
	line-height: 1.8;
	margin-bottom: 6px;
}
.ab-rich blockquote {
	margin: 18px 0;
	padding: 14px 18px;
	border-left: 3px solid #d4a84b;
	background: rgba(212, 168, 75, 0.08);
	color: rgba(243, 231, 199, 0.75);
	border-radius: 0 8px 8px 0;
}
.ab-rich table {
	width: 100%;
	border-collapse: collapse;
	margin: 16px 0;
}
.ab-rich th {
	background: rgba(212, 168, 75, 0.2);
	color: #fad859;
	padding: 10px 14px;
	text-align: left;
	border: 1px solid rgba(212, 168, 75, 0.25);
}
.ab-rich td {
	padding: 10px 14px;
	border: 1px solid rgba(212, 168, 75, 0.15);
	color: rgba(243, 231, 199, 0.72);
}
.ab-rich tr:nth-child(even) { background: rgba(255, 255, 255, 0.03); }

/* ---------- 关于我们 ---------- */
.ab-about {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.ab-subnav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 10px;
	background: rgba(20, 16, 12, 0.85);
	border: 1px solid rgba(212, 168, 75, 0.25);
	border-radius: 14px;
}
.ab-subnav-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 500;
	color: rgba(243, 231, 199, 0.65) !important;
	border-radius: 999px;
	border: 1px solid transparent;
	transition: all 0.25s ease;
}
.ab-subnav-link:hover {
	color: #fad859 !important;
	border-color: rgba(212, 168, 75, 0.35);
	background: rgba(212, 168, 75, 0.08);
}
.ab-subnav-link.is-on {
	color: #1a140c !important;
	background: linear-gradient(90deg, #a67c2d, #d4a84b, #fad859);
	font-weight: 700;
	box-shadow: 0 0 18px rgba(212, 168, 75, 0.35);
}
.ab-subnav-link.is-on::after { display: none; }

/* ---------- 公告 ---------- */
.ab-announce {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.ab-announce-item {
	position: relative;
	background: linear-gradient(165deg, rgba(28, 24, 18, 0.96), rgba(16, 13, 10, 0.98));
	border: 1px solid rgba(212, 168, 75, 0.25);
	border-radius: 16px;
	padding-left: 6px;
	overflow: hidden;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
	animation: abIn 0.5s ease-out both;
	transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.ab-announce-item:hover {
	border-color: rgba(250, 216, 89, 0.55);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4), 0 0 24px rgba(212, 168, 75, 0.12);
	transform: translateY(-2px);
}
.ab-announce-rail {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, #fad859, #a67c2d);
}
.ab-announce-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px;
	padding: 20px 24px 16px;
	border-bottom: 1px solid rgba(212, 168, 75, 0.15);
}
.ab-announce-title {
	display: flex;
	align-items: center;
	gap: 12px;
}
.ab-announce-icon {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: linear-gradient(145deg, rgba(212, 168, 75, 0.35), rgba(20, 16, 10, 0.85));
	border: 1px solid rgba(250, 216, 89, 0.4);
	color: #fad859;
	font-size: 13px;
	font-weight: 700;
	flex-shrink: 0;
}
.ab-announce-title h2 {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: #fff8e8;
}
.ab-announce-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
.ab-announce-meta span {
	font-size: 12px;
	color: rgba(243, 231, 199, 0.45);
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(212, 168, 75, 0.15);
}
.ab-announce-body {
	padding: 22px 24px 26px;
}

/* ---------- FAQ ---------- */
.ab-faq {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 24px;
	align-items: start;
}
.ab-faq-side {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.ab-faq-group {
	background: linear-gradient(165deg, rgba(28, 24, 18, 0.96), rgba(16, 13, 10, 0.98));
	border: 1px solid rgba(212, 168, 75, 0.25);
	border-radius: 14px;
	padding: 18px 20px;
	animation: abIn 0.45s ease-out both;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.ab-faq-group:hover {
	border-color: rgba(250, 216, 89, 0.5);
	box-shadow: 0 0 20px rgba(212, 168, 75, 0.1);
}
.ab-faq-group-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}
.ab-faq-num {
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	color: #1a140c;
	background: linear-gradient(135deg, #d4a84b, #fad859);
	border-radius: 8px;
	flex-shrink: 0;
}
.ab-faq-group-head h3 {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	color: #fff8e8;
}
.ab-faq-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.ab-faq-tag {
	display: inline-block;
	padding: 7px 12px;
	font-size: 13px;
	color: rgba(243, 231, 199, 0.65) !important;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(212, 168, 75, 0.18);
	border-radius: 999px;
	transition: all 0.2s;
}
.ab-faq-tag:hover {
	color: #fad859 !important;
	border-color: rgba(250, 216, 89, 0.45);
	background: rgba(212, 168, 75, 0.1);
}
.ab-faq-tag.is-on {
	color: #1a140c !important;
	background: linear-gradient(90deg, #a67c2d, #fad859);
	border-color: transparent;
	font-weight: 700;
}
.ab-faq-answer {
	position: sticky;
	top: 86px;
}
.ab-faq-answer-head {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 24px 28px 0;
}
.ab-faq-q {
	width: 38px;
	height: 38px;
	line-height: 38px;
	text-align: center;
	font-size: 16px;
	font-weight: 800;
	color: #1a140c;
	background: linear-gradient(135deg, #d4a84b, #fad859);
	border-radius: 10px;
	flex-shrink: 0;
	box-shadow: 0 0 16px rgba(212, 168, 75, 0.35);
}
.ab-faq-answer-head h1 {
	margin: 0;
	padding-top: 6px;
	font-size: 20px;
	font-weight: 700;
	color: #fff8e8;
	line-height: 1.4;
	border: none;
}
.ab-faq-answer-body {
	padding: 18px 28px 30px;
}
.ab-faq-answer-body p { margin: 0; }

/* ---------- 友情链接 ---------- */
.ab-flink {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.ab-flink-block {
	background: linear-gradient(165deg, rgba(28, 24, 18, 0.96), rgba(16, 13, 10, 0.98));
	border: 1px solid rgba(212, 168, 75, 0.25);
	border-radius: 16px;
	padding: 22px 26px;
	animation: abIn 0.5s ease-out both;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}
.ab-flink-block-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(212, 168, 75, 0.18);
}
.ab-flink-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #fad859;
	box-shadow: 0 0 10px #d4a84b;
	flex-shrink: 0;
}
.ab-flink-block-head h2 {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: #fff8e8;
}
.ab-flink-imgs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 12px;
}
.ab-flink-img {
	display: block;
	padding: 10px 12px;
	border: 1px solid rgba(212, 168, 75, 0.22);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.04);
	transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.ab-flink-img img {
	max-width: 130px;
	max-height: 56px;
	display: block;
}
.ab-flink-img:hover {
	border-color: #fad859;
	transform: translateY(-2px);
	box-shadow: 0 0 18px rgba(212, 168, 75, 0.2);
}
.ab-flink-txt {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.ab-flink-txt a {
	padding: 7px 14px;
	font-size: 13px;
	color: rgba(243, 231, 199, 0.7) !important;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(212, 168, 75, 0.18);
	border-radius: 999px;
	transition: all 0.2s;
}
.ab-flink-txt a:hover {
	color: #fad859 !important;
	border-color: rgba(250, 216, 89, 0.5);
	background: rgba(212, 168, 75, 0.12);
}

.ab-flink-apply {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.ab-flink-sec-head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 22px 26px 0;
}
.ab-flink-sec-head span {
	width: 34px;
	height: 34px;
	line-height: 34px;
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	color: #1a140c;
	background: linear-gradient(135deg, #d4a84b, #fad859);
	border-radius: 8px;
}
.ab-flink-sec-head h2 {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	color: #fff8e8;
}
.ab-flink-steps-body {
	padding: 18px 26px 28px;
}
.ab-step {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin-bottom: 14px;
}
.ab-step span {
	width: 24px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	color: #1a140c;
	background: linear-gradient(135deg, #d4a84b, #fad859);
	border-radius: 6px;
	flex-shrink: 0;
	margin-top: 2px;
}
.ab-step p {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
	color: rgba(243, 231, 199, 0.68);
}
.ab-step strong { color: #fad859; }
.ab-flink-code {
	margin: 0 0 16px 36px;
	padding: 14px 16px;
	background: rgba(212, 168, 75, 0.08);
	border: 1px dashed rgba(212, 168, 75, 0.35);
	border-radius: 10px;
}
.ab-flink-code div {
	display: flex;
	gap: 12px;
	font-size: 13px;
	line-height: 1.9;
	color: rgba(243, 231, 199, 0.7);
}
.ab-flink-code em {
	font-style: normal;
	color: rgba(243, 231, 199, 0.45);
	min-width: 64px;
}
.ab-flink-code strong {
	color: #fad859;
	word-break: break-all;
}

.ab-form {
	padding: 18px 26px 28px;
}
.ab-form-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}
.ab-form-row label {
	width: 72px;
	flex-shrink: 0;
	font-size: 13px;
	color: rgba(243, 231, 199, 0.55);
	text-align: right;
}
.ab-form-row input[type="text"],
.ab-form-row select,
.ab-form-row textarea {
	flex: 1;
	height: 40px;
	padding: 0 12px;
	border: 1px solid rgba(212, 168, 75, 0.28);
	border-radius: 8px;
	background: rgba(10, 8, 6, 0.65);
	font-size: 14px;
	color: #f3e7c7;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
	font-family: inherit;
}
.ab-form-row textarea {
	height: 96px;
	padding: 10px 12px;
	resize: vertical;
}
.ab-form-row input::placeholder,
.ab-form-row textarea::placeholder {
	color: rgba(243, 231, 199, 0.3);
}
.ab-form-row input:focus,
.ab-form-row select:focus,
.ab-form-row textarea:focus {
	border-color: #fad859;
	box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.15);
}
.ab-form-row select option {
	background: #16120c;
	color: #f3e7c7;
}
.ab-form-row-full {
	align-items: flex-start;
}
.ab-form-row-full label { padding-top: 10px; }
.ab-captcha {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 10px;
}
.ab-captcha input {
	flex: 1;
	height: 40px;
	padding: 0 12px;
	border: 1px solid rgba(212, 168, 75, 0.28);
	border-radius: 8px;
	background: rgba(10, 8, 6, 0.65);
	color: #f3e7c7;
	font-size: 14px;
}
.ab-captcha img {
	height: 40px;
	cursor: pointer;
	border: 1px solid rgba(212, 168, 75, 0.25);
	border-radius: 6px;
}
.ab-form-submit {
	padding-left: 84px;
	margin-top: 8px;
}
.ab-form-submit .submit {
	display: inline-block;
	min-width: 140px;
	height: 44px;
	border: none;
	border-radius: 10px;
	background: linear-gradient(90deg, #a67c2d, #d4a84b, #fad859);
	background-size: 180% 100%;
	color: #1a140c;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: filter 0.2s, transform 0.2s;
}
.ab-form-submit .submit:hover {
	filter: brightness(1.08);
	transform: translateY(-1px);
}

/* ---------- 网站地图 ---------- */
.ab-sitemap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.ab-map-card {
	background: linear-gradient(165deg, rgba(28, 24, 18, 0.96), rgba(16, 13, 10, 0.98));
	border: 1px solid rgba(212, 168, 75, 0.25);
	border-radius: 14px;
	overflow: hidden;
	padding: 0;
	animation: abIn 0.45s ease-out both;
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.ab-map-card:hover {
	border-color: rgba(250, 216, 89, 0.55);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35), 0 0 20px rgba(212, 168, 75, 0.12);
	transform: translateY(-2px);
}
.ab-map-card-head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 16px 18px;
	background: linear-gradient(90deg, rgba(212, 168, 75, 0.18), rgba(20, 16, 12, 0.4));
	border-bottom: 1px solid rgba(212, 168, 75, 0.2);
}
.ab-map-icon {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #fad859;
	box-shadow: 0 0 10px #d4a84b;
	flex-shrink: 0;
}
.ab-map-card-head h2 {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
}
.ab-map-card-head h2 a {
	color: #fff8e8 !important;
}
.ab-map-card-head h2 a:hover {
	color: #fad859 !important;
}
.ab-map-links {
	list-style: none;
	margin: 0;
	padding: 12px 8px 14px;
	display: flex;
	flex-wrap: wrap;
}
.ab-map-links li {
	width: 50%;
}
.ab-map-links a {
	display: block;
	padding: 8px 10px;
	font-size: 13px;
	color: rgba(243, 231, 199, 0.65) !important;
	border-radius: 6px;
	transition: color 0.2s, background 0.2s;
}
.ab-map-links a:hover {
	color: #fad859 !important;
	background: rgba(212, 168, 75, 0.1);
}

/* ---------- 页脚 ---------- */
.ab-foot {
	position: relative;
	z-index: 1;
	margin-top: auto;
	background: rgba(12, 10, 8, 0.92);
	border-top: 1px solid rgba(212, 168, 75, 0.28);
}
.ab-foot-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 22px 24px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 18px;
	font-size: 12px;
	color: rgba(243, 231, 199, 0.45);
}
.ab-foot-inner a {
	color: rgba(212, 168, 75, 0.75) !important;
}
.ab-foot-inner a:hover {
	color: #fad859 !important;
}
.ab-foot .my_mps a { color: #fad859 !important; }

/* ---------- 响应式 ---------- */
@media screen and (max-width: 980px) {
	.ab-faq,
	.ab-flink-apply {
		grid-template-columns: 1fr;
	}
	.ab-faq-answer { position: static; }
	.ab-sitemap { grid-template-columns: repeat(2, 1fr); }
	.ab-nav { justify-content: flex-start; overflow-x: auto; }
	.ab-brand-text { display: none; }
	.ab-hero-orb { display: none; }
}

@media screen and (max-width: 640px) {
	.ab-top-inner {
		height: auto;
		flex-wrap: wrap;
		padding: 12px 16px;
		gap: 10px;
	}
	.ab-nav {
		order: 3;
		width: 100%;
		height: auto;
		justify-content: flex-start;
		border-top: 1px solid rgba(212, 168, 75, 0.15);
		padding-top: 8px;
	}
	.ab-nav-item {
		padding: 10px 12px;
		height: auto;
		border-bottom-width: 2px;
		white-space: nowrap;
	}
	.ab-hero-inner { padding: 32px 16px 36px; }
	.ab-hero-copy h1 { font-size: 26px; }
	.ab-main { padding: 24px 0 36px; }
	.ab-main-inner { padding: 0 16px; }
	.ab-panel-body { padding: 24px 18px; }
	.ab-sitemap { grid-template-columns: 1fr; }
	.ab-map-links li { width: 100%; }
	.ab-form-row {
		flex-direction: column;
		align-items: stretch;
	}
	.ab-form-row label,
	.ab-form-row-full label {
		width: auto;
		text-align: left;
		padding-top: 0;
	}
	.ab-form-submit { padding-left: 0; }
	.ab-subnav-link {
		flex: 1 1 auto;
		justify-content: center;
	}
	.ab-flink-code { margin-left: 0; }
}
