/* ========== 咚咚 · 打工人纯净版 ========== */
:root {
  --blue: #2f6bff;
  --blue-deep: #1d4fd7;
  --bg: #edf1f8;
  --card: #ffffff;
  --text: #171b26;
  --text-2: #6b7286;
  --line: #e6eaf2;
  --gold: #f0b429;
  --red: #e5484d;
  --green: #18a058;
  --radius: 18px;
  --shadow: 0 2px 14px rgba(23, 43, 99, .06);
}

body.off {
  --bg: #10121a;
  --card: #1b1e29;
  --text: #ece8dc;
  --text-2: #9a937f;
  --line: #2b2f3d;
  --blue: #f0b429;
  --blue-deep: #d99a12;
  --shadow: 0 2px 14px rgba(0, 0, 0, .3);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  margin: 0; padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: #dfe5f0;
}

body {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(47,107,255,.12), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(240,180,41,.10), transparent 60%),
    var(--bg);
  transition: background .4s, color .4s;
}

.app {
  max-width: 430px;
  margin: 0 auto;
  min-height: 100dvh;
  padding-bottom: calc(84px + env(safe-area-inset-bottom));
  position: relative;
}

/* ---------- 顶栏 ---------- */
.topbar {
  display: flex; align-items: center; gap: 12px;
  padding: calc(14px + env(safe-area-inset-top)) 18px 12px;
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.logo {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff; font-size: 22px; font-weight: 800;
  display: grid; place-items: center;
  box-shadow: 0 4px 10px rgba(47,107,255,.35);
}
body.off .logo { color: #171b26; }
.topbar-text { flex: 1; }
.topbar-title { font-size: 19px; font-weight: 800; letter-spacing: 1px; }
.topbar-sub { font-size: 11px; color: var(--text-2); margin-top: 1px; }
.work-badge {
  font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
  background: var(--blue); color: #fff;
}
body.off .work-badge { color: #171b26; background: var(--gold); }

/* ---------- 通用卡片 ---------- */
main { padding: 6px 16px 0; }
.view { display: none; animation: fadeUp .25s ease; }
.view.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  margin-bottom: 14px;
}
.card-label { font-size: 13px; font-weight: 700; color: var(--text-2); display: flex; align-items: center; gap: 6px; }
.card-title { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.card-desc { font-size: 12.5px; color: var(--text-2); line-height: 1.6; margin-bottom: 12px; }
.section-title { font-size: 13px; font-weight: 800; color: var(--text-2); margin: 18px 2px 10px; }

/* ---------- 按钮 ---------- */
.btn {
  border: none; border-radius: 12px;
  font-size: 14px; font-weight: 700;
  padding: 11px 18px; cursor: pointer;
  font-family: inherit;
  transition: transform .12s, opacity .12s;
}
.btn:active { transform: scale(.96); }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--blue-deep)); color: #fff; box-shadow: 0 4px 12px rgba(47,107,255,.30); }
body.off .btn-primary { color: #171b26; box-shadow: 0 4px 12px rgba(240,180,41,.25); }
.btn-ghost { background: transparent; border: 1.5px solid var(--line); color: var(--text); }
.btn-danger { background: linear-gradient(135deg, #ff5a5f, #d63031); color: #fff; box-shadow: 0 6px 16px rgba(214,48,49,.35); }
.btn-block { width: 100%; margin-top: 10px; }
.btn-big { font-size: 16px; padding: 16px; border-radius: 16px; margin-bottom: 14px; }
.btn[disabled] { opacity: .45; }
.danger-text { color: var(--red); }

/* ---------- 工位 · 人格卡 ---------- */
.persona { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, #8fb2ff, var(--blue));
  color: #fff; font-size: 24px; font-weight: 800;
  display: grid; place-items: center; flex-shrink: 0;
}
body.off .avatar { background: linear-gradient(135deg, var(--gold), #b97e0e); color: #171b26; }
.persona-info { flex: 1; min-width: 0; }
.persona-name { font-size: 17px; font-weight: 800; }
.persona-status { font-size: 12px; color: var(--text-2); margin-top: 2px; }

/* ---------- 工位 · 工资卡 ---------- */
.wage { text-align: center; padding: 20px 16px 16px; }
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); display: inline-block;
  animation: pulse 1.2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
.wage-num {
  font-size: 40px; font-weight: 900; letter-spacing: .5px;
  font-variant-numeric: tabular-nums;
  margin: 8px 0 2px;
}
.wage-caption { font-size: 12px; color: var(--text-2); margin-bottom: 14px; }
.wage-row {
  display: flex; border-top: 1px solid var(--line);
  padding-top: 12px; margin-bottom: 4px;
}
.wage-cell { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.wage-cell span { font-size: 11px; color: var(--text-2); }
.wage-cell b { font-size: 15px; font-variant-numeric: tabular-nums; }

/* ---------- 工位 · 统计 ---------- */
.stat-row { display: flex; gap: 10px; margin-bottom: 14px; }
.stat {
  flex: 1; background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 12px 6px; text-align: center;
  box-shadow: var(--shadow);
}
.stat b { display: block; font-size: 17px; font-variant-numeric: tabular-nums; }
.stat span { font-size: 11px; color: var(--text-2); }

/* ---------- 首页 · 消息拦截 ---------- */
.blackhole { border-style: dashed; }
.bh-item {
  background: var(--bg); border-radius: 10px;
  padding: 10px 12px; margin: 10px 0 8px;
  font-size: 13px; line-height: 1.5;
}
.bh-tip { font-size: 11px; color: var(--text-2); }

/* ---------- 工位 · 快捷 ---------- */
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.quick {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 14px 4px 10px;
  font-size: 22px; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  box-shadow: var(--shadow); font-family: inherit;
  transition: transform .12s;
}
.quick:active { transform: scale(.94); }
.quick span { font-size: 11px; color: var(--text); font-weight: 700; }

/* ---------- 武器库 ---------- */
.ding-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.ding-btn {
  border: 1.5px solid var(--line); background: var(--bg);
  border-radius: 12px; padding: 13px 8px;
  font-size: 13.5px; font-weight: 700; color: var(--text);
  cursor: pointer; font-family: inherit;
  transition: transform .12s, border-color .12s;
}
.ding-btn:active { transform: scale(.95); border-color: var(--blue); }
.coin-row { font-size: 13px; font-weight: 700; margin: 4px 0 2px; }
.coins { letter-spacing: 2px; }

textarea, input[type="text"], input[type="number"], input[type="date"], select {
  width: 100%; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--bg); color: var(--text);
  font-size: 14px; padding: 11px 12px; margin-bottom: 10px;
  font-family: inherit; outline: none; resize: none;
}
textarea:focus, input:focus { border-color: var(--blue); }

.pua-result { margin-top: 14px; border-top: 1px dashed var(--line); padding-top: 14px; }
.pua-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.pua-type {
  background: linear-gradient(135deg, #ff5a5f, #d63031); color: #fff;
  font-size: 12px; font-weight: 800; padding: 4px 10px; border-radius: 999px;
}
.pua-score { font-size: 13px; }
.pua-bar { height: 8px; border-radius: 99px; background: var(--bg); overflow: hidden; margin-bottom: 10px; }
.pua-bar i { display: block; height: 100%; width: 0; border-radius: 99px; background: linear-gradient(90deg, var(--gold), #ff5a5f, #d63031); transition: width .6s ease; }
.pua-verdict { font-size: 12.5px; color: var(--text-2); line-height: 1.6; margin-bottom: 8px; }
.pua-reply { font-size: 13px; line-height: 1.6; background: var(--bg); border-radius: 10px; padding: 10px 12px; }

input::placeholder, textarea::placeholder { color: #b8bcc8; opacity: 1; }

.pie-form-row { display: flex; gap: 10px; }
.pie-form-row input { flex: 1; margin-bottom: 0; }
.pie-form-row .btn { flex-shrink: 0; }
.pie-list { margin-top: 10px; }
.pie-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-top: 1px dashed var(--line);
}
.pie-item:first-child { border-top: none; padding-top: 4px; }
.pie-main { flex: 1; min-width: 0; }
.pie-text {
  display: block; font-size: 13px; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pie-meta { display: block; font-size: 11px; color: var(--text-2); margin-top: 3px; }
.pie-item.stale .pie-meta { color: var(--red); font-weight: 700; }
.pie-act {
  flex: none; border: none; background: none; cursor: pointer; font-family: inherit;
  color: var(--blue); font-size: 12.5px; font-weight: 800; padding: 4px 6px;
}
body.off .pie-act { color: var(--gold); }
.pie-empty { font-size: 12.5px; color: var(--text-2); text-align: center; padding: 8px 0; }

/* ---------- 仲裁 ---------- */
.evi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.evi {
  background: var(--bg); border-radius: 12px;
  padding: 14px 10px; text-align: center;
}
.evi b { display: block; font-size: 21px; font-variant-numeric: tabular-nums; }
.evi span { font-size: 11.5px; color: var(--text-2); }
.tip-card { border-left: 4px solid var(--gold); }

/* ---------- 我的 ---------- */
.stars { display: flex; justify-content: center; gap: 6px; margin: 4px 0 12px; }
.stars button {
  border: none; background: none; font-size: 34px; cursor: pointer;
  color: var(--line); transition: transform .12s, color .12s;
}
.stars button.on { color: var(--gold); }
.stars button:active { transform: scale(1.25); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 4px; }
.tag {
  border: 1.5px solid var(--line); background: transparent; color: var(--text-2);
  font-size: 12px; font-weight: 700; padding: 6px 12px;
  border-radius: 999px; cursor: pointer; font-family: inherit;
}
.tag.on { border-color: var(--blue); color: var(--blue); background: color-mix(in srgb, var(--blue) 8%, transparent); }
.rate-result {
  margin-top: 12px; background: var(--bg); border-radius: 12px;
  padding: 12px; font-size: 13px; line-height: 1.7; text-align: center;
}
.field { display: block; font-size: 13px; font-weight: 700; margin-bottom: 12px; }
.field input { margin-top: 6px; margin-bottom: 0; }
.about { text-align: center; font-size: 11px; color: var(--text-2); padding: 10px 20px 4px; line-height: 1.6; }

/* ---------- 底部 Tab ---------- */
.tabbar {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; z-index: 30;
  display: flex;
  background: color-mix(in srgb, var(--card) 88%, transparent);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.tab {
  flex: 1; border: none; background: none; cursor: pointer;
  padding: 9px 0 7px; font-size: 20px;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  color: var(--text-2); font-family: inherit;
  filter: grayscale(.7); opacity: .7;
  transition: filter .15s, opacity .15s;
}
.tab span { font-size: 10.5px; font-weight: 700; }
.tab.active { filter: none; opacity: 1; color: var(--blue); }

/* ---------- 弹窗 ---------- */
.modal {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(10, 12, 20, .55);
  display: grid; place-items: center; padding: 20px;
}
.modal-body {
  background: var(--card); border-radius: 20px;
  width: 100%; max-width: 400px; max-height: 82dvh;
  display: flex; flex-direction: column;
  padding: 18px; box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.modal-title { font-size: 16px; font-weight: 800; margin-bottom: 10px; }
#arbText {
  flex: 1; overflow: auto; white-space: pre-wrap;
  font-family: inherit; font-size: 12.5px; line-height: 1.8;
  background: var(--bg); border-radius: 12px; padding: 14px; margin: 0;
}
.modal-actions { display: flex; gap: 10px; margin-top: 12px; }
.modal-actions .btn { flex: 1; }

/* ---------- 锁机 ---------- */
.lockscreen {
  position: fixed; inset: 0; z-index: 60;
  background: linear-gradient(160deg, #0e2a5c, #10121a 60%);
  color: #fff; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  text-align: center; padding: 30px;
}
.lock-emoji { font-size: 72px; animation: float 2.4s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.lock-title { font-size: 34px; font-weight: 900; letter-spacing: 8px; }
.lock-sub { font-size: 13px; opacity: .75; }
.btn-lock { margin-top: 16px; background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.3); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; top: calc(16px + env(safe-area-inset-top)); left: 50%;
  transform: translateX(-50%);
  z-index: 70; max-width: 360px;
  background: rgba(23, 27, 38, .92); color: #fff;
  font-size: 13px; font-weight: 600; line-height: 1.5;
  padding: 10px 16px; border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  animation: toastIn .25s ease;
}
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, -10px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* ---------- 接单计价器 ---------- */
.btn-task {
  width: 100%; border: none; cursor: pointer; font-family: inherit;
  background: linear-gradient(135deg, #ffb020, #ff7a1a);
  color: #171b26; font-size: 15px; font-weight: 800;
  padding: 14px; border-radius: 14px; margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(255, 150, 30, .3);
  transition: transform .12s;
}
.btn-task:active { transform: scale(.97); }

.task-card { border: 2px solid var(--gold); }
.task-name { font-size: 16px; font-weight: 800; margin: 6px 0 8px; line-height: 1.5; }
.task-tier-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.task-mult { font-size: 11.5px; color: var(--text-2); font-weight: 700; }
.tier-badge { font-size: 12px; font-weight: 800; padding: 5px 12px; border-radius: 999px; }
.tier-badge.t9 { background: rgba(24,160,88,.15); color: var(--green); }
.tier-badge.t6 { background: rgba(47,107,255,.13); color: var(--blue); }
.tier-badge.t3 { background: rgba(240,180,41,.18); color: #b97e0e; }
.tier-badge.t2 { background: rgba(255,122,26,.16); color: #e5640e; }
.tier-badge.t1 { background: #171b26; color: var(--gold); border: 1px solid var(--gold); }
.task-earn { display: flex; border-top: 1px solid var(--line); padding-top: 10px; margin-bottom: 4px; }
.task-earn > div { flex: 1; display: flex; flex-direction: column; gap: 3px; text-align: center; }
.task-earn span { font-size: 11px; color: var(--text-2); }
.task-earn b { font-size: 14px; font-variant-numeric: tabular-nums; }

.grade-result { margin-top: 14px; border-top: 1px dashed var(--line); padding-top: 14px; }
.grade-tier-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.grade-tier-row b { font-size: 18px; font-variant-numeric: tabular-nums; }
.grade-dims { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.dim-tag { font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 999px; background: rgba(229,72,77,.12); color: var(--red); }
.grade-breakdown { font-size: 12.5px; color: var(--text-2); line-height: 1.7; margin-bottom: 8px; }
.grade-hourly { font-size: 15px; font-weight: 800; margin-bottom: 6px; }

/* ---------- 追债中心 ---------- */
.debt-card { border: 2px solid var(--gold); }
.debt-total { font-size: 15px; margin-bottom: 10px; }
.debt-total b { font-size: 22px; font-variant-numeric: tabular-nums; color: #e5640e; }
body.off .debt-total b { color: var(--gold); }
.bill-list { display: flex; flex-direction: column; gap: 8px; }
.bill-item { display: flex; align-items: center; gap: 10px; background: var(--bg); border-radius: 12px; padding: 10px 12px; }
.bill-info { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.bill-info b { font-size: 13px; }
.bill-info span { font-size: 11px; color: var(--text-2); }
.bill-amount { font-size: 15px; font-weight: 800; font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ---------- 预约系统 ---------- */
.tab { position: relative; }
.tab-dot {
  position: absolute; top: 6px; right: 50%; transform: translateX(18px);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 0 2px var(--card);
}

.slot-row { display: flex; align-items: center; gap: 14px; }
.slot-btn {
  width: 40px; height: 40px; border-radius: 12px;
  border: 1.5px solid var(--line); background: var(--bg);
  font-size: 20px; font-weight: 800; color: var(--text);
  cursor: pointer; font-family: inherit;
  transition: transform .12s;
}
.slot-btn:active { transform: scale(.9); }
.slot-num { font-size: 26px; font-weight: 900; min-width: 36px; text-align: center; font-variant-numeric: tabular-nums; }
.slot-status { font-size: 12px; color: var(--text-2); line-height: 1.5; }

.req-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 4px; }
.req-list:empty { display: none; }
.req-item {
  border: 1.5px solid var(--line); border-radius: 14px;
  padding: 12px; background: var(--bg);
}
.req-item.buyout { border-color: var(--gold); background: color-mix(in srgb, var(--gold) 7%, var(--bg)); }
.req-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.req-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #5b6b8c, #2c3550);
  color: #fff; font-size: 17px; font-weight: 800;
  display: grid; place-items: center;
}
.req-item.buyout .req-avatar { background: linear-gradient(135deg, var(--gold), #b97e0e); color: #171b26; }
.req-who { flex: 1; min-width: 0; }
.req-who b { font-size: 14px; display: block; }
.req-who span { font-size: 11.5px; color: var(--text-2); }
.req-price { font-size: 16px; font-weight: 900; font-variant-numeric: tabular-nums; white-space: nowrap; }
.req-task { font-size: 13px; line-height: 1.5; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.req-actions { display: flex; gap: 8px; }
.req-actions .btn { flex: 1; padding: 9px; font-size: 13px; margin-top: 0; }
.req-accept { background: linear-gradient(135deg, var(--blue), var(--blue-deep)); color: #fff; border: none; }
body.off .req-accept { color: #171b26; }
.req-reject { background: transparent; border: 1.5px solid var(--line); color: var(--text-2); }
.req-empty { font-size: 12.5px; color: var(--text-2); text-align: center; padding: 10px 0; line-height: 1.7; }

.buyout-card { border: 2px solid var(--gold); background: color-mix(in srgb, var(--gold) 6%, var(--card)); }
.buyout-line { font-size: 14.5px; font-weight: 700; margin-bottom: 10px; }
.buyout-clauses { font-size: 12px; color: var(--text-2); line-height: 1.9; }

/* ---------- 首页 Hero 大按钮 ---------- */
.hero {
  display: block; width: 100%;
  border-radius: 24px; padding: 28px 20px 22px; margin-bottom: 12px;
  background: linear-gradient(150deg, #3d7bff, #1d4fd7);
  color: #fff; text-align: center;
  box-shadow: 0 10px 28px rgba(47, 107, 255, .35);
}
body.off .hero {
  background: linear-gradient(150deg, #22242f, #10121a);
  border: 1px solid var(--gold);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .45);
}
.hero-state { font-size: 15px; font-weight: 800; letter-spacing: 3px; opacity: .92; }
.hero-amount { font-size: 46px; font-weight: 900; font-variant-numeric: tabular-nums; margin: 10px 0 2px; }
.hero-breakdown {
  margin-top: 14px; font-size: 11.5px; font-variant-numeric: tabular-nums;
  background: rgba(255, 255, 255, .13); border-radius: 10px; padding: 8px 10px;
}
.hero-offline { font-size: 20px; font-weight: 900; color: var(--gold); margin: 14px 0 4px; }
.hero-offline b { font-size: 22px; }

.clock-row { display: flex; gap: 10px; margin-bottom: 14px; }
.clock-btn {
  flex: 1; border: none; cursor: pointer; font-family: inherit;
  background: var(--blue); color: #fff;
  border-radius: 14px; padding: 13px;
  font-size: 14.5px; font-weight: 800;
  box-shadow: 0 4px 14px rgba(47, 107, 255, .3);
  transition: transform .12s;
}
.clock-btn:active { transform: scale(.97); }
body.off .clock-btn { background: var(--gold); color: #171b26; box-shadow: 0 4px 14px rgba(240, 180, 41, .3); }

.hero-chip {
  flex: none; align-self: center;
  border: 1.5px solid var(--line); background: var(--card); color: var(--text);
  border-radius: 999px; padding: 10px 16px;
  font-size: 12.5px; font-weight: 700; cursor: pointer; font-family: inherit;
  transition: transform .12s;
}
.hero-chip:active { transform: scale(.95); }
.hero-chip.on { border-color: #ff7a1a; color: #e5640e; background: rgba(255, 122, 26, .08); }
.hero-chip[disabled] { opacity: .4; }

.share-card {
  display: block; width: 100%; text-align: center; cursor: pointer; font-family: inherit;
  font-size: 14px; font-weight: 800; color: var(--blue);
  border-color: var(--blue);
}
.share-stats { display: block; margin-top: 6px; font-size: 11.5px; font-weight: 500; color: var(--text-2); }
body.off .share-card { color: var(--gold); border-color: var(--gold); }

.idle-card {
  display: block; width: 100%; text-align: center;
  font-size: 13px; font-weight: 700; color: var(--text-2);
  border-style: dashed; cursor: pointer; font-family: inherit;
}

/* ---------- 搞钱页 ---------- */
.evi-line {
  margin-top: 12px; font-size: 11.5px; color: var(--text-2);
  border-top: 1px dashed var(--line); padding-top: 10px; line-height: 1.6;
}
.fine-print { font-size: 11px; color: var(--text-2); text-align: center; line-height: 1.7; padding: 0 10px 4px; }

.req-item.tip { border-color: var(--green); background: color-mix(in srgb, var(--green) 6%, var(--bg)); }
.req-item.tip .req-avatar { background: linear-gradient(135deg, #34c47c, #157347); }
.req-note { font-size: 11px; color: var(--green); font-weight: 700; }

[hidden] { display: none !important; }
