:root{
  --bg:#0b0c0f;
  --text:#f2f4f8;
  --muted:rgba(242,244,248,.72);
  --muted2:rgba(242,244,248,.48);
  --accent:#00be06;
  --accent2:#39e75f;
  /* iQIYI 绿系（主色） */
  --line:rgba(255,255,255,.10);
  --radius:18px;
  --shadow: 0 22px 70px rgba(0,0,0,.62);
  --shadow2: 0 28px 90px rgba(0,0,0,.78);
  --cardW: 190px; /* 轨道卡片宽度（桌面） */
}

/* =====================================================================
   iQIYI 风格增强（基于现有 m6，不破坏苹果CMS标签）
   - 目标：整体接近爱奇艺（约 70% 观感）：黑底 + 亮绿点缀 + 更“频道化”的卡片
   - 方式：覆盖式样式（追加在文件底部），避免改动原结构导致错乱
   ===================================================================== */

/* base */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
  background:
    radial-gradient(900px 520px at 18% -10%, rgba(0,190,6,.20), transparent 60%),
    radial-gradient(860px 520px at 88% -5%, rgba(255,255,255,.06), transparent 55%),
    var(--bg);
  color:var(--text);
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.container{max-width:1240px;margin:0 auto;padding:0 18px}

/* header */
.header{
  position:sticky;top:0;z-index:50;
  background:linear-gradient(180deg, rgba(11,12,15,.92) 0%, rgba(11,12,15,.55) 55%, rgba(11,12,15,0) 100%);
  backdrop-filter: blur(10px);
}
.header-inner{height:64px;display:flex;align-items:center;gap:18px}
.logo{display:flex;align-items:center;gap:10px;font-weight:950;letter-spacing:.4px}
.logo-badge{
  width:30px;height:30px;border-radius:10px;
  background:linear-gradient(135deg,var(--accent), var(--accent2));
  box-shadow:0 14px 40px rgba(0,190,6,.34);
}
.nav{display:flex;gap:10px;flex-wrap:wrap}
.nav a{color:var(--muted);font-weight:800;font-size:14px;padding:8px 10px;border-radius:999px;transition:.2s}
.nav a:hover{color:var(--text);background:rgba(255,255,255,.06)}
.nav a.active{color:var(--text)}
.right{margin-left:auto;display:flex;align-items:center;gap:10px}
.search{width:min(440px,46vw);position:relative}
.search input{
  width:100%;
  padding:10px 40px 10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
  color:var(--text);
  outline:none;
}
.search input::placeholder{color:rgba(242,244,248,.50)}
.search svg{position:absolute;right:12px;top:50%;transform:translateY(-50%);opacity:.65}

.btn{
  border:0;cursor:pointer;
  padding:10px 14px;border-radius:999px;
  color:#fff;font-weight:950;font-size:13px;
  background:var(--accent);
  box-shadow:0 16px 54px rgba(0,190,6,.24);
  transition:.15s;white-space:nowrap;
}
.btn:active{transform:translateY(1px)}
.btn-ghost{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
  padding:10px 14px;border-radius:999px;
  font-weight:950;font-size:13px;
  cursor:pointer;transition:.15s;white-space:nowrap;
}
.btn-ghost:hover{background:rgba(255,255,255,.08)}

/* hero (首页/详情页第一屏) */
.hero{
  min-height:68vh;
  position:relative;
  background:
    linear-gradient(90deg, rgba(11,12,15,.92) 0%, rgba(11,12,15,.55) 44%, rgba(11,12,15,.20) 70%, rgba(11,12,15,0) 100%),
    var(--hero-bg, url("https://picsum.photos/2200/1200?random=111")) center/cover no-repeat;
}
.hero:after{
  content:"";
  position:absolute;left:0;right:0;bottom:0;height:180px;
  background:linear-gradient(180deg, rgba(11,12,15,0) 0%, rgba(11,12,15,.78) 65%, rgba(11,12,15,1) 100%);
  pointer-events:none;
}
.hero-inner{position:relative;z-index:1;padding:140px 0 34px;max-width:820px}
.hero-badge{
  display:inline-flex;align-items:center;gap:10px;
  padding:8px 12px;border-radius:999px;
  background:rgba(0,0,0,.36);
  border:1px solid rgba(255,255,255,.14);
  color:rgba(242,244,248,.86);
  font-weight:950;font-size:12px;
}
.dot{width:8px;height:8px;border-radius:99px;background:var(--accent);box-shadow:0 0 0 7px rgba(0,190,6,.16)}
.hero h1{margin:14px 0 12px;font-size:48px;line-height:1.08;letter-spacing:.2px}
.hero p{margin:0 0 16px;color:var(--muted);line-height:1.75}
.hero-meta{display:flex;gap:10px;flex-wrap:wrap;color:var(--muted2);font-weight:900;font-size:13px;margin-bottom:18px}
.m{padding:7px 10px;border-radius:999px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.10)}
.hero-actions{display:flex;gap:10px;flex-wrap:wrap}

/* sections */
.section{margin:18px 0 22px}
.section-head{display:flex;align-items:end;justify-content:space-between;gap:10px;margin-bottom:10px}
.section-head h2{margin:0;font-size:16px;letter-spacing:.2px}
.section-head a{color:var(--muted2);font-weight:900;font-size:13px}
.section-head a:hover{color:var(--text)}

/* rail + card */
.rail{
  display:flex;gap:12px;
  overflow:auto hidden;
  padding:10px 4px 18px;
  scroll-snap-type:x mandatory;
}
.rail::-webkit-scrollbar{height:8px}
.rail::-webkit-scrollbar-thumb{background:rgba(255,255,255,.10);border-radius:99px}
.rail::-webkit-scrollbar-track{background:rgba(255,255,255,.04)}
.card{
  min-width:var(--cardW);max-width:var(--cardW);
  border-radius:14px;
  overflow:hidden;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08); /* 弱边框 */
  transition:transform .18s, box-shadow .18s, filter .18s, border-color .18s;
  scroll-snap-align:start;
  position:relative;
}
.thumb{aspect-ratio:2/3;background:#05060a;position:relative}
.thumb img{width:100%;height:100%;object-fit:cover}
.tag{
  position:absolute;left:10px;top:10px;
  padding:6px 9px;border-radius:999px;
  font-size:12px;font-weight:950;
  background:rgba(0,0,0,.58);
  color:#fff;
  border:1px solid rgba(255,255,255,.10);
}
.score{
  position:absolute;right:10px;top:10px;
  padding:6px 9px;border-radius:999px;
  font-size:12px;font-weight:950;
  background:rgba(0,190,6,.92);
}
.body{
  padding:10px 10px 12px;
  background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.16) 100%);
}
.title{margin:0 0 6px;font-weight:950;font-size:13px;line-height:1.25}
.meta{font-size:12px;color:var(--muted2);display:flex;gap:8px;flex-wrap:wrap}
.meta b{color:rgba(242,244,248,.78);font-weight:950}

.card:hover{
  transform:scale(1.11) translateY(-6px);
  box-shadow:var(--shadow2);
  z-index:5;
  filter:saturate(1.06);
  border-color:rgba(255,255,255,.12);
}
.rail:hover .card:not(:hover){filter:saturate(.92) brightness(.96)}

/* list page grid */
.grid{display:grid;grid-template-columns:repeat(6,1fr);gap:10px}
.grid .card{min-width:auto;max-width:none}

/* filter + chips + pager */
.filter{
  margin:14px 0 10px;
  padding:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  border-radius:16px;
}
.filter-row{display:flex;gap:10px;flex-wrap:wrap;align-items:center;margin:8px 0}
.filter-row strong{color:rgba(242,244,248,.86);font-size:13px}
.chips{display:flex;gap:8px;flex-wrap:wrap}
.chip{
  padding:8px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-size:13px;font-weight:900;
}
.chip:hover{color:var(--text);background:rgba(255,255,255,.06)}
.chip.active{border-color:rgba(0,190,6,.35);background:rgba(0,190,6,.14);color:#ffe1e3}

.pager{display:flex;gap:8px;justify-content:center;flex-wrap:wrap;margin:16px 0 6px}
.page{
  padding:9px 12px;border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:950;font-size:13px;
}
.page.active{background:rgba(0,190,6,.14);border-color:rgba(0,190,6,.30);color:#ffe1e3}

/* panel + detail */
.panel{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  border-radius:16px;
  padding:14px;
}
.detail{display:grid;grid-template-columns: 280px 1fr;gap:14px;margin:14px 0}
.poster{
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  box-shadow:var(--shadow);
}
.poster img{width:100%;height:100%;object-fit:cover}
.detail h1{margin:2px 0 8px;font-size:26px}
.klist{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
.k{color:var(--muted);font-size:13px}
.k b{color:rgba(242,244,248,.88)}
.desc{color:rgba(242,244,248,.72);line-height:1.75;margin:10px 0 0}
.actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}

.ep-grid{display:grid;grid-template-columns: repeat(10, 1fr);gap:8px;margin-top:10px}

.ep:hover{color:var(--text);background:rgba(255,255,255,.06)}
.ep.active{background:rgba(0,190,6,.14);border-color:rgba(0,190,6,.30);color:#ffe1e3}

/* play page */
.play-layout{display:grid;grid-template-columns: 1fr 340px;gap:14px;margin:14px 0}
.player{
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:#000;
  box-shadow:var(--shadow);
}
.player video{width:100%;height:auto;display:block}
.line-tabs{display:flex;gap:8px;flex-wrap:wrap;margin:10px 0 0}
.ltab{
  padding:8px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:950;font-size:13px;
  cursor:pointer;
}
.ltab.active{background:rgba(0,190,6,.14);border-color:rgba(0,190,6,.30);color:#ffe1e3}

/* footer */
.footer{
  margin:26px 0 44px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(242,244,248,.55);
  font-size:13px;
  line-height:1.8;
}
.cols{display:grid;grid-template-columns: 1.2fr 1fr 1fr 1fr;gap:14px}
.cols a{color:rgba(242,244,248,.55)} .cols a:hover{color:var(--text)}

/* tiny utilities */
.mt12{margin-top:12px}

/* responsive */
@media (max-width: 900px){
  .hero h1{font-size:40px}
  .cols{grid-template-columns:1fr 1fr}
  .grid{grid-template-columns: repeat(4, 1fr)}
  .play-layout{grid-template-columns:1fr}
  :root{--cardW:168px}
  .card:hover{transform:scale(1.08) translateY(-5px)}
}
@media (max-width: 640px){
  .nav{display:none}
  .search{display:none}
  .hero{min-height:74vh}
  .hero-inner{padding:128px 0 34px}
  .hero h1{font-size:32px}
  .cols{grid-template-columns:1fr}
  .grid{grid-template-columns: repeat(2, 1fr)}
  :root{--cardW:150px}
  .card:hover{transform:scale(1.06) translateY(-4px)}
  .detail{grid-template-columns:1fr}
  .ep-grid{grid-template-columns: repeat(6, 1fr)}
}
/* =========================
   Play Page · Comment Area
========================= */
.comment-wrap{
  margin:22px 0 0;
  padding:16px;
  border-radius:16px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
}

.comment-title{
  margin:0 0 14px;
  font-size:16px;
  font-weight:950;
  letter-spacing:.2px;
}

/* 输入框 */
.comment-form textarea{
  width:100%;
  min-height:90px;
  resize:none;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-size:14px;
  outline:none;
}
.comment-form textarea::placeholder{
  color:rgba(242,244,248,.45);
}

.comment-actions{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:10px;
}

.comment-tip{
  font-size:12px;
  color:var(--muted2);
}

/* 评论列表 */
.comment-list{
  margin-top:16px;
}

.comment-item{
  display:flex;
  gap:12px;
  padding:14px 0;
  border-top:1px solid rgba(255,255,255,.08);
}

.comment-item:first-child{
  border-top:0;
}

.avatar{
  width:42px;
  height:42px;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
}

.comment-body{
  flex:1;
}

.comment-head{
  display:flex;
  gap:10px;
  align-items:center;
  margin-bottom:4px;
}

.name{
  font-weight:900;
  font-size:13px;
}

.time{
  font-size:12px;
  color:var(--muted2);
}

.comment-text{
  margin:4px 0 6px;
  line-height:1.65;
  color:rgba(242,244,248,.82);
  font-size:14px;
}

.comment-meta{
  display:flex;
  gap:14px;
  font-size:12px;
  color:var(--muted2);
}

.comment-meta span{
  cursor:pointer;
}
.comment-meta span:hover{
  color:var(--text);
}

/* 移动端 */
@media (max-width:640px){
  .comment-wrap{
    padding:14px 12px;
  }
  .comment-text{
    font-size:13px;
  }
}
/* MacCMS 默认分页兼容：让分页像我们的 .page */
.pager a, .pager span{
  display:inline-block;
  padding:9px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:rgba(242,244,248,.72);
  font-weight:950;
  font-size:13px;
  margin:0 4px 6px;
}
.pager a:hover{color:rgba(242,244,248,1);background:rgba(255,255,255,.06)}
.pager .current, .pager span.current{
  background:rgba(0,190,6,.14);
  border-color:rgba(0,190,6,.30);
  color:#ffe1e3;
}
/* 搜索页热搜布局 */
.hotkeys{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
/* 搜索关键词高亮 */
.hl{
  background: rgba(0,190,6,.18);
  color: #ffe1e3;
  padding: 0 4px;
  border-radius: 6px;
  border: 1px solid rgba(0,190,6,.28);
}

/* 搜索建议浮层 */
.search{position:relative}
.suggest{
  position:absolute;
  top:46px;
  left:0;
  right:0;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(11,12,15,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 26px 90px rgba(0,0,0,.78);
  z-index:60;
}

.sg-block{padding:8px 0}
.sg-title{
  font-size:12px;
  font-weight:950;
  color: rgba(242,244,248,.70);
  margin-bottom:8px;
}
.sg-tags{display:flex;gap:8px;flex-wrap:wrap}
.sg-tag{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color: rgba(242,244,248,.78);
  font-size:13px;
  font-weight:900;
}
.sg-tag:hover{background:rgba(255,255,255,.07);color:rgba(242,244,248,1)}
.sg-actions{display:flex;justify-content:flex-end;margin-top:8px}
.sg-clear{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color: rgba(242,244,248,.70);
  padding:8px 10px;
  border-radius:12px;
  font-weight:950;
  cursor:pointer;
}
.sg-clear:hover{background:rgba(255,255,255,.07);color:rgba(242,244,248,1)}
.sg-empty{color:rgba(242,244,248,.50);font-size:12px}

/* Breadcrumb */
.breadcrumb{
  margin:12px 0 0;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  color:rgba(242,244,248,.62);
  font-size:13px;
  font-weight:900;
}
.breadcrumb a{color:rgba(242,244,248,.72)}
.breadcrumb a:hover{color:rgba(242,244,248,1)}
.breadcrumb .sep{opacity:.5;margin:0 8px}
/* detail 页：线路 tab 内容切换 */
.tab-pane{display:none}
.tab-pane.active{display:block}

/* =========================
   Player UX (Netflix Pro)
========================= */
.player-shell{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  overflow:hidden;
  box-shadow: var(--shadow);
}

.player-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 12px;
  background:linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,0));
}

.pt-title{
  font-weight:950;
  font-size:14px;
  color:rgba(242,244,248,.92);
}
.pt-sub{
  margin-top:2px;
  font-size:12px;
  color:rgba(242,244,248,.55);
  font-weight:900;
}

.pt-right{display:flex;gap:8px;flex-wrap:wrap}
.pt-btn{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:rgba(242,244,248,.78);
  padding:8px 10px;
  border-radius:12px;
  font-weight:950;
  font-size:12px;
  cursor:pointer;
}
.pt-btn:hover{background:rgba(255,255,255,.08);color:rgba(242,244,248,1)}

.player-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 12px 12px;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.18);
}

.pa-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:rgba(242,244,248,.78);
  font-weight:950;
  font-size:13px;
}
.pa-btn:hover{background:rgba(255,255,255,.07);color:rgba(242,244,248,1)}

.pa-right{display:flex;gap:8px;flex-wrap:wrap}
.pa-chip{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:rgba(242,244,248,.72);
  padding:8px 10px;
  border-radius:999px;
  font-weight:950;
  font-size:12px;
  cursor:pointer;
}
.pa-chip:hover{background:rgba(255,255,255,.07);color:rgba(242,244,248,1)}
.pa-chip.active{
  background:rgba(0,190,6,.14);
  border-color:rgba(0,190,6,.30);
  color:#ffe1e3;
}

/* 影院模式：让播放器铺满屏幕宽度、背景更沉浸 */
body.theater{
  background: #06070a;
}
body.theater .header{position:static}
body.theater .container{max-width: 1500px}
body.theater .player-shell{
  border-radius: 0;
  border-left:0;border-right:0;
}

/* toast */
.player-toast{
  position:absolute;
  left:12px;
  bottom:64px;
  padding:8px 10px;
  border-radius:12px;
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(242,244,248,.86);
  font-weight:950;
  font-size:12px;
  backdrop-filter: blur(8px);
  box-shadow:0 18px 60px rgba(0,0,0,.6);
}

/* Native Player Shell */
.nplayer{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  overflow:hidden;
  box-shadow:0 26px 90px rgba(0,0,0,.78);
}
.nplayer-top{
  display:flex;align-items:flex-start;justify-content:space-between;gap:12px;
  padding:12px 12px 10px;
  background:linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,0));
}
.np-name{font-weight:950;font-size:14px;color:rgba(242,244,248,.92)}
.np-sub{margin-top:2px;font-weight:900;font-size:12px;color:rgba(242,244,248,.55)}
.np-actions{display:flex;gap:8px;flex-wrap:wrap}
.np-btn{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:rgba(242,244,248,.80);
  padding:8px 10px;border-radius:12px;
  font-weight:950;font-size:12px;cursor:pointer;
}
.np-btn:hover{background:rgba(255,255,255,.08);color:rgba(242,244,248,1)}

.player-native{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  background:#000;
  overflow:hidden;
}
.player-native video{
  width:100%;height:100%;
  display:block;background:#000;
}

.np-fab{
  position:absolute;left:12px;bottom:14px;
  display:flex;gap:8px;
}
.np-fabbtn{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.50);
  color:rgba(242,244,248,.88);
  padding:10px 12px;border-radius:999px;
  font-weight:950;font-size:12px;cursor:pointer;
  backdrop-filter: blur(10px);
  box-shadow:0 18px 70px rgba(0,0,0,.55);
}
.np-fabbtn:hover{transform:scale(1.04)}

.np-toast{
  position:absolute;right:12px;bottom:14px;
  padding:8px 10px;border-radius:12px;
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(242,244,248,.86);
  font-weight:950;font-size:12px;
  backdrop-filter: blur(8px);
  box-shadow:0 18px 60px rgba(0,0,0,.6);
}

.nplayer-bottom{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding:10px 12px 12px;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.18);
}
.np-hints{color:rgba(242,244,248,.50);font-size:12px;font-weight:900}
.np-speed{display:flex;gap:8px;flex-wrap:wrap}
.np-chip{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:rgba(242,244,248,.72);
  padding:8px 10px;border-radius:999px;
  font-weight:950;font-size:12px;cursor:pointer;
}
.np-chip:hover{background:rgba(255,255,255,.07);color:rgba(242,244,248,1)}
.np-chip.active{
  background:rgba(0,190,6,.14);
  border-color:rgba(0,190,6,.30);
  color:#ffe1e3;
}

/* Theater mode */
body.theater{background:#06070a}
body.theater .header{position:static}
body.theater .container{max-width:1500px}
/* 筛选 chips：移动端横向滑动更像大站 */
.chips-scroll{
  overflow-x:auto;
  white-space:nowrap;
  -webkit-overflow-scrolling:touch;
  padding-bottom:4px;
}
.chips-scroll::-webkit-scrollbar{height:6px}
.chips-scroll::-webkit-scrollbar-thumb{background:rgba(255,255,255,.12);border-radius:999px}
.chips .chip.ghost{
  background:rgba(255,255,255,.04);
  border:1px dashed rgba(255,255,255,.14);
  color:rgba(242,244,248,.72);
}
.chips .chip.danger{
  background:rgba(0,190,6,.14);
  border:1px solid rgba(0,190,6,.26);
  color:#ffe1e3;
}
/* “更多/收起” 折叠 */
.chips-collapse{ position:relative; }
.chips-collapse .chip-more{
  cursor:pointer;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  color:rgba(242,244,248,.78);
}
.chips-collapse .chip-more:hover{
  background:rgba(255,255,255,.09);
  color:rgba(242,244,248,1);
}
.chips-collapse.is-collapsed .chip-more{
  background:rgba(0,190,6,.12);
  border-color:rgba(0,190,6,.26);
  color:#ffe1e3;
}

/* ===== 移动端底部导航 ===== */
.m-nav{display:none}
@media (max-width: 640px){
  body{padding-bottom:76px;} /* 防止底部导航遮住内容 */
  .m-nav{
    display:flex;
    position:fixed;left:10px;right:10px;bottom:10px;
    height:56px;
    padding:6px 10px;
    border-radius:18px;
    z-index:9999;
    background:rgba(12,15,20,.86);
    border:1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(10px);
    box-shadow:0 18px 60px rgba(0,0,0,.55);
    gap:6px;
  }
  .m-nav__item{
    flex:1;
    display:flex;flex-direction:column;
    align-items:center;justify-content:center;
    gap:2px;
    border-radius:14px;
    color:rgba(242,244,248,.62);
    font-weight:900;
    text-decoration:none;
    transition:.15s;
  }
  .m-nav__item .m-ico{font-size:16px;line-height:1}
  .m-nav__item .m-txt{font-size:11px;line-height:1}
  .m-nav__item.active{
    background:rgba(0,190,6,.18);
    color:rgba(242,244,248,.92);
    border:1px solid rgba(0,190,6,.28);
  }
}
.f-brand{font-weight:950;color:rgba(242,244,248,.9);margin-bottom:6px}
.f-desc{color:rgba(242,244,248,.55);line-height:1.8}
.f-ttl{font-weight:900;color:rgba(242,244,248,.8);margin-bottom:6px}

.footer-bottom{
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  gap:10px;
  justify-content:space-between;
  flex-wrap:wrap;
  font-size:12px;
  color:rgba(242,244,248,.55);
}
.footer-bottom a{color:rgba(242,244,248,.55)}
.footer-bottom a:hover{color:rgba(242,244,248,.92)}
.dotsep{margin:0 8px;opacity:.45}

@media (max-width: 640px){
  .footer-bottom{gap:6px}
}

.m-nav{display:none}
@media (max-width:640px){
  body{padding-bottom:64px;}
  .m-nav{
    display:flex;
    position:fixed;
    left:0; right:0; bottom:0;
    height:56px;
    background:rgba(12,15,20,.65);
    backdrop-filter: blur(10px);
    border-top:1px solid rgba(255,255,255,.08);
    z-index:9999;
  }
  .m-nav__item{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:900;
    color:rgba(242,244,248,.70);
    text-decoration:none;
  }
  .m-nav__item:hover,
  .m-nav__item:active{
    color:rgba(242,244,248,.95);
  }
}

.no-scroll{overflow:hidden}
.search-modal{position:fixed;inset:0;z-index:9999}
.search-mask{position:absolute;inset:0;background:rgba(0,0,0,.65)}
.search-panel{position:relative;width:92%;max-width:520px;margin:12vh auto 0;background:#111;border-radius:12px;padding:20px;color:#fff}
.search-panel-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:16px}
.search-panel-head .close{background:none;border:0;color:#999;font-size:22px;cursor:pointer}
.search-panel-form{display:flex;gap:10px}
.search-panel-form input{flex:1;height:44px;border-radius:8px;border:0;padding:0 12px;background:#1c1c1c;color:#fff}
.search-panel-form button{height:44px;padding:0 18px;border:0;border-radius:8px;background:#e50914;color:#fff;cursor:pointer}
.search-hot{margin-top:18px}
.search-hot p{margin-bottom:8px;color:#aaa}
.search-hot .tags a{display:inline-block;margin:0 8px 8px 0;padding:6px 10px;background:#1f1f1f;border-radius:6px;color:#ccc}

/* 当前分页页码仅改颜色 */
.pager .page-btn.active{
  background:rgba(0,190,6,.92);
  border-color:rgba(0,190,6,.92);
  color:#fff;
}

.auth{min-height:70vh;display:flex;align-items:center;justify-content:center;padding:24px 0}
.auth-card{width:100%;max-width:520px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:18px;padding:22px;box-shadow:0 16px 40px rgba(0,0,0,.45)}
.auth-title{font-size:22px;margin:0 0 6px;color:#fff}
.auth-sub{margin:0 0 18px;color:rgba(255,255,255,.72);font-size:14px}
.auth-form{display:flex;flex-direction:column;gap:12px}
.auth-field span{display:block;margin-bottom:6px;color:rgba(255,255,255,.75);font-size:13px}
.auth-field input{width:100%;height:44px;border-radius:12px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.06);color:#fff;padding:0 12px;outline:none}
.auth-field input:focus{border-color:rgba(0,190,6,.55);box-shadow:0 0 0 3px rgba(0,190,6,.15)}
.auth-btn{height:46px;border:0;border-radius:12px;background:rgba(0,190,6,.92);color:#fff;font-weight:600;cursor:pointer}
.auth-btn:hover{filter:brightness(1.05)}
.auth-row{display:flex;justify-content:space-between;gap:12px;margin-top:6px}
.auth-link{color:rgba(255,255,255,.75);text-decoration:none;font-size:13px}
.auth-link:hover{color:#fff}
.auth-verify-row{display:flex;gap:10px;align-items:center}
.auth-verify-img{height:44px;border-radius:10px;border:1px solid rgba(255,255,255,.10);cursor:pointer}
.auth-sms{height:44px;min-width:110px;border-radius:10px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.08);color:#fff;cursor:pointer}
.auth-sms:disabled{opacity:.6;cursor:not-allowed}
@media (max-width:640px){
  .auth-card{padding:18px;border-radius:16px}
  .auth-row{flex-direction:column;align-items:flex-start}
}

.footer-links-list{
  display:flex;
  flex-direction:row;
  flex-wrap:wrap;
  align-items:center;
  list-style:none;
  padding:0;
  margin:0;
  gap:10px 18px;
}
.footer-links-list li{
  white-space:nowrap;
}
.footer-links-list li a{
  font-size:13px;
  color:rgba(255,255,255,.6);
  text-decoration:none;
}
.footer-links-list li a:hover{
  color:rgba(0,190,6,.92);
}
/* 封面容器必须是相对定位 */
.thumb-wrap {
  position: relative;
  overflow: hidden;
}

/* 播放图标 */
.thumb-wrap .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin-left: -28px;
  margin-top: -28px;

  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;

  opacity: 0;
  transform: scale(0.85);
  transition: all 0.25s ease;

  pointer-events: none; /* 不影响点击 */
}

/* 三角形 ▶ */
.thumb-wrap .play-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

/* 仅 PC hover 显示 */
@media (hover: hover) {
  .thumb-wrap:hover .play-icon {
    opacity: 1;
    transform: scale(1);
  }
}
.player-native {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.player-native video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.player-native {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.player-native video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  display: block;
}

/* ✅ 叠加封面层（可动画淡出） */
.player-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 1;
  transition: opacity .45s ease; /* 你可调 0.3~0.6 */
  pointer-events: none; /* 不挡点击 */
}

/* 播放开始后淡出 */
.player-native.is-playing .player-poster {
  opacity: 0;
}

/* 淡出结束后彻底隐藏，减少层渲染（可选） */
.player-native.is-poster-hidden .player-poster {
  display: none;
}

/* 覆盖层 */
.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,.25); /* 轻遮罩，可调 */
  opacity: 0;
  visibility: hidden;

  transition: opacity .25s ease, visibility .25s ease;
  cursor: pointer;
}

/* ▶ 图标 */
.player-overlay .play-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0,0,0,.6);
  position: relative;
}

/* ▶ 三角 */
.player-overlay .play-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

/* 暂停 / 结束 时显示 */
.player-native.is-paused .player-overlay {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 900px){

  .detail{grid-template-columns:1fr !important;}
  .detail > aside{order:2}
  .detail > div{order:1}


  .section-head{flex-wrap:wrap;align-items:center}
  .section-head h2{margin:0}
  .section-head a{white-space:nowrap}
}

@media (max-width: 640px){

  .breadcrumb{overflow-x:auto;-webkit-overflow-scrolling:touch}
  .breadcrumb *{white-space:nowrap}

  .panel{overflow:hidden}
  .panel a, .panel p, .panel li{word-break:break-word}
}

.comment-ul{
  margin:0;
  padding:0;
  list-style:none;
}

.comment-stars{
  font-size:12px;
  letter-spacing:1px;
  color:rgba(255, 205, 86, .95); 
}

.comment-meta .cmeta{
  color:var(--muted2);
  text-decoration:none;
  font-weight:900;
}

.comment-meta .cmeta:hover{
  color:var(--text);
}

.comment-meta .cnum{
  color:rgba(242,244,248,.86);
  font-weight:950;
}

.comment-form{
  margin-bottom:18px;
}

.comment-form-inner{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  padding:12px;
}

.comment-textarea{
  width:100%;
  min-height:90px;
  resize:none;
  border-radius:12px;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.25);
  color:var(--text);
  font-size:14px;
  line-height:1.6;
  outline:none;
  box-sizing:border-box;
}

.comment-textarea::placeholder{
  color:var(--muted2);
}

.comment-textarea:focus{
  border-color:rgba(255,255,255,.28);
  background:rgba(0,0,0,.35);
}

.comment-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:10px;
}

.comment-tips{
  font-size:12px;
  color:var(--muted2);
}

.btn-comment-submit{
  padding:8px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(
    135deg,
    rgba(244,67,54,.45),
    rgba(233,30,99,.40),
    rgba(255,112,67,.35)
  );
  color:#fff;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  transition:transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}

.btn-comment-submit:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 16px rgba(0,0,0,.25);
  opacity:.95;
}

.btn-comment-submit:active{
  transform:none;
  box-shadow:none;
}

/*美化播放器*/
.play-icon{
  width:68px;
  height:68px;
  border-radius:50%;
  background:rgba(0,0,0,.55);
  box-shadow:0 12px 30px rgba(0,0,0,.45);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .18s ease, background .18s ease;
}

.play-icon::before{
  content:'';
  margin-left:4px;
  border-style:solid;
  border-width:12px 0 12px 20px;
  border-color:transparent transparent transparent #fff;
}

.player-overlay:hover .play-icon{
  transform:scale(1.08);
  background:rgba(0,0,0,.7);
}

.player-native .player-poster{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transition:opacity .45s ease;
  z-index:3;
}

.player-native.is-playing .player-poster{
  opacity:0;
  pointer-events:none;
}
.np-btn{
  padding:6px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  font-size:13px;
  transition:background .15s ease, transform .15s ease;
}

.np-btn:hover{
  background:rgba(255,255,255,.18);
  transform:translateY(-1px);
}

body.theater .np-btn#btnTheater{
  background:linear-gradient(135deg,#f44336,#ff7043);
  border-color:transparent;
}
.np-toast{
  position:absolute;
  left:50%;
  bottom:14%;
  transform:translateX(-50%);
  background:rgba(0,0,0,.65);
  color:#fff;
  padding:8px 14px;
  border-radius:999px;
  font-size:13px;
  backdrop-filter:blur(4px);
  box-shadow:0 6px 20px rgba(0,0,0,.35);
}

/*原生轮播*/
.hero-carousel{ position:relative; overflow:hidden; border-radius:0; }
.hero-track{
  display:flex;
  width:100%;
  transform:translate3d(0,0,0);
  transition:transform .55s ease;
  will-change:transform;
}
.hero-slide{
  flex:0 0 100%;
  width:100%;
}

/* 圆点 */
.hero-dots{
  position:absolute;
  left:0; right:0;
  bottom:14px;
  display:flex;
  justify-content:center;
  gap:8px;
  z-index:6;
  pointer-events:auto;
}
.hero-dot{
  width:8px;height:8px;border-radius:999px;
  background:rgba(255,255,255,.28);
  border:1px solid rgba(255,255,255,.18);
  cursor:pointer;
  transition:transform .15s ease, background .15s ease;
}
.hero-dot.is-active{
  background:rgba(255,255,255,.85);
  transform:scale(1.15);
}

/* 箭头 */
.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:7;
  width:44px;height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.35);
  color:#fff;
  font-size:26px;
  line-height:44px;
  text-align:center;
  cursor:pointer;
  user-select:none;
  transition:background .15s ease, transform .15s ease;
}
.hero-arrow:hover{
  background:rgba(0,0,0,.55);
  transform:translateY(-50%) scale(1.05);
}
.hero-arrow.prev{ left:12px; }
.hero-arrow.next{ right:12px; }

@media (max-width: 768px){
  .hero-arrow{ display:none; }
}

/* ===================== iQIYI Theme Overrides (2026-01) ===================== */
:root{
  --bg:#0b0b0d;
  --accent:#00be06;
  --accent2:#2fe36a;
  --line:rgba(255,255,255,.08);
  --shadow: 0 18px 60px rgba(0,0,0,.58);
  --shadow2: 0 24px 86px rgba(0,0,0,.78);
  --cardW: 240px;
}

body{
  background:
    radial-gradient(900px 520px at 18% -10%, rgba(0,190,6,.14), transparent 60%),
    radial-gradient(860px 520px at 88% -5%, rgba(255,255,255,.06), transparent 55%),
    var(--bg);
}

/* Header 更像爱奇艺：更实、更利落 */
.header{
  background:rgba(10,10,12,.86);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header-inner{height:60px}
.logo-badge{
  background:linear-gradient(135deg,var(--accent), var(--accent2));
  box-shadow:0 14px 40px rgba(0,190,6,.24);
}
.nav a{font-weight:850}
.nav a.active{color:#fff;background:rgba(255,255,255,.06)}

.search input{
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.10);
}
.btn{
  background:linear-gradient(135deg,var(--accent), var(--accent2));
  box-shadow:0 16px 54px rgba(0,190,6,.20);
}
.btn-ghost:hover{border-color:rgba(0,190,6,.30)}

/* Hero：降低“大片感”压迫，贴近频道 */
.hero{
  background:
    linear-gradient(90deg, rgba(10,10,12,.92) 0%, rgba(10,10,12,.58) 46%, rgba(10,10,12,.22) 74%, rgba(10,10,12,0) 100%),
    var(--hero-bg, url("https://picsum.photos/2200/1200?random=111")) center/cover no-repeat;
}
.dot{background:var(--accent);box-shadow:0 0 0 7px rgba(0,190,6,.14)}

/* 卡片：更接近爱奇艺的 16:9 频道卡 */
.card{border-radius:12px}
.card:hover{transform:scale(1.06) translateY(-4px)}
.thumb-wrap{aspect-ratio:16/9;border-radius:12px;background:#05060a}
.thumb-wrap img{width:100%;height:100%;object-fit:cover}
.score{background:rgba(0,190,6,.92)}
.tag{border-color:rgba(255,255,255,.08)}

/* 列表网格：桌面更“频道化” */
.grid{gap:12px}
@media (min-width: 1024px){
  .grid{grid-template-columns:repeat(5,1fr)}
}
@media (max-width: 1024px){
  .grid{grid-template-columns:repeat(4,1fr)}
}
@media (max-width: 768px){
  .grid{grid-template-columns:repeat(2,1fr)}
}

/* 筛选 chip active */
.chip.active{
  border-color:rgba(0,190,6,.35);
  background:rgba(0,190,6,.14);
  color:#dbffe3;
}

/* 分页 */
.page.active{background:rgba(0,190,6,.14);border-color:rgba(0,190,6,.30);color:#dbffe3}
.pager .page-btn.active{background:rgba(0,190,6,.92);border-color:rgba(0,190,6,.92)}

/* 友情链接 hover */
.footer-links-list li a:hover{color:rgba(0,190,6,.92)}

/* =============================
   iQIYI v2：更“大气”的首页 + 更舒服的列表/播放页
   - 只做样式与轻结构，不改苹果CMS标签
   ============================= */

/* 首页：频道捷径条 */
.channel-strip{margin-top:-34px;position:relative;z-index:2}
.channel-strip .channel-inner{
  display:flex;gap:10px;flex-wrap:wrap;
  padding:12px 12px;
  border-radius:16px;
  background:rgba(10,10,12,.72);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 24px 80px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
}
.channel-item{
  display:flex;align-items:center;gap:10px;
  padding:10px 12px;border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:rgba(242,244,248,.86);
  font-weight:950;font-size:13px;
  transition:.15s;
}
.channel-item:hover{background:rgba(255,255,255,.06);transform:translateY(-1px)}
.channel-dot{width:10px;height:10px;border-radius:99px;background:var(--accent);box-shadow:0 0 0 7px rgba(0,190,6,.12)}

/* 首页：模块更“频道化” */
.section{
  padding:12px 12px 2px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.02) 100%);
  border:1px solid rgba(255,255,255,.08);
}
.section + .section{margin-top:14px}
.section-head{padding:4px 2px 0}

/* 列表页：筛选区 sticky（桌面） */
@media (min-width: 1024px){
  .filter{top:74px;z-index:20}
}

/* 播放页：iQIYI 风格的 Tab 组件 */
.play-tabs{display:flex;gap:8px;flex-wrap:wrap;margin:12px 0 10px}
.ptab{
  padding:10px 12px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:rgba(242,244,248,.78);
  font-weight:950;font-size:13px;
  cursor:pointer;transition:.15s;
}
.ptab:hover{background:rgba(255,255,255,.06);color:var(--text)}
.ptab.active{border-color:rgba(0,190,6,.30);background:rgba(0,190,6,.14);color:#dbffe3}
.ptab-panel{display:none}
.ptab-panel.active{display:block}

/* 播放页：播放器容器更“沉稳” */
.player{border-radius:18px;overflow:hidden;border:1px solid rgba(255,255,255,.10);background:#05060a}
.panel{border-radius:18px}

/* 播放页：选集更像 iQ 的“药丸” */
.ep-grid{gap:10px}
.ep{text-align: center;
    padding: 9px 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    color: var(--muted);
    font-weight: 700;
    font-size: 12px;
    
}

@media (max-width: 768px){
  .hero-inner{padding:112px 0 28px}
  .hero h1{font-size:34px}
  .channel-strip{margin-top:-22px}
  .channel-item{flex:1 1 calc(50% - 10px)}
}

/* 移动端底部导航 active */
@media (max-width: 640px){
  .m-nav__item.active{background:rgba(0,190,6,.16);border:1px solid rgba(0,190,6,.28);color:rgba(242,244,248,.92)}
}

/* 搜索弹窗按钮 */
.search-panel-form button{background:linear-gradient(135deg,var(--accent), var(--accent2))}

/* =========================
   iQIYI v3 (更接近 /tv/ 与播放页体验)
   ========================= */

/* 首页：焦点区（左精选 + 右热榜） */
.home-mega{margin:14px 0 18px}
.home-mega-grid{display:grid;grid-template-columns:1.65fr .85fr;gap:14px;align-items:start}
.section-head-tight{margin:0 0 10px}
.section-head-tight h2{font-size:18px}
.mega-cards{display:grid;grid-template-columns:1.25fr .75fr;gap:12px}
.mega-main{display:block;border-radius:22px;overflow:hidden;border:1px solid rgba(255,255,255,.10);background:#05060a;box-shadow:0 20px 60px rgba(0,0,0,.45)}
.mega-thumb{position:relative;aspect-ratio:16/9;background:linear-gradient(180deg,rgba(0,0,0,.12),rgba(0,0,0,.88)),var(--bg);background-size:cover;background-position:center}
.mega-tag{position:absolute;left:12px;top:12px;padding:7px 10px;border-radius:999px;background:rgba(0,190,6,.18);border:1px solid rgba(0,190,6,.30);color:#dbffe3;font-weight:950;font-size:12px}
.mega-score{position:absolute;right:12px;top:12px;padding:7px 10px;border-radius:999px;background:rgba(0,0,0,.45);border:1px solid rgba(255,255,255,.14);font-weight:950}
.mega-play{position:absolute;left:12px;bottom:12px;width:44px;height:44px;border-radius:999px;background:rgba(0,0,0,.45);border:1px solid rgba(255,255,255,.18)}
.mega-play:before{content:"";position:absolute;left:17px;top:13px;border-left:14px solid rgba(242,244,248,.92);border-top:9px solid transparent;border-bottom:9px solid transparent}
.mega-info{padding:12px 14px 14px}
.mega-title{font-size:18px;font-weight:950;line-height:1.25;margin-bottom:6px}
.mega-desc{color:rgba(242,244,248,.72);font-size:13px;line-height:1.75;margin-top:8px}
.mega-meta{display:flex;gap:10px;flex-wrap:wrap;color:rgba(242,244,248,.62);font-size:12px}

.mega-side{display:flex;flex-direction:column;gap:10px}
.mega-mini{display:flex;gap:10px;padding:10px;border-radius:18px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.03);transition:.15s}
.mega-mini:hover{background:rgba(255,255,255,.05);transform:translateY(-1px)}
.mini-thumb{width:112px;aspect-ratio:16/9;border-radius:14px;overflow:hidden;position:relative;flex:0 0 auto;background:#0b0d14}
.mini-thumb img{width:100%;height:100%;object-fit:cover}
.mini-score{position:absolute;right:8px;top:8px;padding:6px 8px;border-radius:999px;background:rgba(0,0,0,.45);border:1px solid rgba(255,255,255,.14);font-weight:950;font-size:12px}
.mini-info{min-width:0;display:flex;flex-direction:column;gap:6px;justify-content:center}
.mini-title{font-weight:950;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.mini-meta{display:flex;gap:10px;color:rgba(242,244,248,.62);font-size:12px}

.rank-panel{border-radius:22px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.03);padding:12px;position:sticky;top:86px}
.rank-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px}
.rank-title{font-weight:950;font-size:16px}
.rank-more{color:rgba(242,244,248,.62);font-weight:900;font-size:12px}
.rank-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:8px}
.rank-item{margin:0;padding:0}
.rank-link{display:flex;align-items:center;gap:10px;padding:10px;border-radius:14px;border:1px solid rgba(255,255,255,.08);background:rgba(0,0,0,.18);transition:.15s}
.rank-link:hover{background:rgba(255,255,255,.05);transform:translateY(-1px)}
.rank-no{width:26px;height:26px;border-radius:8px;display:inline-flex;align-items:center;justify-content:center;font-weight:950;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.10)}
.rank-item:nth-child(1) .rank-no,.rank-item:nth-child(2) .rank-no,.rank-item:nth-child(3) .rank-no{background:rgba(0,190,6,.18);border-color:rgba(0,190,6,.30);color:#dbffe3}
.rank-name{flex:1;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.rank-score{font-weight:950;color:rgba(242,244,248,.82);font-size:12px}

@media (max-width: 980px){
  .home-mega-grid{grid-template-columns:1fr}
  .rank-panel{position:relative;top:auto}
  .mega-cards{grid-template-columns:1fr}
  .mini-thumb{width:120px}
}

/* 列表页：频道 Tabs */
.type-tabs{background:rgba(0,0,0,.35);border-bottom:1px solid rgba(255,255,255,.08)}
.type-tabs-inner{display:flex;gap:6px;overflow:auto;padding:10px 2px;scrollbar-width:none}
.type-tabs-inner::-webkit-scrollbar{display:none}
.ttab{flex:0 0 auto;padding:9px 12px;border-radius:999px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.03);color:rgba(242,244,248,.78);font-weight:950;font-size:13px;white-space:nowrap}
.ttab:hover{background:rgba(255,255,255,.05);color:rgba(242,244,248,.92)}
.ttab.active{border-color:rgba(0,190,6,.30);background:rgba(0,190,6,.14);color:#dbffe3}

/* 列表页：排序条 */
.sortbar{display:flex;gap:8px;flex-wrap:wrap;margin:12px 0 14px}
.sbtn{padding:9px 12px;border-radius:999px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.03);color:rgba(242,244,248,.78);font-weight:950;font-size:13px}
.sbtn.active{border-color:rgba(0,190,6,.30);background:rgba(0,190,6,.14);color:#dbffe3}
.sbtn:hover{background:rgba(255,255,255,.05)}

/* 播放页：头部操作 + 影院模式 */
.play-head{display:flex;align-items:center;justify-content:space-between;gap:10px;margin:4px 0 10px}
.ph-title{display:flex;align-items:baseline;gap:8px;min-width:0}
.ph-name{font-weight:950;font-size:18px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.ph-ep{color:rgba(242,244,248,.62);font-weight:900;font-size:12px}
.ph-actions{display:flex;gap:8px;flex:0 0 auto}
.ph-btn{padding:9px 12px;border-radius:999px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.03);color:rgba(242,244,248,.78);font-weight:950;font-size:13px;cursor:pointer}
.ph-btn:hover{background:rgba(255,255,255,.05);color:rgba(242,244,248,.92)}

/* 影院模式：加宽主播放区域、减少边距（接近爱奇艺沉浸感） */
body.theater .container{max-width:1380px}
body.theater .play-layout{grid-template-columns:1fr}
body.theater .play-layout aside{display:none}
body.theater .player{border-radius:16px}

@media (max-width: 768px){
  .play-head{flex-direction:column;align-items:flex-start}
}

/* 筛选条吸顶 */
.filter{
  margin:14px 0 10px;
  padding:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  border-radius:16px;
}

/* 关键：给“列表内容区”预留顶部空间（高度=筛选条高度） */
.vod-list-wrap{
  padding-top: 64px;      /* 改成你筛选条真实高度 */
}
