/* L60 上路助手 — 气质：冷静、可靠，偏汽车仪表而非营销落地页。 */

:root {
  /* 配色取自乐道官方视觉：白底、炭黑字、深蓝点缀。
     只保留浅色一套——深色由播放器自己负责，路面在白底上看不清。 */
  color-scheme: light;

  --graphite-900: #16181b;
  --graphite-800: #1e2126;
  --graphite-700: #272b31;
  --graphite-600: #343941;
  --graphite-500: #4a515b;
  --warm-100: #f6f7f9;
  --warm-200: #e9ecf0;
  --warm-400: #a7aeb8;

  --brand-900: #0c2444;
  --brand-700: #14417a;      /* 深蓝主色 */
  --brand-500: #2f6fbf;
  --brand-050: #eef3fa;

  --bg: #f6f7f9;
  --bg-raised: #ffffff;
  --bg-sunken: #eff1f5;
  --line: #e3e7ec;
  --line-strong: #c8cfd8;
  --text: #2b2b2b;
  --text-dim: #5f6772;
  --text-faint: #8b939e;

  --ok: #1f7a48;
  --ok-bg: #e9f4ee;
  --warn: #8a5a12;
  --warn-bg: #fbf2df;
  --danger: #b3261e;
  --danger-bg: #fbeae8;
  --info: var(--brand-700);
  --info-bg: var(--brand-050);
  /* 丁香紫 —— 你这台车的内饰色，用作内饰相关内容的识别色 */
  --interior: #7a5aa6;
  --interior-bg: #f3edfa;

  --radius: 12px;
  --radius-lg: 18px;
  --tap: 44px;
  --maxw: 720px;
  --nav-h: 60px;
  --shadow: 0 1px 2px rgba(18,24,36,.045), 0 8px 22px -10px rgba(18,24,36,.10);
  --shadow-lg: 0 2px 6px rgba(18,24,36,.06), 0 20px 44px -16px rgba(18,24,36,.18);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB",
        "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
  padding-bottom: calc(var(--nav-h) + env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
}
h1, h2, h3, h4 { margin: 0; font-weight: 650; line-height: 1.35; letter-spacing: -.01em; }
p { margin: 0 0 .7em; }
p:last-child { margin-bottom: 0; }
a { color: inherit; }
button { font: inherit; color: inherit; }
ul, ol { margin: 0; padding-left: 1.25em; }
li { margin: .3em 0; }

/* ── 布局 ── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }
.view { padding-top: 12px; padding-bottom: 28px; animation: fade .18s ease-out; }
@keyframes fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .view { animation: none; } }

.topbar {
  position: sticky; top: 0; z-index: 30;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar-in { max-width: var(--maxw); margin: 0 auto; padding: 10px 16px;
  display: flex; align-items: center; gap: 10px; min-height: 52px; }
.topbar h1 { font-size: 17px; flex: 1; min-width: 0; }
.topbar .sub { font-size: 12px; color: var(--text-faint); font-weight: 400; }
.back {
  border: 1px solid var(--line); background: var(--bg-raised); border-radius: 9px;
  min-width: 44px; height: 44px; padding: 0 10px; cursor: pointer; font-size: 14px;
}
.back:active { background: var(--bg-sunken); }

/* ── 卡片 ── */
.card {
  background: var(--bg-raised); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 16px; margin: 12px 0; box-shadow: var(--shadow);
}
.card.flat { box-shadow: none; }
.card > h2 { font-size: 16px; margin-bottom: 8px; }
.card > h3 { font-size: 15px; margin-bottom: 6px; }
.card-hd { display: flex; align-items: baseline; gap: 8px; margin-bottom: 10px; }
.card-hd h2 { font-size: 16px; flex: 1; }

.muted { color: var(--text-dim); }
.faint { color: var(--text-faint); font-size: 13px; }
.small { font-size: 13px; }
.mono { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

/* ── 倒计时仪表 ── */
.gauge {
  background: linear-gradient(160deg, var(--graphite-800), var(--graphite-900));
  color: var(--warm-100); border: 1px solid var(--graphite-600);
  border-radius: var(--radius-lg); padding: 18px 16px; box-shadow: var(--shadow);
}
.gauge .label { font-size: 12px; letter-spacing: .12em; color: var(--warm-400); text-transform: uppercase; }
.gauge .digits { display: flex; align-items: flex-end; gap: 4px; margin: 8px 0 2px; flex-wrap: wrap; }
.gauge .num { font-size: 40px; font-weight: 700; line-height: 1; font-variant-numeric: tabular-nums; }
.gauge .unit { font-size: 14px; color: var(--warm-400); margin-right: 8px; }
.gauge .abs { font-size: 13px; color: var(--warm-400); margin-top: 6px; }
.gauge .place { font-size: 13px; color: var(--warm-400); }

/* ── 进度条 ── */
.bar { height: 6px; border-radius: 3px; background: var(--bg-sunken); overflow: hidden; border: 1px solid var(--line); }
.bar > i { display: block; height: 100%; background: var(--ok); transition: width .3s ease; }
.stage-row { display: flex; gap: 6px; margin: 10px 0 4px; }
.stage-dot { flex: 1; height: 4px; border-radius: 2px; background: var(--line); }
.stage-dot.done { background: var(--ok); }
.stage-dot.now { background: var(--text); }

/* ── 列表项 / 勾选 ── */
.item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 11px 0; border-top: 1px solid var(--line);
}
.item:first-child { border-top: 0; }
.item-body { flex: 1; min-width: 0; }
.item-text { font-size: 15px; }
.item-detail { font-size: 13px; color: var(--text-dim); margin-top: 4px; }
.item.is-done .item-text { color: var(--text-faint); text-decoration: line-through; text-decoration-thickness: 1px; }

.check {
  flex: none; width: var(--tap); height: var(--tap); margin: -8px 0 -8px -8px;
  display: grid; place-items: center; background: none; border: 0; cursor: pointer; border-radius: 10px;
}
.check:active { background: var(--bg-sunken); }
.check i {
  width: 22px; height: 22px; border: 2px solid var(--line-strong); border-radius: 6px;
  display: grid; place-items: center; font-style: normal; font-size: 14px; line-height: 1;
}
.check[data-state="done"] i { background: var(--ok); border-color: var(--ok); color: #fff; }
.check[data-state="issue"] i { background: var(--danger); border-color: var(--danger); color: #fff; }
.check[data-state="later"] i { background: var(--warn); border-color: var(--warn); color: #fff; }

/* 三态说明条 */
.tri-legend { display: flex; gap: 12px; flex-wrap: wrap; font-size: 12px; color: var(--text-dim); margin-top: 6px; }
.tri-legend b { font-weight: 600; }

/* ── 标记 ── */
.tag {
  display: inline-block; font-size: 11px; padding: 2px 8px; border-radius: 999px;
  border: 1px solid var(--line-strong); color: var(--text-dim); white-space: nowrap;
  max-width: 100%; overflow-wrap: anywhere;
}
.chips .tag { white-space: normal; }
.tag.ok { color: var(--ok); border-color: var(--ok); background: var(--ok-bg); }
.tag.warn { color: var(--warn); border-color: var(--warn); background: var(--warn-bg); }
.tag.danger { color: var(--danger); border-color: var(--danger); background: var(--danger-bg); }
.tag.interior { color: var(--interior); border-color: var(--interior); }

.callout {
  border-left: 3px solid var(--warn); background: var(--warn-bg);
  padding: 10px 12px; border-radius: 0 10px 10px 0; font-size: 14px; margin: 10px 0;
}
.callout.danger { border-color: var(--danger); background: var(--danger-bg); }
.callout.info { border-color: var(--info); background: var(--info-bg); }
.callout.ok { border-color: var(--ok); background: var(--ok-bg); }
.callout b { display: block; margin-bottom: 2px; }

/* ── 按钮 ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-height: var(--tap); padding: 0 16px; border-radius: 11px; cursor: pointer;
  border: 1px solid var(--line-strong); background: var(--bg-raised); font-size: 15px;
  text-decoration: none; font-weight: 500;
}
.btn:active { transform: translateY(1px); }
.btn.primary { background: var(--text); color: var(--bg); border-color: var(--text); }
.btn.danger { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn.block { display: flex; width: 100%; }
.btn.sm { min-height: 44px; font-size: 13px; padding: 0 12px; border-radius: 9px; }
.btn-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }

/* ── 首页任务行 ── */
.todo {
  display: flex; align-items: center; gap: 12px; padding: 13px 14px; margin: 8px 0;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-raised);
  text-decoration: none; min-height: var(--tap);
}
.todo:active { background: var(--bg-sunken); }
.todo .n { flex: none; width: 22px; height: 22px; border-radius: 6px; background: var(--bg-sunken);
  display: grid; place-items: center; font-size: 12px; color: var(--text-dim); font-weight: 600; }
.todo.warn .n { background: var(--warn-bg); color: var(--warn); }
.todo .go { color: var(--text-faint); flex: none; }

/* ── 底部导航 ── */
.nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg-raised) 92%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.nav-in { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.nav a {
  min-height: var(--nav-h); display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 2px; text-decoration: none; color: var(--text-faint); font-size: 11px;
}
.nav a.on { color: var(--text); }
.nav a.sos { color: var(--danger); }
.nav svg { width: 22px; height: 22px; }

/* ── 应急 ── */
.sos-grid { display: grid; gap: 12px; margin: 12px 0; }
.sos-btn {
  display: block; text-decoration: none; padding: 18px 16px; border-radius: var(--radius-lg);
  border: 2px solid var(--line-strong); background: var(--bg-raised); min-height: 84px;
}
.sos-btn .t { font-size: 19px; font-weight: 650; }
.sos-btn .s { font-size: 14px; color: var(--text-dim); margin-top: 3px; }
.sos-btn.red { border-color: var(--danger); background: var(--danger-bg); }
.sos-btn.red .t { color: var(--danger); }
.sos-btn.amber { border-color: var(--warn); background: var(--warn-bg); }
.sos-btn.amber .t { color: var(--warn); }
.sos-btn:active { transform: scale(.995); }

.steps { counter-reset: s; padding: 0; list-style: none; margin: 8px 0 0; }
.steps li {
  counter-increment: s; position: relative; padding: 10px 0 10px 40px;
  border-top: 1px solid var(--line); font-size: 16px; line-height: 1.55;
}
.steps li:first-child { border-top: 0; }
.steps li::before {
  content: counter(s); position: absolute; left: 0; top: 11px;
  width: 26px; height: 26px; border-radius: 8px; background: var(--text); color: var(--bg);
  display: grid; place-items: center; font-size: 13px; font-weight: 700;
}
.nevers { list-style: none; padding: 0; margin: 8px 0 0; }
.nevers li { position: relative; padding: 8px 0 8px 26px; font-size: 15px; border-top: 1px solid var(--line); }
.nevers li:first-child { border-top: 0; }
.nevers li::before { content: "✕"; position: absolute; left: 4px; top: 8px; color: var(--danger); font-weight: 700; }

.tel {
  display: flex; align-items: center; gap: 12px; min-height: 56px; padding: 10px 14px;
  border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--bg-raised);
  text-decoration: none; margin: 8px 0; flex-wrap: wrap;
}
.tel .num { font-size: 22px; font-weight: 700; letter-spacing: .02em;
  flex: 0 1 auto; min-width: 0; overflow-wrap: anywhere; }
.tel .when { flex: 1 1 140px; min-width: 0; }
.tel .when { font-size: 13px; color: var(--text-dim); }
.tel.big .num { font-size: 26px; color: var(--danger); }

/* ── 表单 ── */
.field { margin: 12px 0; }
.field label { display: block; font-size: 13px; color: var(--text-dim); margin-bottom: 5px; }
.field input, .field select, .field textarea {
  width: 100%; min-height: var(--tap); padding: 9px 12px; font: inherit; color: var(--text);
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: 10px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--info); outline-offset: 1px; border-color: var(--info);
}
.field .hint { font-size: 12px; color: var(--text-faint); margin-top: 4px; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* ── 表格 ── */
.tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 10px -16px; padding: 0 16px; }
table.cmp { border-collapse: collapse; font-size: 13px; min-width: 100%; }
table.cmp th, table.cmp td { border: 1px solid var(--line); padding: 7px 10px; text-align: right; white-space: nowrap; }
table.cmp th:first-child, table.cmp td:first-child { text-align: left; position: sticky; left: 0; background: var(--bg-raised); }
table.cmp thead th { background: var(--bg-sunken); font-weight: 600; }
table.cmp td.lo { color: var(--ok); font-weight: 600; }
table.cmp td.hi { color: var(--text-dim); }
table.cmp tr.grouprow td { background: var(--bg-sunken); font-weight: 600; text-align: left; }

/* ── 来源 ── */
.sources { margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--line); }
.sources h4 { font-size: 12px; color: var(--text-faint); letter-spacing: .06em; margin-bottom: 6px; }
.src { font-size: 12px; color: var(--text-dim); border-top: 1px solid var(--line); }
.src:first-of-type { border-top: 0; }
.src a { display: block; min-height: 44px; padding: 9px 0; color: var(--info);
  text-decoration: none; overflow-wrap: anywhere; }
.src a:active { background: var(--bg-sunken); }
.src a .name { text-decoration: underline; text-decoration-thickness: 1px; }
.src .meta { color: var(--text-faint); text-decoration: none; display: block; margin-top: 2px; }

/* ── 动画播放器 ── */
.player { background: var(--graphite-900); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--graphite-600); }
.player .stage { position: relative; width: 100%; aspect-ratio: 16 / 10; background: #0f1114; }
.player svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.player .cap {
  padding: 11px 14px; background: #14171b; border-top: 1px solid var(--graphite-700);
  color: var(--warm-100); font-size: 15px; line-height: 1.45; min-height: 64px;
  display: flex; align-items: center;
}
.player .ctl { display: flex; align-items: center; gap: 8px; padding: 10px 12px;
  background: var(--graphite-800); flex-wrap: wrap; }
.player .ctl button:disabled { opacity: .5; }
.player .ctl button { min-height: 44px; min-width: 44px; border-radius: 9px; border: 1px solid var(--graphite-600);
  background: var(--graphite-700); color: var(--warm-100); cursor: pointer; padding: 0 12px; }
.player .track {
  flex: 1 1 90px; min-width: 70px; height: 16px; cursor: pointer;
  display: flex; align-items: center; position: relative;
}
.player .track::before {
  content: ''; position: absolute; left: 0; right: 0; height: 4px;
  background: var(--graphite-600); border-radius: 2px;
}
.player .track > i { position: relative; height: 4px; background: var(--warm-100); border-radius: 2px; }
.player .time { font-size: 12px; color: var(--warm-400); font-variant-numeric: tabular-nums; min-width: 46px; text-align: right; }
.fallback { padding: 14px; color: var(--warm-100); font-size: 14px; }

.transcript li { padding: 8px 0; border-top: 1px solid var(--line); font-size: 14px; display: flex; gap: 10px; }
.transcript li:first-child { border-top: 0; }
.transcript .t { flex: none; color: var(--text-faint); font-variant-numeric: tabular-nums; font-size: 12px; padding-top: 2px; }
.transcript { list-style: none; padding: 0; margin: 0; }
.transcript li.on { background: var(--bg-sunken); border-radius: 8px; padding-left: 8px; padding-right: 8px; }

/* ── 自评 ── */
.skill { padding: 10px 0; border-top: 1px solid var(--line); }
.skill:first-child { border-top: 0; }
.skill .t { font-size: 14px; margin-bottom: 7px; }
.seg { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.seg button {
  min-height: 44px; border-radius: 9px; border: 1px solid var(--line); background: var(--bg);
  font-size: 12px; cursor: pointer; padding: 0 4px;
}
.seg button.on { border-width: 2px; font-weight: 600; }
.seg button.on[data-v="none"] { border-color: var(--line-strong); }
.seg button.on[data-v="escort"] { border-color: var(--warn); color: var(--warn); background: var(--warn-bg); }
.seg button.on[data-v="solo"] { border-color: var(--ok); color: var(--ok); background: var(--ok-bg); }
.seg button.on[data-v="review"] { border-color: var(--info); color: var(--info); background: var(--info-bg); }

/* ── 杂项 ── */
.rowlink {
  display: flex; align-items: center; gap: 12px; padding: 14px; margin: 10px 0; min-height: var(--tap);
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-raised); text-decoration: none;
}
.rowlink .t { flex: 1; }
.rowlink .t b { display: block; font-size: 15px; font-weight: 600; }
.rowlink .t span { font-size: 13px; color: var(--text-dim); }
.rowlink:active { background: var(--bg-sunken); }

.banner {
  position: sticky; top: 52px; z-index: 25; margin: 0 -16px 8px; padding: 8px 16px;
  background: var(--warn-bg); color: var(--warn); font-size: 13px; border-bottom: 1px solid var(--line);
}
.offline-note { display: none; }
body.is-offline .offline-note { display: block; }

.kv { display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; font-size: 14px; }
.kv dt { color: var(--text-dim); }
.kv dd { margin: 0; }

.chips { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }

/* ── 桌面端 ── */
@media (min-width: 860px) {
  :root { --maxw: 940px; }
  body { padding-bottom: 0; padding-top: 0; }
  .nav { position: sticky; top: 0; bottom: auto; border-top: 0; border-bottom: 1px solid var(--line); }
  .nav-in { grid-template-columns: repeat(4, minmax(0, 160px)); justify-content: center; }
  .topbar { top: var(--nav-h); }
  .two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }
  .two > * { margin: 0; }
  .sos-grid { grid-template-columns: 1fr 1fr; }
  .banner { top: calc(var(--nav-h) + 52px); }
}

/* 焦点可见 */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--info); outline-offset: 2px; border-radius: 6px;
}
@media print { .nav, .topbar { display: none; } }

/* ══════════════════════════════════════════════════════════
   质感层：向乐道官方视觉靠——大留白、克制的分隔线、
   深蓝只用在真正需要引导的地方，其余交给层级和间距。
   ══════════════════════════════════════════════════════════ */

body { background: var(--bg); letter-spacing: -.003em; }
h1, h2, h3, h4 { letter-spacing: -.018em; font-weight: 600; }

/* 顶栏与导航：白底、极细描边，滚动时靠模糊而不是阴影分层 */
.topbar {
  background: color-mix(in srgb, var(--bg-raised) 82%, transparent);
  border-bottom: 1px solid var(--line);
}
.topbar h1 { font-size: 17px; font-weight: 600; }
.nav {
  background: color-mix(in srgb, var(--bg-raised) 90%, transparent);
  border-top: 1px solid var(--line);
}
.nav a.on { color: var(--brand-700); font-weight: 600; }

/* 卡片：更大的圆角与内边距，阴影压得很低，靠留白撑开层级 */
.card {
  border-radius: var(--radius-lg);
  border-color: var(--line);
  padding: 18px;
  margin: 14px 0;
  box-shadow: var(--shadow);
}
.card > h2 { font-size: 16px; margin-bottom: 10px; }
.card-hd { margin-bottom: 12px; }

/* 主按钮换成品牌深蓝 */
.btn { border-radius: 12px; font-weight: 500; }
.btn.primary {
  background: var(--brand-700); color: #fff; border-color: var(--brand-700);
  box-shadow: 0 1px 2px rgba(12,36,68,.18), 0 8px 18px -10px rgba(12,36,68,.5);
}
.btn.primary:active { background: var(--brand-900); }
.btn:focus-visible { outline-color: var(--brand-500); }

/* 行式入口：hover / 按下有明确反馈，右侧箭头收敛 */
.todo, .rowlink {
  border-radius: var(--radius); box-shadow: 0 1px 2px rgba(18,24,36,.04);
  transition: border-color .15s ease, box-shadow .15s ease, transform .12s ease;
}
.todo:hover, .rowlink:hover { border-color: var(--line-strong); box-shadow: var(--shadow); }
.todo:active, .rowlink:active { transform: translateY(1px); }
.todo .go, .rowlink .go { font-size: 18px; color: var(--line-strong); }
.rowlink .t b { font-weight: 600; }

/* 倒计时仪表：深蓝仪表盘，在白底上是唯一的重色块，视线自然先落在这 */
.gauge {
  background: linear-gradient(158deg, #17385f 0%, #0c2444 62%, #091b34 100%);
  border-color: #17385f; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); color: #eef2f7; padding: 20px 18px;
}
.gauge .label { color: #93a7c0; letter-spacing: .14em; font-size: 11px; }
.gauge .num { font-size: 44px; letter-spacing: -.02em; }
.gauge .unit, .gauge .abs, .gauge .place { color: #9fb2c8; }

/* 提示条：左侧色条细一点，底色更淡 */
.callout { border-left-width: 3px; border-radius: 0 12px 12px 0; padding: 12px 14px; }
.callout b { font-weight: 600; }

/* 标签：默认更轻，只有语义标签才带底色 */
.tag { padding: 3px 9px; font-size: 11px; border-color: var(--line-strong); }
.tag.interior { color: var(--interior); border-color: var(--interior); background: var(--interior-bg); }

/* 应急页保持高对比——这是唯一需要一眼看见的页面 */
.sos-btn { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.sos-btn .t { font-weight: 600; }

/* 输入控件 */
.field input, .field select, .field textarea { background: var(--bg-raised); border-radius: 11px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline-color: var(--brand-500); border-color: var(--brand-500);
}

/* 播放器：白底页面里的一块深色屏幕，边缘收紧、投影稍重，像嵌进去的屏 */
.player {
  border-radius: var(--radius-lg); border-color: #23272e;
  box-shadow: var(--shadow-lg);
}

/* 完整文字版：每一步配一张该场景的缩略图，不再是纯文字时间轴 */
.transcript li { padding: 10px 4px; gap: 12px; align-items: flex-start; border-radius: 10px; }
.transcript li.on { background: var(--brand-050); padding-left: 8px; padding-right: 8px; }
.transcript .thumb {
  flex: none; width: 88px; aspect-ratio: 16 / 10; border-radius: 8px; overflow: hidden;
  background: #0f1114; border: 1px solid var(--line); position: relative;
}
.transcript .thumb svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.transcript .body { flex: 1; min-width: 0; }
.transcript .body .t { color: var(--text-faint); font-size: 12px; font-variant-numeric: tabular-nums; }
.transcript .body .c { display: block; margin-top: 2px; }
.transcript li.on .body .c { font-weight: 600; }
@media (max-width: 380px) {
  .transcript .thumb { width: 68px; }
}
