/* ============================================================
   B站选题/UP主调研 Dashboard — 统一样式系统
   纯离线，无外部依赖。深浅色：prefers-color-scheme + 手动切换。
   图表配色采用 dataviz 校验过的参考调色板。
   ============================================================ */

:root {
  color-scheme: light;
  /* 表面与文字 */
  --bg:            #f6f7f9;
  --surface-1:     #ffffff;
  --surface-2:     #f0f2f5;
  --surface-3:     #e7eaef;
  --border:        #e2e5ea;
  --border-strong: #cfd4dc;
  --text-1:        #12151b;
  --text-2:        #4a515c;
  --text-3:        #838b97;
  --accent:        #fb7299;   /* 哔哩哔哩粉 */
  --accent-2:      #2a78d6;   /* 主蓝 */
  --accent-ink:    #ffffff;
  --shadow:        0 1px 2px rgba(16,22,34,.06), 0 4px 16px rgba(16,22,34,.06);
  --shadow-lg:     0 8px 40px rgba(16,22,34,.16);
  /* 图表分类色（light） */
  --s1:#2a78d6; --s2:#eb6834; --s3:#1baf7a; --s4:#eda100;
  --s5:#e87ba4; --s6:#008300; --s7:#4a3aa7; --s8:#e34948;
  /* 顺序蓝（浅→深） */
  --seq-1:#cde2fb; --seq-2:#9ec5f4; --seq-3:#5598e7; --seq-4:#2a78d6; --seq-5:#184f95;
  --good:#008300; --warn:#eda100; --bad:#e34948;
  --radius:14px; --radius-sm:9px;
  --maxw:1440px;
}
@media (prefers-color-scheme: dark) {
  :root:where(:not([data-theme="light"])) {
    color-scheme: dark;
    --bg:            #0f1115;
    --surface-1:     #181b21;
    --surface-2:     #1f232b;
    --surface-3:     #272c35;
    --border:        #2c313b;
    --border-strong: #3a414d;
    --text-1:        #f2f4f7;
    --text-2:        #b6bdc9;
    --text-3:        #7d8593;
    --accent:        #fb7299;
    --accent-2:      #3987e5;
    --shadow:        0 1px 2px rgba(0,0,0,.4), 0 6px 22px rgba(0,0,0,.44);
    --shadow-lg:     0 10px 48px rgba(0,0,0,.6);
    --s1:#3987e5; --s2:#d95926; --s3:#199e70; --s4:#c98500;
    --s5:#d55181; --s6:#008300; --s7:#9085e9; --s8:#e66767;
    --seq-1:#104281; --seq-2:#184f95; --seq-3:#256abf; --seq-4:#3987e5; --seq-5:#86b6ef;
  }
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --bg:#0f1115; --surface-1:#181b21; --surface-2:#1f232b; --surface-3:#272c35;
  --border:#2c313b; --border-strong:#3a414d;
  --text-1:#f2f4f7; --text-2:#b6bdc9; --text-3:#7d8593;
  --accent:#fb7299; --accent-2:#3987e5;
  --shadow:0 1px 2px rgba(0,0,0,.4),0 6px 22px rgba(0,0,0,.44);
  --shadow-lg:0 10px 48px rgba(0,0,0,.6);
  --s1:#3987e5; --s2:#d95926; --s3:#199e70; --s4:#c98500;
  --s5:#d55181; --s6:#008300; --s7:#9085e9; --s8:#e66767;
  --seq-1:#104281; --seq-2:#184f95; --seq-3:#256abf; --seq-4:#3987e5; --seq-5:#86b6ef;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text-1);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei",
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
  font-size: 14px; line-height: 1.5; letter-spacing: .01em;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }
h1,h2,h3 { margin: 0; font-weight: 700; letter-spacing: -.01em; }
::selection { background: color-mix(in srgb, var(--accent) 30%, transparent); }

/* ---------- 顶部导航 ---------- */
.topbar {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--surface-1) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 20px;
  height: 56px; display: flex; align-items: center; gap: 6px;
}
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 15px;
  margin-right: 10px; white-space: nowrap; }
.brand .dot { width: 11px; height: 11px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent); }
.nav { display: flex; gap: 2px; overflow-x: auto; scrollbar-width: none; flex: 1; }
.nav::-webkit-scrollbar { display: none; }
.nav a {
  color: var(--text-2); padding: 7px 12px; border-radius: 9px; white-space: nowrap;
  font-weight: 600; font-size: 13px; display: flex; align-items: center; gap: 6px;
}
.nav a:hover { background: var(--surface-2); color: var(--text-1); text-decoration: none; }
.nav a.active { background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--accent); }
.nav a .ic { font-size: 15px; }
.topbar .spacer { flex: 1; }
.theme-btn {
  border: 1px solid var(--border); background: var(--surface-2); color: var(--text-2);
  width: 34px; height: 34px; border-radius: 9px; cursor: pointer; font-size: 15px;
  display: grid; place-items: center;
}
.theme-btn:hover { color: var(--text-1); border-color: var(--border-strong); }

/* ---------- 布局 ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 22px 20px 80px; }
.page-head { margin-bottom: 18px; }
.page-head h1 { font-size: 22px; display: flex; align-items: center; gap: 10px; }
.page-head p { color: var(--text-2); margin: 6px 0 0; font-size: 13.5px; max-width: 760px; }
.scheme-badge {
  font-size: 11px; font-weight: 800; letter-spacing: .04em; padding: 3px 9px;
  border-radius: 999px; background: color-mix(in srgb, var(--accent-2) 15%, transparent);
  color: var(--accent-2); vertical-align: middle;
}

/* ---------- 卡片 ---------- */
.card { background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); }
.card-pad { padding: 16px 18px; }

/* ---------- KPI ---------- */
.kpi-row { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.kpi { background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 18px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.kpi .lab { color: var(--text-3); font-size: 12px; font-weight: 700; letter-spacing: .02em; }
.kpi .val { font-size: 27px; font-weight: 800; margin-top: 4px; letter-spacing: -.02em;
  font-variant-numeric: tabular-nums; }
.kpi .sub { color: var(--text-2); font-size: 12px; margin-top: 3px; }
.kpi .accent-bar { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent); }

/* ---------- 筛选栏 ---------- */
.filters {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 14px; box-shadow: var(--shadow); margin-bottom: 16px;
}
.filters .grp { display: flex; align-items: center; gap: 6px; }
.filters label.mini { font-size: 11.5px; color: var(--text-3); font-weight: 700; }
.input, .select {
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text-1);
  border-radius: 9px; padding: 7px 10px; font-size: 13px; font-family: inherit; outline: none;
}
.input:focus, .select:focus { border-color: var(--accent-2);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-2) 20%, transparent); }
.input.search { min-width: 220px; }
.btn {
  border: 1px solid var(--border); background: var(--surface-2); color: var(--text-1);
  border-radius: 9px; padding: 7px 12px; font-size: 13px; font-weight: 600; cursor: pointer;
  font-family: inherit; display: inline-flex; align-items: center; gap: 6px;
}
.btn:hover { border-color: var(--border-strong); background: var(--surface-3); }
.btn.primary { background: var(--accent); color: #fff; border-color: transparent; }
.btn.primary:hover { filter: brightness(1.05); }
.btn.ghost { background: transparent; }
.btn.sm { padding: 5px 9px; font-size: 12px; }
.pill {
  display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text-2);
  font-size: 12px; font-weight: 600; cursor: pointer; white-space: nowrap;
}
.pill:hover { border-color: var(--border-strong); color: var(--text-1); }
.pill.on { background: color-mix(in srgb, var(--accent-2) 16%, transparent);
  border-color: color-mix(in srgb, var(--accent-2) 40%, transparent); color: var(--accent-2); }
.result-count { color: var(--text-3); font-size: 12.5px; font-weight: 600; margin-left: auto; }

/* segmented control */
.seg { display: inline-flex; background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 9px; padding: 3px; gap: 2px; }
.seg button { border: none; background: transparent; color: var(--text-2); font-weight: 600;
  padding: 5px 11px; border-radius: 7px; cursor: pointer; font-size: 12.5px; font-family: inherit; }
.seg button.on { background: var(--surface-1); color: var(--text-1); box-shadow: var(--shadow); }

/* dropdown multiselect */
.dropdown { position: relative; }
.dropdown-panel {
  position: absolute; z-index: 30; top: calc(100% + 6px); left: 0; min-width: 240px;
  max-height: 340px; overflow: auto; background: var(--surface-1); border: 1px solid var(--border);
  border-radius: 11px; box-shadow: var(--shadow-lg); padding: 8px; display: none;
}
.dropdown.open .dropdown-panel { display: block; }
.dropdown-panel .opt { display: flex; align-items: center; gap: 8px; padding: 6px 8px;
  border-radius: 7px; cursor: pointer; font-size: 13px; }
.dropdown-panel .opt:hover { background: var(--surface-2); }
.dropdown-panel .opt input { accent-color: var(--accent-2); }

/* ---------- 封面墙（瀑布流） ---------- */
/* 按行填充的网格：从左到右、从上到下 = 排序顺序（避免 columns 瀑布流的按列填充造成阅读顺序错乱）*/
.wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; align-items: start; }
@media (max-width: 900px){ .wall { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); } }
@media (max-width: 560px){ .wall { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); } }
.vcard {
  background: var(--surface-1);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); cursor: pointer; transition: transform .12s ease, box-shadow .12s ease;
}
.vcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.vcard .thumb { position: relative; width: 100%; display: block; background: var(--surface-3); }
.vcard .thumb img { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.vcard .thumb .noimg { aspect-ratio: 16/9; display: grid; place-items: center;
  color: var(--text-3); font-size: 12px; gap: 6px; text-align: center; padding: 12px; }
.vcard .thumb .dur { position: absolute; right: 6px; bottom: 6px; background: rgba(0,0,0,.72);
  color: #fff; font-size: 11px; font-weight: 700; padding: 2px 6px; border-radius: 6px;
  font-variant-numeric: tabular-nums; }
.vcard .meta { padding: 9px 11px 11px; }
.vcard .meta .t { font-size: 12.5px; font-weight: 600; line-height: 1.35; color: var(--text-1);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.vcard .meta .row { display: flex; align-items: center; gap: 6px; margin-top: 7px;
  color: var(--text-3); font-size: 11px; font-weight: 600; flex-wrap: wrap; }
.vcard .meta .row .cr { color: var(--accent); cursor: pointer; }
.vcard .meta .row .cr:hover { text-decoration: underline; }
.vcard .meta .row .date { color: var(--text-3); font-variant-numeric: tabular-nums; }
/* 指标条 */
.vcard .stats { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 8px; margin-top: 8px; }
.vcard .stats .s { display: flex; align-items: baseline; gap: 4px; font-size: 11px;
  color: var(--text-2); font-weight: 600; font-variant-numeric: tabular-nums; }
.vcard .stats .s .ic { font-size: 11px; filter: grayscale(.2); }
.vcard .stats .s b { font-weight: 800; color: var(--text-1); }
.vcard .stats .s.eng b { color: var(--accent-2); }
.vcard .badges { display: flex; gap: 4px; margin-top: 8px; flex-wrap: wrap; }
.tagdot { font-size: 10px; font-weight: 700; padding: 1px 6px; border-radius: 5px;
  background: var(--surface-2); color: var(--text-3); border: 1px solid var(--border); }
.tagdot.mm { color: var(--s7); }
.tagdot.out { color: var(--s3); }
.tagdot.srt { color: var(--s1); }
.tagdot.hot { color: #fff; background: var(--accent); border-color: transparent; }

/* ---------- 表格 ---------- */
.tbl-wrap { overflow: auto; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface-1); box-shadow: var(--shadow); }
/* 页面级大表格：让表格面板自身滚动，表头冻结在面板顶部（避免 overflow 容器破坏 sticky） */
.tbl-wrap.page-scroll { max-height: calc(100vh - 120px); }
table.grid { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 13px; }
table.grid th, table.grid td { padding: 9px 12px; text-align: left; white-space: nowrap;
  border-bottom: 1px solid var(--border); }
table.grid th { position: sticky; top: 0; background: var(--surface-2); color: var(--text-2);
  font-weight: 700; font-size: 12px; cursor: pointer; user-select: none; z-index: 5;
  box-shadow: inset 0 -1px 0 var(--border); }
table.grid th:hover { color: var(--text-1); }
table.grid th .arr { color: var(--accent-2); margin-left: 3px; }
table.grid td.num { text-align: right; font-variant-numeric: tabular-nums; }
table.grid tbody tr { cursor: pointer; }
table.grid tbody tr:hover { background: var(--surface-2); }
table.grid td.title-cell { white-space: normal; min-width: 260px; max-width: 420px; font-weight: 600; }
.mini-bar { height: 6px; border-radius: 3px; background: var(--surface-3); overflow: hidden;
  display: inline-block; width: 60px; vertical-align: middle; }
.mini-bar > i { display: block; height: 100%; background: var(--seq-4); }
.cr-chip { display: inline-flex; align-items: center; gap: 5px; font-weight: 600; color: var(--text-2); }

/* ---------- 博主画像卡 ---------- */
.creator-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.ccard { background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 16px 18px; display: flex; flex-direction: column; gap: 12px;
  position: relative; }
.ccard.picked { border-color: var(--accent); box-shadow: 0 0 0 2px color-mix(in srgb,var(--accent) 40%,transparent), var(--shadow); }
.ccard .chead { display: flex; align-items: flex-start; gap: 10px; }
.ccard .avatar { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  font-weight: 800; font-size: 16px; color: #fff; flex: none; }
.ccard .cname { font-size: 15px; font-weight: 800; line-height: 1.2; }
.ccard .cmid { font-size: 11px; color: var(--text-3); margin-top: 2px; }
.ccard .cpick { margin-left: auto; }
.ccard .cstats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.ccard .cstat .k { font-size: 10.5px; color: var(--text-3); font-weight: 700; }
.ccard .cstat .v { font-size: 16px; font-weight: 800; font-variant-numeric: tabular-nums; margin-top: 1px; }
.ccard .spark { height: 40px; }
.ccard .cov { display: flex; gap: 5px; flex-wrap: wrap; }
.cov-chip { font-size: 10.5px; font-weight: 700; padding: 2px 7px; border-radius: 6px;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text-3); }
.cov-chip.full { color: var(--good); border-color: color-mix(in srgb,var(--good) 40%,transparent); }
.cov-chip.none { color: var(--text-3); opacity: .55; }

/* compare bar */
.compare-bar { position: sticky; bottom: 16px; z-index: 30; display: none; margin-top: 18px; }
.compare-bar.show { display: block; }
.compare-inner { background: var(--surface-1); border: 1px solid var(--border-strong);
  border-radius: 999px; box-shadow: var(--shadow-lg); padding: 8px 10px 8px 16px;
  display: flex; align-items: center; gap: 10px; max-width: 720px; margin: 0 auto; }
.compare-inner .chips { display: flex; gap: 6px; flex-wrap: wrap; flex: 1; }

/* ---------- 标签云 ---------- */
.cloud { display: flex; flex-wrap: wrap; gap: 8px 10px; align-items: center; line-height: 1; }
.cloud .kw { cursor: pointer; font-weight: 700; color: var(--text-2); padding: 3px 4px;
  border-radius: 6px; transition: color .1s; }
.cloud .kw:hover { color: var(--accent); }
.cloud .kw.dict { color: var(--accent-2); }
.cloud .kw.on { background: var(--accent); color: #fff; }

/* ---------- 时间线 ---------- */
.lane-label { font-size: 12px; font-weight: 700; color: var(--text-2); }

/* ---------- 脑图树 ---------- */
.mm-tree { font-size: 13.5px; line-height: 1.5; }
.mm-node { }
.mm-row { display: flex; align-items: flex-start; gap: 6px; padding: 2px 0; border-radius: 6px; }
.mm-row:hover { background: var(--surface-2); }
.mm-toggle { flex: none; width: 18px; height: 18px; display: grid; place-items: center; cursor: pointer;
  color: var(--text-3); font-size: 10px; user-select: none; margin-top: 2px; }
.mm-toggle.leaf { visibility: hidden; }
.mm-text { flex: 1; }
.mm-children { margin-left: 14px; border-left: 1.5px solid var(--border); padding-left: 10px; }
.mm-node.collapsed > .mm-children { display: none; }
.mm-time { color: var(--accent-2); font-weight: 700; font-variant-numeric: tabular-nums;
  font-size: 12px; margin-right: 4px; }
.mm-l0 > .mm-row > .mm-text { font-weight: 800; font-size: 15px; }
.mm-l1 > .mm-row > .mm-text { font-weight: 700; }

/* ---------- 详情弹窗 ---------- */
.modal-mask { position: fixed; inset: 0; z-index: 100; background: rgba(6,9,16,.55);
  backdrop-filter: blur(3px); display: none; align-items: flex-start; justify-content: center;
  padding: 40px 20px; overflow-y: auto; }
.modal-mask.show { display: flex; }
.modal { background: var(--surface-1); border: 1px solid var(--border); border-radius: 18px;
  box-shadow: var(--shadow-lg); width: min(920px, 100%); overflow: hidden; }
.modal-head { display: flex; gap: 16px; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.modal-head .mthumb { width: 220px; flex: none; border-radius: 11px; overflow: hidden;
  background: var(--surface-3); align-self: flex-start; }
.modal-head .mthumb img { width: 100%; display: block; }
.modal-head .minfo { flex: 1; min-width: 0; }
.modal-head .mtitle { font-size: 18px; font-weight: 800; line-height: 1.3; }
.modal-head .mcreator { color: var(--accent); font-weight: 700; margin-top: 5px; cursor: pointer; }
.modal-metrics { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 12px; }
.modal-metrics .m .k { font-size: 11px; color: var(--text-3); font-weight: 700; }
.modal-metrics .m .v { font-size: 18px; font-weight: 800; font-variant-numeric: tabular-nums; }
.modal-actions { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.modal-close { position: absolute; }
.mclose { margin-left: auto; align-self: flex-start; border: 1px solid var(--border);
  background: var(--surface-2); color: var(--text-2); width: 32px; height: 32px; border-radius: 8px;
  cursor: pointer; font-size: 17px; flex: none; }
.mclose:hover { color: var(--text-1); }
.modal-body { padding: 16px 20px 22px; max-height: 52vh; overflow-y: auto; }
.modal-body h4 { font-size: 12px; color: var(--text-3); font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; margin: 0 0 8px; }
.empty-note { color: var(--text-3); font-size: 13px; padding: 14px; text-align: center;
  background: var(--surface-2); border-radius: 10px; }

/* ---------- 图表通用 ---------- */
.chart-tip {
  position: fixed; z-index: 120; pointer-events: none; background: var(--surface-1);
  border: 1px solid var(--border-strong); border-radius: 9px; box-shadow: var(--shadow-lg);
  padding: 8px 11px; font-size: 12px; max-width: 260px; display: none; color: var(--text-1);
}
.chart-tip .tt-title { font-weight: 700; margin-bottom: 3px; }
.chart-tip .tt-row { color: var(--text-2); font-variant-numeric: tabular-nums; }
svg text { fill: var(--text-2); }
.axis line, .axis path { stroke: var(--border); }
.grid-line { stroke: var(--border); stroke-dasharray: 2 4; }

/* ---------- 杂项 ---------- */
.section-title { font-size: 15px; font-weight: 800; margin: 26px 0 12px; display: flex;
  align-items: center; gap: 8px; }
.muted { color: var(--text-3); }
.hstack { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.spacer { flex: 1; }
.hidden { display: none !important; }
.hero-cards { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); }
.hero-card { display: block; background: var(--surface-1); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; text-decoration: none;
  color: var(--text-1); transition: transform .12s ease, box-shadow .12s ease; }
.hero-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); text-decoration: none;
  border-color: var(--border-strong); }
.hero-card .hc-ic { font-size: 26px; }
.hero-card .hc-t { font-size: 16px; font-weight: 800; margin-top: 8px; }
.hero-card .hc-d { color: var(--text-2); font-size: 12.5px; margin-top: 4px; }
.hero-card .hc-badge { font-size: 11px; font-weight: 800; color: var(--accent-2); margin-top: 10px; }
.rank-list { display: flex; flex-direction: column; }
.rank-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; }
.rank-item:last-child { border-bottom: none; }
.rank-item:hover .rk-t { color: var(--accent); }
.rank-item .rk-n { width: 22px; text-align: center; font-weight: 800; color: var(--text-3);
  font-variant-numeric: tabular-nums; }
.rank-item .rk-n.top { color: var(--accent); }
.rank-item .rk-t { flex: 1; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rank-item .rk-v { font-weight: 800; font-variant-numeric: tabular-nums; color: var(--text-2); }
.loading { text-align: center; color: var(--text-3); padding: 60px 0; font-size: 14px; }
