/* ============================================================
   打手端工作台样式 (深色风格, 与 base.css 共存, 仅增量覆盖)
   ============================================================ */
:root {
  --booster-dark: #1a1a2e;
  --booster-dark-2: #16213e;
  --booster-dark-3: #0f3460;
  --booster-accent: #e94560;
  --booster-gold: #ffd166;
  --booster-grad: linear-gradient(135deg, #232946 0%, #0f3460 100%);
}

/* ---------- 深色导航栏 ---------- */
.navbar.bk-navbar { background: var(--booster-dark); box-shadow: none; }
.bk-navbar .nav-title { color: #fff; }
.bk-navbar .nav-back { color: #fff; }

/* ---------- 深色底部导航 ---------- */
.tabbar.bk-tabbar { background: var(--booster-dark); border-top: none; }
.bk-tabbar .tab-item { color: rgba(255, 255, 255, .45); }
.bk-tabbar .tab-item.active { color: var(--booster-gold); }
.bk-tabbar .tab-item .badge { background: var(--booster-accent); }

/* ---------- 顶部头卡 ---------- */
.bk-hero {
  background: var(--booster-grad); color: #fff;
  border-radius: 0 0 22px 22px; padding: 20px 16px 24px;
  position: relative; overflow: hidden;
}
.bk-hero::before { content: ''; position: absolute; right: -50px; top: -50px; width: 170px; height: 170px; border-radius: 50%; background: rgba(255, 255, 255, .06); }
.bk-hero::after { content: ''; position: absolute; right: 40px; bottom: -70px; width: 140px; height: 140px; border-radius: 50%; background: rgba(233, 69, 96, .18); }
.bk-hero .bh-name { font-size: 20px; font-weight: 700; position: relative; z-index: 1; }
.bk-hero .bh-sub { font-size: 13px; opacity: .85; margin-top: 4px; position: relative; z-index: 1; }
.bk-hero .bh-stats { display: flex; gap: 28px; margin-top: 14px; position: relative; z-index: 1; }
.bk-hero .bh-stats .bs-num { font-size: 18px; font-weight: 700; }
.bk-hero .bh-stats .bs-label { font-size: 11px; opacity: .75; margin-top: 2px; }
.bk-hero .tag { background: rgba(255, 255, 255, .16); color: #fff; }

/* 头卡通用信息 (钱包/提现/统计等) */
.bk-hero .wh-label { font-size: 13px; opacity: .85; position: relative; z-index: 1; }
.bk-hero .wh-total { font-size: 32px; font-weight: 700; margin-top: 6px; position: relative; z-index: 1; }
.bk-hero .wh-sub { display: flex; gap: 28px; margin-top: 16px; position: relative; z-index: 1; }
.bk-hero .wh-sub .ws-num { font-size: 16px; font-weight: 600; }
.bk-hero .wh-sub .ws-label { font-size: 11px; opacity: .8; margin-top: 2px; }

/* ---------- 接单状态开关 ---------- */
.bk-toggle {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 42px; padding: 0 20px; border-radius: 21px;
  font-size: 15px; font-weight: 600; transition: all .25s; white-space: nowrap;
}
.bk-toggle.on { background: linear-gradient(135deg, #07c160, #0aa354); color: #fff; box-shadow: 0 6px 16px rgba(7, 193, 96, .3); }
.bk-toggle.off { background: #f2f3f5; color: var(--text-sub); }
.bk-toggle .t-dot { width: 10px; height: 10px; border-radius: 50%; background: #b0b3b8; }
.bk-toggle.on .t-dot { background: #fff; box-shadow: 0 0 0 3px rgba(255, 255, 255, .35); }
.bk-toggle:active { opacity: .85; }

/* ---------- 数据卡片 ---------- */
.bk-stat { background: #fff; border-radius: 14px; padding: 14px 10px; text-align: center; box-shadow: 0 2px 10px rgba(0, 0, 0, .05); }
.bk-stat .bk-stat-icon { font-size: 22px; line-height: 1; }
.bk-stat .bk-stat-num { font-size: 18px; font-weight: 700; margin-top: 8px; line-height: 1.2; word-break: break-all; }
.bk-stat .bk-stat-label { font-size: 11px; color: var(--text-light); margin-top: 4px; }

/* ---------- 快捷入口 ---------- */
.bk-entry { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 14px 4px; }
.bk-entry .bk-entry-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; background: rgba(123, 91, 255, .1); }
.bk-entry .bk-entry-name { font-size: 12px; color: var(--text-sub); }

/* ---------- 提示条 ---------- */
.bk-tipbar { margin: 12px; padding: 10px 12px; border-radius: 10px; font-size: 13px; display: flex; align-items: center; gap: 8px; }
.bk-tipbar.warn { background: rgba(255, 152, 0, .12); color: var(--orange); }
.bk-tipbar.info { background: rgba(25, 137, 250, .1); color: var(--blue); }
.bk-tipbar.err { background: rgba(238, 10, 36, .08); color: var(--danger); }
.bk-tipbar.success { background: rgba(7, 193, 96, .1); color: var(--success); }

/* ---------- 公告条 ---------- */
.bk-notice { display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 12px; padding: 11px 12px; box-shadow: 0 2px 8px rgba(0, 0, 0, .04); }
.bk-notice .bk-notice-tag { flex-shrink: 0; background: linear-gradient(135deg, #ffd700, #ff9800); color: #fff; font-size: 11px; padding: 1px 8px; border-radius: 4px; font-weight: 600; }
.bk-notice .bk-notice-text { flex: 1; min-width: 0; font-size: 13px; color: var(--text-sub); }

/* ---------- 登录页 ---------- */
.bk-auth { min-height: 100vh; background: var(--booster-grad); padding: 60px 28px 30px; }
.bk-auth-logo { text-align: center; color: #fff; margin-bottom: 36px; }
.bk-auth-logo .logo-icon { font-size: 64px; line-height: 1; }
.bk-auth-logo .logo-name { font-size: 22px; font-weight: 700; margin-top: 12px; }
.bk-auth-logo .logo-slogan { font-size: 13px; opacity: .85; margin-top: 4px; }
.bk-auth-card { background: #fff; border-radius: 16px; padding: 24px 20px; box-shadow: 0 10px 30px rgba(0, 0, 0, .25); }
.bk-auth-card .bk-form-cell { border: 1px solid var(--border); border-radius: 10px; padding: 0 14px; height: 48px; display: flex; align-items: center; margin-bottom: 14px; }
.bk-auth-card .bk-form-cell .label { color: var(--text-sub); margin-right: 10px; flex-shrink: 0; }
.bk-auth-card .bk-form-cell input { flex: 1; border: none; font-size: 15px; height: 100%; background: transparent; min-width: 0; }
.bk-auth-card .bk-form-cell input::placeholder { color: var(--text-light); }
.bk-auth-card .code-btn { color: var(--primary); font-size: 13px; white-space: nowrap; border-left: 1px solid var(--border); padding-left: 12px; flex-shrink: 0; }
.bk-auth-card .code-btn.disable { color: var(--text-light); }
.bk-auth-card .bk-btn { height: 48px; }
.bk-auth-card .auth-tips { text-align: center; font-size: 12px; color: var(--text-light); margin-top: 16px; }
.bk-auth-card .auth-tips a { color: var(--primary); }

/* ---------- 接单大厅卡片 ---------- */
.hall-card { background: #fff; border-radius: 14px; padding: 14px; margin-bottom: 12px; box-shadow: 0 2px 8px rgba(0, 0, 0, .04); }
.hall-card .hc-top { display: flex; align-items: center; gap: 8px; }
.hall-card .hc-title { font-size: 15px; font-weight: 600; flex: 1; min-width: 0; }
.hall-card .hc-info { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-top: 10px; font-size: 13px; color: var(--text-sub); }
.hall-card .hc-info .hi-item { display: flex; align-items: center; gap: 4px; }
.hall-card .hc-remark { margin-top: 8px; font-size: 13px; color: var(--text-sub); background: #f7f8fa; border-radius: 8px; padding: 8px 10px; }
.hall-card .hc-bot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.hall-card .hc-shot { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; cursor: pointer; }

/* ---------- 统计大卡片 ---------- */
.bk-big { background: #fff; border-radius: 14px; padding: 16px; box-shadow: 0 2px 8px rgba(0, 0, 0, .04); }
.bk-big .bk-big-head { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-sub); }
.bk-big .bk-big-icon { font-size: 20px; }
.bk-big .bk-big-num { font-size: 26px; font-weight: 700; margin-top: 10px; word-break: break-all; }

/* ---------- 审核状态徽章 ---------- */
.bk-verify-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; padding: 3px 10px; border-radius: 12px; }
.bk-verify-badge.badge-orange { background: rgba(255, 152, 0, .12); color: var(--orange); }
.bk-verify-badge.badge-green { background: rgba(7, 193, 96, .12); color: var(--success); }
.bk-verify-badge.badge-red { background: rgba(238, 10, 36, .1); color: var(--danger); }
