/**
 * XArr 店员免挂 —— 前台样式
 */

:root {
	--accent: #07c160;
	--accent-soft: rgba(7, 193, 96, 0.06);
	--accent-ring: rgba(7, 193, 96, 0.18);
	--ink: #1a1d24;
	--ink-2: #4b5563;
	--muted: #6b7280;
	--muted-2: #9aa3b2;
	--line: #e5e8ee;
	--card: #ffffff;
	--soft: #f7f9fc;
	--bg: #f2f4f7;
	--danger: #e5484d;
	--warn: #f0b429;
	--ok: #22a45d;
	--radius: 8px;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font: 14px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
		"Hiragino Sans GB", "Microsoft YaHei", sans-serif;
	-webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
b, strong { font-weight: 600; }
code { font-family: Consolas, Monaco, monospace; font-size: 0.92em; }
.mono { font-family: Consolas, Monaco, monospace; font-size: 12.5px; }
.muted { color: var(--muted); }
.small { font-size: 12px; }

/* ---------- 顶栏 ---------- */

.hd {
	background: var(--card);
	border-bottom: 1px solid var(--line);
}

.hd-in {
	max-width: 1180px;
	margin: 0 auto;
	height: 58px;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hd-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 700;
	color: var(--ink);
}

.hd-logo-mark {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	color: #fff;
	background: var(--accent);
	border-radius: 50%;
	font-size: 14px;
}

.hd-nav { display: flex; align-items: center; gap: 20px; font-size: 14px; }
.hd-nav a { color: var(--muted); }
.hd-nav a:hover { color: var(--ink); }
.hd-nav a.is-on { color: var(--ink); font-weight: 600; }

.hd-cta {
	padding: 6px 16px;
	color: #fff !important;
	background: var(--accent);
	border-radius: 6px;
}

.hd-out { color: var(--muted-2) !important; }

/* ---------- 主体 ---------- */

.main {
	max-width: 1180px;
	margin: 0 auto;
	padding: 24px 16px 48px;
}

/* ---------- 提示条 ---------- */

.alert {
	margin: 0 0 16px;
	padding: 12px 16px;
	font-size: 13.5px;
	line-height: 1.7;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	background: var(--card);
}

.alert--ok { color: #1f6b39; background: #f2fbf4; border-color: #b7e0c2; }
.alert--err { color: #a12a2a; background: #fdf2f2; border-color: #f0b7b7; }
.alert--warn { color: #8a5a12; background: #fffbeb; border-color: #fde8b8; }
.alert--info { color: #1e4778; background: #f2f7fd; border-color: #c3d9f0; }
.alert-hint { display: block; margin-top: 4px; font-size: 12px; opacity: 0.8; }

/* ---------- 顶部介绍 ---------- */

.hero { text-align: center; margin-bottom: 22px; }
.hero h1 { margin: 0 0 8px; font-size: 27px; font-weight: 700; letter-spacing: 0.5px; }
.hero > p { margin: 0; font-size: 14px; color: var(--muted); }

.hero--landing { padding: 40px 0 10px; }
.hero--landing h1 { font-size: 32px; }

.feats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
	text-align: left;
}

.feats li {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 12px 14px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.feat-icon { font-size: 19px; line-height: 1; }
.feat-text { display: flex; flex-direction: column; min-width: 0; }
.feat-text b { font-size: 13px; }
.feat-text small { font-size: 11.5px; color: var(--muted-2); }

.hero-acts {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-top: 26px;
}

/* ---------- 重要提示 ---------- */

.notice {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0 0 18px;
	padding: 13px 16px;
	background: #fff8f0;
	border: 1px solid #fadfc8;
	border-left: 3px solid var(--warn);
	border-radius: var(--radius);
}

.notice-icon { font-size: 16px; line-height: 1.5; }
.notice p { margin: 0; font-size: 13.5px; line-height: 1.7; color: #8a4b12; font-weight: 500; }

/* ---------- 卡片 ---------- */

.card {
	margin-bottom: 16px;
	padding: 20px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.card-hd {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 16px;
}

.card-hd h2 { margin: 0; font-size: 15.5px; font-weight: 600; }
.card-hd h2 small { margin-left: 8px; font-size: 12px; font-weight: 400; color: var(--muted-2); }
.card-hd .group-icon { font-size: 18px; }

.step {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	font-size: 12.5px;
	font-weight: 700;
	color: #fff;
	background: var(--accent);
	border-radius: 50%;
}

/* ---------- 购买布局 ---------- */

.buy {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 16px;
	align-items: start;
}

.buy-main { min-width: 0; }

.buy-side { position: sticky; top: 16px; }
.buy-side .card { margin-bottom: 0; }

/* ---------- 套餐 ---------- */

.groups { display: flex; flex-direction: column; gap: 16px; }

.group {
	padding: 14px;
	background: var(--soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: border-color 0.18s ease, background 0.18s ease;
}

.group.is-on { border-color: var(--accent); background: var(--accent-soft); }

.group-hd { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.group-icon { font-size: 17px; }
.group-t { display: flex; align-items: baseline; gap: 8px; }
.group-t b { font-size: 14.5px; }
.group-t small { font-size: 12px; color: var(--muted-2); }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }

.plan {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 16px 10px 14px;
	font: inherit;
	color: var(--ink);
	background: var(--card);
	border: 1.5px solid var(--line);
	border-radius: var(--radius);
	cursor: pointer;
	transition: all 0.18s ease;
}

.plan:hover { border-color: var(--accent); transform: translateY(-1px); }
.plan.is-on { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-ring); }
.plan--static { cursor: default; }
.plan--static:hover { border-color: var(--line); transform: none; }

.plan-hot {
	position: absolute;
	top: -9px;
	left: 50%;
	padding: 1px 8px;
	font-size: 11px;
	white-space: nowrap;
	color: #fff;
	background: #ff5f5f;
	border-radius: 9px;
	transform: translateX(-50%);
}

.plan-label { font-size: 14.5px; font-weight: 600; }
.plan-days { font-size: 12px; color: var(--muted-2); }

.plan-price { display: flex; align-items: baseline; margin-top: 4px; }
.plan-price b { font-size: 21px; font-weight: 700; color: var(--accent); }
.plan-price small { font-size: 12px; color: var(--muted-2); }

.after-sale {
	display: none;
	align-items: flex-start;
	gap: 7px;
	margin-top: 12px;
	padding: 10px 12px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 6px;
}

.group.is-on .after-sale { display: flex; }
.after-sale p { margin: 0; font-size: 12.5px; line-height: 1.7; color: var(--muted); }

/* ---------- 表单 ---------- */

.fields, .form { display: flex; flex-direction: column; gap: 14px; }
.form--narrow { max-width: 460px; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field-label { font-size: 13px; font-weight: 500; }
.field-label em { margin-left: 2px; font-style: normal; color: var(--danger); }
.field small { font-size: 11.5px; color: var(--muted-2); }

.field input[type="text"],
.field input[type="email"],
.field input[type="password"],
.field input[type="tel"],
.field input[type="number"],
.field input[type="search"],
.field select {
	width: 100%;
	height: 42px;
	padding: 0 13px;
	font: inherit;
	font-size: 14px;
	color: var(--ink);
	background: var(--soft);
	border: 1px solid var(--line);
	border-radius: 6px;
	outline: none;
	transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.field input:focus, .field select:focus {
	border-color: var(--accent);
	background: var(--card);
	box-shadow: 0 0 0 2px var(--accent-ring);
}

.field input:disabled { color: var(--muted-2); cursor: not-allowed; }

/* ---------- 上传 ---------- */

.upload { position: relative; }

.up-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 28px 16px;
	text-align: center;
	background: var(--soft);
	border: 1.5px dashed var(--line);
	border-radius: var(--radius);
	cursor: pointer;
	transition: border-color 0.18s ease, background 0.18s ease;
}

.up-empty:hover { border-color: var(--accent); background: var(--accent-soft); }
.up-icon { font-size: 25px; line-height: 1; }
.up-empty b { font-size: 14px; }
.up-empty small { font-size: 12px; color: var(--muted-2); }
.up-file { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

.up-prev {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 16px;
	background: var(--soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.up-prev img {
	max-width: 190px;
	max-height: 190px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: #fff;
}

.up-acts { display: flex; align-items: center; gap: 12px; }
.up-ok { font-size: 12.5px; font-weight: 600; color: var(--ok); }

.up-again {
	padding: 5px 13px;
	font: inherit;
	font-size: 12.5px;
	color: var(--muted);
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 5px;
	cursor: pointer;
}

.up-again:hover { color: var(--accent); border-color: var(--accent); }

.up-warn {
	margin: 12px 0 0;
	padding: 10px 12px;
	font-size: 12.5px;
	line-height: 1.7;
	color: #8a4b12;
	background: #fff8f0;
	border: 1px solid #fadfc8;
	border-radius: 6px;
}

/* ---------- 结算栏 ---------- */

.side-plan {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px;
	margin-bottom: 14px;
	background: var(--soft);
	border: 1px solid var(--line);
	border-radius: 6px;
}

.side-plan > span { font-size: 20px; }
.side-plan b { display: block; font-size: 13.5px; }
.side-plan small { display: block; margin-top: 2px; font-size: 11.5px; color: var(--muted-2); }

.side-block { margin-bottom: 14px; }
.side-label { display: block; margin-bottom: 8px; font-size: 12.5px; color: var(--muted); }

.pays { display: flex; gap: 8px; }

.pay {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	font-size: 13px;
	background: var(--card);
	border: 1.5px solid var(--line);
	border-radius: 6px;
	cursor: pointer;
	transition: border-color 0.16s ease;
}

.pay:hover { border-color: var(--accent); }
.pay input { margin: 0; accent-color: var(--accent); }
.pay:has(input:checked) { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-ring); }

.side-total {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding-top: 14px;
	margin-bottom: 14px;
	border-top: 1px solid var(--line);
}

.side-total span { font-size: 13px; color: var(--muted); }
.side-total b { font-size: 23px; font-weight: 700; color: var(--accent); }

.side-note { margin: 12px 0 0; font-size: 11.5px; line-height: 1.7; color: var(--muted); text-align: center; }

/* ---------- 按钮 ---------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 18px;
	height: 40px;
	font: inherit;
	font-size: 14px;
	color: var(--ink-2);
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.16s ease;
}

.btn:hover { border-color: var(--muted-2); }
.btn-primary { color: #fff; background: var(--accent); border-color: var(--accent); }
.btn-primary:hover { filter: brightness(1.06); border-color: var(--accent); }
.btn-pay { width: 100%; height: 46px; font-size: 15.5px; font-weight: 600; color: #fff; background: var(--accent); border-color: var(--accent); }
.btn-pay:hover { filter: brightness(1.06); }
.btn-block { width: 100%; }
.btn-lg { height: 46px; padding: 0 26px; font-size: 15px; }
.btn-xs { height: 28px; padding: 0 10px; font-size: 12.5px; border-radius: 5px; }
.btn-danger { color: var(--danger); border-color: #f0b7b7; }
.btn-danger:hover { color: #fff; background: var(--danger); border-color: var(--danger); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.link { padding: 0; font: inherit; color: var(--accent); background: none; border: 0; cursor: pointer; }

/* ---------- 登录 / 注册 ---------- */

.auth {
	display: flex;
	justify-content: center;
	padding: 30px 0;
}

.auth-card {
	width: 100%;
	max-width: 420px;
	padding: 30px 28px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 12px;
}

.auth-card h1 { margin: 0 0 6px; font-size: 21px; font-weight: 700; }
.auth-sub { margin: 0 0 20px; font-size: 13px; color: var(--muted); }
.auth-foot { margin: 18px 0 0; font-size: 13px; color: var(--muted); text-align: center; }
.auth-foot .sep { margin: 0 6px; color: var(--muted-2); }

.form-inline { margin-top: 10px; text-align: center; }

/* ---------- 余额抵扣 ---------- */

.deduct-box {
	padding: 11px 13px;
	background: var(--accent-soft);
	border: 1px solid var(--accent-ring);
	border-radius: 6px;
}

.deduct-toggle {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 13.5px;
	cursor: pointer;
}

.deduct-toggle input {
	margin: 2px 0 0;
	accent-color: var(--accent);
	flex: 0 0 auto;
}

.deduct-toggle b { color: var(--accent); }

.deduct-note {
	margin: 7px 0 0;
	font-size: 11.5px;
	line-height: 1.6;
	color: var(--muted);
}

.deduct-line {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding: 8px 0 0;
	font-size: 13px;
	color: var(--muted);
}

.deduct-line b { color: var(--accent); font-size: 15px; }

/* ---------- 结算卡（售后页 / 用户中心） ---------- */

.settle-card {
	padding: 16px;
	margin-bottom: 14px;
	background: linear-gradient(135deg, #f0fbf4 0%, #f7fcfa 100%);
	border: 1px solid #b7e0c2;
	border-radius: 8px;
}

.settle-card.is-locked {
	background: #fff8f0;
	border-color: #fadfc8;
}

.settle-label { display: block; margin-bottom: 6px; font-size: 12.5px; color: var(--muted); }

.settle-amount {
	display: block;
	margin-bottom: 8px;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.1;
	color: var(--accent);
}

.settle-card.is-locked .settle-amount { color: #8a5b12; }

.settle-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 16px;
	font-size: 12px;
	color: var(--muted);
}

.settle-meta b { color: var(--ink); font-weight: 600; }

/* ---------- 单选组 ---------- */

.radios { display: flex; flex-wrap: wrap; gap: 10px; }

.radio {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 16px;
	font-size: 13.5px;
	background: var(--soft);
	border: 1.5px solid var(--line);
	border-radius: 6px;
	cursor: pointer;
	transition: border-color 0.16s ease, background 0.16s ease;
}

.radio:hover { border-color: var(--accent); }
.radio input { margin: 0; accent-color: var(--accent); }
.radio:has(input:checked) {
	border-color: var(--accent);
	background: var(--accent-soft);
	box-shadow: 0 0 0 2px var(--accent-ring);
}

/* ---------- 到账截图（审核唯一凭据，单独强调） ---------- */

.shot-field {
	padding: 14px;
	background: #fffdf5;
	border: 1px solid #fde8b8;
	border-radius: 8px;
}

.shot-field .up-empty { background: #fff; border-color: #f0d9a0; }
.shot-field .up-empty:hover { border-color: var(--accent); background: var(--accent-soft); }

.shot-key {
	display: flex;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
	padding: 8px 11px;
	margin-bottom: 2px;
	background: #fff8e6;
	border-radius: 6px;
}

.shot-key b { font-size: 13px; color: #8a4b12; }
.shot-key span { font-size: 12px; color: #a1740f; }

/* ---------- 示例图 ---------- */

.ex-box {
	margin-top: 4px;
	padding: 12px;
	background: var(--soft);
	border: 1px solid var(--line);
	border-radius: 8px;
}

.ex-title {
	display: inline-block;
	margin-bottom: 9px;
	padding: 1px 9px;
	font-size: 11.5px;
	font-weight: 600;
	color: var(--accent);
	background: var(--accent-soft);
	border-radius: 4px;
}

.ex-list { display: flex; flex-wrap: wrap; gap: 12px; }

.ex-item { margin: 0; }

.ex-item img {
	display: block;
	max-width: 260px;
	max-height: 240px;
	width: auto;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: #fff;
	transition: border-color 0.16s ease;
}

.ex-item a:hover img { border-color: var(--accent); }

.ex-item figcaption {
	margin-top: 5px;
	max-width: 260px;
	font-size: 11.5px;
	line-height: 1.6;
	color: var(--muted);
}

.ex-hint {
	margin: 10px 0 0;
	font-size: 12px;
	line-height: 1.7;
	color: #8a4b12;
}

/* 到账截图的示例图是竖长大图，单独放宽 */
.shot-field .ex-item img { max-width: 300px; max-height: 400px; }
.shot-field .ex-item figcaption { max-width: 300px; }

/* ---------- 结果页 ---------- */

.result { max-width: 560px; margin: 30px auto; padding: 34px 28px; text-align: center; background: var(--card); border: 1px solid var(--line); border-radius: 12px; }
.result h2 { margin: 0 0 10px; font-size: 20px; }
.result > p { margin: 0 0 18px; font-size: 13.5px; color: var(--muted); line-height: 1.8; }

.res-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 14px;
	font-size: 27px;
	color: #fff;
	border-radius: 50%;
}

.res-icon--ok { background: var(--ok); }
.res-icon--warn { background: var(--warn); }

.res-info { margin: 20px 0; text-align: left; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.res-info > div { display: flex; justify-content: space-between; gap: 14px; padding: 10px 14px; font-size: 13px; border-bottom: 1px solid var(--line); }
.res-info > div:last-child { border-bottom: 0; }
.res-info span { color: var(--muted); flex: 0 0 auto; }
.res-info b { text-align: right; word-break: break-all; }

.res-acts { display: flex; gap: 10px; justify-content: center; margin: 20px 0 0; }
.res-tip { margin: 18px 0 0 !important; font-size: 12.5px !important; }

/* ---------- 订阅卡 ---------- */

.sub-body { display: flex; flex-direction: column; gap: 16px; }

.sub-badge {
	align-self: flex-start;
	padding: 4px 14px;
	font-size: 13px;
	font-weight: 600;
	border-radius: 20px;
}

.sub-badge--active { color: #1f6b39; background: #e6f7ec; }
.sub-badge--soon { color: #8a5a12; background: #fff5dc; }
.sub-badge--expired { color: #a12a2a; background: #fdeaea; }
.sub-badge--suspended { color: #4b5563; background: #f1f3f7; }
.sub-badge--none { color: var(--muted); background: var(--soft); }

.sub-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.sub-meta > div { padding: 12px 14px; background: var(--soft); border-radius: 6px; }
.sub-meta span { display: block; margin-bottom: 4px; font-size: 12px; color: var(--muted); }
.sub-meta b { font-size: 14px; }

.sub-acts { display: flex; gap: 10px; }
.sub-empty { margin: 0; color: var(--muted); }

.sub-card.sub-expired { border-color: #f0b7b7; }
.sub-card.sub-soon { border-color: #fde8b8; }

/* ---------- 表格 ---------- */

.table-wrap { overflow-x: auto; }

.tbl { width: 100%; border-collapse: collapse; font-size: 13px; }
.tbl th, .tbl td { padding: 11px 12px; text-align: left; border-bottom: 1px solid var(--line); }
.tbl th { font-size: 12.5px; font-weight: 600; color: var(--muted); background: var(--soft); white-space: nowrap; }
.tbl tbody tr:last-child td { border-bottom: 0; }
.tbl--kv th { width: 170px; color: var(--ink); background: none; font-weight: 500; }

.tag { display: inline-block; padding: 1px 7px; font-size: 11px; color: var(--accent); background: var(--accent-soft); border-radius: 4px; }

.st { display: inline-block; padding: 2px 9px; font-size: 12px; font-weight: 600; border-radius: 10px; }
.st--paid, .st--active { color: #1f6b39; background: #e6f7ec; }
.st--pending, .st--soon { color: #8a5a12; background: #fff5dc; }
.st--failed, .st--expired { color: #a12a2a; background: #fdeaea; }
.st--refunded, .st--suspended { color: #4b5563; background: #f1f3f7; }

.empty { margin: 0; padding: 20px 0; text-align: center; color: var(--muted); }

.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------- 页脚 ---------- */

.ft { padding: 26px 16px; border-top: 1px solid var(--line); background: var(--card); }
.ft-in { max-width: 1180px; margin: 0 auto; text-align: center; font-size: 12.5px; color: var(--muted-2); }
.ft-in p { margin: 0 0 4px; }

/* ---------- 安装向导 ---------- */

.install { max-width: 720px; margin: 0 auto; padding: 30px 16px 60px; }
.install-hd { margin-bottom: 20px; text-align: center; }
.install-hd h1 { margin: 0; font-size: 22px; }
.install-hd span { font-size: 14px; font-weight: 400; color: var(--muted); }

.pass-box { display: flex; align-items: center; gap: 12px; padding: 16px; background: var(--soft); border: 1px solid var(--line); border-radius: 8px; }
.pass-box code { flex: 1; font-size: 20px; font-weight: 700; letter-spacing: 1px; word-break: break-all; }

.steps { margin: 14px 0 0; padding-left: 20px; font-size: 13.5px; line-height: 2; }
.steps code { padding: 1px 6px; background: var(--soft); border-radius: 4px; }

.code { margin: 6px 0 0; padding: 10px 12px; font-size: 12.5px; background: var(--soft); border: 1px solid var(--line); border-radius: 6px; overflow-x: auto; white-space: pre; }

.ok-dot, .err-dot { display: inline-block; width: 8px; height: 8px; margin-right: 6px; border-radius: 50%; }
.ok-dot { background: var(--ok); }
.err-dot { background: var(--danger); }

/* ---------- 响应式 ---------- */

@media (max-width: 1000px) {
	.buy { grid-template-columns: minmax(0, 1fr); }
	.buy-side { position: static; }
	.feats { grid-template-columns: repeat(2, 1fr); }
	.cols { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
	.hd-in { height: auto; padding: 12px 16px; flex-direction: column; gap: 10px; }
	.hd-nav { gap: 14px; font-size: 13px; }
	.hero h1, .hero--landing h1 { font-size: 22px; }
	.feats { grid-template-columns: 1fr; }
	.plans { grid-template-columns: 1fr; }
	.card { padding: 16px; }
	.plan { flex-direction: row; justify-content: space-between; gap: 8px; padding: 14px; }
	.plan-hot { position: static; order: 3; transform: none; }
	.plan-price { margin-top: 0; }
	.sub-meta { grid-template-columns: 1fr 1fr; }
	.res-info > div { flex-direction: column; gap: 2px; }
	.res-info b { text-align: left; }
	.auth-card { padding: 22px 18px; }
}
