/* 汽水儿 · 三栏信息流框架（复刻参考图布局骨架：浮动胶囊顶栏 + 左导航卡 + 中信息流 + 右侧榜单 + 渐变模糊背景） */
:root {
  --bg: #f2f3f6;
  --card: #ffffff;
  --line: rgba(20, 24, 40, .06);
  --txt: #1f2329;
  --sub: #6b7280;
  --muted: #9aa1a9;
  --accent: #ff5a45;
  --accent-soft: #fff0ed;
  --accent-2: #ff8a3d;
  --blue: #4c7dff;
  --radius: 14px;
  --shadow: 0 2px 12px rgba(24, 28, 48, .05);
  --shadow-lg: 0 10px 34px rgba(24, 28, 48, .10);
  --maxw: 1280px;
}
body.dark {
  --bg: #16181d;
  --card: #1e2128;
  --line: rgba(255, 255, 255, .07);
  --txt: #e8eaee;
  --sub: #a7adb8;
  --muted: #7c828c;
  --accent: #ff6a55;
  --accent-soft: #2c2024;
  --shadow: 0 2px 12px rgba(0, 0, 0, .3);
  --shadow-lg: 0 10px 34px rgba(0, 0, 0, .45);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--txt);
  font: 14px/1.6 -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased; padding-bottom: 96px;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
.ic { fill: currentColor; vertical-align: -2px; flex: none; }
/* 图标雪碧图：整页输出一次，仅承载 <symbol>，不参与布局 */
.ic-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
/* 请求在途的按钮：禁点并给出视觉反馈 */
[data-like].is-busy, [data-collect].is-busy, [data-subscribe].is-busy, [data-follow].is-busy { opacity: .55; pointer-events: none; }
.muted { color: var(--muted); }
.center { text-align: center; }
.pad { padding: 14px 18px; margin: 0; }
h1, h2, h3 { margin: 0; font-weight: 650; }

/* 背景：顶部彩色高斯模糊带 */
.bg-blob {
  position: fixed; inset: 0 0 auto 0; height: 460px; z-index: 0; pointer-events: none;
  background:
    radial-gradient(52% 46% at 12% 0%, rgba(255, 178, 214, .55), transparent 60%),
    radial-gradient(46% 42% at 42% -6%, rgba(196, 181, 253, .55), transparent 62%),
    radial-gradient(50% 44% at 76% 2%, rgba(168, 208, 255, .55), transparent 62%),
    radial-gradient(40% 36% at 98% 12%, rgba(255, 214, 165, .45), transparent 60%);
  filter: blur(28px) saturate(1.15);
}
body.dark .bg-blob { opacity: .28; }

/* ===== 顶栏 ===== */
.topbar { position: sticky; top: 10px; z-index: 60; padding: 0 18px; }
.topbar-in {
  max-width: var(--maxw); margin: 0 auto; height: 58px; display: flex; align-items: center; gap: 14px;
  background: var(--card); background: color-mix(in srgb, var(--card) 88%, transparent); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow); padding: 0 8px 0 18px;
}
.logo { display: flex; align-items: baseline; gap: 8px; flex: none; }
.logo img { width: 26px; height: 26px; align-self: center; }
.logo-txt { font-size: 20px; font-weight: 800; letter-spacing: .5px; font-family: "Kaiti SC", "STKaiti", "KaiTi", serif; }
.logo-sub { font-size: 12px; color: var(--muted); }
.nav { display: flex; gap: 4px; margin-left: 6px; }
.nav-item { padding: 7px 14px; border-radius: 999px; color: var(--sub); font-weight: 500; }
.nav-item:hover { background: var(--accent-soft); color: var(--accent); }
.nav-item.active { background: var(--accent); color: #fff; box-shadow: 0 4px 12px rgba(255, 90, 69, .3); }
.search { margin-left: auto; display: flex; align-items: center; background: var(--bg); border-radius: 999px; padding: 0 4px 0 14px; height: 36px; min-width: 210px; }
.search input { border: 0; background: transparent; outline: none; width: 100%; font-size: 13px; }
.search button { border: 0; background: transparent; color: var(--muted); cursor: pointer; width: 30px; height: 30px; border-radius: 50%; }
.search button:hover { color: var(--accent); background: var(--card); }
.top-actions { display: flex; align-items: center; gap: 8px; flex: none; }
.avatar-btn img { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--card); box-shadow: var(--shadow); }

/* ===== 按钮 ===== */
.btn { display: inline-flex; align-items: center; gap: 6px; height: 34px; padding: 0 14px; border-radius: 999px; border: 1px solid transparent; background: transparent; cursor: pointer; font-weight: 550; white-space: nowrap; transition: .16s; }
.btn.sm { height: 28px; padding: 0 11px; font-size: 13px; }
.btn.block { width: 100%; justify-content: center; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 16px rgba(255, 90, 69, .28); }
.btn-primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn-ghost { border-color: var(--line); color: var(--sub); background: var(--card); }
.btn-ghost:hover { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 40%, transparent); }
.btn-ghost.on { color: var(--accent); background: var(--accent-soft); border-color: color-mix(in srgb, var(--accent) 30%, transparent); }
.btn-warn { background: #ff9f0a; color: #fff; }
.btn-danger { background: #e24444; color: #fff; }
.btn-danger:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn-danger:disabled { filter: none; transform: none; opacity: .6; cursor: default; }
.btn[disabled], .btn.is-busy { opacity: .55; pointer-events: none; }
.btn-light { background: #fff; color: var(--accent); }

/* ===== 布局 ===== */
.page { position: relative; z-index: 1; max-width: var(--maxw); margin: 18px auto 0; padding: 0 18px; }
.grid { display: grid; grid-template-columns: 246px minmax(0, 1fr) 306px; gap: 16px; align-items: start; }
/* 左右侧栏：内容超出仍可滚动，但不显示任何滚动条（Firefox / 旧 Edge / WebKit 全覆盖） */
.col-left, .col-right {
  position: sticky; top: 82px; display: flex; flex-direction: column; gap: 14px;
  max-height: calc(100vh - 100px); overflow: auto;
  scrollbar-width: none; -ms-overflow-style: none;
}
.col-main { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.col-left::-webkit-scrollbar, .col-right::-webkit-scrollbar { width: 0; height: 0; display: none; background: transparent; }
.col-left::-webkit-scrollbar-thumb, .col-right::-webkit-scrollbar-thumb { background: transparent; border: 0; }

/* ===== 卡片 ===== */
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px 18px; }
.card-hd { display: flex; align-items: center; gap: 8px; font-size: 15px; margin-bottom: 12px; }
.card-hd > span { position: relative; padding-left: 11px; }
.card-hd > span::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 14px; border-radius: 2px; background: var(--accent); }
.card-hd .more { margin-left: auto; font-size: 12px; color: var(--muted); font-weight: 400; }
.card-hd .more:hover { color: var(--accent); }
.card-hd em { font-style: normal; font-size: 12px; color: var(--muted); font-weight: 400; }
.card-hd .sort-tabs { margin-left: auto; display: flex; gap: 4px; }
.card-hd .sort-tabs a { padding: 3px 9px; border-radius: 999px; background: var(--bg); color: var(--sub); }
.card-hd .sort-tabs a.on { background: var(--accent-soft); color: var(--accent); }

/* 左栏：个人卡 */
.me-card { padding: 18px; }
.me-top { display: flex; gap: 12px; align-items: center; }
.me-avatar { width: 48px; height: 48px; border-radius: 50%; flex: none; }
.me-name { font-size: 16px; font-weight: 650; display: flex; align-items: center; gap: 6px; }
.me-bio { font-size: 12px; color: var(--muted); margin-top: 3px; }
.badge-admin, .badge-host { font-style: normal; font-size: 10px; padding: 1px 6px; border-radius: 4px; background: var(--accent-soft); color: var(--accent); font-weight: 500; }
.badge-host { background: #eef3ff; color: var(--blue); }
.me-menu { list-style: none; margin: 14px 0 0; padding: 0; }
.me-menu li a { display: flex; align-items: center; gap: 9px; padding: 8px 6px; border-radius: 8px; color: var(--sub); font-size: 13px; }
.me-menu li a:hover { background: var(--accent-soft); color: var(--accent); }
.me-menu i { width: 5px; height: 5px; border-radius: 50%; background: var(--muted); flex: none; }
.me-menu i.hot { background: var(--accent); }
.me-guest { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }

.tips { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.tips li { font-size: 13px; color: var(--sub); padding-left: 12px; position: relative; }
.tips li::before { content: ""; position: absolute; left: 0; top: 8px; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
.tips li.muted { color: var(--muted); font-size: 12px; }
.tips a:hover { color: var(--accent); }

.host-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.host-list > li { display: flex; align-items: center; gap: 8px; }
.host { display: flex; align-items: center; gap: 10px; padding: 6px; border-radius: 10px; flex: 1; min-width: 0; }
.host:hover { background: var(--bg); }
.host img { width: 34px; height: 34px; border-radius: 50%; flex: none; }
.host-txt { min-width: 0; }
.host-txt b { display: block; font-size: 13px; font-weight: 600; }
.host-txt i { display: block; font-style: normal; font-size: 12px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.btn-follow { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); background: var(--card); color: var(--accent); cursor: pointer; line-height: 1; }
.btn-follow:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-follow.on { background: var(--bg); color: var(--muted); border-color: var(--line); }

/* ===== 侧栏选项卡（编辑推荐 / 主播推荐 合并） ===== */
/* 外框、背景、阴影沿用 .card，切换只作用于 .tab-panels 内容区 */
.tab-bar { display: flex; align-items: center; gap: 2px; margin: -2px 0 12px; }
.tab-item {
  position: relative; padding: 6px 10px 9px; border: 0; border-radius: 9px 9px 0 0;
  background: transparent; color: var(--muted); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: color .18s, background .18s;
}
.tab-item:hover { color: var(--sub); background: var(--bg); }
.tab-item.on { color: var(--txt); }
.tab-item.on::after { content: ""; position: absolute; left: 10px; right: 10px; bottom: 2px; height: 2px; border-radius: 2px; background: var(--accent); }
.tab-item:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
.tab-bar .more { margin-left: auto; align-self: center; font-size: 12px; color: var(--muted); }
.tab-bar .more:hover { color: var(--accent); }
.tab-note { font-size: 11.5px; color: var(--muted); margin: 8px 0 0; }
/* 高度显式过渡：两栏内容不等高时也不会让侧栏突然跳动 */
.tab-panels { position: relative; overflow: hidden; transition: height .26s cubic-bezier(.4, 0, .2, 1); }
.tab-panel {
  position: absolute; left: 0; right: 0; top: 0; opacity: 0; transform: translateY(6px);
  visibility: hidden; pointer-events: none; transition: opacity .2s ease, transform .24s ease, visibility .2s;
}
.tab-panel.on { position: relative; opacity: 1; transform: none; visibility: visible; pointer-events: auto; }
@media (prefers-reduced-motion: reduce) {
  .tab-panels, .tab-panel, .tab-item { transition: none; }
}

.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.stat-grid div { text-align: center; background: var(--bg); border-radius: 10px; padding: 9px 4px; }
.stat-grid b { display: block; font-size: 16px; color: var(--accent); font-weight: 700; font-variant-numeric: tabular-nums; }
.stat-grid i { font-style: normal; font-size: 11px; color: var(--muted); }
.stat-foot { margin: 10px 0 0; font-size: 11px; color: var(--muted); text-align: center; line-height: 1.5; }

/* 在线人数：顶栏胶囊 + 侧栏标题右侧 */
@keyframes qsr-blink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
.online-pill {
  display: inline-flex; align-items: center; gap: 6px; height: 30px; padding: 0 11px; flex: none;
  border-radius: 999px; background: var(--accent-soft); color: var(--accent); font-size: 12px; white-space: nowrap;
}
.online-pill b { font-weight: 700; font-variant-numeric: tabular-nums; }
.online-pill em { font-style: normal; }
.card-hd .on-line { margin-left: auto; display: inline-flex; align-items: center; gap: 5px; color: var(--accent); }
.dot.live { animation: qsr-blink 2s ease-in-out infinite; }
.empty-live { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12px; color: var(--sub); margin: 0 0 14px; }
@media (prefers-reduced-motion: reduce) { .dot.live { animation: none; } }

/* 左栏：活跃听众头像墙 */
.fan-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 6px; }
.fan-list li { display: flex; flex-direction: column; align-items: center; gap: 1px; min-width: 0; }
.fan { display: flex; flex-direction: column; align-items: center; gap: 5px; width: 100%; min-width: 0; }
.fan img { width: 36px; height: 36px; border-radius: 50%; transition: box-shadow .15s; }
.fan:hover img { box-shadow: 0 0 0 2px var(--accent); }
.fan b { font-size: 11px; font-weight: 500; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fan-list li > i { font-style: normal; font-size: 10px; color: var(--muted); }
.fan-list .muted { grid-column: 1 / -1; font-size: 12px; }

/* 右栏：榜单 */
.rank { list-style: none; margin: 0; padding: 0; counter-reset: r; }
.rank li { display: flex; gap: 10px; padding: 7px 0; align-items: flex-start; }
.rank .rk { width: 18px; height: 18px; border-radius: 5px; background: var(--bg); color: var(--muted); font-size: 11px; display: grid; place-items: center; flex: none; margin-top: 2px; font-weight: 700; }
.rank .rk.top { background: var(--accent); color: #fff; }
.rank-txt { min-width: 0; }
.rank-txt span { display: block; font-size: 13px; line-height: 1.45; }
.rank-txt:hover span { color: var(--accent); }
.rank-txt i { display: block; font-style: normal; font-size: 11px; color: var(--muted); margin-top: 2px; }

.clip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.clip-cell { position: relative; display: block; background: var(--bg); border-radius: 12px; padding: 12px 10px; min-height: 92px; overflow: hidden; border: 1px solid transparent; }
.clip-cell:hover { border-color: color-mix(in srgb, var(--accent) 35%, transparent); background: var(--accent-soft); }
.cc-play { position: absolute; right: 10px; top: 10px; width: 24px; height: 24px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 10px; }
.cc-dur { font-size: 11px; color: var(--accent); font-weight: 600; }
.cc-txt { display: block; font-size: 13px; margin: 6px 0 4px; line-height: 1.4; }
.cc-meta { display: block; font-size: 11px; color: var(--muted); }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-cloud a { font-size: 12px; padding: 4px 10px; border-radius: 999px; background: var(--bg); color: var(--sub); }
.tag-cloud a i { font-style: normal; color: var(--muted); margin-left: 3px; }
.tag-cloud a:hover, .tag-cloud a.on { background: var(--accent); color: #fff; }
.tag-cloud a:hover i { color: rgba(255, 255, 255, .8); }
.tag-inline { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.tag-inline a { font-size: 12px; color: var(--blue); background: #eef3ff; padding: 2px 9px; border-radius: 999px; }
body.dark .tag-inline a { background: #232a3a; }

.latest { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.latest li a { display: block; font-size: 13px; }
.latest li b { font-weight: 600; }
.latest li span { display: block; color: var(--sub); margin: 1px 0; }
.latest li i { font-style: normal; font-size: 11px; color: var(--muted); }
.latest a:hover span { color: var(--accent); }

.cta-card { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; border: 0; }
.cta-card h3 { font-size: 16px; }
.cta-card p { font-size: 13px; opacity: .92; margin: 8px 0 14px; }

/* ===== 筛选条 ===== */
.notice {
  display: flex; align-items: flex-start; gap: 10px; background: linear-gradient(90deg, var(--accent-soft), color-mix(in srgb, var(--accent-2) 12%, transparent));
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent); border-radius: 12px; padding: 10px 14px; margin-bottom: 14px; font-size: 13px; color: var(--txt);
}
.notice b { flex: none; font-size: 11px; background: var(--accent); color: #fff; border-radius: 999px; padding: 2px 9px; margin-top: 1px; }
.rec-list { display: flex; flex-direction: column; gap: 10px; }
.rec-item { display: flex; gap: 10px; align-items: center; padding: 6px; border-radius: 10px; }
.rec-item:hover { background: var(--bg); }
.rec-item img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; flex: none; }
.rec-item span { min-width: 0; }
.rec-item b { display: block; font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rec-item i { display: block; font-style: normal; font-size: 11.5px; color: var(--muted); }
.rec-item em { font-style: normal; font-size: 10.5px; color: var(--accent); background: var(--accent-soft); border-radius: 4px; padding: 1px 5px; margin-left: 6px; }

.filter { display: flex; align-items: center; gap: 12px; padding: 10px 14px; }
.filter-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.ft { padding: 6px 14px; border-radius: 999px; font-size: 13px; color: var(--sub); }
.ft:hover { color: var(--accent); }
.ft.on { background: var(--accent); color: #fff; font-weight: 550; }
.filter-tip { margin-left: auto; font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); flex: none; }
.dot.live { background: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.crumb { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--sub); padding: 0 4px; }

/* ===== 信息流卡片 ===== */
.feed { display: flex; flex-direction: column; gap: 14px; }
.pc { transition: .18s; }
.pc:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.pc-hd { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.pc-user { display: flex; align-items: center; gap: 9px; min-width: 0; }
.pc-user img { width: 34px; height: 34px; border-radius: 50%; flex: none; }
.pc-user span { min-width: 0; }
.pc-user b { display: block; font-size: 13px; font-weight: 600; }
.pc-user i { display: block; font-style: normal; font-size: 12px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pc-chip { margin-left: auto; display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--sub); background: var(--bg); padding: 4px 10px; border-radius: 999px; flex: none; max-width: 40%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pc-chip:hover { color: var(--accent); background: var(--accent-soft); }
.pc-title { font-size: 17px; line-height: 1.45; margin-bottom: 6px; }
.pc-title a:hover { color: var(--accent); }
.pc-desc { color: var(--sub); font-size: 13.5px; margin: 0 0 12px; }
.pc-desc a { color: var(--blue); }
.pc-body { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 12px; }
.pc-main { flex: 1; min-width: 0; }
.pc-main .pc-desc { margin-bottom: 0; }
.pc-cover { flex: none; display: block; width: 112px; aspect-ratio: 1 / 1; border-radius: 12px; overflow: hidden; background: var(--bg); box-shadow: var(--shadow); }
.pc-cover img { display: block; width: 100%; height: 100%; object-fit: cover; }
.pc-ft { display: flex; align-items: center; gap: 16px; padding-top: 10px; border-top: 1px dashed var(--line); }
.pc-ft .m { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--muted); background: none; border: 0; cursor: pointer; padding: 0; }
.pc-ft .m:hover, .pc-ft .m.on { color: var(--accent); }
.pc-ft .like.on { color: var(--accent); }
.pc-ft .more { margin-left: auto; font-size: 12.5px; color: var(--accent); }
.clip-card .clip-badge { margin-left: auto; font-size: 12px; color: var(--accent); background: var(--accent-soft); padding: 4px 10px; border-radius: 999px; font-variant-numeric: tabular-nums; }

/* 内嵌波形播放条 */
.wp { display: flex; align-items: center; gap: 12px; background: var(--bg); border-radius: 12px; padding: 9px 12px; margin-bottom: 12px; }
.wp-btn { width: 34px; height: 34px; border-radius: 50%; border: 0; background: var(--accent); color: #fff; display: grid; place-items: center; cursor: pointer; flex: none; box-shadow: 0 4px 12px rgba(255, 90, 69, .3); }
.wp-btn:hover { transform: scale(1.06); }
.wp-btn.sm { width: 28px; height: 28px; }
.wp-btn.big { width: 46px; height: 46px; }
.wp-track { position: relative; flex: 1; height: 30px; overflow: hidden; border-radius: 6px; cursor: pointer; }
.wp-bars { position: absolute; inset: 0; background-image: repeating-linear-gradient(90deg, rgba(120, 130, 155, .30) 0 2px, transparent 2px 5px); -webkit-mask-image: linear-gradient(90deg, #000 0 100%); mask-image: linear-gradient(90deg, #000 0 100%); }
.wp-fill { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: rgba(255, 90, 69, .18); background: color-mix(in srgb, var(--accent) 18%, transparent); border-right: 2px solid var(--accent); }
.wp-time { font-size: 12px; color: var(--muted); font-variant-numeric: tabular-nums; flex: none; }
.wp-link { font-size: 12px; color: var(--accent); flex: none; }
.wp-clip { background: linear-gradient(90deg, var(--accent-soft), var(--bg)); }

/* 空态 */
.empty { text-align: center; padding: 40px 20px; }
.empty h3 { font-size: 16px; margin-bottom: 6px; }
.empty p { color: var(--muted); margin: 0 0 14px; }

/* 分页 */
.pager { display: flex; gap: 6px; justify-content: center; padding: 6px 0 2px; flex-wrap: wrap; }
.pager .pg { min-width: 32px; height: 32px; padding: 0 10px; border-radius: 8px; background: var(--card); border: 1px solid var(--line); display: grid; place-items: center; font-size: 13px; color: var(--sub); }
.pager .pg:hover { color: var(--accent); border-color: var(--accent); }
.pager .pg.on { background: var(--accent); color: #fff; border-color: var(--accent); }

/* 简洁分页 ‹ 1/3 ›：整组居中，页码用胶囊底衬压住，避免在灰底上糊成一行裸文本 */
.pager-simple { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 18px; }
.pager-simple .pgs {
  width: 30px; height: 30px; display: grid; place-items: center; flex: none;
  border: 1px solid var(--line); border-radius: 9px; background: var(--card); box-shadow: var(--shadow);
  color: var(--sub); font-size: 15px; line-height: 1; cursor: pointer;
  transition: color .12s, border-color .12s;
}
.pager-simple .pgs:hover { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 40%, transparent); }
.pager-simple .pgs.off { opacity: .35; box-shadow: none; pointer-events: none; }
.pager-simple .pgs-num {
  display: inline-flex; align-items: center; justify-content: center; gap: 1px; flex: none;
  min-width: 48px; height: 30px; padding: 0 10px; border-radius: 9px;
  background: var(--accent-soft); color: var(--accent);
  font-size: 13px; font-weight: 700; font-variant-numeric: tabular-nums;
}
.pager-simple .pgs-num i { font-style: normal; font-weight: 400; opacity: .55; margin: 0 1px; }

/* ===== 播放器（单集页） ===== */
.player-card { padding: 20px; }
.pl-top { display: flex; gap: 16px; }
.pl-cover { width: 108px; height: 108px; border-radius: 14px; object-fit: cover; flex: none; box-shadow: var(--shadow); }
.pl-meta { min-width: 0; flex: 1; }
.pl-meta h1 { font-size: 20px; line-height: 1.4; margin: 8px 0 6px; }
.pl-meta .pc-chip { margin-left: 0; }
.pl-by { display: flex; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: var(--muted); }
.pl-by a { color: var(--accent); }
.pl-intro { font-size: 13px; color: var(--sub); margin: 10px 0 0; }
.pl-bar { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.pl-track { position: relative; flex: 1; height: 8px; border-radius: 999px; background: var(--bg); cursor: pointer; }
.pl-fill { position: absolute; inset: 0 auto 0 0; width: 0; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 999px; }
.pl-knob { position: absolute; top: 50%; left: 0; width: 14px; height: 14px; margin: -7px 0 0 -7px; border-radius: 50%; background: #fff; border: 2px solid var(--accent); box-shadow: var(--shadow); }
.pl-time { font-size: 12.5px; color: var(--sub); font-variant-numeric: tabular-nums; flex: none; }
.pl-time b { color: var(--txt); }

/* 时间线密度条 */
.tl { display: flex; align-items: flex-end; gap: 2px; height: 62px; margin-top: 16px; padding: 6px 0 0; position: relative; background: linear-gradient(180deg, transparent, var(--bg)); border-radius: 8px; }
.tl-bar { flex: 1; min-width: 0; border: 0; padding: 0; background: rgba(154, 161, 169, .30); background: color-mix(in srgb, var(--muted) 30%, transparent); border-radius: 2px 2px 0 0; cursor: pointer; align-self: flex-end; transition: .12s; }
.tl-bar:hover { background: var(--blue); }
.tl-bar.has { background: rgba(255, 90, 69, .55); background: color-mix(in srgb, var(--accent) 55%, transparent); }
.tl-bar.hot { background: var(--accent); }
.tl-cursor { position: absolute; top: 0; bottom: 0; width: 2px; background: var(--txt); left: 0; opacity: .5; pointer-events: none; }
.tl-scale { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); margin-top: 6px; font-variant-numeric: tabular-nums; }
.tl-hint { color: var(--sub); }

.pl-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.pl-actions b { font-weight: 600; font-variant-numeric: tabular-nums; opacity: .85; }

/* 输入面板 */
.compose { margin-top: 14px; background: var(--bg); border-radius: 12px; padding: 14px; }
.compose textarea, .compose input[type=text] { width: 100%; border: 1px solid var(--line); background: var(--card); border-radius: 10px; padding: 9px 12px; outline: none; resize: vertical; margin-top: 8px; }
.compose textarea:focus { border-color: var(--accent); }
.cp-hd { display: flex; align-items: center; gap: 10px; }
.cp-hd b { font-size: 13.5px; }
.cp-x { margin-left: auto; border: 0; background: none; color: var(--muted); cursor: pointer; }
.cp-ft { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.clip-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 10px; font-size: 13px; }
.clip-row input { width: 78px; border: 1px solid var(--line); border-radius: 8px; padding: 5px 8px; background: var(--card); text-align: center; font-variant-numeric: tabular-nums; }

/* 时点评论列表 */
.tc-list { display: flex; flex-direction: column; }
.tc { display: flex; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); }
.tc:first-child { border-top: 0; }
.tc-time { flex: none; width: 56px; height: 26px; display: grid; place-items: center; border-radius: 8px; background: var(--accent-soft); color: var(--accent); font-size: 12px; font-weight: 650; font-variant-numeric: tabular-nums; }
.tc-time:hover { background: var(--accent); color: #fff; }
.tc-body { flex: 1; min-width: 0; }
.tc-hd { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); }
.tc-hd img { width: 22px; height: 22px; border-radius: 50%; }
.tc-hd a { color: var(--txt); font-weight: 600; }
.tc-hd a:hover { color: var(--accent); }
.tc-body p { margin: 5px 0 6px; font-size: 14px; color: var(--txt); }
.tc-ft { display: flex; gap: 14px; }
.tc-ft button { display: inline-flex; align-items: center; gap: 4px; border: 0; background: none; color: var(--muted); font-size: 12px; cursor: pointer; padding: 0; }
.tc-ft button:hover, .tc-ft .like.on { color: var(--accent); }
.notes { background: #fffbe8; border: 1px dashed #f0d98a; border-radius: 10px; padding: 10px 12px; margin-bottom: 10px; }
body.dark .notes { background: #2a2620; border-color: #4a4030; }
.notes b { font-size: 12.5px; }
.notes ul { margin: 6px 0 0; padding-left: 16px; }
.notes li { font-size: 13px; color: var(--sub); }
.notes a { color: var(--accent); font-variant-numeric: tabular-nums; }

/* 片段列表 */
.clip-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 10px; }
.clip-list.two { grid-template-columns: 1fr 1fr; }
.clip-item { display: flex; flex-direction: column; gap: 3px; background: var(--bg); border-radius: 12px; padding: 12px 14px; border: 1px solid transparent; position: relative; }
.clip-item:hover { border-color: color-mix(in srgb, var(--accent) 35%, transparent); background: var(--accent-soft); }
.clip-item b { font-size: 13.5px; font-weight: 600; padding-right: 26px; }
.clip-item i { font-style: normal; font-size: 11.5px; color: var(--muted); font-variant-numeric: tabular-nums; }
.ci-play { position: absolute; right: 12px; top: 12px; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; }

/* 单集行 */
.ep-list, .pod-list { list-style: none; margin: 0; padding: 0; }
.ep-row { display: flex; align-items: center; gap: 12px; padding: 9px 6px; border-radius: 10px; }
.ep-row:hover { background: var(--bg); }
.ep-main { flex: 1; min-width: 0; }
.ep-main b { display: block; font-size: 14px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ep-main i { display: block; font-style: normal; font-size: 12px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ep-meta { font-size: 12px; color: var(--muted); font-variant-numeric: tabular-nums; flex: none; }
.pod-list li + li { border-top: 1px solid var(--line); }
.pod-list a { display: flex; flex-direction: column; padding: 10px 6px; }
.pod-list b { font-size: 14px; }
.pod-list i { font-style: normal; font-size: 12px; color: var(--muted); }
.pod-list a:hover b { color: var(--accent); }

/* 专辑 */
.pod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); gap: 14px; }
.pod-cell { display: flex; gap: 12px; padding: 12px; }
.pod-cover { width: 74px; height: 74px; border-radius: 12px; object-fit: cover; flex: none; }
.pod-cover.big { width: 150px; height: 150px; }
.pod-txt { min-width: 0; }
.pod-txt b { display: block; font-size: 15px; margin-bottom: 3px; }
.pod-txt i { display: block; font-style: normal; font-size: 12px; color: var(--muted); }
.pod-txt p { font-size: 12.5px; color: var(--sub); margin: 6px 0 0; }
.pod-hd { display: flex; gap: 18px; }
.pod-info { flex: 1; min-width: 0; }
.pod-info h1 { font-size: 21px; margin-bottom: 8px; }
.pod-by { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; font-size: 12.5px; color: var(--muted); }
.pod-by a { display: inline-flex; align-items: center; gap: 6px; color: var(--txt); font-weight: 600; }
.pod-by img { width: 24px; height: 24px; border-radius: 50%; }
.pod-intro { font-size: 13.5px; color: var(--sub); margin: 10px 0 0; }
.pod-act { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }

/* ===== 播客专辑页：竖版封面卡 / TOP10 / 分类 / 播单 ===== */
/* 中间列铺白色画布，区块靠留白分隔（参考图为纯白底） */
.page-podcasts .col-main {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 20px 22px 24px;
}
.page-podcasts .col-main > .card { background: transparent; border: 0; box-shadow: none; border-radius: 0; padding: 0 0 6px; }
/* 栏目之间加分隔线。--line 只有 6% 透明度，在灰底上几乎看不见，这里单独调深一档 */
.pod-sec { display: block; margin-top: 26px; }
.pod-sec + .pod-sec {
  margin-top: 30px; padding-top: 28px;
  border-top: 1px solid color-mix(in srgb, var(--muted) 26%, transparent);
}
.sec-hd { font-size: 19px; font-weight: 700; letter-spacing: .2px; }
.sec-row { display: flex; align-items: baseline; }
.sec-more { margin-left: auto; font-size: 12.5px; color: var(--muted); }
.sec-more:hover { color: var(--accent); }
.sec-more i { font-style: normal; }

.pcard-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; margin-top: 14px; }
/* 今日播客推荐固定 6 条：3 列 × 2 行正好铺满 */
.pcard-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
/* 封面完整方形：1:1 显示，方形源图零裁切；渐变遮罩上移保证文字对比度 */
.pcard-grid-sq .pcard-in { aspect-ratio: 1 / 1; }
.pcard-grid-sq .pcard-shade { background: linear-gradient(180deg, rgba(14, 16, 24, 0) 20%, rgba(14, 16, 24, .55) 50%, rgba(14, 16, 24, .9) 100%); }
.pcard-grid > .empty { grid-column: 1 / -1; }
.pcard { position: relative; border-radius: 14px; overflow: hidden; background: var(--card); box-shadow: var(--shadow); }
.pcard-in { display: block; position: relative; aspect-ratio: 3 / 4; }
.pcard-cover { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.pcard:hover .pcard-cover { transform: scale(1.05); }
.pcard-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,16,24,0) 32%, rgba(14,16,24,.5) 60%, rgba(14,16,24,.88) 100%); }
.pcard-txt { position: absolute; left: 0; right: 0; bottom: 44px; padding: 0 11px; }
.pcard-txt i { display: block; font-style: normal; font-size: 11.5px; color: rgba(255,255,255,.7); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pcard-txt b { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 13px; line-height: 1.42; margin-top: 3px; color: #fff; }
.pcard-foot { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; display: flex; align-items: center; padding: 0 9px 9px; pointer-events: none; }
.pcard-foot em { font-style: normal; font-size: 11.5px; color: rgba(255,255,255,.82); font-variant-numeric: tabular-nums; }
.pcard-play { pointer-events: auto; width: 30px; height: 30px; margin-left: auto; border: 0; border-radius: 50%; background: #fff; color: var(--accent); display: grid; place-items: center; cursor: pointer; box-shadow: 0 3px 10px rgba(0,0,0,.24); transition: transform .15s; }
.pcard-play:hover { transform: scale(1.1); }

.top-flag { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 600; color: var(--accent); background: var(--accent-soft); padding: 4px 11px; border-radius: 999px; }
.top-tabs { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 12px; }
.top-tabs a { font-size: 16.5px; font-weight: 650; color: var(--muted); }
.top-tabs a:hover, .top-tabs a.on { color: var(--txt); }
.top-list { list-style: none; margin: 10px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 18px; }
.top-list li { display: flex; gap: 8px; padding: 9px 8px; border-radius: 12px; min-width: 0; overflow: hidden; }
.top-list li:hover { background: var(--bg); }
.tl-rk { width: 15px; flex: none; text-align: center; font-size: 14px; font-weight: 800; font-style: italic; color: var(--muted); margin-top: 14px; }
.tl-rk.top { color: var(--accent); }
.tl-main { display: flex; gap: 10px; flex: 1; min-width: 0; }
.tl-cover { width: 62px; height: 62px; border-radius: 10px; overflow: hidden; flex: none; }
.tl-cover img { width: 100%; height: 100%; object-fit: cover; }
.tl-txt { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.tl-name { font-size: 11.5px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tl-name:hover { color: var(--accent); }
.tl-title { font-size: 13.5px; line-height: 1.45; margin-top: 2px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tl-title:hover { color: var(--accent); }
.tl-foot { display: flex; align-items: center; margin-top: auto; padding-top: 5px; }
.tl-foot em { font-style: normal; font-size: 11.5px; color: var(--muted); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tl-play { width: 24px; height: 24px; margin-left: auto; border: 0; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; cursor: pointer; flex: none; }
.tl-play:hover { background: var(--accent); color: #fff; }

.cat-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 0; }
.cpill { padding: 5px 13px; border-radius: 9px; background: var(--bg); border: 1px solid transparent; font-size: 12.5px; color: var(--sub); }
.cpill:hover { color: var(--accent); background: var(--accent-soft); }
.cpill.on { background: var(--accent-soft); color: var(--accent); border-color: transparent; font-weight: 600; }
.cat-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 15px 12px; margin-top: 14px; }
.cat-cell { display: block; min-width: 0; }
.cat-cell img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow); transition: transform .18s; }
.cat-cell span { display: block; font-size: 12.5px; margin-top: 6px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cat-cell:hover img { transform: translateY(-2px); }
.cat-cell:hover span { color: var(--accent); }


/* 帖子详情 */
.detail { padding: 22px 24px; }
.dt-title { font-size: 22px; line-height: 1.4; margin-bottom: 12px; }
.dt-body { font-size: 15px; line-height: 1.85; color: var(--txt); white-space: normal; }
.ref-box { display: flex; align-items: center; gap: 10px; background: var(--bg); border-radius: 10px; padding: 10px 14px; margin-top: 16px; }
.ref-box b { font-size: 13.5px; }
.ref-box i { font-style: normal; font-size: 12px; color: var(--muted); }
.rb-tag { font-size: 11px; color: var(--blue); background: #eef3ff; padding: 2px 8px; border-radius: 999px; }
body.dark .rb-tag { background: #232a3a; }
.pc-list { margin-top: 8px; }
.pc-row { display: flex; gap: 10px; padding: 12px 0; border-top: 1px solid var(--line); }
.pc-row img { width: 32px; height: 32px; border-radius: 50%; flex: none; }
.pc-row > div { flex: 1; min-width: 0; }
.pc-row p { margin: 4px 0 6px; font-size: 14px; }
.pc-row.sub { margin-left: 42px; background: var(--bg); border-radius: 10px; padding: 10px; border-top: 0; }

/* 表单 */
.form-card form { display: flex; flex-direction: column; gap: 12px; }
.fi { display: flex; flex-direction: column; gap: 6px; position: relative; }
.fi > span { font-size: 13px; color: var(--sub); font-weight: 550; }
.fi input, .fi textarea, .fi select { border: 1px solid var(--line); background: var(--bg); border-radius: 10px; padding: 10px 12px; outline: none; width: 100%; }
.fi input:focus, .fi textarea:focus, .fi select:focus { border-color: var(--accent); background: var(--card); }
.fi .hint { font-style: normal; font-size: 11.5px; color: var(--muted); }
.fi-row { display: grid; grid-template-columns: 1fr 2fr; gap: 12px; }
.fi-ft { display: flex; gap: 10px; align-items: center; }

/* ===== 单集表单：音频来源二选一 + 封面预览 ===== */
.src-set { display: flex; flex-direction: column; gap: 8px; }
.fi-lg { display: flex; align-items: baseline; gap: 8px; font-size: 13px; font-weight: 550; color: var(--sub); }
.src-opts { display: grid; gap: 8px; }
.src-opt { display: grid; grid-template-columns: 16px minmax(0, 1fr); gap: 1px 10px; align-items: start; border: 1px solid var(--line); background: var(--card); border-radius: 12px; padding: 11px 13px; cursor: pointer; transition: .16s; }
.src-opt input[type=radio] { width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--accent); cursor: pointer; }
.src-opt b { font-size: 13.5px; font-weight: 600; }
.src-opt .hint { grid-column: 2; }
.src-opt:hover { border-color: var(--accent); }
.src-opt.on { border-color: var(--accent); background: var(--accent-soft); }
.src-panes { display: flex; flex-direction: column; gap: 8px; }
.src-pane[hidden] { display: none; }
.src-pane input[type=url] { border: 1px solid var(--line); background: var(--bg); border-radius: 10px; padding: 10px 12px; outline: none; width: 100%; }
.src-pane input[type=url]:focus { border-color: var(--accent); background: var(--card); }
.src-pane input[type=file] { border: 1px solid var(--line); background: var(--bg); border-radius: 10px; padding: 9px 12px; width: 100%; font-size: 13px; color: var(--sub); }
.cover-row { display: flex; gap: 14px; align-items: flex-start; }
.cover-prev { width: 112px; height: 112px; flex: none; border-radius: 12px; object-fit: cover; background: var(--bg); box-shadow: var(--shadow); }
.cover-ctl { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.cover-ctl input[type=file] { border: 1px solid var(--line); background: var(--bg); border-radius: 10px; padding: 9px 12px; width: 100%; font-size: 13px; color: var(--sub); }

/* 登录注册 / 个人主页 */
.auth-card { max-width: 460px; margin: 20px auto; padding: 28px; }
.auth-card h1 { font-size: 22px; margin-bottom: 4px; }
.auth-card form { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.auth-card .center { text-align: center; margin: 16px 0 0; font-size: 13px; }
.auth-card a { color: var(--accent); }
.profile { display: flex; gap: 16px; align-items: center; }
.pf-avatar { width: 76px; height: 76px; border-radius: 50%; flex: none; }
.pf-info { flex: 1; min-width: 0; }
.pf-info h1 { font-size: 20px; display: flex; gap: 8px; align-items: center; }
.pf-info p { color: var(--muted); font-size: 13px; margin: 4px 0 10px; }
.pf-stat { display: flex; flex-wrap: wrap; gap: 16px; font-size: 12px; color: var(--muted); }
.pf-stat b { display: block; font-size: 16px; color: var(--txt); }
.pf-act { display: flex; flex-direction: column; gap: 8px; flex: none; }
.search-big { display: flex; gap: 10px; }
.search-big input { flex: 1; border: 1px solid var(--line); background: var(--bg); border-radius: 999px; padding: 10px 16px; outline: none; }

/* 分享卡 */
.share-card { padding: 24px; }
.sc-hd { display: flex; align-items: center; gap: 10px; }
.sc-hd img { width: 40px; height: 40px; border-radius: 50%; }
.sc-hd b { display: block; font-size: 14px; }
.sc-hd i { font-style: normal; font-size: 12px; color: var(--muted); }
.sc-hd .clip-badge { margin-left: auto; }
.sc-title { font-size: 22px; line-height: 1.4; margin: 16px 0 4px; }
.sc-from { color: var(--muted); font-size: 13px; margin: 0 0 18px; }
.sc-from a { color: var(--accent); }
.sc-bar { display: flex; align-items: center; gap: 14px; background: var(--bg); border-radius: 14px; padding: 14px 16px; }
.sc-track { position: relative; flex: 1; height: 34px; background-image: repeating-linear-gradient(90deg, rgba(120, 130, 155, .28) 0 2px, transparent 2px 5px); border-radius: 6px; cursor: pointer; }
.sc-fill { position: absolute; inset: 0 auto 0 0; width: 0; background: rgba(255, 90, 69, .22); background: color-mix(in srgb, var(--accent) 22%, transparent); border-right: 2px solid var(--accent); }
.sc-time { font-size: 12.5px; color: var(--sub); font-variant-numeric: tabular-nums; }
.sc-loop { margin-top: 8px; font-size: 12px; color: var(--muted); }
.sc-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; align-items: center; }
.sc-tip { margin: 12px 0 0; font-size: 12px; }

/* ===== 迷你播放器 ===== */
.mini-player {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 14px; z-index: 80;
  width: min(var(--maxw), calc(100% - 28px)); height: 64px; display: flex; align-items: center; gap: 14px;
  background: var(--card); background: color-mix(in srgb, var(--card) 94%, transparent); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 0 12px 0 8px;
}
.mini-player[hidden] { display: none; }
.mp-cover { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; flex: none; }
.mp-info { width: 200px; min-width: 0; flex: none; }
.mp-title { display: block; font-size: 13px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mp-title:hover { color: var(--accent); }
.mp-sub { font-size: 11.5px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mp-body { flex: 1; display: flex; align-items: center; gap: 10px; min-width: 0; }
.mp-btn { width: 30px; height: 30px; border-radius: 50%; border: 0; background: transparent; color: var(--sub); cursor: pointer; display: grid; place-items: center; flex: none; }
.mp-btn:hover { color: var(--accent); }
.mp-btn.main { width: 38px; height: 38px; background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(255, 90, 69, .35); }
.mp-track { position: relative; flex: 1; height: 6px; border-radius: 999px; background: var(--bg); cursor: pointer; min-width: 60px; }
.mp-buffered { position: absolute; inset: 0 auto 0 0; width: 0; background: rgba(154, 161, 169, .25); background: color-mix(in srgb, var(--muted) 25%, transparent); border-radius: 999px; }
.mp-fill { position: absolute; inset: 0 auto 0 0; width: 0; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 999px; }
.mp-knob { position: absolute; top: 50%; left: 0; width: 12px; height: 12px; margin: -6px 0 0 -6px; border-radius: 50%; background: #fff; border: 2px solid var(--accent); }
.mp-time { font-size: 11.5px; color: var(--muted); font-variant-numeric: tabular-nums; flex: none; }
.mp-right { display: flex; align-items: center; gap: 6px; flex: none; }
.mp-speed { border: 1px solid var(--line); background: var(--card); border-radius: 8px; padding: 3px 4px; font-size: 12px; cursor: pointer; }
.mp-close { border: 0; background: none; color: var(--muted); cursor: pointer; font-size: 14px; }
.mp-close:hover { color: var(--accent); }

/* ===== 侧边工具 / 页脚 / 提示 ===== */
.side-tools { position: fixed; right: 14px; bottom: 96px; z-index: 70; display: flex; flex-direction: column; gap: 6px; }
.side-tools button, .side-tools a { width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--line); background: var(--card); color: var(--sub); display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow); font-size: 15px; }
.side-tools button:hover, .side-tools a:hover { color: var(--accent); border-color: var(--accent); }
.footer { position: relative; z-index: 1; text-align: center; color: var(--muted); font-size: 12px; padding: 34px 16px 26px; }
.footer-links { margin-top: 6px; display: flex; gap: 14px; justify-content: center; }
.footer-links a:hover { color: var(--accent); }
.toast-wrap { position: fixed; top: 78px; left: 50%; transform: translateX(-50%); z-index: 120; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.toast { background: rgba(32, 36, 48, .93); color: #fff; padding: 9px 18px; border-radius: 999px; font-size: 13px; box-shadow: var(--shadow-lg); animation: pop .2s ease; }
.toast.ok { background: rgba(30, 168, 105, .95); }
.toast.err { background: rgba(226, 68, 68, .95); }
.toast.wait { background: rgba(224, 154, 22, .95); }
@keyframes pop { from { opacity: 0; transform: translateY(-6px); } }
.flash { padding: 10px 14px; border-radius: 10px; font-size: 13px; }
.flash.ok { background: #e9f9f0; color: #16804a; }
.flash.err { background: #fdecec; color: #c93030; }
.flash.wait { background: #fff6e0; color: #9a6b00; }
body.dark .flash.ok { background: #16281f; }
body.dark .flash.err { background: #2b1a1a; }
body.dark .flash.wait { background: #2a2416; }

/* 弹窗（举报） */
.modal-mask { position: fixed; inset: 0; background: rgba(15, 18, 26, .45); z-index: 110; display: grid; place-items: center; padding: 20px; }
.modal { background: var(--card); border-radius: 16px; padding: 22px; width: min(420px, 100%); box-shadow: var(--shadow-lg); }
.modal h3 { font-size: 16px; margin-bottom: 12px; }
.modal .reasons { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.modal .reasons label { font-size: 13px; padding: 5px 12px; border-radius: 999px; background: var(--bg); cursor: pointer; }
.modal .reasons input { display: none; }
.modal .reasons input:checked + span { color: var(--accent); font-weight: 600; }
.modal textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 9px 12px; background: var(--bg); outline: none; resize: vertical; }
.modal-ft { display: flex; gap: 10px; justify-content: flex-end; margin-top: 14px; }

/* 弹窗（删除二次确认） */
.del-modal h3 { color: #e24444; }
.del-tt { margin: 0 0 12px; font-size: 15px; font-weight: 600; line-height: 1.4; }
.del-tt i { display: block; font-style: normal; font-weight: 400; font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.del-warn { margin: 0 0 8px; font-size: 13px; color: var(--sub); }
.del-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.del-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; font-size: 12.5px; padding: 6px 0; border-bottom: 1px dashed var(--line); }
.del-list li span { color: var(--muted); }
.del-list li b { font-size: 13.5px; font-variant-numeric: tabular-nums; }
.del-list li.zero { opacity: .45; }
.del-notes { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 4px; }
.del-notes li { font-size: 12px; color: var(--muted); padding-left: 12px; position: relative; }
.del-notes li::before { content: ''; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: #e24444; opacity: .5; }

.err { min-height: 100vh; display: grid; place-content: center; justify-items: center; gap: 6px; text-align: center; position: relative; z-index: 1; }
.err img { width: 54px; }
.err h1 { font-size: 44px; color: var(--accent); }
.err p { color: var(--muted); margin: 0 0 10px; }
.err-act { display: flex; gap: 10px; }

/* ===== 帖子卡片（参考图样式） ===== */
.post-card { padding: 20px 22px; }
.post-card .pc-user img { width: 42px; height: 42px; }
.pu-txt b { font-size: 15px !important; }
.pu-txt i { display: flex; align-items: center; gap: 7px; margin-top: 3px; }
.pu-txt em { font-style: normal; font-size: 11px; color: var(--blue); background: #eef3ff; padding: 1px 7px; border-radius: 6px; }
body.dark .pu-txt em { background: #232a3a; }
.pu-txt i span { font-size: 11.5px; color: var(--muted); }
.pc-topic { margin-left: auto; color: #8b9ab5; font-size: 14px; flex: none; }
.pc-topic:hover { color: var(--accent); }
.pc-title.big { font-size: 20px; font-weight: 700; margin: 14px 0 8px; letter-spacing: -.2px; }
.read-more { color: var(--accent); margin-left: 8px; white-space: nowrap; }
.pc-ft-new { gap: 10px; flex-wrap: wrap; border-top: 0; padding-top: 16px; margin-top: 6px; }
.pill { display: inline-flex; align-items: center; gap: 6px; height: 32px; padding: 0 14px; border-radius: 10px; border: 0; background: var(--bg); color: var(--sub); font-size: 13px; cursor: pointer; }
.pill:hover { color: var(--accent); }
.pill.on { color: var(--accent); background: var(--accent-soft); }
.pill.dots { width: 32px; padding: 0; justify-content: center; letter-spacing: 1px; }
.date { font-size: 12.5px; color: var(--muted); }
.talk { margin-left: auto; border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent); color: var(--accent); border-radius: 10px; padding: 5px 13px; font-size: 13px; background: transparent; }
.talk:hover { background: var(--accent-soft); }

/* 图片网格 */
.pics { display: grid; gap: 6px; margin: 14px 0 4px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pics[data-n="1"] { grid-template-columns: minmax(0, 66%); }
.pics[data-n="2"], .pics[data-n="4"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pics .pic { position: relative; border: 0; padding: 0; background: var(--bg); border-radius: 10px; overflow: hidden; cursor: zoom-in; aspect-ratio: 1 / 1; }
.pics[data-n="1"] .pic { aspect-ratio: 4 / 3; }
.pics .pic img { width: 100%; height: 100%; object-fit: cover; transition: .28s; }
.pics .pic:hover img { transform: scale(1.05); }
.pic-more { position: absolute; right: 6px; bottom: 6px; background: rgba(0, 0, 0, .55); color: #fff; font-size: 11px; padding: 2px 8px; border-radius: 999px; }
.pics-detail { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pics-detail .pic { aspect-ratio: 4 / 3; }
.pics-tip { font-size: 12px; margin: 6px 0 0; }

/* ===== 灯箱 ===== */
.lb { position: fixed; inset: 0; z-index: 200; background: rgba(8, 9, 12, .94); }
.lb[hidden] { display: none; }
.lb-mask { position: absolute; inset: 0; }
.lb-stage { position: relative; height: 100%; display: grid; place-items: center; padding: 44px 60px; }
.lb-stage img { max-width: 100%; max-height: 82vh; border-radius: 8px; object-fit: contain; box-shadow: 0 20px 60px rgba(0, 0, 0, .5); }
.lb-cap { position: absolute; left: 0; right: 0; bottom: 8px; text-align: center; color: #cfd3da; font-size: 12.5px; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 66px; border: 0; border-radius: 12px; background: rgba(255, 255, 255, .08); color: #fff; font-size: 26px; cursor: pointer; z-index: 2; }
.lb-nav.prev { left: 14px; }
.lb-nav.next { right: 14px; }
.lb-nav:hover { background: rgba(255, 255, 255, .18); }
.lb-count { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); color: #e6e8ec; font-size: 13px; background: rgba(255, 255, 255, .1); padding: 4px 12px; border-radius: 999px; z-index: 2; }
.lb-close { position: absolute; top: 14px; right: 16px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .12); color: #fff; font-size: 16px; cursor: pointer; z-index: 2; }
.lb-close:hover { background: rgba(255, 255, 255, .24); }
body.lb-on { overflow: hidden; }

/* ===== 上传器与资料编辑 ===== */
.up-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: 8px; margin-top: 8px; }
.up-cell { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 1 / 1; background: var(--bg); cursor: grab; }
.up-cell img { width: 100%; height: 100%; object-fit: cover; }
.up-cell.drag { opacity: .4; }
.up-del { position: absolute; right: 4px; top: 4px; width: 20px; height: 20px; border: 0; border-radius: 50%; background: rgba(0, 0, 0, .55); color: #fff; cursor: pointer; font-size: 12px; line-height: 1; }
.up-del:hover { background: var(--accent); }
.up-tag { position: absolute; left: 4px; bottom: 4px; background: var(--accent); color: #fff; font-size: 10px; padding: 1px 6px; border-radius: 5px; }
.up-no { position: absolute; left: 4px; bottom: 4px; background: rgba(0, 0, 0, .5); color: #fff; font-size: 10px; padding: 1px 6px; border-radius: 5px; }
.up-add { display: grid; place-content: center; gap: 2px; text-align: center; border: 1px dashed var(--line); border-radius: 10px; aspect-ratio: 1 / 1; cursor: pointer; background: var(--bg); color: var(--muted); }
.up-add:hover { border-color: var(--accent); color: var(--accent); }
.up-add span { font-size: 20px; line-height: 1; }
.up-add i { font-style: normal; font-size: 11px; }
.hint { font-style: normal; font-size: 11.5px; color: var(--muted); }
.fi > span em { font-style: normal; color: var(--muted); font-weight: 400; font-size: 11.5px; margin-left: 8px; }
.av-row { display: flex; gap: 16px; align-items: center; padding: 4px 0 14px; }
.av-preview { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; background: var(--bg); flex: none; }
.av-ops { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.av-ops .hint { max-width: 460px; }
.menu-pop { position: absolute; z-index: 130; background: var(--card); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-lg); padding: 6px; min-width: 132px; }
.menu-pop button { display: block; width: 100%; text-align: left; border: 0; background: none; padding: 8px 10px; border-radius: 8px; font-size: 13px; color: var(--sub); cursor: pointer; }
.menu-pop button:hover { background: var(--bg); color: var(--accent); }
.menu-pop button.danger { color: #d34a4a; }

/* 首页：热评滚动横幅（两份副本 + translateX(-50%) 做无缝循环，间距只能写在 item 上） */
.buzz { display: flex; align-items: center; gap: 12px; background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 0 12px 0 14px; height: 46px; margin-bottom: 14px; }
.bz-tag { flex: none; display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--accent); }
.bz-track { flex: 1; min-width: 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 92%, transparent); }
.bz-run { display: flex; width: max-content; animation: qsr-marquee 50s linear infinite; }
.bz-track:hover .bz-run, .bz-track:focus-within .bz-run { animation-play-state: paused; }
@keyframes qsr-marquee { to { transform: translateX(-50%); } }
.bz-item { display: inline-flex; align-items: center; gap: 6px; flex: none; height: 28px; padding: 0 11px; margin-right: 8px; border-radius: 999px; background: var(--bg); font-size: 12px; white-space: nowrap; }
.bz-item b { font-weight: 600; color: var(--txt); }
.bz-item i { font-style: normal; color: var(--sub); }
.bz-item em { font-style: normal; color: var(--muted); font-size: 11px; }
.bz-item:hover { background: var(--accent-soft); }
.bz-item:hover i { color: var(--accent); }
@media (prefers-reduced-motion: reduce) {
  .bz-run { animation: none; }
  .bz-track { overflow-x: auto; }
}

/* 单集页：最近在听 */
.pl-fans { display: flex; align-items: center; gap: 10px; margin-top: 16px; font-size: 12px; color: var(--sub); }
.pf-label { display: inline-flex; align-items: center; gap: 6px; flex: none; }
.pf-avs { display: flex; }
.pf-avs a { margin-left: -8px; border-radius: 50%; }
.pf-avs a:first-child { margin-left: 0; }
.pf-avs img { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--card); background: var(--bg); transition: transform .15s; }
.pf-avs a:hover img { transform: translateY(-2px); }
.pf-more { color: var(--muted); }

/* 单集页：主播引导问题 */
.hk-mark { position: absolute; top: 0; bottom: 0; width: 3px; border: 0; padding: 0; margin-left: -1px; background: var(--blue); opacity: .6; cursor: pointer; z-index: 2; }
.hk-mark::after { content: ""; position: absolute; top: -2px; left: -2px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.hk-mark:hover { opacity: 1; }
.hks { margin-top: 16px; padding: 12px 14px; border-radius: 12px; background: var(--bg); }
.hk-hd { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--sub); margin-bottom: 10px; }
.hk-hd b { color: var(--txt); font-weight: 600; }
.hk-list { display: flex; flex-direction: column; gap: 6px; }
.hk { display: flex; align-items: center; gap: 10px; width: 100%; text-align: left; padding: 8px 10px; border: 1px solid var(--line); border-radius: 10px; background: var(--card); cursor: pointer; transition: border-color .12s, background .12s; }
.hk:hover { border-color: var(--accent); background: var(--accent-soft); }
.hk-t { flex: none; font-size: 11px; font-weight: 700; color: var(--accent); font-variant-numeric: tabular-nums; background: var(--bg); border-radius: 6px; padding: 2px 7px; }
.hk-x { flex: 1; min-width: 0; font-size: 13px; color: var(--txt); }
.hk-go { flex: none; font-size: 11px; color: var(--muted); }
.hk:hover .hk-go { color: var(--accent); }

/* 后台：引导问题面板 */
.hk-note { font-size: 12px; color: var(--sub); line-height: 1.65; }
.hk-rows { display: flex; flex-direction: column; gap: 8px; }
.hk-row { display: flex; align-items: center; gap: 8px; }
.hk-row input { border: 1px solid var(--line); background: var(--bg); border-radius: 9px; padding: 8px 10px; outline: none; font: inherit; }
.hk-row input:focus { border-color: var(--accent); background: var(--card); }
.hk-row .hk-time { width: 86px; flex: none; text-align: center; font-variant-numeric: tabular-nums; }
.hk-row .hk-q { flex: 1; min-width: 0; }
.hk-row .hk-jump { flex: none; font-size: 12px; color: var(--muted); white-space: nowrap; }
.hk-row a.hk-jump:hover { color: var(--accent); }
.hk-row.blank { opacity: .6; }
.hk-tip { font-size: 11.5px; line-height: 1.6; }
.hk-tip code { background: var(--bg); padding: 1px 5px; border-radius: 4px; }

/* 左下：社区动态播报 */
.pulse-wrap { position: fixed; left: 16px; bottom: 104px; z-index: 110; display: flex; flex-direction: column-reverse; gap: 8px; max-width: 300px; }
.pulse-card {
  position: relative; display: flex; align-items: center; gap: 9px; padding: 9px 26px 9px 10px;
  border-radius: 14px; background: var(--card); box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  animation: qsr-slide .28s ease;
}
.pulse-card.out { opacity: 0; transform: translateX(-12px); transition: .3s; }
@keyframes qsr-slide { from { opacity: 0; transform: translateX(-12px); } }
.pulse-card > img { width: 30px; height: 30px; border-radius: 50%; flex: none; }
.pulse-card > span { min-width: 0; }
.pulse-card b { display: block; font-size: 12px; font-weight: 600; }
.pulse-card i { display: block; font-style: normal; font-size: 12px; color: var(--sub); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pulse-card em { position: absolute; right: 10px; bottom: 6px; font-style: normal; font-size: 10px; color: var(--muted); }
.pulse-x { position: absolute; right: 4px; top: 4px; width: 18px; height: 18px; border: 0; border-radius: 50%; background: none; color: var(--muted); font-size: 10px; line-height: 1; cursor: pointer; }
.pulse-x:hover { color: var(--accent); }
@media (prefers-reduced-motion: reduce) { .pulse-card { animation: none; } }

/* ===== RSS 导入 ===== */
.rss-box { border: 1px dashed color-mix(in srgb, var(--muted) 45%, transparent); border-radius: 12px; padding: 14px; background: var(--bg); }
.rss-bar { display: flex; gap: 8px; }
.rss-bar input { flex: 1; min-width: 0; border: 1px solid var(--line); background: var(--card); border-radius: 10px; padding: 9px 12px; outline: none; }
.rss-bar input:focus { border-color: var(--accent); }
.rss-bar .btn { flex: none; }
.rss-tip { font-size: 11.5px; color: var(--muted); line-height: 1.7; margin: 9px 0 0; }
.rss-tip b { color: var(--sub); font-weight: 600; }
.rss-out { margin-top: 12px; background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; }
.rss-hd { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; }
.rss-hd > b { font-size: 14px; }
.rss-meta { font-size: 11.5px; color: var(--muted); }
.rss-meta .warn { font-style: normal; color: var(--accent-2); }
.rss-desc { font-size: 12px; color: var(--sub); margin: 6px 0 0; line-height: 1.6; }
.rss-none { font-size: 12.5px; color: var(--accent); margin: 8px 0 0; }
.rss-pick { margin-top: 12px; border-top: 1px solid var(--line); padding-top: 10px; }
.rss-all { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--sub); cursor: pointer; }
.rss-all b { color: var(--accent); font-variant-numeric: tabular-nums; }
.rss-list { max-height: 260px; overflow-y: auto; margin-top: 8px; border: 1px solid var(--line); border-radius: 8px; }
.rss-row { display: flex; align-items: center; gap: 8px; padding: 6px 10px; font-size: 12.5px; cursor: pointer; border-bottom: 1px solid var(--line); }
.rss-row:last-child { border-bottom: 0; }
.rss-row:hover { background: var(--bg); }
.rss-row.off { opacity: .5; cursor: not-allowed; }
.rl-dur { flex: none; width: 46px; color: var(--muted); font-variant-numeric: tabular-nums; font-size: 11.5px; }
.rl-t { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rl-x { flex: none; font-size: 10.5px; color: var(--accent-2); }

.rss-badge { font-style: normal; font-size: 10.5px; font-weight: 500; color: var(--blue); background: #eef3ff; border-radius: 5px; padding: 2px 7px; margin-left: 8px; vertical-align: 3px; white-space: nowrap; }
body.dark .rss-badge { background: rgba(76, 125, 255, .16); }
.pod-draft { font-size: 12px; color: var(--accent-2); background: color-mix(in srgb, var(--accent-2) 12%, transparent); border-radius: 8px; padding: 6px 10px; margin: 8px 0 0; }

.draft-box { border-left: 3px solid var(--accent-2); }
.draft-tip, .draft-warn { font-size: 12px; line-height: 1.65; margin: 0 0 10px; }
.draft-tip { color: var(--sub); }
.draft-warn { color: var(--accent-2); }
.draft-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.draft-all { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--sub); cursor: pointer; margin-right: auto; }
.draft-list { list-style: none; margin: 0; padding: 0; max-height: 340px; overflow-y: auto; border: 1px solid var(--line); border-radius: 8px; }
.draft-list li { display: flex; align-items: center; gap: 9px; padding: 7px 10px; border-bottom: 1px solid var(--line); font-size: 13px; }
.draft-list li:last-child { border-bottom: 0; }
.draft-list input { flex: none; accent-color: var(--accent); }
.dl-main { flex: 1; min-width: 0; }
.dl-main b { display: block; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dl-main i { display: block; font-style: normal; font-size: 11px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dl-dur { flex: none; font-size: 11.5px; color: var(--muted); font-variant-numeric: tabular-nums; }

/* ===== 响应式 ===== */
@media (max-width: 1200px) {
  .grid { grid-template-columns: 230px minmax(0, 1fr); }
  .col-right { display: none; }
}
@media (max-width: 960px) {
  .grid { grid-template-columns: minmax(0, 1fr); }
  .col-left { display: none; }
  .logo-sub, .nav-item:not(.active) { display: none; }
  .search { min-width: 130px; }
  .mp-info { width: 120px; }
  .top-list { grid-template-columns: minmax(0, 1fr); }
  .cat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  body { padding-bottom: 84px; }
  .topbar-in { padding-left: 12px; }
  .btn-ghost:not(.sm) { display: none; }
  .online-pill { padding: 0 8px; }
  .online-pill em { display: none; }
  .buzz { height: 42px; gap: 8px; }
  .bz-item i { display: none; }
  .pulse-wrap { left: 10px; bottom: 92px; max-width: 240px; }
  .pod-sec { margin-top: 20px; }
  .pod-sec + .pod-sec { margin-top: 24px; padding-top: 22px; }
  .pager-simple { margin-top: 14px; }
  .rss-bar { flex-direction: column; }
  .rss-bar .btn { width: 100%; justify-content: center; }
  .rss-list { max-height: 200px; }
  .pl-top { flex-direction: column; }
  .pl-cover { width: 100%; height: 160px; }
  .pod-hd { flex-direction: column; }
  .pod-cover.big { width: 120px; height: 120px; }
  .profile { flex-wrap: wrap; }
  .mp-sub, .mp-time, .mp-speed { display: none; }
  .clip-list.two { grid-template-columns: 1fr; }
  .fi-row { grid-template-columns: 1fr; }
  .pc-body { gap: 12px; }
  .pc-cover { width: 88px; border-radius: 10px; }
  .cover-row { flex-direction: column; }
  .cover-prev { width: 96px; height: 96px; }
  .cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pcard-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .top-tabs { gap: 12px; }
  .top-tabs a { font-size: 15px; }
  .page-podcasts .col-main { padding: 16px 14px 20px; }
}
