/* ============================================================
   按摩店工资核算系统 · v3 设计系统
   设计语言：大留白 / 卡片化 / 单一主色 / 细腻动效
   主色 深青 #0F766E · 强调 橙 #F59E0B · 金额红 #EF4444
   ============================================================ */

:root {
  --brand: #0F766E;
  --brand-2: #0D9488;
  --brand-grad: linear-gradient(135deg, #0D9488 0%, #0F766E 100%);
  --brand-soft: #E6F4F2;
  --orange: #F59E0B;
  --red: #EF4444;
  --green: #10B981;
  --blue: #3B82F6;
  --bg: #F4F7F6;
  --card: #FFFFFF;
  --text: #0F172A;
  --text-2: #64748B;
  --text-3: #94A3B8;
  --line: #EEF2F1;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(15, 118, 110, .07);
  --shadow-lg: 0 8px 28px rgba(15, 118, 110, .14);
  --tab-h: 56px;
  --topbar-h: 52px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
  --anim: .22s cubic-bezier(.4, 0, .2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { height: 100%; overflow-x: hidden; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "HarmonyOS Sans", "MiSans", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 16px; color: var(--text); }
.hidden { display: none !important; }
a { color: var(--brand); text-decoration: none; }

/* ---------- 页面容器 + 切换动效 ---------- */
.page {
  display: none;
  padding: 16px 16px calc(var(--tab-h) + var(--safe-b) + 20px);
  animation: pageIn .26s ease;
  max-width: 100%;
  overflow-x: hidden;
}
.page.active { display: block; }
.page.no-tab { padding-bottom: calc(var(--safe-b) + 24px); }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* ---------- 沉浸式头部 ---------- */
.topbar {
  background: var(--brand-grad);
  color: #fff;
  padding: calc(var(--safe-t) + 12px) 16px 14px;
  border-radius: 0 0 24px 24px;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 4px 20px rgba(15, 118, 110, .25);
}
.topbar .row { display: flex; align-items: center; justify-content: space-between; }
.topbar h1 { font-size: 19px; font-weight: 700; letter-spacing: .5px; }
.topbar .sub { font-size: 12px; opacity: .85; margin-top: 3px; font-weight: 400; }
.topbar .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 600;
}
.topbar .badge-dot { position: relative; }
.topbar .badge-dot i {
  position: absolute; top: -2px; right: -2px;
  min-width: 16px; height: 16px; padding: 0 4px;
  background: var(--red); color: #fff;
  font-size: 10px; font-style: normal; font-weight: 700;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--brand);
}
.page-head {
  display: flex; align-items: center; gap: 12px;
  margin: 4px 0 14px;
}
.page-head .back {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--brand-soft); color: var(--brand);
  font-size: 17px; display: flex; align-items: center; justify-content: center;
}
.page-head h2 { font-size: 18px; font-weight: 700; flex: 1; }

/* ---------- 卡片 ---------- */
.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 16px;
  margin-bottom: 14px;
}
.card-title {
  font-size: 14px; font-weight: 700; color: var(--text);
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.card-title .more { font-size: 12px; color: var(--text-3); font-weight: 400; }

/* ---------- 首页大数字卡 ---------- */
.hero-card {
  background: var(--brand-grad);
  border-radius: 20px;
  padding: 20px;
  color: #fff;
  margin-bottom: 14px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero-card::after {
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 140px; height: 140px; border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}
.hero-card::before {
  content: ""; position: absolute; right: 30px; bottom: -50px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255, 255, 255, .06);
}
.hero-card .label { font-size: 12px; opacity: .85; }
.hero-card .value {
  font-size: 34px; font-weight: 800; margin: 4px 0 2px;
  font-variant-numeric: tabular-nums; letter-spacing: -.5px;
}
.hero-card .value small { font-size: 16px; font-weight: 600; margin-left: 2px; }
.hero-card .sub-row { display: flex; gap: 20px; font-size: 12px; opacity: .9; margin-top: 10px; }
.hero-card .sub-row b { font-weight: 700; }

/* ---------- 双卡并排快捷 ---------- */
.row-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.quick-card {
  background: var(--card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 16px;
  display: flex; align-items: center; gap: 12px;
  transition: transform var(--anim);
}
.quick-card:active { transform: scale(.97); }
.quick-card .ic {
  width: 42px; height: 42px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.quick-card .t { font-size: 13px; font-weight: 600; }
.quick-card .d { font-size: 11px; color: var(--text-3); margin-top: 1px; }
.quick-card .cnt {
  margin-left: auto; min-width: 20px; height: 20px; padding: 0 6px;
  background: var(--red); color: #fff; font-size: 11px; font-weight: 700;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}

/* ---------- 宫格 ---------- */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.grid-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 14px 4px; border-radius: var(--radius-md);
  transition: background var(--anim), transform var(--anim);
}
.grid-item:active { background: var(--brand-soft); transform: scale(.95); }
.grid-item .ic {
  width: 46px; height: 46px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 7px;
  background: var(--brand-soft);
}
.grid-item span { font-size: 12px; color: var(--text-2); font-weight: 500; }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 0 18px; height: 44px; border-radius: var(--radius-md);
  font-size: 15px; font-weight: 600;
  transition: transform var(--anim), opacity var(--anim);
  user-select: none;
}
.btn:active { transform: scale(.96); }
.btn-primary { background: var(--brand-grad); color: #fff; box-shadow: 0 4px 14px rgba(15, 118, 110, .3); }
.btn-danger { background: var(--red); color: #fff; }
.btn-ghost { background: var(--brand-soft); color: var(--brand); }
.btn-plain { background: #F1F5F4; color: var(--text-2); }
.btn-sm { height: 34px; padding: 0 14px; font-size: 13px; border-radius: 10px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; pointer-events: none; }
.btn-row { display: flex; gap: 10px; margin-top: 18px; }
.btn-row .btn { flex: 1; }

/* ---------- 表单 ---------- */
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; color: var(--text-2); margin-bottom: 6px; font-weight: 500; }
.form-group input[type="text"], .form-group input[type="password"], .form-group input[type="number"], .form-group select, .form-group textarea {
  width: 100%; height: 46px; padding: 0 14px;
  background: #F7FAF9; border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  outline: none; transition: border-color var(--anim), box-shadow var(--anim);
}
.form-group textarea { height: 88px; padding: 12px 14px; resize: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--brand); box-shadow: 0 0 0 3px rgba(15, 118, 110, .12);
  background: #fff;
}
.form-group .tip { font-size: 11px; color: var(--text-3); margin-top: 5px; }

/* ---------- 分段选择器 ---------- */
.seg {
  display: flex; background: #EDF1F0; border-radius: 12px; padding: 3px;
  margin-bottom: 14px;
}
.seg button {
  flex: 1; height: 36px; border-radius: 10px; font-size: 13px; font-weight: 600;
  color: var(--text-2); transition: all var(--anim);
}
.seg button.active { background: #fff; color: var(--brand); box-shadow: 0 2px 8px rgba(15, 118, 110, .12); }

/* ---------- 列表 ---------- */
.list-item {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 2px;
  border-bottom: 1px solid var(--line);
}
.list-item:last-child { border-bottom: none; }
.list-item .ic {
  width: 38px; height: 38px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.list-item .bd { flex: 1; min-width: 0; }
.list-item .bd .t { font-size: 14px; font-weight: 600; }
.list-item .bd .d { font-size: 12px; color: var(--text-3); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.list-item .rt { text-align: right; flex-shrink: 0; }
.list-item .rt .v { font-size: 14px; font-weight: 700; }
.list-item .rt .d { font-size: 11px; color: var(--text-3); margin-top: 2px; }
.list-item .arrow { color: var(--text-3); font-size: 14px; flex-shrink: 0; }

/* ---------- 标签 / 状态 ---------- */
.tag {
  display: inline-flex; align-items: center; padding: 2px 8px;
  border-radius: 6px; font-size: 11px; font-weight: 600;
}
.tag-green { background: #E7F8F0; color: #059669; }
.tag-orange { background: #FEF3E2; color: #D97706; }
.tag-red { background: #FEE9E9; color: #DC2626; }
.tag-gray { background: #F1F5F4; color: var(--text-2); }
.tag-blue { background: #E8F1FE; color: #2563EB; }
.tag-brand { background: var(--brand-soft); color: var(--brand); }

/* ---------- 底部导航 ---------- */
.tabbar {
  position: fixed; left: 0; right: 0; bottom: 0;
  height: calc(var(--tab-h) + var(--safe-b));
  padding-bottom: var(--safe-b);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  display: flex; z-index: 100;
}
.tabbar .tab {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px;
  color: var(--text-3); font-size: 10px; font-weight: 500;
  position: relative; transition: color var(--anim);
}
.tabbar .tab .ic { font-size: 21px; line-height: 1; position: relative; transition: transform var(--anim); }
.tabbar .tab.active { color: var(--brand); font-weight: 700; }
.tabbar .tab.active .ic { transform: translateY(-1px) scale(1.06); }
.tabbar .tab .dot {
  position: absolute; top: -3px; right: -10px;
  min-width: 15px; height: 15px; padding: 0 4px;
  background: var(--red); color: #fff;
  font-size: 9px; font-weight: 700; font-style: normal;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid #fff;
}
/* 中间大按钮 */
.tabbar .tab.primary .ic {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand-grad); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-top: -20px;
  box-shadow: 0 6px 16px rgba(15, 118, 110, .4);
  border: 4px solid var(--bg);
}

/* ---------- 弹窗 ---------- */
.modal-mask {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15, 23, 42, .45);
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn var(--anim);
  backdrop-filter: blur(2px);
}
.modal-body {
  width: calc(100% - 48px); max-width: 360px;
  background: #fff; border-radius: 20px; padding: 22px 20px 18px;
  animation: popIn .28s cubic-bezier(.34, 1.4, .64, 1);
  box-shadow: var(--shadow-lg);
  max-height: 80vh; overflow-y: auto;
}
.modal-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 14px; text-align: center; }
.modal-body .m-tip { font-size: 12px; color: var(--text-3); text-align: center; margin: 6px 0 14px; }
@keyframes fadeIn { from { opacity: 0; } }
@keyframes popIn { from { opacity: 0; transform: scale(.9) translateY(8px); } }

/* ---------- 底部弹层 ---------- */
.sheet-mask {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15, 23, 42, .45);
  display: flex; align-items: flex-end;
  animation: fadeIn var(--anim);
}
.sheet-body {
  width: 100%; background: #fff;
  border-radius: 22px 22px 0 0;
  padding: 18px 16px calc(var(--safe-b) + 16px);
  animation: sheetUp .3s cubic-bezier(.34, 1.3, .64, 1);
  max-height: 82vh; overflow-y: auto;
}
.sheet-body .grip {
  width: 36px; height: 4px; border-radius: 2px;
  background: #E2E8F0; margin: 0 auto 16px;
}
.sheet-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 12px; text-align: center; }
@keyframes sheetUp { from { transform: translateY(100%); } }

/* ---------- Toast ---------- */
#toast {
  position: fixed; left: 50%; bottom: calc(var(--tab-h) + var(--safe-b) + 30px);
  transform: translateX(-50%);
  background: rgba(15, 23, 42, .88); color: #fff;
  padding: 10px 18px; border-radius: 24px;
  font-size: 13px; z-index: 300;
  opacity: 0; pointer-events: none;
  transition: opacity var(--anim), transform var(--anim);
  max-width: 80vw; text-align: center;
  backdrop-filter: blur(8px);
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(-6px); }

/* ---------- 空状态 ---------- */
.empty { text-align: center; padding: 44px 0 36px; }
.empty .ic { font-size: 46px; margin-bottom: 10px; opacity: .9; }
.empty .t { font-size: 14px; color: var(--text-2); font-weight: 600; }
.empty .d { font-size: 12px; color: var(--text-3); margin-top: 4px; }

/* ---------- 骨架屏 ---------- */
.skel {
  background: linear-gradient(90deg, #EEF2F1 25%, #F7FAF9 50%, #EEF2F1 75%);
  background-size: 200% 100%;
  animation: shimmer 1.3s infinite;
  border-radius: 8px;
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* ---------- 审批卡片 ---------- */
.approve-card {
  background: var(--card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 14px 16px; margin-bottom: 12px;
}
.approve-card .top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.approve-card .top .ic {
  width: 38px; height: 38px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.approve-card .top .who { flex: 1; }
.approve-card .top .who .n { font-size: 14px; font-weight: 700; }
.approve-card .top .who .d { font-size: 11px; color: var(--text-3); }
.approve-card .info { font-size: 13px; color: var(--text-2); line-height: 1.9; background: #F8FAF9; border-radius: 10px; padding: 10px 12px; margin-bottom: 12px; }
.approve-card .info b { color: var(--text); font-weight: 700; }
.approve-card .ops { display: flex; gap: 10px; }
.approve-card .ops .btn { flex: 1; height: 38px; font-size: 14px; }

/* ---------- 收款方式宫格 ---------- */
.pick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pick-grid button {
  padding: 12px 4px; border-radius: var(--radius-md);
  background: #F7FAF9; border: 1.5px solid var(--line);
  font-size: 13px; font-weight: 600; color: var(--text-2);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  transition: all var(--anim);
}
.pick-grid button .ic { font-size: 20px; }
.pick-grid button.active {
  border-color: var(--brand); background: var(--brand-soft); color: var(--brand);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, .1);
}

/* ---------- 统计宫格 ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 14px; }
.stat-card {
  background: var(--card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 14px 16px;
}
.stat-card .label { font-size: 12px; color: var(--text-2); }
.stat-card .num { font-size: 22px; font-weight: 800; margin-top: 6px; font-variant-numeric: tabular-nums; }
.stat-card .num.red { color: var(--red); }
.stat-card .num.green { color: var(--green); }
.stat-card .num.blue { color: var(--blue); }
.stat-card .num.orange { color: var(--orange); }
.stat-card .num.brand { color: var(--brand); }
.stat-card .num small { font-size: 12px; font-weight: 600; }

/* ---------- 汇总条 ---------- */
.summary-bar {
  background: var(--card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 16px;
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.summary-bar .small { font-size: 12px; color: var(--text-2); }
.summary-bar .big { font-size: 24px; font-weight: 800; color: var(--text); font-variant-numeric: tabular-nums; }
.summary-bar .big small { font-size: 13px; font-weight: 600; color: var(--text-2); }

/* ---------- 搜索条 ---------- */
.search-bar {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border-radius: var(--radius-md);
  padding: 0 12px; height: 42px; margin-bottom: 12px;
  box-shadow: var(--shadow);
}
.search-bar .ic { font-size: 15px; color: var(--text-3); }
.search-bar input { flex: 1; border: none; outline: none; background: none; font-size: 14px; height: 100%; }

/* ---------- 员工上报大按钮 ---------- */
.report-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 14px; }
.report-btn {
  background: var(--card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 20px 8px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: transform var(--anim), box-shadow var(--anim);
}
.report-btn:active { transform: scale(.95); box-shadow: none; }
.report-btn .ic {
  width: 52px; height: 52px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.report-btn .t { font-size: 13px; font-weight: 700; }
.report-btn .d { font-size: 11px; color: var(--text-3); }

/* ---------- 步骤条 ---------- */
.steps { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 16px; }
.steps .st { display: flex; align-items: center; gap: 6px; }
.steps .st .n {
  width: 22px; height: 22px; border-radius: 50%;
  background: #EDF1F0; color: var(--text-3);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--anim);
}
.steps .st.done .n, .steps .st.on .n { background: var(--brand); color: #fff; }
.steps .st .t { font-size: 12px; color: var(--text-3); }
.steps .st.on .t { color: var(--brand); font-weight: 600; }
.steps .line { width: 26px; height: 2px; background: #EDF1F0; border-radius: 1px; }
.steps .line.done { background: var(--brand); }

/* ---------- 会员卡 ---------- */
.member-card {
  background: linear-gradient(135deg, #F59E0B, #F97316);
  border-radius: 20px; padding: 18px;
  color: #fff; margin-bottom: 14px;
  box-shadow: 0 6px 20px rgba(245, 158, 11, .3);
  position: relative; overflow: hidden;
}
.member-card::after {
  content: ""; position: absolute; right: -30px; top: -30px;
  width: 110px; height: 110px; border-radius: 50%; background: rgba(255,255,255,.12);
}
.member-card .m-name { font-size: 16px; font-weight: 700; }
.member-card .m-no { font-size: 11px; opacity: .85; margin-top: 2px; }
.member-card .m-bal { margin-top: 14px; }
.member-card .m-bal .l { font-size: 11px; opacity: .85; }
.member-card .m-bal .v { font-size: 30px; font-weight: 800; font-variant-numeric: tabular-nums; }
.member-card .m-bal .v small { font-size: 14px; font-weight: 600; }

/* ---------- 数字滚动条（业绩卡） ---------- */
.num { font-variant-numeric: tabular-nums; }

/* ---------- 长列表滚动优化 ---------- */
.scroll-list { max-height: 50vh; overflow-y: auto; -webkit-overflow-scrolling: touch; }

/* ---------- 分割标题 ---------- */
.sec-title {
  font-size: 13px; color: var(--text-2); font-weight: 700;
  margin: 18px 4px 10px; display: flex; align-items: center; gap: 6px;
}
.sec-title::before { content: ""; width: 3px; height: 14px; border-radius: 2px; background: var(--brand); }

/* ---------- 登录页 ---------- */
.login-page {
  min-height: 100vh;
  background: var(--brand-grad);
  display: flex; flex-direction: column;
  padding: calc(var(--safe-t) + 60px) 28px calc(var(--safe-b) + 40px);
  position: relative; overflow: hidden;
}
.login-page::before, .login-page::after {
  content: ""; position: absolute; border-radius: 50%;
  background: rgba(255, 255, 255, .07);
}
.login-page::before { width: 220px; height: 220px; right: -70px; top: -40px; }
.login-page::after { width: 160px; height: 160px; left: -60px; bottom: 80px; }
.login-logo { color: #fff; margin-bottom: 40px; position: relative; z-index: 1; }
.login-logo .icon {
  width: 72px; height: 72px; border-radius: 22px;
  background: rgba(255, 255, 255, .16);
  display: flex; align-items: center; justify-content: center;
  font-size: 38px; margin-bottom: 18px;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}
.login-logo h1 { font-size: 26px; font-weight: 800; letter-spacing: 1px; }
.login-logo p { font-size: 13px; opacity: .85; margin-top: 8px; }
.login-card {
  background: #fff; border-radius: 24px;
  padding: 26px 22px 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
  position: relative; z-index: 1;
}
.login-card .form-group input { height: 50px; }
.login-card .btn { height: 50px; margin-top: 6px; border-radius: 14px; font-size: 16px; }
.login-tip { color: rgba(255,255,255,.75); text-align: center; font-size: 11px; margin-top: 24px; position: relative; z-index: 1; }

/* ---------- 数字键盘式输入（金额） ---------- */
.amount-input {
  font-size: 34px; font-weight: 800; text-align: center;
  border: none !important; background: none !important;
  height: 60px !important; color: var(--text) !important;
  letter-spacing: 1px;
}
.amount-input:focus { box-shadow: none !important; }

/* ---------- 结果高亮 ---------- */
.hl { color: var(--red); font-weight: 700; }
.hl-brand { color: var(--brand); font-weight: 700; }

/* ---------- 上下拉刷新指示（轻） ---------- */
.pull-hint { text-align: center; font-size: 11px; color: var(--text-3); padding: 8px 0 2px; display: none; }
