/* ============ 基础 ============ */
* { box-sizing: border-box; }
:root {
  --bg: #f6f8fb;
  --panel: #ffffff;
  --panel2: #f1f4f9;
  --line: #dde4ee;
  --line2: #e9edf4;
  --txt: #151a23;
  --muted: #66758c;
  --primary: #3f6ef5;
  --primary2: #2f54d0;
  --rent: #e07f0c;
  --dep: #0e9fc0;
  --ok: #16a34a;
  --warn: #e07f0c;
  --danger: #e0385e;
  color-scheme: light;
}
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--txt);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  font-size: 14px; line-height: 1.6;
  background-image: radial-gradient(1200px 500px at 85% -10%, rgba(79,124,255,.07), transparent 60%),
                    radial-gradient(900px 400px at -10% 0%, rgba(14,159,192,.05), transparent 55%);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,p,ul,dl { margin: 0; }
ul { padding: 0; list-style: none; }
b, strong { font-weight: 700; }
button { font-family: inherit; }
.container { max-width: 1220px; margin: 0 auto; padding: 0 16px; }
.mono { font-family: "SF Mono", Consolas, "Courier New", monospace; }
.muted { color: var(--muted); }
.c-rent { color: var(--rent); }
.c-dep { color: var(--dep); }
.c-total { color: var(--primary); }

/* 按钮 */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border: 1px solid transparent; border-radius: 10px; padding: 9px 16px;
  font-size: 14px; cursor: pointer; transition: .18s; white-space: nowrap;
  background: #e9edf4; color: #1f2837;
}
.btn:hover { filter: brightness(.97); }
.btn:disabled { opacity: .45; cursor: not-allowed; filter: none; }
.btn-sm { padding: 6px 12px; font-size: 13px; border-radius: 8px; }
.btn-xs { padding: 4px 9px; font-size: 12px; border-radius: 7px; }
.btn-lg { padding: 13px 22px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary2)); color: #fff; box-shadow: 0 6px 18px -6px rgba(79,124,255,.55); }
.btn-primary:hover { filter: brightness(1.06); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--txt); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-warn { background: #b8860b; color: #fff; }
.btn-danger { background: rgba(224,56,94,.1); border-color: rgba(224,56,94,.4); color: var(--danger); }
.btn-danger:hover { background: var(--danger); color: #fff; }
.btn-light { background: linear-gradient(135deg, var(--primary), var(--primary2)); color: #fff; }
.btn-outline-light { background: transparent; border-color: var(--line); color: var(--txt); }
.btn-outline-light:hover { border-color: var(--primary); color: var(--primary); }
.copy-btn {
  background: none; border: 1px dashed var(--line); color: var(--dep);
  padding: 2px 9px; border-radius: 6px; font-size: 12px; cursor: pointer; margin-left: 6px;
}
.copy-btn:hover { border-color: var(--dep); }

/* flash / toast */
.toast-wrap { position: fixed; top: 14px; left: 50%; transform: translateX(-50%); z-index: 300; display: flex; flex-direction: column; gap: 8px; align-items: center; width: min(92vw,520px); }
.toast-wrap .toast { background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--primary); padding: 11px 20px; border-radius: 10px; box-shadow: 0 10px 30px rgba(15,23,42,.12); max-width: 100%; opacity: 1; transition: opacity .5s; }
.toast-wrap .toast.fadeout { opacity: 0; }
.toast-ok { border-left-color: var(--ok) !important; }
.toast-warn { border-left-color: var(--warn) !important; }
.gtoast { position: fixed; left: 50%; bottom: 90px; transform: translateX(-50%) translateY(20px); background: #fff; border: 1px solid var(--line); padding: 10px 20px; border-radius: 10px; box-shadow: 0 12px 30px rgba(15,23,42,.14); opacity: 0; pointer-events: none; transition: .3s; z-index: 400; }
.gtoast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.gtoast.t-ok { border-left: 3px solid var(--ok); }

/* ============ 顶部公告条 ============ */
.noticebar { background: linear-gradient(90deg, #fff4d6, #ffeab8 40%, #fff4da); border-bottom: 1px solid #f0dfb8; }
.noticebar-in { display: flex; align-items: center; gap: 12px; padding-top: 7px; padding-bottom: 7px; }
.nb-icon { color: #b8860b; }
.nb-slide { flex: 1; overflow: hidden; color: #8a5c08; font-weight: 600; font-size: 13px; }
.nb-more { color: #a07010; font-size: 12px; flex-shrink: 0; }
.nb-more:hover { color: #6b4a06; }

/* ============ 头部 ============ */
.header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.header-in { display: flex; align-items: center; gap: 22px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 38px; height: 38px; border-radius: 11px; object-fit: contain; display: block; box-shadow: 0 4px 14px rgba(90,120,255,.3); background: #fff; }
.brand-name { font-size: 17px; font-weight: 800; display: flex; flex-direction: column; line-height: 1.2; }
.brand-name em { font-style: normal; font-size: 10px; font-weight: 600; color: #b8860b; letter-spacing: 1px; }
.nav { display: flex; gap: 4px; flex: 1; }
.nav a { padding: 8px 14px; border-radius: 9px; color: #3f4a5f; font-size: 14px; }
.nav a:hover { color: #111827; background: rgba(15,23,42,.05); }
.nav a.on { color: var(--primary); background: rgba(79,124,255,.12); }
.header-user { display: flex; align-items: center; gap: 10px; }
.user-chip { display: flex; align-items: center; gap: 8px; padding: 4px 10px 4px 4px; border-radius: 40px; border: 1px solid var(--line); }
.user-chip:hover { border-color: var(--primary); }
.avatar { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, #ff9f43, #ef476f); display: grid; place-items: center; font-weight: 700; color: #fff; }
.user-name { font-size: 13px; max-width: 90px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin-tag { font-style: normal; font-size: 10px; color: #b8860b; border: 1px solid #e5cc8a; border-radius: 5px; padding: 0 5px; }

/* ============ 主体 ============ */
.main { min-height: calc(100vh - 300px); padding: 20px 0 50px; }
.page-title { margin: 4px 0 18px; }
.page-title h1 { font-size: 23px; }
.page-title p { color: var(--muted); margin-top: 4px; }
.panel { background: var(--panel); border: 1px solid var(--line2); border-radius: 16px; padding: 20px; margin-bottom: 22px; box-shadow: 0 1px 3px rgba(15,23,42,.04); }
.panel-title, .dash-h3 { font-size: 16px; margin: 0 0 16px; display: flex; align-items: center; gap: 8px; }
.panel-title-row { display: flex; justify-content: space-between; align-items: center; }
.panel-title-row .panel-title { margin-bottom: 16px; }
.muted { color: var(--muted); }

/* 分类快捷入口 */
.cat-strip { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.cs-label { color: var(--muted); font-size: 13px; }
.cs-links { display: flex; gap: 8px; flex-wrap: wrap; }
.cs-links a { padding: 8px 16px; border-radius: 40px; background: var(--panel); border: 1px solid var(--line); color: #33415c; font-size: 13px; box-shadow: 0 1px 2px rgba(15,23,42,.03); }
.cs-links a:hover { border-color: var(--primary); color: var(--primary); }
.cs-links a.on { background: linear-gradient(135deg, var(--primary), var(--primary2)); color: #fff; border-color: transparent; }
.cs-links a.on:hover { color: #fff; }

/* 筛选面板 */
.filter-panel { background: var(--panel); border: 1px solid var(--line2); border-radius: 16px; padding: 16px 18px 14px; margin-bottom: 24px; box-shadow: 0 1px 3px rgba(15,23,42,.04); }
.f-row { display: flex; gap: 14px; align-items: center; margin-bottom: 14px; flex-wrap: wrap; }
.f-row2 { margin-bottom: 0; }
.f-search { display: flex; align-items: center; gap: 8px; background: var(--panel2); border: 1px solid var(--line); border-radius: 10px; padding: 8px 12px; color: var(--muted); flex: 1; min-width: 200px; }
.f-search input { background: none; border: none; outline: none; color: var(--txt); width: 100%; font-size: 14px; }
.f-sel, .f-num { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; }
.f-sel select, .f-num input { background: var(--panel2); border: 1px solid var(--line); color: var(--txt); border-radius: 8px; padding: 7px 10px; outline: none; font-size: 13px; }
.f-num input { width: 100px; }
.f-num-note { color: var(--muted); }
.f-btns { display: flex; gap: 10px; margin-left: auto; }
.f-group { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.fg-label { width: 62px; flex-shrink: 0; padding-top: 5px; color: var(--muted); font-size: 13px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; flex: 1; }
.chip { display: inline-flex; align-items: center; padding: 5px 13px; background: var(--panel2); border: 1px solid var(--line); color: #3b4456; border-radius: 40px; font-size: 13px; cursor: pointer; transition: .15s; user-select: none; }
.chip input { display: none; }
.chip:has(input:checked) { background: rgba(79,124,255,.12); border-color: var(--primary); color: var(--primary2); }
.chip-lg { padding: 4px 11px; font-size: 12px; }

/* 列表头 */
.list-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.list-head h2 { font-size: 19px; }
.list-tip { color: var(--muted); font-size: 12px; }

/* 账号卡片 */
.acc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 16px; }
.acc-card { background: var(--panel); border: 1px solid var(--line2); border-radius: 16px; overflow: hidden; cursor: pointer; transition: .2s; display: flex; flex-direction: column; box-shadow: 0 1px 3px rgba(15,23,42,.04); }
.acc-card:hover { transform: translateY(-3px); border-color: rgba(79,124,255,.55); box-shadow: 0 12px 30px -14px rgba(15,23,42,.18); }
.acc-top { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 10px; padding: 13px 15px; border-bottom: 1px dashed var(--line2); }
.acc-rank { display: inline-flex; align-items: center; gap: 6px; padding: 4px 11px; border-radius: 7px; font-size: 12.5px; font-weight: 700; }
.acc-rank i { font-size: 11px; }
.r-big { background: linear-gradient(135deg, #ef9217, #d97606); color: #fff; border: none; }
.r-mid { background: linear-gradient(135deg, #7c5cf0, #4a5fe8); color: #fff; border: none; }
.r-small { background: linear-gradient(135deg, #0fa8cf, #0b7fb2); color: #fff; border: none; }
.acc-code { display: inline-flex; align-items: baseline; gap: 4px; padding: 4px 11px; border-radius: 7px; background: #e8f1ff; border: 1px solid #cfe0ff; color: #5b7dbd; font-size: 12px; }
.acc-code b { color: #2557c7; font-weight: 700; }
.acc-way { display: inline-flex; align-items: baseline; gap: 4px; padding: 4px 11px; border-radius: 7px; background: #fff3e0; border: 1px solid #ffddb0; color: #b98a4a; font-size: 12px; }
.acc-way b { color: #b45309; font-weight: 700; }
.acc-tags { margin-left: auto; display: flex; gap: 4px; }
.tag { display: inline-block; padding: 2px 9px; border-radius: 20px; font-size: 11.5px; font-weight: 600; font-style: normal; }
.tag-sale { background: rgba(224,56,94,.12); color: #d63a62; }
.tag-split { background: rgba(14,159,192,.12); color: #0b87a6; }
.tag-big { background: rgba(224,127,12,.13); color: #c87208; }
.tag-on { background: rgba(22,163,74,.13); color: #138a3f; }
.tag-rent { background: rgba(224,127,12,.14); color: #c87208; }
.tag-off2 { background: rgba(102,117,140,.14); color: #66758c; }
.tag-warn { background: rgba(224,127,12,.15); color: #c87208; }
.tag-blue { background: rgba(79,124,255,.13); color: #3a63e8; }

.acc-hero { display: flex; gap: 14px; align-items: center; padding: 14px 15px 12px; background: radial-gradient(400px 120px at 20% -30%, rgba(79,124,255,.08), transparent), linear-gradient(180deg, var(--panel2), transparent); }
.ah-num p { color: var(--muted); font-size: 12px; }
.ah-num b { font-size: 24px; letter-spacing: .5px; background: linear-gradient(90deg, #e8910d, #b45309); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ah-num span { display: block; color: var(--muted); font-size: 11px; margin-top: 2px; }
.ah-specs { margin-left: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 7px 16px; }
.ah-specs li { font-size: 12px; color: var(--muted); }
.ah-specs li i { margin-right: 5px; color: #93a0b5; }
.ah-specs b { display: block; color: var(--txt); font-size: 13px; }
.acc-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; padding: 0 15px; }
.ac-cell p { display: inline-flex; align-items: center; gap: 4px; margin: 0 0 7px; padding: 2px 10px; border-radius: 8px; font-size: 12px; font-weight: 700; letter-spacing: .3px; }
.ac-cell .ac-eq { background: #fff4e5; border: 1px solid #ffe2bb; color: #b06e12; }
.ac-cell .ac-sk { background: #f6edff; border: 1px solid #e6d2ff; color: #8848d6; }
.ac-cell .ac-in { background: #e3f9f2; border: 1px solid #c0ecdd; color: #0e9f6e; }
.ac-cell .ac-ow { background: #f1f3f7; border: 1px solid #dde3ea; color: #5b6570; }
.ac-cell p i { font-size: 11px; opacity: .85; }
.ac-cell span { display: block; color: var(--txt); font-size: 12px; margin-top: 2px; line-height: 1.55; }
.acc-foot { margin-top: auto; border-top: 1px solid var(--line2); padding: 11px 15px; display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.af-price { display: flex; gap: 14px; align-items: center; font-size: 12.5px; color: var(--muted); }
.af-price b { font-size: 15px; }
.af-rent small { display: block; font-size: 11px; color: #94a1b4; margin-top: 2px; letter-spacing: .3px; white-space: nowrap; }
.af-total { color: var(--muted); }
.af-total b { font-size: 16px; color: var(--primary); }
.af-actions { display: flex; gap: 8px; }

/* 空态 */
.empty-box { background: var(--panel); border: 1px dashed var(--line); border-radius: 16px; text-align: center; padding: 50px 20px; color: var(--muted); }
.empty-box i { font-size: 40px; display: block; margin-bottom: 10px; color: #b9c4d4; }
.empty-box p { margin-bottom: 14px; }
.empty-box.small { padding: 30px; }

/* CTA */
.cta-banner { margin-top: 26px; border-radius: 18px; padding: 26px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; background: linear-gradient(120deg, #eef3ff, #ffffff 60%, #fff6ea); border: 1px solid #e4eaf6; }
.cta-text h3 { font-size: 19px; }
.cta-text p { color: var(--muted); margin-top: 4px; }
.cta-btns { display: flex; gap: 12px; }

/* ============ 底部 ============ */
.footer { border-top: 1px solid var(--line); background: #ffffff; padding: 38px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 26px; }
.foot-col h4 { font-size: 14px; margin-bottom: 12px; color: #1f2837; }
.foot-col a { display: block; color: var(--muted); font-size: 13px; padding: 3px 0; }
.foot-col a:hover { color: var(--primary); }
.foot-col a.foot-admin { color: var(--primary); font-weight: 600; margin-top: 4px; }
.foot-col a.foot-admin:hover { opacity: .8; }
.foot-about { color: var(--muted); font-size: 12.5px; line-height: 1.8; }
.foot-col p { color: var(--muted); font-size: 13px; }
.foot-warn { font-size: 11px !important; margin-top: 8px; color: #b8860b !important; }
.safe-line { padding: 2px 0; }
.footer-bottom { border-top: 1px solid var(--line2); margin-top: 26px; padding-top: 16px; text-align: center; color: #7a879b; font-size: 12px; }

/* 移动端底导 */
.mobile-nav { display: none; }

/* ============ 登录注册 ============ */
.auth-wrap { display: flex; justify-content: center; padding: 30px 12px 60px; }
.auth-card { width: 100%; max-width: 410px; background: var(--panel); border: 1px solid var(--line2); border-radius: 18px; padding: 28px; box-shadow: 0 6px 24px rgba(15,23,42,.06); }
.auth-head { text-align: center; margin-bottom: 22px; }
.auth-logo { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, #5b8cff, #7a5bff); display: grid; place-items: center; font-size: 24px; color: #fff; margin: 0 auto 12px; }
.auth-head h1 { font-size: 20px; }
.auth-head p { color: var(--muted); font-size: 13px; margin-top: 4px; }
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-form label, .pf-form label { font-size: 13px; color: #33415c; display: flex; flex-direction: column; gap: 7px; }
.auth-links { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--muted); margin-top: -4px; }
.auth-links a { color: var(--primary); }
.auth-links a:hover { text-decoration: underline; }
.auth-steps { display: flex; justify-content: center; align-items: center; gap: 12px; font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.auth-steps span { display: inline-flex; align-items: center; gap: 6px; }
.auth-steps span i { font-size: 11px; }
.auth-steps .on { color: var(--primary); font-weight: 600; }
.auth-steps .done { color: var(--ok); }
.auth-steps > i { font-size: 12px; color: #b9c4d4; }
.auth-form input, .pf-form input, .pf-form textarea { background: var(--panel2); border: 1px solid var(--line); color: var(--txt); border-radius: 10px; padding: 11px 13px; outline: none; font-size: 14px; width: 100%; }
.auth-form input:focus, .pf-form input:focus { border-color: var(--primary); }
.pwd-box { position: relative; }
.pwd-box input { padding-right: 40px; }
.pwd-eye { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); color: var(--muted); cursor: pointer; }
.third-box { margin-top: 18px; text-align: center; }
.third-box > p { color: var(--muted); font-size: 12px; }
.third-btns { display: flex; gap: 10px; margin: 12px 0; }
.tb { flex: 1; padding: 10px 0; border-radius: 10px; border: 1px solid var(--line); background: var(--panel2); font-size: 14px; display: flex; justify-content: center; gap: 7px; }
.tb-qq { color: #0f9ad9; }
.tb-wx { color: #13a866; }
.tb-steam { color: #5b7299; }
.tb:hover { border-color: var(--primary); transform: translateY(-1px); }
.auth-foot { text-align: center; color: var(--muted); font-size: 13px; margin-top: 18px; }
.auth-foot a { color: var(--primary); font-weight: 600; }

/* ============ 登录弹窗 ============ */
body.login-open { overflow: hidden; }
.login-mask { position: fixed; inset: 0; z-index: 1000; background: rgba(15, 23, 42, .45); backdrop-filter: blur(3px); display: flex; align-items: center; justify-content: center; padding: 16px; animation: maskIn .18s ease; }
.login-mask[hidden] { display: none; }
@keyframes maskIn { from { opacity: 0; } to { opacity: 1; } }
.login-modal { position: relative; width: 100%; max-width: 400px; background: linear-gradient(180deg, #fbfcff, var(--panel)); border: 1px solid var(--line2); border-radius: 18px; padding: 26px; box-shadow: 0 30px 80px rgba(15, 23, 42, .25); animation: modalUp .22s ease; }
@keyframes modalUp { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.login-close { position: absolute; top: 12px; right: 12px; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer; font-size: 14px; display: grid; place-items: center; }
.login-close:hover { color: #111827; border-color: var(--primary); }
.login-head { text-align: center; margin: 2px 0 18px; }
.login-logo { width: 52px; height: 52px; border-radius: 16px; background: linear-gradient(135deg, #5b8cff, #7a5bff); display: grid; place-items: center; font-size: 22px; color: #fff; margin: 0 auto 10px; }
.login-head h3 { font-size: 19px; }
.login-head p { color: var(--muted); font-size: 13px; margin-top: 3px; }
.login-form { display: flex; flex-direction: column; gap: 13px; }
.login-form label { font-size: 13px; color: #33415c; display: flex; flex-direction: column; gap: 7px; }
.login-form input { background: var(--panel2); border: 1px solid var(--line); color: var(--txt); border-radius: 10px; padding: 11px 13px; outline: none; font-size: 14px; width: 100%; }
.login-form input:focus { border-color: var(--primary); }
.login-msg { min-height: 18px; color: var(--danger); font-size: 13px; margin: 0; }
.login-links { display: flex; justify-content: space-between; font-size: 13px; margin-top: 14px; }
.login-links a { color: var(--primary); }
.login-links a:hover { text-decoration: underline; }
@media (max-width: 560px) { .login-modal { padding: 22px 18px; } }

/* ============ 详情页 ============ */
.crumb { color: var(--muted); font-size: 13px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.crumb a:hover { color: var(--primary); }
.alert-warn { background: rgba(224,127,12,.08); border: 1px solid rgba(224,127,12,.35); color: #b45309; padding: 10px 15px; border-radius: 10px; margin-bottom: 14px; font-size: 13px; }
.detail-top { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 18px; }
.dt-cover .cover-art { border-radius: 18px; overflow: hidden; position: relative; min-height: 380px; background: radial-gradient(500px 200px at 90% -10%, rgba(255,159,67,.22), transparent 60%), radial-gradient(400px 300px at 0% 100%, rgba(79,124,255,.18), transparent 60%), linear-gradient(160deg, #ffffff, #e9eef8); border: 1px solid var(--line); display: flex; flex-direction: column; }
.cover-game { position: absolute; top: 16px; left: 16px; font-size: 11px; letter-spacing: 2px; color: #7a879b; }
.cover-badge { position: absolute; top: 44px; left: 16px; display: flex; flex-direction: column; gap: 2px; width: 86px; height: 86px; border-radius: 20px; align-items: center; justify-content: center; font-size: 12px; }
.r-big.cover-badge { background: linear-gradient(135deg, #e8910d, #b45309); color: #fff; }
.r-mid.cover-badge { background: linear-gradient(135deg, #7c5cf0, #5b8cff); color: #fff; }
.r-small.cover-badge { background: linear-gradient(135deg, #0fa8cf, #41c7f4); color: #fff; }
.cover-badge i { font-size: 20px; opacity: .9; }
.cover-badge b { font-size: 17px; }
.cover-badge em { font-style: normal; font-size: 11px; opacity: .9; }
.cover-stats { margin-top: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 14px 16px; }
.cover-stats li { background: rgba(255,255,255,.75); border: 1px solid rgba(15,23,42,.1); border-radius: 10px; padding: 8px 10px; }
.cover-stats span { display: block; color: #7a879b; font-size: 11px; }
.cover-stats b { font-size: 15px; }
.cover-skins { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 14px; }
.skin-chip { padding: 4px 11px; border-radius: 7px; font-size: 12px; border: 1px solid; }
.skin-chip.knife { border-color: rgba(224,127,12,.5); color: #b45309; background: rgba(224,127,12,.08); }
.skin-chip.char { border-color: rgba(224,56,94,.45); color: #d63a62; background: rgba(224,56,94,.07); }
.skin-chip.gold { border-color: rgba(184,134,11,.55); color: #92610c; background: linear-gradient(90deg, rgba(184,134,11,.14), rgba(224,127,12,.1)); }
.skin-chip.weapon { border-color: rgba(14,159,192,.5); color: #0b87a6; background: rgba(14,159,192,.08); }
.cover-tip { text-align: center; color: #8a97aa; font-size: 11px; margin-top: 8px; }

.dt-panel { background: var(--panel); border: 1px solid var(--line2); border-radius: 18px; padding: 22px; display: flex; flex-direction: column; box-shadow: 0 6px 24px rgba(15,23,42,.06); }
.dp-head { display: flex; justify-content: space-between; gap: 10px; }
.dp-head h1 { font-size: 21px; }
.dp-owner { color: var(--muted); font-size: 12.5px; margin-top: 3px; }
.ban-flag { font-style: normal; color: var(--warn); margin-left: 8px; }
.dp-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 16px 0; }
.dp-specs li { background: var(--panel2); border-radius: 10px; padding: 9px 12px; display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); }
.dp-specs b { color: var(--txt); }
.dp-specs b small { display: block; margin-top: 3px; color: #b8860b; font-size: 11px; font-weight: 600; letter-spacing: .5px; }
.dp-price { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.price-cell { background: var(--panel2); border: 1px solid var(--line2); border-radius: 12px; padding: 12px 14px; }
.price-cell p { color: var(--muted); font-size: 12px; display: flex; align-items: center; gap: 6px; }
.price-cell p small { font-size: 10px; color: #9aa6b8; }
.price-cell b { font-size: 21px; display: block; margin-top: 2px; }
.price-cell em { font-style: normal; font-size: 11px; color: var(--muted); }
.price-cell .c-total { font-size: 22px; }
.dp-bundle-note { margin: 10px 0 0; font-size: 11.5px; color: #8a97aa; letter-spacing: .3px; }
.dp-bundle-note i { color: var(--primary); margin-right: 5px; }
.dp-buy { margin-top: 16px; }
.days-stepper { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; color: #33415c; font-size: 13px; flex-wrap: wrap; }
.stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--panel2); }
.stepper button { width: 38px; height: 38px; background: none; border: none; color: var(--txt); font-size: 17px; cursor: pointer; }
.stepper button:hover { background: rgba(79,124,255,.15); }
.stepper input { width: 60px; height: 38px; border: none; border-left: 1px solid var(--line); border-right: 1px solid var(--line); background: var(--panel2); color: var(--txt); text-align: center; outline: none; }
.live-total { margin-left: auto; color: var(--muted); font-size: 13px; }
.live-total b { color: var(--primary); font-size: 18px; }
/* 客服微信人工上号 CTA */
.btn-wechat { background: linear-gradient(135deg, #07c160, #059c4c); color: #fff; box-shadow: 0 6px 18px -6px rgba(7,193,96,.5); }
.dp-kf { margin-top: 16px; background: linear-gradient(150deg, rgba(7,193,96,.1), rgba(7,193,96,.02) 70%); border: 1px solid rgba(7,193,96,.3); border-radius: 14px; padding: 14px 16px; }
.dp-kf-head { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: #0e8c49; flex-wrap: wrap; }
.dp-kf-head i { font-size: 19px; color: #07c160; }
.dp-kf-head b { color: #04724b; font-size: 17px; letter-spacing: .5px; font-family: "SF Mono", Consolas, "Courier New", monospace; }
.dp-kf-tip { font-size: 12px; color: var(--muted); margin: 10px 0 12px; line-height: 1.7; }
.dp-kf-tip i { color: #16a34a; }
.dp-service { margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--line2); display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 12.5px; color: var(--muted); flex-wrap: wrap; }
.dp-service b { color: var(--dep); }
/* 客服二维码（扫码联系客服） */
.dp-service.has-qr { justify-content: flex-start; align-items: center; gap: 12px; flex-wrap: nowrap; }
.dp-svc-qr { width: 112px; height: 112px; object-fit: contain; background: #fff; padding: 5px; border-radius: 10px; flex-shrink: 0; }
.dp-svc-txt { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.dp-svc-txt b { color: var(--txt); font-size: 13px; display: flex; align-items: center; gap: 6px; }
.dp-svc-txt b i { color: #07c160; }
.dp-svc-txt span { font-size: 12px; line-height: 1.6; }
.dp-kf-scan { display: flex; align-items: center; gap: 14px; margin: 2px 0 12px; padding: 12px; background: rgba(15, 23, 42, .03); border: 1px dashed rgba(7, 193, 96, .35); border-radius: 12px; }
.dp-kf-scan img { width: 260px; max-width: 80vw; height: auto; aspect-ratio: 1; object-fit: contain; background: #fff; padding: 8px; border-radius: 12px; flex-shrink: 0; }
.dp-kf-scan-txt { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; font-size: 12px; color: var(--muted); line-height: 1.7; }
.dp-kf-scan-txt b { color: #0e8c49; font-size: 13.5px; display: flex; align-items: center; gap: 6px; }
.dp-kf-scan-txt b i { color: #07c160; font-size: 17px; }
.dp-scan-alt { font-size: 11.5px; opacity: .9; }
.dp-scan-alt em { font-style: normal; color: #b45309; }
@media (max-width: 560px) {
  .dp-kf-scan { flex-direction: column; text-align: center; }
  .dp-svc-txt span { font-size: 11.5px; }
}
/* 密码锁开号面板 */
.dp-lock .dp-kf-head { flex-wrap: wrap; row-gap: 6px; }
.dp-lock .lock-flag-on, .dp-lock .lock-flag-wait { font-style: normal; font-size: 11.5px; font-weight: 500; padding: 3px 10px; border-radius: 20px; margin-left: 2px; }
.dp-lock .lock-flag-on { color: #0e8c49; background: rgba(7,193,96,.12); border: 1px solid rgba(7,193,96,.4); }
.dp-lock .lock-flag-wait { color: #a16207; background: rgba(217,180,60,.14); border: 1px dashed rgba(184,134,11,.5); }
.lock-form { display: flex; align-items: center; gap: 10px; margin: 4px 0 12px; flex-wrap: wrap; }
.lock-input { flex: 1 1 168px; min-width: 168px; background: #1f2937; border: 1px dashed rgba(7,193,96,.6); color: #fff; font-family: "SF Mono", Consolas, "Courier New", monospace; letter-spacing: 12px; text-align: center; font-size: 22px; font-weight: 700; border-radius: 10px; padding: 10px 10px 10px 16px; outline: none; }
.lock-input:focus { border-style: solid; border-color: #07c160; box-shadow: 0 0 0 3px rgba(7,193,96,.18); }
.lock-input::placeholder { color: #6b7280; letter-spacing: 1px; font-size: 12.5px; font-weight: 400; }
.dp-lock .btn-block { margin-top: 0; }
.detail-attrs .attr-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.attr-group { background: var(--panel2); border: 1px solid var(--line2); border-radius: 12px; padding: 14px 16px; }
.attr-group h4 { font-size: 13px; color: #55657a; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.attr-item { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px dashed var(--line2); font-size: 13px; }
.attr-item:last-child { border-bottom: none; }
.attr-item dt { color: var(--muted); }
.attr-item dd { color: var(--txt); font-weight: 600; }
.note-box { margin-top: 12px; background: rgba(184,134,11,.08); border: 1px solid rgba(184,134,11,.3); color: #7c5510; padding: 12px 15px; border-radius: 10px; font-size: 13px; }

/* ============ 支付页 ============ */
.pay-page { max-width: 680px; }
.pay-steps { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }
.ps { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted); }
.ps.on { color: var(--primary); }
.ps.arrow { color: #b9c4d4; }
.pay-card { background: var(--panel); border: 1px solid var(--line2); border-radius: 18px; padding: 24px; box-shadow: 0 6px 24px rgba(15,23,42,.06); }
.pc-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; border-bottom: 1px dashed var(--line2); }
.pc-no { font-size: 13px; color: var(--muted); }
.pc-no span { color: #1f2837; }
.pc-acc { display: flex; gap: 14px; align-items: center; padding: 18px 0; border-bottom: 1px dashed var(--line2); }
.pca-badge { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 20px; color: #fff; flex-shrink: 0; }
.r-big.pca-badge { background: linear-gradient(135deg, #e8910d, #b45309); }
.r-mid.pca-badge { background: linear-gradient(135deg, #7c5cf0, #5b8cff); }
.r-small.pca-badge { background: linear-gradient(135deg, #0fa8cf, #41c7f4); }
.pca-title { font-size: 16px; font-weight: 700; }
.pca-sub { margin-left: 8px; font-size: 12.5px; font-weight: 400; color: var(--muted); }
.pca-meta { font-size: 13px; color: var(--muted); }
.pc-bill { padding: 16px 0; border-bottom: 1px dashed var(--line2); }
.pc-bill li { display: flex; justify-content: space-between; padding: 6px 0; color: var(--muted); font-size: 14px; }
.pc-bill b { color: var(--txt); }
.pc-bill .pc-total { font-size: 15px; }
.pc-total b { font-size: 20px; color: var(--primary); }
.pc-note { background: rgba(14,159,192,.07); border: 1px solid rgba(14,159,192,.28); color: #0b87a6; padding: 10px 14px; border-radius: 10px; font-size: 12.5px; margin: 14px 0; }
.pc-cancel { margin-top: 8px; text-align: center; }

/* ============ 个人中心 ============ */
.my-hero { background: linear-gradient(120deg, #eaf1ff, #ffffff 70%); border: 1px solid var(--line2); border-radius: 18px; padding: 22px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.my-avatar { width: 66px; height: 66px; border-radius: 18px; background: linear-gradient(135deg, #ff9f43, #ef476f); display: grid; place-items: center; font-size: 27px; font-weight: 800; color: #fff; }
.my-info h1 { font-size: 20px; }
.my-info h1 em { font-style: normal; font-size: 13px; color: var(--muted); margin-left: 8px; font-weight: 400; }
.my-info p { color: var(--muted); font-size: 12.5px; margin-top: 4px; }
.my-stats { margin-left: auto; display: flex; gap: 26px; }
.my-stats div { text-align: center; }
.my-stats b { display: block; font-size: 24px; color: var(--primary); }
.my-stats span { color: var(--muted); font-size: 12px; }
.my-tabs { display: flex; gap: 6px; margin: 16px 0; border-bottom: 1px solid var(--line2); padding-bottom: 10px; flex-wrap: wrap; }
.my-tabs a { padding: 8px 16px; border-radius: 9px; color: var(--muted); font-size: 14px; }
.my-tabs a:hover { color: var(--txt); }
.my-tabs a.on { color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary2)); }

.order-list { display: flex; flex-direction: column; gap: 12px; }
.order-item { display: flex; gap: 14px; align-items: center; background: var(--panel); border: 1px solid var(--line2); border-radius: 14px; padding: 14px 16px; flex-wrap: wrap; box-shadow: 0 1px 3px rgba(15,23,42,.04); }
.order-list.slim .order-item { padding: 10px 14px; }
.oi-left { flex: 1; min-width: 230px; }
.oi-no { font-size: 12.5px; color: var(--muted); }
.oi-no span { color: #33415c; }
.oi-acc { font-size: 14.5px; margin-top: 2px; }
.oi-acc b { color: #b45309; }
.oi-time { color: #8a97aa; font-size: 12px; }
.oi-remain { color: var(--warn); font-size: 12px; margin-top: 2px; }
.oi-mid { min-width: 120px; }
.oi-total { font-size: 19px; font-weight: 800; color: var(--primary); }
.oi-total span { display: block; font-size: 11px; color: var(--muted); font-weight: 400; }
.oi-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.oi-acts { display: flex; gap: 8px; align-items: center; }
.os-tag { font-size: 12px; font-weight: 700; padding: 2px 10px; border-radius: 20px; }
.os-pending { background: rgba(224,127,12,.13); color: #b45309; }
.os-to_start { background: rgba(79,124,255,.13); color: #2b57d9; }
.os-renting { background: rgba(22,163,74,.13); color: #138a3f; }
.os-return_pending { background: rgba(184,134,11,.14); color: #92610c; }
.os-returned { background: rgba(22,163,74,.11); color: #138a3f; }
.os-cancelled { background: #edf0f5; color: #66758c; }
.sub-panel { border: 1px solid var(--line2); border-radius: 14px; padding: 14px; margin-bottom: 14px; background: #f8fafd; }
.sp-head { font-size: 13.5px; color: #33415c; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.sp-head .mono { color: #b45309; }
.sp-empty { padding: 8px 2px 4px; font-size: 13px; }
.note-p { margin: -6px 0 12px; font-size: 12.5px; }
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: 13px; }
.table th { text-align: left; color: var(--muted); font-weight: 500; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.table td { padding: 12px; border-bottom: 1px solid var(--line2); vertical-align: top; }
.table tbody tr:hover { background: rgba(79,124,255,.05); }
.row-acts { display: flex; gap: 6px; flex-wrap: wrap; }
.st-onsale { background: rgba(22,163,74,.13); color: #138a3f; }
.st-rented { background: rgba(224,127,12,.13); color: #b45309; }
.st-audit { background: rgba(79,124,255,.13); color: #2b57d9; }
.st-off { background: #edf0f5; color: #66758c; }
.narrow { max-width: 560px; }
.pf-form { display: flex; flex-direction: column; gap: 14px; }
.pf-form hr { border: none; border-top: 1px dashed var(--line2); margin: 6px 0; }
.pf-form label { font-size: 13px; color: #33415c; }
.pf-form label.disabled input { color: var(--muted); }

/* ============ 发布页 ============ */
.pub-page { max-width: 860px; }
.pub-form { display: flex; flex-direction: column; gap: 16px; }
.pf-sec { background: var(--panel); border: 1px solid var(--line2); border-radius: 16px; padding: 18px 20px; box-shadow: 0 1px 3px rgba(15,23,42,.04); }
.pf-sec h3 { font-size: 15px; margin-bottom: 14px; color: #1f2837; }
.pf-sec h3 i { color: var(--primary); margin-right: 6px; }
.pf-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; align-items: end; }
.pf-grid > label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: #475569; }
.pf-grid select, .pf-grid input[type="number"], .pf-grid input[type="text"] { background: var(--panel2); border: 1px solid var(--line); color: var(--txt); border-radius: 9px; padding: 10px 12px; outline: none; font-size: 14px; }
.pf-grid select:focus, .pf-grid input[type="number"]:focus, .pf-grid input[type="text"]:focus { border-color: var(--primary); }
.pf-grid textarea { resize: vertical; }
.pf-full { grid-column: 1 / -1; }
.pf-multihint { color: var(--muted); font-weight: 400; font-size: 12px; margin-left: 4px; }
.pf-multi { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 9px; background: var(--panel2); border: 1px solid var(--line); border-radius: 10px; padding: 11px 13px; }
.pf-multi > span { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #33415c; }
.pf-multi > span small { color: var(--muted); font-weight: 400; }
.pf-multi .chips { row-gap: 8px; }
.pf-warn { display: none; color: #b45309; font-size: 12px; line-height: 1.5; }
.pf-grid input::placeholder { color: var(--muted); opacity: .75; }
.pf-hint { color: var(--muted); font-size: 12px; align-self: center; }
.pf-note { grid-column: 1 / -1; display: flex; gap: 8px; align-items: flex-start; background: rgba(224, 127, 12, .06); border: 1px dashed rgba(224, 127, 12, .4); color: #7a5c2e; border-radius: 10px; padding: 10px 13px; font-size: 12.5px; line-height: 1.75; }
.pf-note i { color: #b45309; margin-top: 4px; }
.pf-check { flex-direction: row !important; align-items: center; gap: 8px !important; }
.pf-check input { width: auto; }
/* ============ 出租设置 · 资产比例换算 ============ */
.rate-title { margin: 0 0 9px; color: #33415c; font-size: 13px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.rate-title small { color: var(--muted); font-weight: 400; }
.rate-row { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 12px; }
.rate-cell { display: flex; flex-direction: column; gap: 6px; font-size: 12px; color: #6b7a90; }
.rate-cell > input, .ratio-in input { width: 140px; }
.ratio-in { display: inline-flex; }
.ratio-in i { font-style: normal; font-size: 14px; color: #92610c; background: var(--panel2); border: 1px solid var(--line); border-right: 0; border-radius: 9px 0 0 9px; padding: 10px 0 10px 12px; }
.ratio-in input { border-top-left-radius: 0; border-bottom-left-radius: 0; }
.rate-eq { color: var(--primary); font-size: 15px; padding-bottom: 10px; }
.rate-prev { align-self: center; color: var(--muted); font-size: 12.5px; padding-bottom: 6px; }
.rate-prev b { color: #b45309; font-weight: 600; }
.rate-val { display: inline-flex; flex-direction: column; align-self: center; gap: 3px; color: var(--muted); font-size: 12px; background: rgba(184, 134, 11, .07); border: 1px solid var(--line); border-radius: 10px; padding: 8px 14px; }
.rate-val[hidden] { display: none; }
.rate-val b { color: #b45309; font-size: 22px; font-weight: 700; line-height: 1.2; }
.rate-val small { color: var(--muted); font-size: 11.5px; }
.pf-submit { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.pf-agree { color: #8a97aa; font-size: 12px; }

/* ============ 公告 / 文章 / 帮助 ============ */
.narrow-page { max-width: 820px; }
.notice-ratio { display: flex; gap: 14px; align-items: center; background: linear-gradient(120deg, rgba(224,127,12,.1), rgba(224,127,12,.03)); border: 1px solid rgba(224,127,12,.32); border-radius: 14px; padding: 16px 20px; margin-bottom: 20px; }
.notice-ratio i { font-size: 30px; color: #d97706; }
.notice-ratio p { color: var(--muted); font-size: 12px; }
.notice-ratio b { font-size: 15px; color: #b45309; }
.notice-list { display: flex; flex-direction: column; }
.notice-list li { border-bottom: 1px dashed var(--line2); }
.notice-list li:last-child { border-bottom: none; }
.notice-list a { display: flex; align-items: center; gap: 12px; padding: 13px 4px; font-size: 14px; }
.notice-list a:hover { color: var(--primary); }
.nl-title { flex: 1; }
.nl-date { color: var(--muted); font-size: 12px; }
.top-flag { font-style: normal; background: linear-gradient(135deg, #ef476f, #c9184a); color: #fff; font-size: 10px; padding: 1px 7px; border-radius: 4px; }
.notice-list a .top-flag { align-self: center; }
.article { background: var(--panel); border: 1px solid var(--line2); border-radius: 18px; padding: 30px; box-shadow: 0 6px 24px rgba(15,23,42,.06); }
.article-head { text-align: center; padding-bottom: 16px; border-bottom: 1px dashed var(--line2); }
.article-head h1 { font-size: 23px; margin-top: 8px; }
.article-meta { color: var(--muted); font-size: 12.5px; margin-top: 8px; }
.article-body { line-height: 2; color: #33415c; font-size: 14.5px; padding: 20px 6px; }
.article-back { text-align: center; }
.help-layout { display: grid; grid-template-columns: 220px 1fr; gap: 18px; }
.help-side { background: var(--panel); border: 1px solid var(--line2); border-radius: 14px; padding: 14px; align-self: start; position: sticky; top: 84px; box-shadow: 0 1px 3px rgba(15,23,42,.04); }
.help-side h4 { font-size: 13px; color: var(--muted); padding: 6px 10px 10px; }
.help-side a { display: flex; gap: 9px; align-items: center; padding: 10px; border-radius: 9px; color: #4b5a72; font-size: 13.5px; }
.help-side a.on { background: rgba(79,124,255,.1); color: var(--primary2); font-weight: 600; }
.help-side a:hover { background: rgba(15,23,42,.05); }
.help-main h1 { font-size: 22px; margin-bottom: 18px; }
.help-list li { margin-bottom: 16px; }
.help-list h3 { font-size: 15px; color: #b45309; margin-bottom: 5px; }
.help-list p { color: #55657a; font-size: 14px; line-height: 1.9; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: 8px; }
.cc { background: var(--panel2); border: 1px solid var(--line2); border-radius: 14px; padding: 18px; text-align: center; }
.cc-ico { width: 52px; height: 52px; margin: 0 auto 10px; border-radius: 14px; display: grid; place-items: center; font-size: 22px; }
.cc-ico.wx { background: rgba(60,214,138,.15); color: #0f9f58; }
.cc-ico.qq { background: rgba(18,183,245,.15); color: #0f9ad9; }
.cc-ico.time { background: rgba(224,127,12,.15); color: #c87208; }
.cc-ico.shield { background: rgba(79,124,255,.15); color: #3a63e8; }
.cc h4 { font-size: 14px; margin-bottom: 8px; }
.cc-val { font-size: 16px; font-weight: 700; color: var(--txt); margin-bottom: 8px; word-break: break-all; }
.cc-note { color: var(--muted); font-size: 12px; }
.tip-box { margin-top: 16px; background: rgba(79,124,255,.07); border: 1px solid rgba(79,124,255,.3); color: #2b57d9; border-radius: 10px; padding: 11px 15px; font-size: 13px; }

/* 错误 */
.err-box { text-align: center; padding: 60px 0; }
.err-code { font-size: 84px; font-weight: 800; background: linear-gradient(135deg, #5b8cff, #7a5bff); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.err-box h1 { font-size: 20px; margin: 14px 0 6px; }
.err-box p { color: var(--muted); }
.err-actions { margin-top: 24px; display: flex; gap: 12px; justify-content: center; }

/* ============ 响应式 ============ */
@media (max-width: 980px) {
  .nav a { padding: 8px 9px; }
  .acc-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
  .detail-top { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .help-layout { grid-template-columns: 1fr; }
  .help-side { position: static; display: flex; flex-wrap: wrap; gap: 4px; }
  .help-side h4 { width: 100%; }
  .contact-cards { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body { padding-bottom: 60px; }
  .nav { display: none; }
  .header-in { height: 56px; }
  .header-user .btn { display: none; }
  .user-chip { padding: 3px 8px 3px 3px; }
  .user-name { display: none; }
  .acc-grid { grid-template-columns: 1fr; }
  .attr-groups { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .f-row2 { flex-direction: column; align-items: flex-start; }
  .f-btns { margin-left: 0; width: 100%; }
  .f-btns .btn { flex: 1; }
  .my-stats { width: 100%; margin-left: 0; }
  .ah-specs { grid-template-columns: 1fr 1fr; }
  .dp-price { grid-template-columns: 1fr; }
  .acc-cols { grid-template-columns: 1fr; }
  .mobile-nav {
    display: grid; grid-template-columns: repeat(6, 1fr); position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: rgba(255,255,255,.97); backdrop-filter: blur(10px); border-top: 1px solid var(--line);
  }
  .mobile-nav a { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 8px 0 6px; color: var(--muted); font-size: 10.5px; }
  .mobile-nav a i { font-size: 17px; }
  .mobile-nav a.on { color: var(--primary); }
  .toast-wrap { top: 8px; }
  .live-total { margin-left: 0; width: 100%; }
  .pf-submit { justify-content: center; }
  .article { padding: 20px 16px; }
  .cta-banner { padding: 20px; }
}

/* ============ 上架图片 · 发布页预览 ============ */
.pf-req { color: #e0385e; font-style: normal; font-weight: 600; }
.pf-opt { color: var(--muted); font-style: normal; font-size: 11px; border: 1px solid var(--line); border-radius: 4px; padding: 0 4px; margin-left: 4px; }
.rent-line { display: flex; gap: 8px; align-items: center; }
.rent-line input { flex: 1; }
.rent-line .btn-xs { white-space: nowrap; margin-top: 2px; }

/* ============ 号主专享信息（账号详情页，仅本人可见） ============ */
.owner-zone { border: 1px dashed rgba(224,127,12,.4); }
.oz-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.oz-head h3 { font-size: 16px; }
.oz-tag { margin-left: auto; font-size: 12px; color: var(--muted); background: rgba(79,124,255,.08); border: 1px solid var(--line); padding: 3px 10px; border-radius: 20px; white-space: nowrap; }
.oz-body { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.oz-item { background: var(--panel2); border: 1px solid var(--line2); border-radius: 12px; padding: 14px 16px; }
.oz-label { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.oz-label small { margin-left: 2px; }
.oz-phone-row { display: flex; align-items: center; gap: 12px; }
.oz-phone-row b { font-size: 22px; letter-spacing: 1px; }
.oz-qrs { display: flex; gap: 14px; flex-wrap: wrap; }
.oz-qr { display: flex; flex-direction: column; gap: 6px; width: 104px; }
.oz-qr img { width: 104px; height: 104px; object-fit: cover; border-radius: 10px; border: 1px solid var(--line); background: #fff; }
.oz-qr span { font-size: 12px; color: var(--muted); text-align: center; }
.oz-qr:hover img { border-color: var(--primary); }
.oz-note { margin-top: 8px; font-size: 12px; color: var(--muted); }
.photo-prev { display: grid; grid-column: 1 / -1; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 10px; }
.photo-cell { margin: 0; background: rgba(15,23,42,.03); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.photo-cell img { width: 100%; height: 72px; object-fit: cover; display: block; background: #eef1f6; }
.photo-cell figcaption { font-size: 10.5px; color: var(--muted); padding: 5px 7px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.photo-prev.ok { outline: 1px solid rgba(22, 163, 74, .5); outline-offset: 4px; border-radius: 10px; }

/* ============ 上架截图 · 账号详情页 ============ */
.shots-title { margin-top: 22px; }
.acc-shots { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.acc-shot { display: block; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: #eef1f6; }
.acc-shot img { width: 100%; height: 120px; object-fit: cover; display: block; transition: transform .2s; }
.acc-shot:hover img { transform: scale(1.04); }
.acc-shot-tip { margin-top: 14px; display: flex; gap: 8px; align-items: flex-start; font-size: 12.5px; line-height: 1.75; color: var(--muted); background: rgba(224,127,12,.05); border: 1px dashed rgba(224,127,12,.32); border-radius: 10px; padding: 10px 13px; }
.acc-shot-tip i { color: #c87208; margin-top: 4px; }

/* ============ 封禁记录图片 ============ */
.pub-form [hidden] { display: none !important; }
.ban-box { grid-column: 1 / -1; }

/* ============ 调行情比例弹窗（个人中心 · 我的发布） ============ */
.ratio-dlg { border: none; border-radius: 16px; padding: 0; width: min(92vw, 420px); background: var(--panel); box-shadow: 0 24px 70px rgba(15, 23, 42, .28); }
.ratio-dlg::backdrop { background: rgba(15, 23, 42, .45); }
.ratio-form { padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.ratio-form h3 { font-size: 16px; margin: 0; color: var(--txt); display: flex; gap: 8px; align-items: center; }
.rd-cur { font-size: 13px; color: var(--muted); margin: 0; }
.rd-cur b { color: #2563eb; }
.rd-row { font-size: 13px; color: #33415c; display: flex; flex-direction: column; gap: 7px; font-weight: 600; }
.rd-input { display: inline-flex; align-items: stretch; }
.rd-input i { font-style: normal; background: var(--panel2); border: 1px solid var(--line); border-right: 0; border-radius: 10px 0 0 10px; display: flex; align-items: center; padding: 0 10px; font-size: 14px; color: #92610c; }
.rd-input input { background: var(--panel2); border: 1px solid var(--line); border-radius: 0 10px 10px 0; outline: none; font-size: 14px; padding: 10px 12px; width: 130px; color: var(--txt); }
.rd-prev { background: var(--panel2); border: 1px dashed var(--line); border-radius: 10px; padding: 10px 12px; font-size: 13px; color: #33415c; margin: 0; line-height: 1.7; }
.rd-prev b { color: #0f9d58; }
.rd-note { font-size: 12px; color: var(--muted); margin: 0; line-height: 1.7; }
.rd-acts { display: flex; gap: 10px; justify-content: flex-end; margin-top: 4px; }
