/* 青岚：浅底 + 顶部焦点大图 */
:root {
  --bg: #f4f6fb;
  --panel: #fff;
  --line: #d7deea;
  --text: #1d2433;
  --muted: #667085;
  --accent: #2f6fed;
  --hot: #e35d2a;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; border: 0; }
.wrap { width: min(1220px, calc(100% - 24px)); margin: 0 auto; }
.top { background: #fff; box-shadow: 0 1px 0 var(--line); padding: 12px 0 0; }
.logo { display: inline-block; font-size: 26px; font-weight: 800; margin-bottom: 6px; }
.logo span { color: var(--accent); }
.hotline { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.hotline a { margin-right: 12px; color: #3d4a63; }
.nav-bar { display: flex; gap: 0; background: #1e3a6e; margin-top: 8px; }
.nav-bar a { padding: 10px 18px; color: #d7e4ff; }
.nav-bar a.on, .nav-bar a:hover { background: var(--accent); color: #fff; }
.hero { display: grid; grid-template-columns: 2.1fr 1fr; gap: 14px; margin: 16px 0; }
.hero-main { position: relative; min-height: 280px; background: #111; border-radius: 10px; overflow: hidden; }
.hero-main img { width: 100%; height: 320px; object-fit: cover; display: block; }
.hero-main .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,.75)); color: #fff; font-size: 22px; }
.hero-side { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; }
.hero-side h3 { margin: 0 0 8px; font-size: 16px; }
.rows { list-style: none; margin: 0; padding: 0; }
.rows .row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #eef1f6; font-size: 14px; }
.rows .row span { color: var(--muted); font-size: 12px; }
.sec { margin: 20px 0; background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 14px; }
.sec-hd { display: flex; justify-content: space-between; margin-bottom: 12px; }
.sec-hd h2 { margin: 0; font-size: 18px; }
.sec-hd a { color: var(--accent); font-size: 13px; }
.grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.card .poster { display: block; position: relative; padding-top: 140%; border-radius: 8px; overflow: hidden; background: #e8edf5; }
.card .poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card .poster .tag { position: absolute; top: 8px; right: 8px; background: var(--hot); color: #fff; font-size: 11px; padding: 2px 6px; border-radius: 10px; }
.card .poster .res { position: absolute; left: 8px; bottom: 8px; color: #fff; font-size: 12px; text-shadow: 0 1px 3px #000; }
.card .name { margin: 8px 0 2px; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card .sub { margin: 0; color: var(--muted); font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.page-title { margin: 16px 0; }
.crumbs { color: var(--muted); font-size: 13px; }
.player-box { background: #000; border-radius: 10px; overflow: hidden; }
.player-frame { position: relative; padding-top: 56.25%; }
.player-frame iframe, .player-frame .ph { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.detail { display: grid; grid-template-columns: 1fr 280px; gap: 16px; margin: 16px 0; }
.side, .intro, .hotbox { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 14px; }
.side h1 { margin: 0 0 8px; font-size: 20px; }
.meta { color: var(--muted); font-size: 13px; }
.eps .on { display: inline-block; margin-top: 8px; background: var(--accent); color: #fff; padding: 4px 10px; border-radius: 4px; }
.intro p { color: #445066; line-height: 1.75; }
.relk a { color: var(--accent); margin-right: 10px; }
.qa dt { margin: 10px 0 4px; font-weight: 600; }
.qa dd { margin: 0; color: #445066; }
.cols { display: grid; grid-template-columns: 1fr 280px; gap: 16px; }
.pager { display: flex; gap: 6px; flex-wrap: wrap; margin: 16px 0; }
.pager a { min-width: 34px; text-align: center; padding: 5px 8px; background: #fff; border: 1px solid var(--line); border-radius: 4px; }
.pager a.on { background: var(--accent); color: #fff; border-color: var(--accent); }
.foot { text-align: center; color: var(--muted); font-size: 12px; padding: 22px 0 30px; }
.review { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; background: #eef3fb; padding: 40px 16px; }
@media (max-width: 980px) {
  .hero, .detail, .cols { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(3, 1fr); }
}
