:root {
  --bg:           #070b14;
  --bg-2:         #0c1220;
  --bg-card:      #0e1525;
  --bg-hover:     #131d2e;
  --border:       #1b2438;
  --border-hi:    #243050;

  --blue:         #4f8ef7;
  --blue-dim:     rgba(79,142,247,.08);
  --blue-glow:    rgba(79,142,247,.18);

  --green:        #00c97b;
  --green-dim:    rgba(0,201,123,.08);
  --cyan:         #22d3ee;
  --cyan-dim:     rgba(34,211,238,.08);
  --yellow:       #fbbf24;
  --red:          #f87171;
  --red-dim:      rgba(248,113,113,.08);
  --yellow-dim:   rgba(251,191,36,.10);

  --gold:         #f59e0b;
  --silver:       #94a3b8;
  --silver-dim:   rgba(148,163,184,.10);
  --bronze:       #cd7f42;

  --text-1:       #eef2fc;
  --text-2:       #8896b3;
  --text-3:       #5c6d8c;

  /* 系统字体栈，避免依赖 Google Fonts（大陆访问受限）。
     上线后若需要 JetBrains Mono 品牌字体，自托管到 STATIC_CDN_BASE 即可，无需改 CSS。 */
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', 'Cascadia Code', 'Roboto Mono', Menlo, Consolas, 'Courier New', monospace;
  --sans: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', 'Noto Sans SC', 'Segoe UI', Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--sans);
  font-size: 15px;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 60% 40% at 15% 0%, rgba(79,142,247,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 85% 100%, rgba(0,201,123,.05) 0%, transparent 60%);
}

.top-bar {
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, #6366f1 35%, var(--green) 70%, transparent 100%);
}

/* ══ 导航 ══ */
header {
  border-bottom: 1px solid var(--border);
  background: rgba(7,11,20,.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  max-width: 1040px; margin: 0 auto;
  padding: 0 20px; height: 62px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--mono);
  font-size: 13px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-1);
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, #4f8ef7, #6366f1);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 13px; font-weight: 900;
  color: #fff; letter-spacing: 0;
  box-shadow: 0 0 18px rgba(79,142,247,.35), inset 0 1px 0 rgba(255,255,255,.15);
}
.main-nav { display: flex; flex-wrap: nowrap; }
.nav-link {
  font-family: var(--sans);
  font-size: 13px; letter-spacing: .02em;
  padding: 0 14px; height: 62px;
  display: flex; align-items: center;
  color: var(--text-2);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;     /* 防"选站避雷"被压成 2 行 */
  flex-shrink: 0;
}
.nav-link:hover { color: var(--text-1); }
.nav-link.active { color: var(--blue); border-bottom-color: var(--blue); }
/* 申请收录：服务站方非访客，视觉弱化（不抢访客注意力） */
.nav-link-muted { color: var(--text-3); opacity: .75; }
.nav-link-muted:hover { color: var(--text-2); opacity: 1; }
.header-meta {
  font-family: var(--mono);
  font-size: 10px; color: var(--text-2);
  letter-spacing: .05em;
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.live-badge {
  display: flex; align-items: center; gap: 5px;
  background: var(--green-dim);
  border: 1px solid rgba(0,201,123,.22);
  color: var(--green);
  padding: 3px 9px; border-radius: 3px;
  font-size: 10px; font-weight: 600;
}
.live-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 5px var(--green);
  animation: blink 2.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ══ 主体 ══ */
main { max-width: 1100px; margin: 0 auto; padding: 36px 28px 100px; }

.page-title { margin-bottom: 32px; }
.page-title h1 {
  font-family: var(--mono);
  font-size: 24px; font-weight: 700;
  letter-spacing: .02em; line-height: 1.2;
  margin-bottom: 8px;
}
.page-title h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--blue) 0%, #818cf8 50%, var(--green) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-title p {
  font-family: var(--mono); font-size: 12px;
  color: var(--text-2); letter-spacing: .06em;
}

/* ── 工具栏 ── */
.toolbar {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 18px; flex-wrap: wrap;
}
.toolbar-label {
  font-family: var(--sans); font-size: 12px;
  color: var(--text-2); letter-spacing: .02em;
  margin-right: 2px;
}
.chip {
  font-family: var(--mono); font-size: 11px; letter-spacing: .04em;
  padding: 5px 12px;
  border: 1px solid var(--border-hi); border-radius: 3px;
  background: transparent; color: var(--text-2);
  cursor: pointer; transition: all .15s;
  text-decoration: none;
  display: inline-flex; align-items: center;
}
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.active { border-color: var(--blue); color: var(--blue); background: var(--blue-dim); }
.divider-v { width: 1px; height: 16px; background: var(--border-hi); margin: 0 6px; }
.sort-group { margin-left: auto; display: flex; align-items: center; gap: 5px; }
.sort-btn {
  font-family: var(--mono); font-size: 11px; letter-spacing: .04em;
  padding: 5px 12px;
  border: 1px solid var(--border-hi); border-radius: 3px;
  background: transparent; color: var(--text-2);
  cursor: pointer; transition: all .15s;
  text-decoration: none;
  display: inline-flex; align-items: center;
}
.sort-btn:hover { color: var(--cyan); border-color: var(--cyan); }
.sort-btn.active { color: var(--cyan); border-color: var(--cyan); background: var(--cyan-dim); }

/* ── 表头 ── */
.table-header {
  display: grid;
  grid-template-columns: minmax(220px, 260px) 108px 84px 78px 58px 70px 74px 90px 56px 86px;
  gap: 0 10px;
  max-width: 1080px;
  padding: 8px 20px 8px 26px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.th {
  font-family: var(--sans); font-size: 12px;
  color: var(--text-2); letter-spacing: .02em;
  font-weight: 500; white-space: nowrap;
}
.th.center { text-align: center; }

/* ══ 卡片 ══ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 5px;
  max-width: 1080px;
  overflow: hidden;
  transition: border-color .2s, background .2s, transform .15s;
  position: relative;
  animation: fadeUp .35s ease both;
}
.card:hover {
  border-color: var(--border-hi);
  background: var(--bg-hover);
  transform: translateX(3px);
}
.card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
}
.card.tier-s::before, .card.tier-a::before { background: var(--blue); box-shadow: 0 0 8px rgba(79,142,247,.5); }
.card.tier-b::before { background: var(--green); }
.card.tier-c::before { background: var(--border); }

@keyframes fadeUp {
  from { opacity:0; transform:translateY(8px); }
  to   { opacity:1; transform:translateY(0); }
}
.card:nth-child(-n+8) { animation-delay: calc(.04s * var(--i, 1)); }

.card-row {
  display: grid;
  grid-template-columns: minmax(220px, 260px) 108px 84px 78px 58px 70px 74px 90px 56px 86px;
  gap: 0 10px;
  align-items: center;
  padding: 14px 18px 14px 24px;
  min-height: 72px;
}

/* ── 排名 ── */
.rank-col { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.rank-tier {
  font-family: var(--mono); font-size: 13px; font-weight: 800;
  letter-spacing: .04em; line-height: 1;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 5px;
}
.rank-tier.rt-s { background: rgba(79,142,247,.15); color: var(--blue); border: 1px solid rgba(79,142,247,.35); }
.rank-tier.rt-a { background: rgba(0,201,123,.12); color: var(--green); border: 1px solid rgba(0,201,123,.28); }
.rank-tier.rt-b { background: rgba(255,255,255,.04); color: var(--text-3); border: 1px solid var(--border-hi); }
.rank-tier.rt-c { background: rgba(248,113,113,.06); color: #7a4040; border: 1px solid rgba(248,113,113,.15); }
.rank-num {
  font-family: var(--mono); font-size: 10px; font-weight: 400;
  letter-spacing: .04em; line-height: 1;
  color: var(--text-3);
}

/* ── 服务商 ── */
/* .provider-col 是 grid item，grid item 默认 min-width: auto 会被内容撑开。
   配合 .provider-name 的 ellipsis，需要这里也允许收缩到 0 才能正确截断长名字。
   桌面端列宽 minmax(240,300px)，触发场景=站名超 300px；mobile 重新覆盖。 */
.provider-col { min-width: 0; }
.provider-link {
  text-decoration: none; color: inherit;
  display: inline-flex; align-items: center; gap: 5px;
  margin-bottom: 4px;
  max-width: 100%; min-width: 0;
}
.provider-name {
  font-size: 17px; font-weight: 800;
  /* 2026-07-08 回归白色：标签压暗+竖条上线后，白色在深色底上亮度本就高于品牌蓝，
     周围安静了白色粗体反而最突出（用户实看反馈）；蓝色留给竖条当标题标记。 */
  color: var(--text-1); letter-spacing: .01em;
  transition: color .15s;
  /* 中文 default 允许逐字断行，名字过长在窄列里会换 4-5 行；强制不换行+省略 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.card:hover .provider-name { color: var(--blue); }
.ext-icon {
  font-family: var(--mono); font-size: 10px;
  color: var(--text-3); opacity: 0; transition: opacity .15s;
}
.card:hover .ext-icon { opacity: 1; color: var(--blue); }
.tag {
  font-family: var(--mono); font-size: 9px;
  padding: 2px 5px; border-radius: 2px; letter-spacing: .04em;
}
.tag-company { background: rgba(79,142,247,.1); color: var(--blue); border: 1px solid rgba(79,142,247,.2); }
.tag-person  { background: rgba(251,191,36,.08); color: var(--yellow); border: 1px solid rgba(251,191,36,.18); }
.tag-stars   { background: rgba(245,158,11,.08); color: var(--gold); border: 1px solid rgba(245,158,11,.25); }
.tag-unreach {
  display: inline-block; margin-top: 3px;
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: .04em;
  background: var(--red-dim); color: var(--red);
  border: 1px solid rgba(248,113,113,.3);
  padding: 2px 7px; border-radius: 3px;
}

/* 不可达卡片整体淡化 */
.card.unreachable { opacity: .55; }
.card.unreachable:hover { opacity: .85; }
.card.unreachable .provider-name { color: var(--text-2); }

/* C 级已下线/异常站点折叠区（默认收起）*/
.dead-fold { margin-top: 16px; }
.dead-fold > summary {
  cursor: pointer; list-style: none; user-select: none;
  padding: 11px 16px; text-align: center;
  font-family: var(--mono); font-size: 12px; color: var(--text-2);
  letter-spacing: .04em;
  border: 1px dashed var(--border-hi); border-radius: 6px;
  background: var(--bg-card); transition: all .15s;
}
.dead-fold > summary::-webkit-details-marker { display: none; }
.dead-fold > summary::after { content: " ▾"; }
.dead-fold[open] > summary::after { content: " ▴"; }
.dead-fold > summary:hover { color: var(--text-1); border-color: var(--border-hi); background: var(--bg-hover); }
.dead-fold[open] > summary { margin-bottom: 8px; }
.card.unreachable .visit-btn {
  border-color: var(--border-hi);
  background: transparent; color: var(--text-3);
}
/* 异常折叠区禁用的官网按钮（已下线/已关闭/已停止注册）*/
.visit-btn.disabled {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 14px; cursor: not-allowed;
  border: 1px solid var(--border); border-radius: 5px;
  background: transparent; color: var(--text-3);
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: .04em; user-select: none;
  pointer-events: none;
}
.muted {
  font-family: var(--mono); font-size: 12px;
  color: var(--text-3); display: inline-block;
}
.provider-note {
  font-size: 11px; color: var(--text-3); margin-top: 3px;
  line-height: 1.4; max-width: 95%;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.provider-domain {
  font-family: var(--mono); font-size: 10px;
  color: var(--text-3); margin-top: 3px;
  letter-spacing: .02em;
  display: flex; align-items: center; gap: 8px;
}
.provider-meta {
  display: flex; align-items: center; gap: 6px; margin-top: 3px;
  flex-wrap: wrap;
}

/* ── 稳定性（5档 + unknown） ── */
.uptime-col { text-align: center; }
.uptime-val { display: none; }
.uptime-grade {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: .04em; margin-bottom: 5px;
}
.uptime-bar { width: 50%; height: 3px; background: var(--border); border-radius: 2px; overflow: hidden; margin: 0 auto; }
.uptime-fill { height: 100%; border-radius: 2px; }
.uptime-col.s1 .uptime-grade { color: var(--green); }
.uptime-col.s1 .uptime-fill  { background: var(--green); box-shadow: 0 0 4px var(--green); }
.uptime-col.s2 .uptime-grade { color: #34d399; }
.uptime-col.s2 .uptime-fill  { background: #34d399; }
.uptime-col.s3 .uptime-grade { color: var(--cyan); }
.uptime-col.s3 .uptime-fill  { background: var(--cyan); }
.uptime-col.s4 .uptime-grade { color: var(--yellow); }
.uptime-col.s4 .uptime-fill  { background: var(--yellow); }
.uptime-col.s5 .uptime-grade { color: var(--red); }
.uptime-col.s5 .uptime-fill  { background: var(--red); }
.uptime-col.unknown .uptime-grade { color: var(--text-3); }
.uptime-col.unknown .uptime-bar { background: transparent; }

/* ── 掺水率 ── */
.water-col { text-align: center; }
.water-badge {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  padding: 3px 8px; border-radius: 3px;
  display: inline-block; letter-spacing: 0; white-space: nowrap;
  text-decoration: none; cursor: pointer; transition: opacity .15s;
}
a.water-badge:hover { opacity: .72; text-decoration: none; }
.water-badge.clean      { background: var(--green-dim); color: var(--green); border: 1px solid rgba(0,201,123,.22); }
.water-badge.low        { background: rgba(251,191,36,.08); color: var(--yellow); border: 1px solid rgba(251,191,36,.2); }
.water-badge.high       { background: var(--red-dim); color: var(--red); border: 1px solid rgba(248,113,113,.2); }
.water-badge.unverified { background: rgba(255,255,255,.04); color: var(--text-3); border: 1px solid var(--border-hi); }

/* ── 价格 ── */
.price-col { display: flex; flex-direction: column; gap: 2px; }
.price-tags { display: flex; flex-wrap: wrap; gap: 3px; }
.price-grade {
  font-family: var(--mono); font-size: 9px; font-weight: 600;
  padding: 2px 6px; border-radius: 2px; letter-spacing: .06em;
  display: inline-block;
}
/* 价格 5 档：低 → 较低 → 中等 → 较高 → 高（绿 → 浅绿 → 青 → 黄 → 红） */
.price-grade        { opacity: 0.5; transition: opacity .15s; }
.price-grade.best   { opacity: 1; font-weight: 700; box-shadow: 0 0 0 1px currentColor; }
.price-grade.low    { background: var(--green-dim); color: var(--green); border: 1px solid rgba(0,201,123,.2); }
.price-grade.lower  { background: rgba(110,231,183,.06); color: #6ee7b7; border: 1px solid rgba(110,231,183,.2); }
.price-grade.mid    { background: var(--cyan-dim);  color: var(--cyan);  border: 1px solid rgba(34,211,238,.2); }
.price-grade.higher { background: rgba(251,191,36,.08); color: var(--yellow); border: 1px solid rgba(251,191,36,.2); }
.price-grade.high   { background: var(--red-dim);   color: var(--red);   border: 1px solid rgba(248,113,113,.2); }


/* ── 模型种类标签 ── */
.categories-col { display: flex; flex-wrap: wrap; gap: 5px; align-items: center; justify-content: center; }

/* ── 开票列 ── */
.invoice-col { text-align: center; min-width: 0; }
.invoice-yes { color: var(--green); font-weight: 700; font-size: 14px; }
.invoice-no  { color: var(--text-3); font-size: 13px; }
.invoice-note {
  display: inline-block;
  font-family: var(--sans); font-size: 10px; line-height: 1.35;
  color: var(--text-2); word-break: break-all;
}
.img-yes {
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  color: var(--green); letter-spacing: .04em;
}
.cat-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  padding: 3px 9px 3px 7px;
  border-radius: 12px;             /* 胶囊型 */
  letter-spacing: .02em;
  white-space: nowrap;
  line-height: 1.4;
  transition: transform .15s, box-shadow .15s;
}
.cat-tag:hover { transform: translateY(-1px); }
.cat-icon { font-size: 11px; line-height: 1; }

.cat-tag.cat-code {
  background: linear-gradient(135deg, rgba(79,142,247,.18), rgba(79,142,247,.08));
  color: #93b8ff;
  border: 1px solid rgba(79,142,247,.4);
  box-shadow: inset 0 1px 0 rgba(79,142,247,.15);
}
.cat-tag.cat-code:hover {
  box-shadow: 0 2px 8px rgba(79,142,247,.25), inset 0 1px 0 rgba(79,142,247,.15);
  color: #b8d0ff;
}

.cat-tag.cat-image {
  background: linear-gradient(135deg, rgba(168,85,247,.18), rgba(168,85,247,.08));
  color: #d8b4fe;
  border: 1px solid rgba(168,85,247,.4);
  box-shadow: inset 0 1px 0 rgba(168,85,247,.15);
}
.cat-tag.cat-image:hover {
  box-shadow: 0 2px 8px rgba(168,85,247,.25), inset 0 1px 0 rgba(168,85,247,.15);
  color: #e9d5ff;
}

.cat-tag.cat-video {
  background: linear-gradient(135deg, rgba(251,113,133,.18), rgba(251,113,133,.08));
  color: #fda4af;
  border: 1px solid rgba(251,113,133,.4);
  box-shadow: inset 0 1px 0 rgba(251,113,133,.15);
}
.cat-tag.cat-video:hover {
  box-shadow: 0 2px 8px rgba(251,113,133,.25), inset 0 1px 0 rgba(251,113,133,.15);
  color: #fecdd3;
}
.price-text {
  font-family: var(--mono); font-size: 10px;
  color: var(--text-3); margin-top: 2px;
}

/* ── 模型数 ── */
.models-col { text-align: center; }
.models-num {
  font-family: var(--mono); font-size: 18px; font-weight: 700;
  color: var(--text-2); line-height: 1;
}
.models-label {
  font-family: var(--mono); font-size: 9px;
  color: var(--text-3); letter-spacing: .04em; margin-top: 2px;
}

/* ── API 来源 ── */
.source-col { text-align: center; }
.source-badge {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  padding: 3px 8px; border-radius: 3px;
  display: inline-block; letter-spacing: .04em;
}
.source-badge.rich   { background: rgba(79,142,247,.1); color: var(--blue); border: 1px solid rgba(79,142,247,.25); }
.source-badge.normal { background: rgba(255,255,255,.04); color: var(--text-2); border: 1px solid var(--border-hi); }
.source-badge.single { background: rgba(248,113,113,.07); color: var(--red); border: 1px solid rgba(248,113,113,.18); }

/* ── 收藏 ── */
.bookmark-btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: .02em; color: var(--text-2);
  background: none; border: 1px solid var(--border-hi);
  border-radius: 4px; padding: 3px 9px; cursor: pointer;
  transition: color .15s, border-color .15s, background .15s;
  white-space: nowrap;
}
.bookmark-btn:hover { color: var(--yellow); border-color: var(--yellow); background: rgba(251,191,36,.06); }

/* ── 复制链接（ROI 4：拆 direct 流量；样式参照 bookmark-btn 但用蓝色高亮区分）── */
.copy-link-btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: .02em; color: var(--text-2);
  background: none; border: 1px solid var(--border-hi);
  border-radius: 4px; padding: 3px 9px; cursor: pointer;
  transition: color .15s, border-color .15s, background .15s;
  white-space: nowrap;
}
.copy-link-btn:hover { color: var(--blue); border-color: var(--blue); background: rgba(96,165,250,.06); }
.copy-link-btn.copied { color: var(--green); border-color: var(--green); background: rgba(52,211,153,.08); }

/* ── ROI 5：verify-yourself 底部 1 行问卷按钮 ── */
.se-poll-btn {
  display: inline-flex; align-items: center;
  font-family: var(--sans); font-size: 12px;
  color: var(--text-1); background: var(--bg-card);
  border: 1px solid var(--border-hi); border-radius: 4px;
  padding: 4px 12px; cursor: pointer;
  transition: color .15s, border-color .15s, background .15s;
}
.se-poll-btn:hover { color: var(--blue); border-color: var(--blue); background: rgba(96,165,250,.06); }
.se-poll-btn:disabled { cursor: default; opacity: .55; }

/* ── 加密级签名校验·认证行（方案 B · 2026-06-04 用户拍板）── */
/* 仅在全 ok 时显示（半透传/不适用全部隐藏），所以这一行出现 = "加密级真透传" 加分项。
   不强抢视觉，但给一个轻微的小绿色 chip 与对应行底色，让奖章感稍微出来。 */
.vy-cert-row { background: rgba(0,201,123,.04); border-radius: 3px; }
.vy-cert-tag {
  display: inline-block;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .08em;
  color: var(--green);
  background: rgba(0,201,123,.10);
  border: 1px solid rgba(0,201,123,.28);
  padding: 1px 5px; border-radius: 3px;
  margin-right: 6px; vertical-align: middle;
}

/* ── ROI 2：信任声明 TL;DR 折叠块（首页/排行/工具页统一） ── */
.trust-tldr {
  margin: 10px 0 18px; padding: 10px 14px;
  background: rgba(96,165,250,.04);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: 4px;
  font-size: 13px;
}
.trust-tldr summary {
  cursor: pointer; color: var(--text-2);
  font-size: 13px; user-select: none;
  padding: 2px 0;
}
.trust-tldr summary strong { color: var(--text-1); }
.trust-tldr summary::-webkit-details-marker { color: var(--text-3); }
.trust-tldr[open] summary { margin-bottom: 8px; border-bottom: 1px dashed var(--border); padding-bottom: 6px; }
.trust-tldr ul { margin: 4px 0 0; padding-left: 20px; line-height: 1.9; color: var(--text-2); }
.trust-tldr ul li { margin: 0; }
.trust-tldr a { color: var(--blue); }

/* ── 首页 FAQ（叫法澄清 + 真假/选站引流），复用 trust-tldr 卡片样式 ── */
.faq-section { margin: 26px 0 8px; }
.faq-h { font-size: 15px; color: var(--text-1); margin: 0 0 10px; font-weight: 600; }
.faq-section .trust-tldr { margin: 8px 0; }
.faq-a { margin-top: 4px; color: var(--text-2); line-height: 1.8; }
.faq-a a { color: var(--blue); }

/* ── ROI 2：科普/方法学页文末漏斗 CTA 卡片 ── */
.guide-cta-panel {
  margin: 40px 0 24px; padding: 22px 24px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px;
}
.guide-cta-title {
  font-family: var(--mono); font-size: 11px;
  color: var(--text-3); letter-spacing: .2em;
  margin: 0 0 14px; text-transform: uppercase;
}
.guide-cta-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.guide-cta-card {
  display: block; padding: 14px 16px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 6px; text-decoration: none;
  transition: border-color .15s, background .15s, transform .1s;
}
.guide-cta-card:hover { border-color: var(--blue); background: rgba(96,165,250,.06); transform: translateY(-1px); }
.guide-cta-card.guide-cta-primary { border-color: var(--blue); background: rgba(96,165,250,.08); }
.guide-cta-card-title { font-size: 14px; font-weight: 600; color: var(--text-1); margin-bottom: 4px; }
.guide-cta-card-desc { font-size: 12px; color: var(--text-3); line-height: 1.5; }

.bk-toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(12px);
  background: var(--bg-card); border: 1px solid var(--border-hi);
  border-radius: 8px; padding: 12px 20px;
  font-family: var(--mono); font-size: 12px; color: var(--text-2);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 999;
}
.bk-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── 支付 / 起充 / 赠送额度 三列（2026-05 新增）── */
.payment-col, .topup-col, .bonus-col {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 3px; min-width: 0;
}
.pay-tags { display: flex; gap: 3px; flex-wrap: wrap; justify-content: center; }
.pay-tag {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 4px;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  line-height: 1; user-select: none;
}
.pay-tag.pay-alipay  { background: #e6f4ff; color: #0078d4; }
.pay-tag.pay-wechat  { background: #dff6e0; color: #1aad19; }
.pay-tag.pay-usdt    { background: #fff3cd; color: #b8860b; }
.pay-tag.pay-stripe  { background: #f0e6ff; color: #6f3ad6; }
.pay-tag.pay-credit  { background: #fce4ec; color: #ad1457; }
.pay-tag.pay-invoice { background: #f0f0f0; color: #555; }
.pay-tag.pay-other   { background: #f5f5f5; color: #888; }

/* 非首页标签 feature_tags（详情页 + 比价页）：与首页同款两级——
   默认＝浅灰安静（模型少/折算说明等中性信息）；💬推荐语＝靛蓝醒目。
   block 级 flex → 比价页里换行落到网站名下方，而非挤在右边。 */
.feature-tags { display: flex; gap: 6px; flex-wrap: wrap; margin: 6px 0 0; }
.feat-tag {
  display: inline-flex; align-items: center;
  padding: 3px 9px; border-radius: 6px;
  background: #f4f4f5; color: #52525b;
  font-size: 12px; font-weight: 500; line-height: 1.3;
  border: 1px solid #e4e4e7;
}
.feat-tag.quote {
  background: #eef2ff; color: #4338ca;
  font-weight: 600;
  border: 1px solid #c7d2fe;
}
/* 比价页作用域内改深色安静版（2026-07-08 讨论定稿）：原白底 #f4f4f5 在深色主题里
   是全卡片最亮色块，抢掉站名的标题锚点；换深色系才真正实现"安静不抢戏"的原意图。
   💬quote 保留醒目定位，换深底浅字靛蓝（不再是浅色灯泡）。详情页 .feat-tag 不动。 */
.price-table .feat-tag {
  background: rgba(255,255,255,.045); color: var(--text-2);
  border-color: rgba(255,255,255,.10);
}
.price-table .feat-tag.quote {
  /* 同首页 .home-tag.quote：恢复原浅底亮块（深底版不够醒目，2026-07-08） */
  background: #eef2ff; color: #4338ca;
  border-color: #c7d2fe;
}

/* ── 优惠码（详情页大版 + 首页/排行榜卡片紧凑版，同一套说明+码+按钮，只是字号不同），
   琥珀色区别于蓝色 copy-link-btn / 靛蓝 feat-tag。说明文案 + 码全部直接暴露在外面，
   不藏进 title 提示（2026-07-05 用户反馈：之前卡片版用 title 悬浮说明+紧凑 chip 太隐蔽）。 */
.coupon-box {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  margin: 10px 0; padding: 9px 14px;
  background: rgba(245,158,11,.06); border: 1px solid rgba(245,158,11,.28);
  border-radius: 6px; font-size: 13px;
}
.coupon-icon { font-size: 15px; line-height: 1; }
.coupon-note { color: var(--text-2); }
.coupon-code {
  font-family: var(--mono); font-weight: 700; letter-spacing: .02em;
  color: #b45309; background: rgba(245,158,11,.14);
  padding: 2px 8px; border-radius: 4px;
}
.copy-code-btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  color: #fff; background: #d97706; border: 1px solid #d97706;
  border-radius: 6px; padding: 4px 12px; cursor: pointer;
  box-shadow: 0 1px 2px rgba(180,83,9,.25);
  transition: background .15s, border-color .15s, box-shadow .15s, transform .05s;
  white-space: nowrap;
}
.copy-code-btn:hover { background: #b45309; border-color: #b45309; box-shadow: 0 2px 5px rgba(180,83,9,.3); }
.copy-code-btn:active { transform: translateY(1px); box-shadow: none; }
.copy-code-btn.copied { color: #fff; background: var(--green); border-color: var(--green); box-shadow: none; }
/* 首页/排行榜卡片版：说明+码+按钮同一行内联展示，缩小字号适配密集表格行 */
.coupon-inline {
  display: flex; align-items: center; flex-wrap: wrap; gap: 5px;
  margin-top: 4px; font-size: 11px;
}
.coupon-inline .coupon-icon { font-size: 12px; }
.coupon-inline .coupon-note { color: var(--text-3); }
.coupon-inline .coupon-code { font-size: 11px; padding: 1px 6px; }
.coupon-inline .copy-code-btn { font-size: 10px; padding: 2px 9px; gap: 3px; border-radius: 5px; }

/* 首页站名下方标签：两级视觉层级——
   优惠类（默认）＝安静浅灰，不与🧧优惠码行/赠送列抢戏；
   推荐语（💬开头，模板加 .quote）＝暖琥珀醒目，像一句人话，全场稀缺 */
.home-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 5px; }
.home-tag {
  display: inline-flex; align-items: center;
  padding: 2px 7px; border-radius: 5px;
  /* 深色安静版（2026-07-08）：原白底 #f4f4f5 是深色卡片上最亮色块，压过站名；
     换深色系让标签退回 metadata 层，站名成为唯一强锚点。 */
  background: rgba(255,255,255,.045); color: var(--text-2);
  font-size: 11px; font-weight: 500; line-height: 1.3;
  border: 1px solid rgba(255,255,255,.10);
}
.home-tag.quote {
  /* 💬推荐语=全场稀缺强调（每卡至多一条），保留原浅底亮块设计——
     2026-07-08 试过深底靛蓝两档都不够醒目，用户拍板恢复原样；
     普通标签已压暗，唯一亮块=推荐语，恰好形成稀缺强调。 */
  background: #eef2ff; color: #4338ca;
  font-size: 12px; font-weight: 600;
  border: 1px solid #c7d2fe;
}

/* 运营异常提示标签（首页卡片 + 比价页共用，醒目但不情绪化；长文可换行） */
.tag-anomaly {
  display: inline-block;
  padding: 2px 8px; border-radius: 6px;
  font-size: 11px; font-weight: 600; line-height: 1.4;
  white-space: normal;
}
.tag-anomaly.warn {
  background: rgba(220,38,38,.08); color: #b91c1c;
  border: 1px solid rgba(220,38,38,.25);
}
.tag-anomaly.warn::before { content: "⚠ "; }
.tag-anomaly.closed {
  background: rgba(148,163,184,.14); color: var(--text-3);
  border: 1px solid rgba(148,163,184,.28);
}
/* 异常标签独占站名下方一行（.provider-link 是 inline-flex，
   若 tag 也是 inline-block 会挤到站名右边）；block + fit-content 让背景块只包住文字。 */
.provider-col > .tag-anomaly { display: block; width: fit-content; margin-top: 5px; }

.topup-tag {
  display: inline-block;
  padding: 2px 6px; border-radius: 3px;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  line-height: 1.3; white-space: nowrap;
}
.topup-tag.topup-low  { background: #d4edda; color: #155724; }   /* ¥1 绿 */
.topup-tag.topup-mid  { background: #fff3cd; color: #856404; }   /* ¥10 黄 */
.topup-tag.topup-high { background: #f8d7da; color: #721c24; }   /* ¥100 红 */

.bonus-tag {
  display: inline-block;
  padding: 2px 6px; border-radius: 3px;
  background: #ffe5f0; color: #c2185b;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  line-height: 1.3; white-space: nowrap;
}

/* ── 官网按钮 ── */
/* visit-col：官网(主) + 查看详情(次) 纵向并列；高意向点官网直达，想了解的点详情 opt-in */
.visit-col { display: flex; flex-direction: column; align-items: stretch; gap: 6px; }
/* 详情按钮：次按钮，弱样式，与官网按钮等宽并列在其下 */
.detail-btn {
  flex-shrink: 0; cursor: pointer; text-align: center;
  padding: 5px 8px; border: 1px solid var(--border-hi); border-radius: 4px;
  background: transparent; color: var(--text-2);
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: .04em; text-decoration: none;
  transition: all .15s; white-space: nowrap;
}
.detail-btn:hover {
  color: var(--cyan); border-color: var(--cyan); background: var(--cyan-dim);
}
.visit-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 14px; cursor: pointer;
  border: 1px solid var(--blue); border-radius: 5px;
  background: linear-gradient(135deg, #4f8ef7, #6366f1); color: #fff;
  font-family: var(--mono); font-size: 12px; font-weight: 800;
  letter-spacing: .08em; text-decoration: none;
  transition: all .15s; white-space: nowrap;
  box-shadow: 0 2px 10px rgba(79,142,247,.3);
}
.visit-btn:hover {
  box-shadow: 0 0 18px rgba(79,142,247,.6);
  transform: translateY(-1px); color: #fff;
}

/* ── P0-1 首屏信任背书行 ── */
.trust-line {
  display: flex; align-items: center; gap: 8px;
  margin: -18px 0 22px; font-size: 13px; color: #9db0ce;
  line-height: 1.6;
}
.trust-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 6px var(--green);
  flex-shrink: 0;
}
/* ── P0-2 首屏引流："不知道怎么选？看选站避雷" ── */
.pick-cta {
  display: inline-block; margin: 0 0 14px;
  font-size: 13px; color: var(--text-2); text-decoration: none;
  border-bottom: 1px dashed var(--border-hi); padding-bottom: 1px;
  transition: color .15s;
}
.pick-cta:hover { color: var(--blue); border-color: var(--blue); }
.pick-cta strong { color: var(--blue); font-weight: 700; }
/* 合并进工具栏：紧跟 chips 左侧同排，不再右推、去掉独立下边距 */
.toolbar .pick-cta { margin: 0 0 0 auto; align-self: center; }
@media (max-width: 640px) {
  .toolbar .pick-cta { margin: 6px 0 0 0; flex-basis: 100%; }
}
/* 表头 ⓘ 提示标记 */
.th-i { opacity: .5; font-size: 10px; cursor: help; }
/* 折叠 summary 内容预览：不点开也知道里面讲啥 */
.sum-hint { color: var(--text-3); font-size: 12px; font-weight: 400; }
details[open] > summary .sum-hint { display: none; }
/* 选站避雷：顶部回榜 CTA + 买前检查清单 */
.pick-cta-row { margin: 0 0 20px; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative; padding: 7px 0 7px 26px;
  line-height: 1.7; color: var(--text-1);
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: "▢"; position: absolute; left: 4px; top: 7px;
  color: var(--blue); font-size: 13px;
}

/* ── 分页 ── */
.pagination {
  margin-top: 24px; display: flex; gap: 6px; justify-content: center; align-items: center;
}
.pagination a, .pagination span {
  font-family: var(--mono); font-size: 12px;
  padding: 6px 12px;
  border: 1px solid var(--border-hi); border-radius: 3px;
  color: var(--text-2); text-decoration: none;
  transition: all .15s;
}
.pagination a:hover { color: var(--blue); border-color: var(--blue); }
.pagination .current {
  color: var(--blue); border-color: var(--blue); background: var(--blue-dim);
}
.pagination .disabled { color: var(--text-3); cursor: not-allowed; opacity: .5; }

/* ── 页脚 ── */
.footer-divider {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; gap: 24px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 10px; color: var(--text-3);
  letter-spacing: .04em;
}
.footer-divider span { color: var(--text-2); }
.footer-legal {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 11px; color: var(--text-3); line-height: 1.8;
}

/* 详情页：用户反馈（举报/纠错）2026-05 新增 */
.report-block {
  margin-top: 36px; padding: 18px 20px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px;
}
.report-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin: 4px 0 12px; }
.report-toast {
  display: inline-block; padding: 4px 10px; border-radius: 4px;
  background: #d4edda; color: #155724;
  font-size: 12px; font-weight: 500;
}
.report-form {
  display: flex; flex-direction: column; gap: 8px;
  padding: 14px; margin-top: 8px;
  background: var(--bg-hover); border: 1px dashed var(--border-hi); border-radius: 6px;
}
.report-form[hidden] { display: none; }
.report-label {
  font-size: 12px; color: var(--text-2); font-weight: 500;
  margin-top: 4px;
}
.report-form textarea, .report-form input[type=text] {
  width: 100%; padding: 8px 10px;
  border: 1px solid var(--border); border-radius: 4px;
  background: var(--bg-card); color: var(--text-1);
  font-family: inherit; font-size: 13px; line-height: 1.55;
  box-sizing: border-box;
}
.report-form textarea { resize: vertical; min-height: 90px; }
.report-form textarea:focus, .report-form input[type=text]:focus {
  outline: none; border-color: var(--blue);
}
.report-form button { align-self: flex-start; margin-top: 4px; }

/* 附件：贴图 / 选文件 */
.report-attach { display: flex; flex-direction: column; gap: 6px; margin-top: 2px; }
.report-attach-label { font-size: 12px; color: var(--text-2); line-height: 1.5; }
.report-file { font-size: 12px; color: var(--text-2); }
.report-attach-preview { display: flex; flex-wrap: wrap; gap: 8px; }
.report-attach-preview:empty { display: none; }
.attach-chip {
  display: inline-flex; align-items: center; gap: 6px;
  max-width: 100%; padding: 4px 6px 4px 4px;
  border: 1px solid var(--border); border-radius: 6px;
  background: var(--bg-card); font-size: 11px; color: var(--text-2);
}
.attach-chip img {
  width: 40px; height: 40px; object-fit: cover; border-radius: 4px; display: block;
}
.attach-chip .attach-ic { font-size: 22px; line-height: 1; padding: 0 4px; }
.attach-chip .attach-name {
  max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.attach-chip .attach-del {
  border: none; background: transparent; cursor: pointer;
  color: var(--text-3); font-size: 16px; line-height: 1; padding: 0 2px;
}
.attach-chip .attach-del:hover { color: var(--red, #e5484d); }

/* ══ 申请收录 ══ */
.apply-form { max-width: 580px; }
.apply-lead { max-width: 720px; font-size: 15px; line-height: 1.95; color: var(--text-1); margin-bottom: 8px; }
.apply-lead strong { color: var(--text-1); }
.apply-criteria { max-width: 720px; list-style: none; counter-reset: c; margin: 0; }
.apply-criteria li {
  counter-increment: c; position: relative;
  padding: 15px 0 15px 46px;
  border-top: 1px solid var(--border);
  font-size: 14px; line-height: 1.85; color: var(--text-2);
}
.apply-criteria li:first-child { border-top: none; }
.apply-criteria li::before {
  content: counter(c); position: absolute; left: 0; top: 14px;
  width: 27px; height: 27px; border-radius: 50%;
  background: var(--blue-dim); border: 1px solid rgba(79,142,247,.4);
  color: var(--blue); font-family: var(--mono); font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.apply-criteria li strong { color: var(--text-1); }
.apply-contact {
  max-width: 720px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 22px 26px;
}
.apply-email {
  font-family: var(--mono); font-size: 18px; color: var(--blue);
  text-decoration: none; font-weight: 700; letter-spacing: .02em; word-break: break-all;
}
.apply-email:hover { text-decoration: underline; }
.apply-send-list { margin: 16px 0 0; padding-left: 20px; color: var(--text-2); font-size: 14px; line-height: 2; }
.form-section-title {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue);
  border-bottom: 1px solid var(--border-hi);
  padding-bottom: 8px; margin: 32px 0 20px;
  display: flex; align-items: center; gap: 8px;
}
.form-section-title::before {
  content: ''; width: 3px; height: 12px;
  background: var(--blue); border-radius: 2px; flex-shrink: 0;
}
.form-section-title:first-of-type { margin-top: 0; }

/* 「填写信息」——显眼但和谐：主标题加粗放大配蓝色竖条，附注用暖琥珀色小胶囊，
   醒目提醒「据实回答」又不喧宾夺主。 */
.form-fill-title {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  margin: 34px 0 20px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border-hi);
  font-family: var(--sans); font-size: 19px; font-weight: 700;
  letter-spacing: .01em; color: var(--text-1);
}
.form-fill-title::before {
  content: ''; width: 4px; height: 20px;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
  border-radius: 2px; flex-shrink: 0;
}
.form-fill-note {
  font-family: var(--sans); font-size: 12.5px; font-weight: 600;
  letter-spacing: .02em; color: var(--gold);
  background: rgba(245,158,11,.10);
  border: 1px solid rgba(245,158,11,.28);
  border-radius: 999px; padding: 3px 11px;
}
.form-row { margin-bottom: 18px; }
.form-label {
  display: block; font-family: var(--mono); font-size: 11px;
  color: var(--text-2); letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 7px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--bg-2);
  border: 1px solid var(--border-hi); border-radius: 4px;
  padding: 10px 14px; color: var(--text-1);
  font-family: var(--mono); font-size: 13px; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(79,142,247,.1);
}
.form-textarea { resize: vertical; min-height: 80px; }
.coop-hint {
  margin-top: 7px;
  padding: 8px 11px;
  background: var(--red-dim);
  border: 1px solid rgba(248,113,113,.28);
  border-radius: 5px;
  color: var(--red);
  font-size: 13px;
  line-height: 1.5;
}
/* 吸引力偏低的软提醒：橙色（区别于红色硬拦），仍可提交 */
.coop-hint.coop-hint-weak {
  background: rgba(245,158,11,.1);
  border-color: rgba(245,158,11,.32);
  color: #f59e0b;
}
/* AI 审核中：蓝色信息态，告知用户在等什么 */
.coop-hint.coop-hint-info {
  background: var(--blue-dim);
  border-color: var(--blue-glow);
  color: var(--blue);
}
/* 提交按钮正下方的主状态条：审核中/通过/被拦都显示在用户正盯着的位置 */
.coop-status {
  margin-top: 10px;
  padding: 10px 13px;
  border-radius: 6px;
  font-size: 13.5px;
  line-height: 1.5;
  text-align: center;
}
/* 审核中：实心蓝底白字 + 旋转 spinner，强反馈（区别于淡背景的结果态） */
.coop-status-loading {
  background: var(--blue);
  border: 1px solid var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(79,142,247,.35);
  animation: coop-pulse 1.2s ease-in-out infinite;
}
.coop-status-loading::before {
  content: "";
  display: inline-block;
  width: 14px; height: 14px;
  margin-right: 8px;
  vertical-align: -2px;
  border: 2px solid rgba(255,255,255,.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: coop-spin .7s linear infinite;
}
.coop-status-ok {
  background: var(--green-dim);
  border: 1px solid rgba(0,201,123,.3);
  color: var(--green);
}
.coop-status-block {
  background: var(--red-dim);
  border: 1px solid rgba(248,113,113,.32);
  color: var(--red);
  font-weight: 600;
}
.coop-status-weak {
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.34);
  color: #f59e0b;
  font-weight: 600;
}
@keyframes coop-pulse { 0%,100% { opacity: 1; } 50% { opacity: .82; } }
@keyframes coop-spin { to { transform: rotate(360deg); } }
.form-row-inline { display: flex; gap: 8px; align-items: center; }
.form-row-inline .form-input { flex: 1; }
.form-radio-group { display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; }
.form-radio { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--text-1); cursor: pointer; }
.form-radio input[type="radio"] { accent-color: var(--green); cursor: pointer; }
.date-sep { font-family: var(--mono); color: var(--text-3); font-size: 13px; }
.date-input { width: 72px; text-align: center; }
.date-input-m, .date-input-d { width: 56px; }
.textarea-wrap { position: relative; }
.char-count {
  position: absolute; bottom: 10px; right: 12px;
  font-family: var(--mono); font-size: 10px; color: var(--text-3);
  pointer-events: none;
}
.char-count.ok { color: var(--green); }
.form-hint { font-size: 11px; color: var(--text-3); line-height: 1.6; margin-top: 6px; }
.form-submit {
  padding: 11px 32px;
  background: var(--blue-dim);
  border: 1px solid rgba(79,142,247,.4); border-radius: 4px;
  color: var(--blue); font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: .08em; cursor: pointer; transition: all .15s;
}
.form-submit:hover {
  background: var(--blue-glow); border-color: var(--blue);
  box-shadow: 0 0 16px rgba(79,142,247,.2);
}

/* ══ 关于本站 ══ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.about-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 22px 26px; position: relative; overflow: hidden;
}
/* 顶部蓝渐变条已移除（每卡一条=视觉噪声主源，降噪改造） */
.about-card-title {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  color: var(--text-2); letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 12px;
}

/* ══ 内容页降噪版式系统（pitfalls / methodology / verify-yourself 共用）══
   纪律：功能色(green/yellow/red)只用于状态判定且只作"线/点"；
   blue 只用于链接；其余中性灰白；去装饰彩块、去 emoji、留白替代边框。 */
.cnt-narrow { max-width: 820px; }                 /* 长正文限宽，居中由父级 main 控制 */
.cnt-section { margin-top: 40px; }
.cnt-section:first-child { margin-top: 0; }

/* 中性提示框：仅左侧 3px 细线表达语气，无大面积底色 */
.callout {
  background: rgba(255,255,255,.03);
  border-left: 3px solid var(--border-hi);
  border-radius: 4px; padding: 12px 16px; margin: 14px 0;
  font-size: 14px; line-height: 1.8; color: var(--text-1);
}
.callout.info   { border-left-color: var(--blue); }
.callout.warn   { border-left-color: var(--yellow); }
.callout.danger { border-left-color: var(--red); }
.callout-label { font-weight: 700; color: var(--text-1); margin-right: 6px; }

/* 状态徽标：替代 emoji + 整块彩色判定，小面积着色 */
.status-badge {
  display: inline-block; font-size: 12px; font-weight: 600;
  padding: 2px 9px; border-radius: 4px; line-height: 1.6;
  background: rgba(255,255,255,.05); color: var(--text-2);
}
.status-badge.pass    { color: var(--green);  background: var(--green-dim); }
.status-badge.warn    { color: var(--yellow); background: rgba(251,191,36,.08); }
.status-badge.fail    { color: var(--red);    background: var(--red-dim); }
.status-badge.neutral { color: var(--text-2); background: rgba(255,255,255,.05); }

/* verdict：判定结果由"整块色"改为"中性卡 + 左 3px 状态线" */
.verdict {
  background: var(--bg-2); border: 1px solid var(--border);
  border-left: 3px solid var(--border-hi);
  border-radius: 6px; padding: 16px 18px; margin-bottom: 16px;
}
.verdict.pass    { border-left-color: var(--green); }
.verdict.warn    { border-left-color: var(--yellow); }
.verdict.fail    { border-left-color: var(--red); }
.verdict.neutral { border-left-color: var(--border-hi); }

/* 数据指标：研究数字不是错误态——中性卡，数字用浅色，不红底 */
.data-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 4px 0 14px; }
.data-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 6px; padding: 12px; text-align: center;
}
.data-card .num { font-family: var(--mono); font-size: 20px; font-weight: 700; color: var(--text-1); }
.data-card .lbl { font-size: 11px; color: var(--text-2); margin-top: 4px; line-height: 1.5; }
.data-src { font-size: 12px; color: var(--text-3); line-height: 1.7; margin: 8px 0 0; }
@media (max-width: 640px) { .data-grid { grid-template-columns: repeat(2, 1fr); } }

/* 步骤/编号列表：靠序号+留白分层，不靠彩色圆圈 */
.steps { list-style: none; padding: 0; margin: 8px 0 0; counter-reset: s; }
.steps > li {
  position: relative; padding: 10px 0 10px 34px;
  border-bottom: 1px solid var(--border); line-height: 1.8;
}
.steps > li:last-child { border-bottom: none; }
.steps > li::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 0; top: 10px;
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  color: var(--text-3);
}
/* 内容页正文：13px+灰蓝低对比铺长文看着累，提到 15px + 高对比 text-1
   + 段间距（首页榜单用 .card 不受影响，锁定设计零波及）*/
.about-card-body { font-size: 15px; color: var(--text-1); line-height: 1.85; }
.about-card-body strong { color: var(--text-1); font-weight: 700; }
.about-card-body p { margin: 0 0 12px; }
.about-card-body p:last-child { margin-bottom: 0; }
.about-card-body a { text-decoration: underline; }
.about-card-body ul { margin: 10px 0 0; padding-left: 20px; }
.about-card-body li { margin: 7px 0; line-height: 1.8; }

/* 折叠手风琴（长文默认收起，原生 details，无 JS）：首屏极简、SEO 文本仍在 DOM */
details.fold {
  border: 1px solid var(--border); border-radius: 6px;
  background: var(--bg-card); margin: 10px 0;
}
details.fold > summary {
  cursor: pointer; list-style: none; user-select: none;
  padding: 13px 16px;
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  color: var(--text-1);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
details.fold > summary::-webkit-details-marker { display: none; }
details.fold > summary::after {
  content: '+'; color: var(--text-3); font-size: 16px; font-weight: 400;
}
details.fold[open] > summary::after { content: '\2212'; }
details.fold > summary:hover { color: var(--blue); }
details.fold > summary:hover::after { color: var(--blue); }
details.fold > .fold-body {
  padding: 12px 16px 16px; border-top: 1px solid var(--border);
  font-size: 14px; line-height: 1.85; color: var(--text-1);
}
details.fold > .fold-body :first-child { margin-top: 0; }

/* ── 响应式：平板 + 手机 共用的卡片三行布局（2026-05 升级）──
   第 1 行：服务商名 + 官网按钮
   第 2 行：4 列指标（Claude 真假 / 价格 / 稳定 / 生图），每列自带 ::before 表头
   第 3 行：3 列充值信息（支付 / 起充 / 赠送额度），每列自带 ::before 表头
   外部 .table-header 隐藏，表头融进每张卡内，所有字段都看得到。 */
@media (max-width: 920px) {
  .table-header { display: none; }

  .card { margin-bottom: 6px; border-radius: 8px; }
  .card:hover { transform: none; }

  .card-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr) auto;
    grid-template-rows: auto auto auto;
    gap: 10px 6px;
    padding: 12px 14px 14px 18px;
    min-height: auto;
    align-items: start;
  }

  /* 第 1 行：服务商名（跨 12 列）+ 官网/详情按钮组 */
  .provider-col {
    grid-row: 1; grid-column: 1 / 13;
    min-width: 0; overflow: hidden;
  }
  .visit-col {
    grid-row: 1; grid-column: 13;
    align-self: start; gap: 5px;
  }
  .visit-btn { padding: 7px 14px; font-size: 11px; letter-spacing: .04em; }

  /* 第 2 行：4 个指标 cell（每个跨 3 列），自带表头 label */
  .water-col, .price-col, .uptime-col, .categories-col {
    grid-row: 2;
    display: flex; flex-direction: column; align-items: center;
    justify-content: flex-start;
    gap: 4px; min-width: 0; text-align: center;
  }
  .water-col      { grid-column: 1 / 4; }
  .price-col      { grid-column: 4 / 7; }
  .uptime-col     { grid-column: 7 / 10; }
  .categories-col { grid-column: 10 / 13; }

  /* 第 3 行：4 个充值信息 cell（每个跨 3 列），自带表头 label */
  .payment-col, .topup-col, .bonus-col, .invoice-col {
    grid-row: 3;
    display: flex; flex-direction: column; align-items: center;
    justify-content: flex-start;
    gap: 4px; min-width: 0; text-align: center;
    padding-top: 6px; border-top: 1px dashed var(--border);
  }
  .payment-col { grid-column: 1 / 4; }
  .topup-col   { grid-column: 4 / 7; }
  .bonus-col   { grid-column: 7 / 10; }
  .invoice-col { grid-column: 10 / 13; }

  .water-col::before,
  .price-col::before,
  .uptime-col::before,
  .categories-col::before,
  .payment-col::before,
  .topup-col::before,
  .bonus-col::before,
  .invoice-col::before {
    font-family: var(--sans); font-size: 9px; font-weight: 500;
    letter-spacing: .04em; color: var(--text-3);
    /* 允许在空格处换行——窄屏（≤360px）下"Claude 真假"54px 不 wrap 会撑爆列；
       改 normal 后会断成两行（多 12px 行高）。 */
    text-align: center; line-height: 1.15;
  }
  .water-col::before      { content: 'Claude 真假'; }
  .price-col::before      { content: '价格'; }
  .uptime-col::before     { content: '稳定'; }
  .categories-col::before { content: '生图'; }
  .payment-col::before    { content: '支付'; }
  .topup-col::before      { content: '起充'; }
  .bonus-col::before      { content: '赠送额度'; }
  .invoice-col::before    { content: '开票'; }

  /* 指标值：紧凑显示 */
  .water-badge { font-size: 11px; padding: 2px 7px; }
  .price-tags  { gap: 3px; justify-content: center; }
  .price-grade { font-size: 9px; padding: 1px 5px; }
  .uptime-col .uptime-grade { font-size: 11px; margin-bottom: 2px; }
  .uptime-col .uptime-bar   { width: 36px; height: 3px; }
  .img-yes     { font-size: 14px; }
  .muted       { font-size: 11px; }

  .about-grid { grid-template-columns: 1fr; }
  main { padding: 24px 20px 60px; }
}

/* ── 响应式：手机 ── */
@media (max-width: 680px) {
  /* 顶部导航紧凑 */
  .header-inner { flex-wrap: wrap; gap: 0; padding: 0 14px; height: auto; }
  .logo { height: 50px; font-size: 12px; }
  .logo-mark { width: 26px; height: 26px; font-size: 12px; }
  .main-nav {
    order: 3; width: 100%;
    border-top: 1px solid var(--border);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* 右边 24px 渐变淡出，暗示可横滑（手机端 nav 7+ 项一屏装不下） */
    -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 24px), transparent 100%);
    mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 24px), transparent 100%);
  }
  .nav-link { padding: 0 14px; height: 42px; font-size: 10px; white-space: nowrap; }
  .header-meta { height: 50px; font-size: 10px; gap: 8px; }
  .bookmark-btn { padding: 5px 10px; font-size: 10px; }
  .live-badge { display: none; }

  /* 主体 */
  main { padding: 14px 12px 40px; }
  .page-title { margin-bottom: 18px; }
  .page-title h1 { font-size: 17px; line-height: 1.3; }
  .page-title p { font-size: 11px; line-height: 1.5; }

  /* 工具栏 */
  .toolbar {
    flex-wrap: wrap; gap: 6px; margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
  }
  .toolbar-label { font-size: 10px; width: 100%; margin: 4px 0 2px; }
  .chip, .sort-btn { font-size: 11px; padding: 6px 12px; flex: 1 1 auto; min-width: 56px; text-align: center; justify-content: center; }
  .sort-group { width: 100%; margin-left: 0; flex-wrap: wrap; gap: 6px; }
  .divider-v { display: none; }

  /* 卡片：进一步收紧间距，结构不变（沿用 @920 的两行布局） */
  .card-row {
    gap: 10px 6px;
    padding: 10px 12px 12px 14px;
  }
  .provider-name { font-size: 15px; font-weight: 800; }
  .provider-domain { font-size: 9px; gap: 6px; }
  .visit-btn { padding: 6px 11px; font-size: 10px; }

  /* 指标行字号再压一档，腾出横向空间防溢出 */
  .water-badge { font-size: 10px; padding: 2px 6px; }
  .price-grade { font-size: 8px; padding: 1px 4px; letter-spacing: .04em; }
  .uptime-col .uptime-grade { font-size: 10px; }
  .water-col::before,
  .price-col::before,
  .uptime-col::before,
  .categories-col::before { font-size: 9px; }

  /* 底部 */
  .footer-divider { gap: 12px; font-size: 9px; }
  .footer-legal { font-size: 10px; line-height: 1.7; }
  .bk-toast { width: 90%; text-align: center; font-size: 11px; left: 5%; right: 5%; transform: none; }
  .bk-toast.show { transform: translateY(0); }
}

/* ── 超小屏 ── */
@media (max-width: 380px) {
  .page-title h1 { font-size: 15px; }
  .provider-name { font-size: 14px; }
  .visit-btn { padding: 6px 10px; font-size: 9px; }
  .rank-tier { width: 24px; height: 24px; font-size: 10px; }
  .card-row { gap: 8px 4px; padding: 10px 10px 10px 12px; }
  .water-badge { font-size: 9px; padding: 2px 5px; }
  .price-grade { font-size: 8px; padding: 1px 3px; }
}

/* ══ 中转站详情页 ══ */
.detail-wrap { max-width: 920px; margin: 0 auto; }
.detail-crumb { margin-bottom: 16px; font-family: var(--mono); font-size: 12px; }
.detail-crumb a { color: var(--text-2); text-decoration: none; }
.detail-crumb a:hover { color: var(--blue); }
.detail-head {
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px; padding: 22px 24px; flex-wrap: wrap;
}
.dh-main { display: flex; align-items: center; gap: 16px; }
.dh-name { font-family: var(--mono); font-size: 22px; font-weight: 700; margin: 0; }
.dh-domain { font-family: var(--mono); font-size: 13px; color: var(--text-2); margin-top: 4px; }
.dh-side { display: flex; align-items: center; gap: 18px; }
.dh-score { font-family: var(--mono); font-size: 30px; font-weight: 800; }
.dh-score span { font-size: 14px; color: var(--text-3); font-weight: 500; }
.dh-score.hi { color: var(--green); }
.dh-score.mid { color: var(--cyan); }
.dh-score.lo { color: var(--text-2); }
.detail-note { color: var(--text-2); font-size: 14px; margin: 14px 2px; }
.detail-anomaly {
  margin: 14px 0; padding: 10px 14px; border-radius: 6px;
  background: rgba(251,191,36,.1); color: var(--yellow);
  border: 1px solid rgba(251,191,36,.3); font-size: 13px;
}
.detail-metrics {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  margin: 22px 0 6px;
}
.dm {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 6px; padding: 14px 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.dm-k { font-family: var(--mono); font-size: 11px; color: var(--text-2); letter-spacing: .06em; }
.dm-v { font-size: 14px; font-weight: 600; display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.detail-h2 {
  font-family: var(--mono); font-size: 16px; font-weight: 700;
  margin: 34px 0 10px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.detail-hint { color: var(--text-3); font-size: 12px; margin: 6px 0 14px; line-height: 1.6; }
.detail-list { list-style: none; padding: 0; margin: 0; }
.detail-list li {
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text-1); line-height: 1.6;
}
.detail-list li:last-child { border-bottom: none; }
.detail-list b { color: var(--text-1); }

/* CMS 内容区（admin 编辑的 Markdown 渲染后的 HTML，沿用站点全局样式）*/
.cms-content { line-height: 1.85; color: var(--text-1); }
.cms-content h1 {
  font-family: var(--mono); font-size: 24px; font-weight: 700;
  letter-spacing: .02em; line-height: 1.2; margin: 0 0 18px;
}
.cms-content h2 {
  font-size: 18px; font-weight: 600; color: var(--text-1);
  margin: 28px 0 12px; padding-top: 8px;
  border-top: 1px solid var(--border);
}
.cms-content h3 { font-size: 15px; font-weight: 600; margin: 18px 0 8px; }
.cms-content p { margin: 10px 0; color: var(--text-1); }
.cms-content ul, .cms-content ol { padding-left: 22px; margin: 10px 0; }
.cms-content li { margin: 4px 0; }
.cms-content a:not([class]) { color: var(--blue); }  /* 只着色纯文字链接；visit-btn/pick-cta 等带 class 的保持自己样式 */
.cms-content code {
  font-family: var(--mono); font-size: 12px;
  background: var(--bg-hover); padding: 1px 5px; border-radius: 3px;
}
.cms-content pre {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 10px 14px; border-radius: 6px; overflow-x: auto;
  font-family: var(--mono); font-size: 12px; line-height: 1.55;
}
.cms-content blockquote {
  margin: 12px 0; padding: 6px 14px;
  border-left: 3px solid var(--border-hi);
  color: var(--text-2); font-size: 14px;
}
.cms-content table {
  width: 100%; border-collapse: collapse; margin: 12px 0;
  font-size: 13px;
}
.cms-content th, .cms-content td {
  border: 1px solid var(--border); padding: 8px 12px; text-align: left;
}
.cms-content th { background: var(--bg-card); font-weight: 600; }
.cms-content strong { font-weight: 600; }
.cms-content hr { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

/* 比价页：站长推荐渠道徽章（2026-05 新增）*/
.rec-badge {
  display: inline-block; margin-left: 6px;
  padding: 1px 7px; border-radius: 3px;
  background: linear-gradient(135deg, #ff8a00, #e53935); color: #fff;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: .02em; white-space: nowrap;
  vertical-align: middle;
  box-shadow: 0 1px 4px rgba(229,57,53,.25);
}

/* 详细比价页：选购 tips（沿用 price-guide-hint 风格，2026-05 新增）*/
.purchase-tips {
  background: var(--bg-card);
  border: 1px dashed var(--border-hi, var(--border));
  border-radius: 6px;
  padding: 12px 14px;
  margin: 0 0 10px;
  font-size: 13px; line-height: 1.75;
  color: var(--text-2);
}
.purchase-tips-title {
  font-weight: 600; color: var(--text-1);
  margin-right: 4px;
}
.purchase-tips strong { color: var(--text-1); font-weight: 600; }
.purchase-tips code {
  background: var(--bg-hover); padding: 1px 5px; border-radius: 3px;
  font-family: var(--mono); font-size: 12px; color: var(--text-1);
}
.mp-block { margin-bottom: 18px; }
.mp-title {
  font-family: var(--mono); font-size: 14px; font-weight: 600;
  margin-bottom: 8px; display: flex; gap: 6px; align-items: center; flex-wrap: wrap;
}
.mp-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.mp-table th, .mp-table td {
  text-align: left; padding: 8px 12px; border-bottom: 1px solid var(--border);
}
.mp-table th {
  font-family: var(--mono); font-size: 11px; color: var(--text-2);
  font-weight: 500; letter-spacing: .05em;
}
.mp-table td { color: var(--text-1); }
.mp-table tbody tr:hover { background: var(--bg-hover); }
.mp-empty { color: var(--text-3); font-size: 13px; padding: 8px 0; }
@media (max-width: 640px) {
  .detail-metrics { grid-template-columns: repeat(2, 1fr); }
  .detail-head { flex-direction: column; align-items: flex-start; }
  .dh-side { width: 100%; justify-content: space-between; }
}

/* ─────────── 首页「模型详细比价」4 大按钮 CTA ─────────── */
.model-compare-cta {
  background: linear-gradient(135deg, rgba(79,142,247,.06) 0%, rgba(16,185,129,.04) 100%);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  margin: 0 0 20px;
}
.model-compare-header {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 14px;
}
.model-compare-header strong { font-size: 15px; color: var(--text-1); }
.mc-tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: .08em;
  padding: 2px 8px; border-radius: 3px;
  background: var(--blue-dim); color: var(--blue);
  border: 1px solid rgba(79,142,247,.3);
}
.mc-desc { color: var(--text-2); font-size: 12px; }
/* 厂牌分组行 + 紧凑按钮（2026-07-10 改版，原 4 卡 grid） */
.model-compare-groups { display: flex; flex-direction: column; gap: 9px; }
.mc-row { display: flex; align-items: center; gap: 12px; }
.mc-row-brand {
  font-family: var(--mono); font-size: 11px;
  color: var(--text-3); letter-spacing: .06em; text-transform: uppercase;
  flex: 0 0 62px;
}
.mc-links { display: flex; flex-wrap: wrap; gap: 8px; min-width: 0; }
.mc-link {
  display: inline-block; padding: 6px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-hi, var(--border));
  border-radius: 7px;
  font-size: 13px; font-weight: 500; color: var(--text-1);
  white-space: nowrap;
  transition: all .15s ease;
  text-decoration: none;
}
.mc-link::after {
  content: "→"; margin-left: 6px;
  font-family: var(--mono); font-size: 12px; color: var(--blue);
}
.mc-link:hover {
  border-color: var(--blue);
  box-shadow: 0 3px 10px var(--blue-glow);
  transform: translateY(-1px);
  text-decoration: none;
}
.mc-link.is-primary {
  border-color: rgba(79,142,247,.55);
  background: var(--blue-dim);
  font-weight: 600;
}

@media (max-width: 640px) {
  .mc-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .mc-links {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
  .mc-link {
    text-align: center; font-size: 13px; padding: 8px 6px;
    overflow: hidden; text-overflow: ellipsis;
  }
}

/* ─────────── /price/{slug} 比价页样式 ─────────── */
.model-summary {
  background: var(--bg-card);
  border-left: 3px solid var(--blue);
  padding: 12px 16px;
  margin: 0 0 16px;
  border-radius: 0 6px 6px 0;
  font-size: 13px; line-height: 1.7; color: var(--text-1);
}
.model-summary strong { color: var(--text-1); }

.price-table-wrap {
  margin: 18px 0; overflow-x: auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.price-table {
  width: 100%; border-collapse: collapse; font-size: 13px;
  min-width: 720px;
}
.price-table thead th {
  text-align: left; padding: 12px 14px;
  background: rgba(255,255,255,.02);
  border-bottom: 1px solid var(--border);
  font-family: var(--mono); font-size: 11px;
  color: var(--text-2); font-weight: 500; letter-spacing: .04em;
  text-transform: uppercase;
}
.price-table thead th.num { text-align: right; }
.price-table tbody td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-1); vertical-align: middle;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover { background: rgba(79,142,247,.04); }
.price-table td.num {
  text-align: right; font-family: var(--mono); font-size: 13px;
}
.price-table td.channel-cell {
  color: var(--text-2); font-size: 12px;
  max-width: 280px; word-break: break-word;
}
.price-table .provider-link {
  /* 站名=行标题：白色粗体（2026-07-08 回归白色，同首页 .provider-name） */
  color: var(--text-1); font-size: 15px; font-weight: 700; text-decoration: none;
}
.price-table .provider-link:hover { color: var(--blue); }
.price-table .dim { color: var(--text-3); }
/* 按站聚合视图：站块首行淡蓝顶边，表格呈「站块」分组，站名自然成为每块标题
   （channel 平铺视图不加——同站不相邻，线会误导分组归属） */
.price-table tbody tr.provider-group-start td {
  border-top: 1px solid rgba(79,142,247,.18);
}

.price-table td.info-cell {
  text-align: right; white-space: nowrap;
}
.price-table td.info-cell .visit-btn {
  padding: 5px 12px; font-size: 11px; letter-spacing: 0;
}
.price-table .channel-cell .ch-name {
  display: block;
}
.price-table .channel-cell .ch-tags {
  display: inline-flex; gap: 4px; flex-wrap: wrap;
  margin-top: 4px;
}

/* 价格相关派生标签 */
.ptag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px; font-weight: 500;
  padding: 2px 7px; border-radius: 3px;
  letter-spacing: .03em;
  white-space: nowrap;
}
.ptag.tag-green  { background: rgba(16,185,129,.12); color: #10b981; border: 1px solid rgba(16,185,129,.28); }
.ptag.tag-blue   { background: rgba(79,142,247,.12); color: var(--blue);  border: 1px solid rgba(79,142,247,.28); }
.ptag.tag-yellow { background: rgba(217,119,6,.12);  color: #f59e0b; border: 1px solid rgba(217,119,6,.28); }
.ptag.tag-red    { background: rgba(220,38,38,.12);  color: #ef4444; border: 1px solid rgba(220,38,38,.28); }
.ptag.tag-purple { background: rgba(139,92,246,.12); color: #a78bfa; border: 1px solid rgba(139,92,246,.28); }
.ptag.tag-gray   { background: rgba(148,163,184,.12); color: var(--text-3); border: 1px solid rgba(148,163,184,.25); }

.price-cross {
  margin: 20px 0 10px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
}
.price-cross .chip { margin-left: 6px; }

/* 底部互链：紧凑厂牌分组（2026-07-10） */
.pc-groups { margin-top: 8px; display: flex; flex-direction: column; gap: 6px; }
.pc-row { display: flex; align-items: baseline; gap: 4px; }
.pc-brand {
  font-family: var(--mono); font-size: 11px;
  color: var(--text-3); letter-spacing: .06em; text-transform: uppercase;
  flex: 0 0 58px;
}
.pc-links { display: flex; flex-wrap: wrap; gap: 6px 0; min-width: 0; }
@media (max-width: 640px) {
  .pc-row { flex-direction: column; gap: 4px; }
  .pc-links .chip:first-child { margin-left: 0; }
}

/* 顶部模型 tab 条：厂牌轻分组（2026-07-10）。独立作用域——视图/排序 toolbar
   和生图页 tab 共用 .toolbar/.chip，不能被这里的规则波及 */
.price-model-switcher .pms-group { display: inline-flex; flex-wrap: wrap; gap: 8px; }
.price-model-switcher .pms-group + .pms-group {
  margin-left: 9px; padding-left: 12px;
  border-left: 1px solid var(--border);
}
@media (max-width: 680px) {
  /* 移动端单行横滑（10 chip 折 3-4 行会把比价表压出首屏）；竖线退化为 gap。
     断点跟 .toolbar 移动样式(680px)对齐，并压掉它的 label 整行/chip 拉伸规则 */
  .price-model-switcher {
    flex-wrap: nowrap; overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .price-model-switcher::-webkit-scrollbar { display: none; }
  .price-model-switcher .toolbar-label { width: auto; flex: 0 0 auto; }
  .price-model-switcher .chip { flex: 0 0 auto; white-space: nowrap; }
  .price-model-switcher .pms-group { flex: 0 0 auto; flex-wrap: nowrap; }
  .price-model-switcher .pms-group + .pms-group {
    margin-left: 4px; padding-left: 0; border-left: 0;
  }
}

/* ── 详细比价页：窄屏 卡片式堆叠（每条 tr → 卡片，每个 td → 一行 label:value）── */
@media (max-width: 920px) {
  .price-table-wrap {
    overflow-x: visible; background: transparent; border: none; border-radius: 0;
  }
  .price-table { min-width: 0; display: block; }
  .price-table thead { display: none; }
  .price-table tbody, .price-table tr { display: block; }
  .price-table tbody tr {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 8px; padding: 6px 0;
  }
  .price-table tbody tr:hover { background: var(--bg-card); }
  /* 移动端 tr 已是独立卡片，站块分组线多余且会画在卡片内每个堆叠行上——关掉 */
  .price-table tbody tr.provider-group-start td { border-top: none; }
  .price-table tbody td {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 14px;
    border-bottom: 1px dashed var(--border);
    text-align: right;
    gap: 12px; min-height: 30px;
  }
  .price-table tbody tr td:last-child { border-bottom: none; }
  .price-table tbody td::before {
    content: attr(data-label);
    color: var(--text-3);
    font-family: var(--sans); font-size: 11px; font-weight: 500;
    text-align: left;
    flex-shrink: 0;
  }
  .price-table tbody td[data-label=""]::before { content: ""; display: none; }
  /* 第一行（网站名）= 卡片标题行（2026-07-08 讨论定稿）：
     隐藏「网站名:」label——key:value 形态会让 label 反客为主抢掉标题语义；
     改 block 让站名+标签自然左对齐堆叠，站名独占顶部成为卡片标题。 */
  .price-table tbody tr td:first-child {
    display: block; text-align: left;
    border-bottom: 1px solid var(--border);
    padding: 12px 14px 8px;
  }
  .price-table tbody tr td:first-child::before { display: none; }
  .price-table tbody tr td:first-child .provider-link {
    font-size: 15px; font-weight: 700;
  }
  /* channel-cell 允许换行（多个 ptag） */
  .price-table tbody td.channel-cell {
    max-width: none;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .price-table tbody td.channel-cell .ch-name { text-align: right; }
  .price-table tbody td.channel-cell .ch-tags {
    width: 100%; justify-content: flex-end; margin-top: 4px;
  }
  /* num 列右对齐数字 */
  .price-table tbody td.num { font-family: var(--mono); }
  /* info-cell（官网按钮）单独一行居中 */
  .price-table tbody td.info-cell {
    justify-content: center; padding-top: 10px;
  }
  .price-table tbody td.info-cell .visit-btn { padding: 8px 18px; font-size: 12px; }
}

/* 比价页顶部「渠道科普」引导条 */
.price-guide-hint {
  background: var(--bg-card);
  border: 1px dashed var(--border-hi, var(--border));
  border-radius: 6px;
  padding: 10px 14px;
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--text-2);
}
.price-guide-hint a { font-weight: 500; }

/* ptag 作为链接时的 hover */
a.ptag {
  text-decoration: none;
  transition: opacity .15s;
}
a.ptag:hover {
  opacity: .8;
  text-decoration: none;
}

/* ── /verify-yourself 新版结论卡（vy- 前缀，避免与首页 .verdict 冲突）── */
.vy-cc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--silver);
  border-radius: 10px;
  padding: 28px 26px 18px;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 1px 3px rgba(0,0,0,.3), 0 8px 24px rgba(0,0,0,.2);
}
.vy-cc.pass    { border-top-color: var(--green); }
.vy-cc.warn    { border-top-color: var(--yellow); }
.vy-cc.fail    { border-top-color: var(--red); }
.vy-cc.neutral { border-top-color: var(--silver); }

.vy-eyebrow {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em;
  color: var(--text-3); text-transform: uppercase; margin-bottom: 18px;
}

.vy-dual-gauge { display: flex; gap: 24px; justify-content: center; align-items: flex-start; margin-bottom: 4px; flex-wrap: wrap; }
.vy-mini-gauge { position: relative; width: 110px; height: 110px; text-align: center; }
.vy-mini-gauge svg { display: block; transform: rotate(-90deg); }
.vy-mini-gauge .gtrack { fill: none; stroke: var(--border); stroke-width: 10; }
.vy-mini-gauge .gfill  { fill: none; stroke-width: 10; stroke-linecap: round; }
.vy-mini-gauge.pass    .gfill { stroke: var(--green); }
.vy-mini-gauge.warn    .gfill { stroke: var(--yellow); }
.vy-mini-gauge.fail    .gfill { stroke: var(--red); }
.vy-mini-gauge.neutral .gfill { stroke: var(--silver); }
.vy-mini-inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; pointer-events: none; }
.vy-mini-num { font-family: var(--mono); font-size: 34px; font-weight: 700; line-height: 1; letter-spacing: -.02em; }
.vy-mini-gauge.pass    .vy-mini-num { color: var(--green); }
.vy-mini-gauge.warn    .vy-mini-num { color: var(--yellow); }
.vy-mini-gauge.fail    .vy-mini-num { color: var(--red); }
.vy-mini-gauge.neutral .vy-mini-num { color: var(--silver); }
.vy-mini-tag { font-family: var(--mono); font-size: 11px; color: var(--text-3); margin-top: 8px; letter-spacing: .04em; }

.vy-verdict-pill {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: .02em;
  border: 1px solid;
}
.vy-cc.pass    .vy-verdict-pill { background: var(--green-dim);  color: var(--green);  border-color: rgba(0,201,123,.3); }
.vy-cc.warn    .vy-verdict-pill { background: var(--yellow-dim); color: var(--yellow); border-color: rgba(251,191,36,.3); }
.vy-cc.fail    .vy-verdict-pill { background: var(--red-dim);    color: var(--red);    border-color: rgba(248,113,113,.3); }
.vy-cc.neutral .vy-verdict-pill { background: var(--silver-dim); color: var(--text-2); border-color: var(--border-hi); }

.vy-conc-text {
  font-size: 14px; line-height: 1.7; color: var(--text-1);
  text-align: center; margin: 14px 0 16px; max-width: 440px;
}

/* Family 选择 pill（verify-yourself 表单 Step 01） */
.vy-fam-pills .vy-pill-radio {
  display: inline-flex; align-items: baseline; gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--border-hi);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px; line-height: 1.2;
  background: var(--bg-2);
  transition: border-color .15s, background .15s;
}
.vy-fam-pills .vy-pill-radio input { display: none; }
.vy-fam-pills .vy-pill-radio span { font-weight: 600; color: var(--text-1); }
.vy-fam-pills .vy-pill-radio em {
  font-style: normal; font-size: 11px; color: var(--text-3); font-family: var(--mono);
}
.vy-fam-pills .vy-pill-radio:has(input:checked) {
  background: rgba(79,142,247,.12);
  border-color: var(--blue);
}
.vy-fam-pills .vy-pill-radio:has(input:checked) span { color: var(--blue); }
.vy-fam-pills .vy-pill-radio.is-disabled {
  opacity: .45; cursor: not-allowed;
}

.vy-check-table {
  width: 100%; max-width: 440px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-2);
  overflow: hidden;
}
.vy-check-head, .vy-check-row {
  display: grid;
  padding: 6px 11px;
  font-size: 11px;
  align-items: center;
}
/* 列数动态（Claude 2 列 / GPT 1 列；Phase D 后可扩 3 列） */
.vy-check-cols-2 .vy-check-head,
.vy-check-cols-2 .vy-check-row { grid-template-columns: 1fr 32px 32px; }
.vy-check-cols-1 .vy-check-head,
.vy-check-cols-1 .vy-check-row { grid-template-columns: 1fr 48px; }
.vy-check-cols-3 .vy-check-head,
.vy-check-cols-3 .vy-check-row { grid-template-columns: 1fr 32px 32px 32px; }
.vy-check-head {
  background: var(--bg-hover); color: var(--text-3); font-family: var(--mono);
  font-size: 9px; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 11px;
}
.vy-check-head span:not(:first-child) { text-align: center; }
.vy-check-row { border-top: 1px solid var(--border); color: var(--text-2); }
.vy-check-row span:not(:first-child) {
  text-align: center; font-family: var(--mono); font-size: 12px; font-weight: 700;
}
.vy-check-row .ok   { color: var(--green); }
.vy-check-row .weak { color: var(--yellow); }
.vy-check-row .bad  { color: var(--red); }
.vy-check-row .skp  { color: var(--text-3); }
.vy-check-name { color: var(--text-1); }
.vy-check-name-hint { color: var(--text-3); font-size: 10px; margin-left: 4px; }

.vy-neutral-note { margin-top: 10px; text-align: center; font-size: 11px; color: var(--text-3); font-family: var(--mono); }

.vy-cc-footer {
  width: 100%; max-width: 440px; margin-top: 14px; padding-top: 12px;
  border-top: 1px dashed var(--border);
  display: flex; flex-direction: column; gap: 10px; align-items: center;
}
.vy-sig {
  font-family: var(--mono); font-size: 11px; color: var(--text-3);
  letter-spacing: .02em; text-align: center; line-height: 1.6;
}
.vy-sig a { color: var(--blue); text-decoration: none; font-weight: 600; }
.vy-sig a:hover { text-decoration: underline; }
.vy-share-row { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.vy-share-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 12px; font-size: 12px;
  background: var(--bg-2); border: 1px solid var(--border-hi); border-radius: 6px;
  color: var(--text-2); cursor: pointer; transition: all .15s;
  font-family: var(--sans);
}
.vy-share-btn:hover { background: var(--blue-dim); border-color: var(--blue); color: var(--blue); }
.vy-share-btn .ico { font-size: 14px; }
.vy-share-btn.vy-share-primary { background: var(--blue); border-color: var(--blue); color: #fff; font-weight: 600; }
.vy-share-btn.vy-share-primary:hover { background: #3a7be0; border-color: #3a7be0; color: #fff; }

/* ── 同类站导流（详情页 B级→S级）+ 最新收录（首页爬虫入口）2026-06-18 ── */
.similar-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px; margin: 6px 0 10px;
}
.similar-card {
  display: flex; flex-direction: column; gap: 11px;
  padding: 18px 20px; border: 2px solid var(--green); border-radius: 10px;
  background: var(--bg-card); text-decoration: none;
  transition: border-color .15s, background .15s, transform .12s, box-shadow .15s;
  box-shadow: 0 4px 16px rgba(0,201,123,.15);
}
.similar-card:hover {
  border-color: var(--green); background: var(--bg-hover); transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,201,123,.3);
}
/* B 级站导流位强化样式 */
.similar-section-top {
  margin: 24px 0 28px; padding: 22px;
  border: 2px solid var(--green); border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,201,123,.12) 0%, rgba(0,201,123,.06) 100%);
}
.similar-section-top .detail-h2 {
  color: var(--green) !important;
  font-size: 18px;
}
.similar-card-prominent {
  border: 2px solid var(--green);
  background: var(--bg-card);
  box-shadow: 0 4px 16px rgba(0,201,123,.2);
}
.similar-card-prominent:hover {
  background: var(--bg-hover);
  box-shadow: 0 6px 24px rgba(0,201,123,.35);
  transform: translateY(-3px);
  border-color: var(--green);
}
.similar-card-prominent .similar-s {
  background: var(--green);
  color: #000;
  border: none;
  font-weight: 800;
  padding: 3px 9px;
}
.similar-card-prominent .similar-go {
  color: var(--green);
  font-size: 15px;
}
.similar-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.similar-name { font-size: 17px; font-weight: 700; color: var(--text-1); }
.similar-s {
  font-size: 11px; font-weight: 800; background: var(--green); color: #000;
  border: none; border-radius: 4px; padding: 3px 9px; white-space: nowrap;
}
.similar-models { display: flex; flex-wrap: wrap; gap: 6px; }
.sm-tag {
  font-size: 12px; color: var(--text-2);
  border: 1px solid var(--border-hi); border-radius: 4px; padding: 2px 8px;
}
.similar-go { font-size: 15px; font-weight: 700; color: var(--green); margin-top: 2px; }

.recent-sites { margin: 36px 0 8px; }
.recent-sites-title {
  font-family: var(--mono); font-size: 14px; font-weight: 700; color: var(--text-2);
  margin: 0 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.recent-sites-list { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.recent-sites-list a {
  font-size: 13px; color: var(--text-2); text-decoration: none; transition: color .15s;
}
.recent-sites-list a:hover { color: var(--blue); }

/* 首页底部低调内链（承接中转站检测等，不显眼）2026-06-18 */
.home-foot-links { display: flex; flex-wrap: wrap; gap: 16px; margin: 26px 0 10px; }
.home-foot-links a { font-size: 12px; color: var(--text-3); text-decoration: none; transition: color .15s; }
.home-foot-links a:hover { color: var(--blue); }

/* ─── 页脚（俄语站新增：互链 + 方法论入口，2026-07-23）─── */
.site-footer {
  margin-top: 48px;
  padding: 20px 16px 28px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-2);
}
.footer-nav { display: flex; gap: 18px; }
.footer-nav a { color: var(--text-2); text-decoration: none; }
.footer-nav a:hover { color: var(--text-1); }
