/* 行情速览 · 深色简洁主题（A股惯例：红涨绿跌） */
:root {
  --bg: #0e1116;
  --panel: #151b23;
  --panel-2: #1b2330;
  --border: #232c3b;
  --text: #e8edf4;
  --muted: #8b96a5;
  --accent: #4c8dff;
  --up: #f5483b;      /* 涨：红 */
  --down: #00b578;    /* 跌：绿 */
  --flat: #98a4b3;
  --radius: 12px;
  --mono: "SF Mono", "JetBrains Mono", Consolas, "PingFang SC", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { color-scheme: dark; }
body {
  background: var(--bg);
  color: var(--text);
  font: 14px/1.5 -apple-system, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }

/* ---------- 顶栏 ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14, 17, 22, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 10px 20px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.brand {
  display: flex; align-items: center; gap: 8px;
  font-size: 17px; font-weight: 700; letter-spacing: .5px;
}
.brand-logo { border-radius: 7px; }

.searchbox { position: relative; flex: 1 1 260px; max-width: 420px; }
.searchbox input {
  width: 100%; padding: 8px 12px 8px 34px;
  background: var(--panel); border: 1px solid var(--border); border-radius: 8px;
  color: var(--text); font-size: 13px; outline: none;
  transition: border-color .15s;
}
.searchbox input:focus { border-color: var(--accent); }
.search-ico { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.suggest {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: var(--panel-2); border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; box-shadow: 0 12px 32px rgba(0,0,0,.45);
}
.suggest-item {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px; cursor: pointer; font-size: 13px;
}
.suggest-item:hover, .suggest-item.active { background: rgba(76, 141, 255, .14); }
.suggest-item .sym { color: var(--muted); font-family: var(--mono); font-size: 12px; }
.suggest-item .type { margin-left: auto; color: var(--muted); font-size: 11px; }
.suggest-empty { padding: 10px 12px; color: var(--muted); font-size: 12px; }

.topbar-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.top-status { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.badge.live { color: #7ce2a7; border-color: rgba(0,181,120,.45); }
.badge {
  padding: 3px 10px; border-radius: 999px; font-size: 12px;
  background: var(--panel); border: 1px solid var(--border); color: var(--muted);
}
.badge.open { color: #7ce2a7; border-color: rgba(0,181,120,.45); }
.badge.closed { color: var(--muted); }
.interval { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 12px; }
.interval select {
  background: var(--panel); color: var(--text);
  border: 1px solid var(--border); border-radius: 6px; padding: 3px 6px; font-size: 12px;
}
.updated { color: var(--muted); font-size: 12px; font-family: var(--mono); }

/* ---------- 布局 ---------- */
.page { max-width: 1200px; margin: 0 auto; padding: 20px 20px 40px; display: grid; gap: 28px; }
.sec-title { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.sec-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; }
.sec-head .sec-title { margin-bottom: 0; }
.sec-note { color: var(--muted); font-size: 12px; }

/* ---------- 指数卡片 ---------- */
.index-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px;
}
.card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 18px;
}
.card .idx-name { color: var(--muted); font-size: 13px; margin-bottom: 6px; }
.card .idx-price { font-size: 30px; font-weight: 700; font-family: var(--mono); line-height: 1.2; }
.card .idx-meta {
  display: flex; gap: 14px; margin-top: 8px;
  color: var(--muted); font-size: 12px; font-family: var(--mono);
}
.card.skeleton { height: 108px; opacity: .5; }

/* 涨跌配色 */
.up { color: var(--up); }
.down { color: var(--down); }
.flat { color: var(--flat); }

/* ---------- 板块表格 ---------- */
.board-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.panel {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.panel-title {
  padding: 12px 16px; font-weight: 700; font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.tbl { width: 100%; border-collapse: collapse; font-size: 13px; }
.tbl th, .tbl td { padding: 9px 12px; text-align: right; white-space: nowrap; }
.tbl th:nth-child(1), .tbl td:nth-child(1),
.tbl th:nth-child(4), .tbl td:nth-child(4) { text-align: left; }
.tbl th {
  color: var(--muted); font-weight: 500; font-size: 12px;
  border-bottom: 1px solid var(--border);
}
.tbl td { border-bottom: 1px solid rgba(35, 44, 59, .5); font-family: var(--mono); }
.tbl tr:last-child td { border-bottom: none; }
.tbl .bname { font-family: inherit; font-weight: 600; }
.tbl .leader { color: var(--muted); font-size: 12px; }
.tbl .leader b { font-family: inherit; color: var(--text); font-weight: 500; }
.tbl .num-mut { color: var(--muted); }

/* ---------- 自选股 ---------- */
.watch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 14px; }
.watch-card {
  position: relative;
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
}
.watch-card .w-head { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.watch-card .w-name { font-weight: 700; font-size: 14px; }
.watch-card .w-code { color: var(--muted); font-size: 12px; font-family: var(--mono); }
.watch-card .w-price { font-size: 24px; font-weight: 700; font-family: var(--mono); }
.watch-card .w-pct { font-size: 14px; font-weight: 600; font-family: var(--mono); margin-left: 8px; }
.watch-card .w-meta {
  margin-top: 8px; display: flex; gap: 12px;
  color: var(--muted); font-size: 12px; font-family: var(--mono);
}
.watch-card .w-del {
  position: absolute; top: 8px; right: 10px;
  width: 22px; height: 22px; line-height: 20px; text-align: center;
  border-radius: 6px; border: none; cursor: pointer;
  background: transparent; color: var(--muted); font-size: 14px;
}
.watch-card .w-del:hover { background: rgba(245, 72, 59, .15); color: var(--up); }
.watch-empty {
  grid-column: 1 / -1; text-align: center; color: var(--muted);
  padding: 34px 0; border: 1px dashed var(--border); border-radius: var(--radius);
  font-size: 13px;
}

/* ---------- 页脚 / 提示 ---------- */
.foot {
  max-width: 1200px; margin: 0 auto; padding: 0 20px 30px;
  color: var(--muted); font-size: 12px; text-align: center;
}
.toast {
  position: fixed; left: 50%; bottom: 30px; transform: translateX(-50%);
  background: var(--panel-2); border: 1px solid var(--border);
  padding: 9px 16px; border-radius: 8px; font-size: 13px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4); z-index: 99;
}
.flash { animation: flash .6s ease; }
@keyframes flash { 0% { filter: brightness(1.6); } 100% { filter: none; } }

/* ---------- 移动端 ---------- */
@media (max-width: 760px) {
  .board-grid { grid-template-columns: 1fr; }
  .topbar-inner { gap: 10px; }
  .searchbox { order: 3; flex-basis: 100%; max-width: none; }
  .updated { display: none; }
  .tbl th:nth-child(3), .tbl td:nth-child(3) { display: none; }
  .card .idx-price { font-size: 24px; }
}

/* ---------- 顶部导航 ---------- */
.site-nav { display: flex; gap: 4px; }
.site-nav a {
  color: var(--muted); font-size: 14px; padding: 6px 12px;
  border-radius: 8px; transition: color .15s, background .15s;
}
.site-nav a:hover { color: var(--text); background: var(--panel); }
.site-nav a.active { color: var(--text); background: var(--panel-2); font-weight: 600; }
.spacer { flex: 1; }

/* ---------- 板块全览 ---------- */
.board-controls {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 14px;
}
.tabs { display: flex; gap: 4px; background: var(--panel); border: 1px solid var(--border); border-radius: 10px; padding: 3px; }
.tab {
  appearance: none; border: 0; background: transparent; color: var(--muted);
  font-size: 13px; padding: 6px 14px; border-radius: 7px; cursor: pointer;
  transition: color .15s, background .15s;
}
.tab:hover { color: var(--text); }
.tab.active { background: var(--panel-2); color: var(--text); font-weight: 600; }

.seg-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.seg-label { color: var(--muted); font-size: 13px; }
.seg { display: flex; gap: 2px; background: var(--panel); border: 1px solid var(--border); border-radius: 8px; padding: 2px; }
.seg-btn {
  appearance: none; border: 0; background: transparent; color: var(--muted);
  font-size: 12px; padding: 4px 10px; border-radius: 6px; cursor: pointer;
  transition: color .15s, background .15s;
}
.seg-btn:hover { color: var(--text); }
.seg-btn.active { background: var(--panel-2); color: var(--accent); font-weight: 600; }

.panel-wide { padding: 0; overflow: hidden; }
.table-scroll { max-height: calc(100vh - 260px); overflow-y: auto; }
.tbl-wide { width: 100%; border-collapse: collapse; font-size: 13px; }
.tbl-wide thead th {
  position: sticky; top: 0; z-index: 2;
  background: var(--panel-2); color: var(--muted); font-weight: 500;
  padding: 10px 12px; text-align: right; white-space: nowrap;
  border-bottom: 1px solid var(--border);
}
.tbl-wide thead th:first-child, .tbl-wide thead th:nth-child(2) { text-align: left; }
.tbl-wide tbody td {
  padding: 9px 12px; text-align: right; border-bottom: 1px solid var(--border);
  white-space: nowrap; font-family: var(--mono);
}
.tbl-wide tbody td.col-rank, .tbl-wide tbody td.col-name { text-align: left; }
.tbl-wide tbody td.col-name { font-family: inherit; font-weight: 500; }
.tbl-wide tbody td.col-leader { text-align: left; font-family: inherit; }
.tbl-wide tbody tr:hover td { background: rgba(76, 141, 255, .06); }
.tbl-wide .num { min-width: 72px; }
.col-rank { color: var(--muted); width: 44px; }
.col-leader .leader-name { margin-right: 8px; }
.col-leader span:last-child { font-family: var(--mono); }
th.sortable { cursor: pointer; user-select: none; }
th.sortable:hover { color: var(--text); }
th.sort-desc::after { content: " ↓"; color: var(--accent); }
th.sort-asc::after { content: " ↑"; color: var(--accent); }
.empty { text-align: center !important; color: var(--muted); padding: 30px 0 !important; }

@media (max-width: 760px) {
  .table-scroll { max-height: none; }
  .tbl-wide th:nth-child(5), .tbl-wide td:nth-child(5),
  .tbl-wide th:nth-child(6), .tbl-wide td:nth-child(6),
  .tbl-wide th:nth-child(8), .tbl-wide td:nth-child(8) { display: none; }
  .board-controls { gap: 8px; }
}

/* ---------- 通用 wrap / 刷新选择器（boards.html 与 review.html 共用） ---------- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 20px 20px 40px; display: grid; gap: 28px; }
.interval-select {
  background: var(--panel); color: var(--text);
  border: 1px solid var(--border); border-radius: 6px; padding: 3px 6px; font-size: 12px;
}

/* ---------- 复盘页 · 日期栏 ---------- */
.date-bar { display: flex; align-items: center; gap: 4px; }
.dbtn {
  appearance: none; border: 1px solid var(--border); background: var(--panel);
  color: var(--text); border-radius: 7px; cursor: pointer;
  font-size: 14px; padding: 4px 10px; line-height: 1.4; transition: background .15s;
}
.dbtn:hover:not(:disabled) { background: var(--panel-2); }
.dbtn:disabled { opacity: .4; cursor: default; }
.dbtn-text { font-size: 12px; }
.date-bar input[type="date"] {
  background: var(--panel); color: var(--text);
  border: 1px solid var(--border); border-radius: 7px;
  padding: 4px 8px; font-size: 13px; font-family: var(--mono); outline: none;
}
.date-bar input[type="date"]:focus { border-color: var(--accent); }
.sec-date { color: var(--muted); font-size: 13px; font-weight: 500; }

/* ---------- 复盘页 · 情绪温度 ---------- */
.senti-grid { display: grid; grid-template-columns: 320px 1fr; gap: 14px; }
.gauge-panel { padding: 18px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.gauge-wrap { position: relative; width: 220px; }
.gauge-wrap svg { width: 100%; display: block; }
.gauge-track { fill: none; stroke: var(--panel-2); stroke-width: 14; stroke-linecap: round; }
.gauge-fill {
  fill: none; stroke-width: 14; stroke-linecap: round;
  transition: stroke-dashoffset .8s ease;
}
.gf-ice  { stroke: #4c8dff; }
.gf-cold { stroke: #00b578; }
.gf-mid  { stroke: #98a4b3; }
.gf-warm { stroke: #ff9f43; }
.gf-hot  { stroke: #f5483b; }
.gauge-text { position: absolute; left: 0; right: 0; bottom: 0; text-align: center; }
.gauge-num { font-size: 40px; font-weight: 800; font-family: var(--mono); line-height: 1.1; }
.gn-ice, .gn-cold { color: var(--down); }
.gn-mid { color: var(--flat); }
.gn-warm { color: #ff9f43; }
.gn-hot { color: var(--up); }
.gauge-stage { font-size: 14px; font-weight: 600; }
.gs-ice, .gs-cold { color: var(--down); }
.gs-mid { color: var(--flat); }
.gs-warm { color: #ff9f43; }
.gs-hot { color: var(--up); }
.gauge-foot { color: var(--muted); font-size: 12px; font-family: var(--mono); text-align: center; }

.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
}
.stat.skeleton { height: 92px; opacity: .5; }
.stat-label { color: var(--muted); font-size: 12px; }
.stat-value { font-size: 26px; font-weight: 800; font-family: var(--mono); line-height: 1.3; }
.stat-sub { color: var(--muted); font-size: 11px; margin-top: 2px; }

/* ---------- 复盘页 · 连板天梯 ---------- */
.ladder { display: grid; gap: 10px; }
.ladder-empty { color: var(--muted); text-align: center; padding: 26px 0; border: 1px dashed var(--border); border-radius: var(--radius); font-size: 13px; }
.rung {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 10px 14px; cursor: pointer;
  transition: border-color .15s, background .15s;
}
.rung:hover { border-color: var(--accent); }
.rung.active { border-color: var(--up); background: rgba(245, 72, 59, .06); }
.rung-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.rung-label { font-weight: 800; font-size: 15px; color: var(--up); min-width: 44px; }
.rung-count { color: var(--muted); font-size: 12px; font-family: var(--mono); }
.rung-promo { color: var(--muted); font-size: 11px; margin-left: auto; font-family: var(--mono); }
.rung-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  display: inline-block; padding: 3px 9px; border-radius: 999px; font-size: 12px;
  background: var(--panel-2); border: 1px solid var(--border); color: var(--text);
}
.stock-chip { cursor: pointer; transition: border-color .15s, color .15s; }
.stock-chip:hover { border-color: var(--accent); color: var(--accent); }
.rung.active .stock-chip.on { border-color: var(--up); }
.chip-more { color: var(--muted); }

/* ---------- 复盘页 · 涨停板块分布 ---------- */
.industry-panel { padding: 6px; display: grid; gap: 2px; }
.industry-row {
  appearance: none; border: 0; background: transparent; cursor: pointer;
  display: grid; grid-template-columns: 110px 1fr 40px; align-items: center; gap: 12px;
  padding: 7px 10px; border-radius: 8px; color: var(--text); font-size: 13px;
  transition: background .15s; text-align: left;
}
.industry-row:hover { background: rgba(76, 141, 255, .07); }
.industry-row.active { background: rgba(245, 72, 59, .1); }
.industry-row.active .industry-name { color: var(--up); font-weight: 700; }
.industry-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.industry-bar { height: 10px; background: var(--panel-2); border-radius: 5px; overflow: hidden; }
.industry-bar i { display: block; height: 100%; background: linear-gradient(90deg, #ff9f43, #f5483b); border-radius: 5px; }
.industry-num { text-align: right; font-family: var(--mono); color: var(--muted); }

/* ---------- 复盘页 · 过滤标签 / 表格单元 ---------- */
.filter-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.fchip {
  appearance: none; border: 1px solid rgba(245, 72, 59, .5); background: rgba(245, 72, 59, .1);
  color: var(--up); border-radius: 999px; padding: 4px 12px; font-size: 12px; cursor: pointer;
}
.fchip:hover { background: rgba(245, 72, 59, .2); }
.cell-name { font-weight: 600; }
.cell-code { color: var(--muted); font-size: 11px; }
.add-watch {
  appearance: none; border: 1px solid var(--border); background: transparent;
  color: var(--muted); border-radius: 5px; cursor: pointer;
  font-size: 11px; padding: 0 5px; margin-left: 6px; line-height: 18px;
  transition: color .15s, border-color .15s;
}
.add-watch:hover { color: var(--accent); border-color: var(--accent); }
#poolTable thead th { cursor: pointer; user-select: none; }
#poolTable thead th:hover { color: var(--text); }
#poolTable thead th.sort-desc::after { content: " ↓"; color: var(--accent); }
#poolTable thead th.sort-asc::after { content: " ↑"; color: var(--accent); }
#poolTable thead th.col-name { cursor: default; }

@media (max-width: 900px) {
  .senti-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-row { grid-template-columns: 84px 1fr 34px; }
}
@media (max-width: 760px) {
  .date-bar { order: 3; flex-basis: 100%; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- 登录 / 用户区 ---------- */
.auth-area { display: flex; align-items: center; gap: 8px; }
.auth-user {
  font-size: 13px; font-weight: 600; color: var(--accent);
  padding: 4px 10px; border-radius: 7px; background: rgba(76,141,255,.12);
  max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.auth-user:hover { background: rgba(76,141,255,.2); }
.auth-modal {
  position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.auth-dialog {
  width: 340px; max-width: 100%; background: var(--panel);
  border: 1px solid var(--border); border-radius: 14px; padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.auth-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.auth-title { font-size: 16px; font-weight: 700; }
.auth-close {
  appearance: none; border: 0; background: transparent; color: var(--muted);
  font-size: 14px; cursor: pointer; padding: 4px 6px; border-radius: 6px;
}
.auth-close:hover { color: var(--text); background: var(--panel-2); }
.auth-label { display: block; color: var(--muted); font-size: 12px; margin: 10px 0 4px; }
.auth-input {
  width: 100%; padding: 9px 12px; background: var(--panel-2);
  border: 1px solid var(--border); border-radius: 8px; color: var(--text);
  font-size: 14px; outline: none; transition: border-color .15s;
}
.auth-input:focus { border-color: var(--accent); }
.auth-err {
  margin-top: 10px; padding: 8px 12px; border-radius: 8px; font-size: 12px;
  background: rgba(245,72,59,.12); border: 1px solid rgba(245,72,59,.4); color: var(--up);
}
.auth-submit {
  width: 100%; margin-top: 16px; padding: 10px; border: 0; border-radius: 8px;
  background: var(--accent); color: #fff; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: filter .15s;
}
.auth-submit:hover { filter: brightness(1.15); }
.auth-submit:disabled { opacity: .6; cursor: default; }
.auth-tip { margin-top: 12px; color: var(--muted); font-size: 11px; line-height: 1.6; }

/* ---------- K线图表页 ---------- */
.quote-head { padding: 16px 20px; }
.qh-name { font-size: 20px; font-weight: 800; }
.qh-row { display: flex; align-items: baseline; gap: 12px; margin-top: 4px; }
.qh-price { font-size: 30px; font-weight: 800; font-family: var(--mono); }
.qh-pct { font-size: 16px; font-weight: 600; font-family: var(--mono); }
.qh-meta { margin-top: 6px; color: var(--muted); font-size: 12px; font-family: var(--mono); }
.chart-panel { padding: 8px; }
.chart-box { width: 100%; height: 560px; }
#watchBtn.watched { border-color: rgba(0,181,120,.5); color: var(--down); }
@media (max-width: 760px) { .chart-box { height: 420px; } }

/* 通用：可点击名称链接 */
a.nlink { color: inherit; }
a.nlink:hover { color: var(--accent); text-decoration: underline; }
.tbl td .cell-name a.nlink:hover, .tbl-wide td .cell-name a.nlink:hover { color: var(--accent); }

/* ---------- 自选中心 ---------- */
.watch-sec-tabs { display: flex; gap: 4px; }
.watch-items { display: grid; gap: 8px; }
.watch-item {
  display: grid; grid-template-columns: 150px 1fr 130px 90px 60px 30px;
  align-items: center; gap: 12px; padding: 10px 14px;
  background: var(--panel); border: 1px solid var(--border); border-radius: 10px;
}
.watch-item .wi-name { font-weight: 600; font-size: 14px; }
.watch-item .wi-name a { color: inherit; }
.watch-item .wi-name a:hover { color: var(--accent); }
.watch-item .wi-code { color: var(--muted); font-size: 11px; font-family: var(--mono); margin-left: 6px; }
.watch-item .wi-spark { height: 36px; }
.watch-item .wi-price { text-align: right; font-family: var(--mono); font-size: 14px; font-weight: 600; }
.watch-item .wi-price small { display: block; font-size: 11px; font-weight: 400; }
.watch-item .wi-del {
  appearance: none; border: 0; background: transparent; color: var(--muted);
  cursor: pointer; font-size: 14px; padding: 4px; border-radius: 6px;
}
.watch-item .wi-del:hover { color: var(--up); background: rgba(245,72,59,.12); }
.watch-empty {
  text-align: center; color: var(--muted); font-size: 13px; padding: 30px 0;
  border: 1px dashed var(--border); border-radius: var(--radius);
}
.watch-empty a { color: var(--accent); }
@media (max-width: 900px) {
  .watch-item { grid-template-columns: 110px 1fr 100px 30px; }
  .watch-item .wi-spark { display: none; }
}
@media (max-width: 760px) {
  .watch-item { grid-template-columns: 1fr 90px 30px; }
  .watch-item .wi-price small { display: none; }
}

/* 顶部导航加入「自选」后的小屏适配 */
@media (max-width: 760px) {
  .site-nav a { padding: 6px 8px; font-size: 13px; }
  .auth-area { order: 4; }
}
