/**
 * v6.css — 大型在线电影站风格（炭黑 + 品红强调 / 双行头部 / 分区竖条 + 海报卡片）
 * 配合 index.temp.v6.htm
 */

:root {
  --v6-max: 1320px;
  --v6-bg0: #060404;
  --v6-bg1: #0c0a0a;
  --v6-surface: #121010;
  --v6-panel: #141111;
  --v6-panel2: #181414;
  --v6-line: rgba(225, 29, 72, 0.14);
  --v6-line2: rgba(255, 255, 255, 0.06);
  --v6-text: #f4f0f0;
  --v6-text2: #b8a8a8;
  --v6-muted: #7a6c6c;
  --v6-accent: #e11d48;
  --v6-accent2: #fb7185;
  --v6-accent-dim: #881337;
  --v6-glow: rgba(225, 29, 72, 0.28);
}

* { box-sizing: border-box; }

body.v6 {
  margin: 0;
  min-height: 100vh;
  color: var(--v6-text2);
  background:
    radial-gradient(ellipse 1100px 420px at 50% -6%, rgba(225, 29, 72, 0.07), transparent 50%),
    radial-gradient(ellipse 700px 320px at 92% 18%, rgba(251, 113, 133, 0.05), transparent 45%),
    linear-gradient(180deg, var(--v6-bg0) 0%, var(--v6-bg1) 40%, #080606 100%);
  font: 15px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  color-scheme: dark;
}

body.v6 a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(225, 29, 72, 0.2);
}

body.v6 img {
  display: block;
  max-width: 100%;
}

body.v6 :focus-visible {
  outline: 2px solid var(--v6-accent2);
  outline-offset: 2px;
}

.v6-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 仅窄屏锁滚动：桌面端搜索 details 会常驻 open，若不加 max-width 会误伤整页滚动 */
@supports selector(:has(*)) {
  @media (max-width: 860px) {
    body.v6:has(.v6-find[open], .v6-menu[open]) {
      overflow: hidden;
    }
  }
}

/* ========== 头部 ========== */
.v6-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 6, 6, 0.94);
  border-bottom: 1px solid var(--v6-line2);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.5);
}

.v6-head__belt {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--v6-muted);
  background: linear-gradient(90deg, rgba(136, 19, 55, 0.35), rgba(12, 10, 10, 0.92));
  border-bottom: 1px solid var(--v6-line2);
}

.v6-head__belt-in {
  max-width: var(--v6-max);
  margin: 0 auto;
  padding: 0.35rem 1.25rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
}

.v6-head__belt-t {
  font-weight: 800;
  color: var(--v6-accent2);
}

.v6-head__belt-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--v6-accent);
  opacity: 0.85;
}

.v6-head__mast {
  border-bottom: 1px solid var(--v6-line2);
  background: linear-gradient(180deg, #141010 0%, #0a0808 100%);
}

.v6-head__sub {
  background: #080606;
  border-bottom: 1px solid var(--v6-line2);
}

.v6-head__row--dock {
  padding: 0 1.25rem;
  max-width: var(--v6-max);
  margin: 0 auto;
}

.v6-head__row {
  max-width: var(--v6-max);
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.v6-ident {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex-shrink: 0;
}

.v6-ident__mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--v6-accent2), var(--v6-accent));
  flex-shrink: 0;
  box-shadow:
    0 0 0 1px rgba(225, 29, 72, 0.45),
    0 8px 26px rgba(0, 0, 0, 0.55);
}

.v6-ident__txt {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.v6-ident__txt strong {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--v6-text);
}

.v6-ident__txt small {
  font-size: 0.66rem;
  color: var(--v6-muted);
  letter-spacing: 0.02em;
  line-height: 1.35;
  max-width: 22rem;
}

.v6-head__tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-left: auto;
}

.v6-dock {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.v6-dock::-webkit-scrollbar { display: none; }

.v6-dock__a {
  flex: 0 0 auto;
  position: relative;
  padding: 0.72rem 1.1rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--v6-text2);
  border-bottom: 3px solid transparent;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}

.v6-dock__a:hover {
  color: var(--v6-text);
  background: rgba(225, 29, 72, 0.06);
}

.v6-dock__a.is-on {
  color: var(--v6-text);
  border-bottom-color: var(--v6-accent);
  background: linear-gradient(180deg, rgba(225, 29, 72, 0.12), transparent);
}

/* 搜索 */
.v6-find {
  position: relative;
  isolation: isolate;
}

.v6-find__fab {
  list-style: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--v6-line);
  background: rgba(24, 16, 18, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--v6-accent2);
}

.v6-find__fab::-webkit-details-marker { display: none; }

.v6-find__shade {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: none;
  background: rgba(0, 0, 0, 0.65);
}

.v6-find[open] .v6-find__shade { display: block; }

.v6-find__sheet {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 3;
  width: min(360px, calc(100vw - 1.5rem));
  padding: 0.65rem;
  border-radius: 12px;
  border: 1px solid var(--v6-line);
  background: var(--v6-panel);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.v6-find__form {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.45rem 0.28rem 0.65rem;
  border-radius: 10px;
  border: 1px solid var(--v6-line2);
  background: rgba(0, 0, 0, 0.35);
}

.v6-find__ico {
  color: var(--v6-accent-dim);
  flex-shrink: 0;
  display: inline-flex;
}

.v6-find__form input[type="search"] {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font: inherit;
  color: var(--v6-text);
  font-size: 0.86rem;
}

.v6-find__form input::placeholder {
  color: var(--v6-muted);
}

.v6-find__go {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-width: 2.75rem;
  height: 34px;
  padding: 0 0.65rem;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--v6-accent2), var(--v6-accent));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.v6-find__go-i { display: none; }

.v6-find__go:hover {
  filter: brightness(1.08);
}

/* 移动菜单 */
.v6-menu { position: relative; }

.v6-menu__btn {
  list-style: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--v6-line);
  background: rgba(24, 16, 18, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.v6-menu__btn::-webkit-details-marker { display: none; }

.v6-menu__ico {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}

.v6-menu__ico span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--v6-accent2);
}

.v6-menu__shade {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  background: rgba(0, 0, 0, 0.7);
}

.v6-menu[open] .v6-menu__shade { display: block; }

.v6-menu__panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 5001;
  width: min(88vw, 320px);
  padding: 1rem 1rem 1.25rem;
  background: linear-gradient(180deg, #1a1012, #080606);
  border-left: 1px solid var(--v6-line);
  transform: translateX(100%);
  transition: transform 0.24s ease;
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  overflow-y: auto;
}

.v6-menu[open] .v6-menu__panel { transform: translateX(0); }

.v6-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.65rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--v6-line2);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--v6-muted);
  letter-spacing: 0.2em;
}

.v6-menu__x {
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--v6-text2);
}

.v6-menu__panel a {
  padding: 0.78rem 0.65rem;
  border-radius: 8px;
  font-weight: 700;
  color: var(--v6-text2);
}

.v6-menu__panel a:hover {
  background: rgba(225, 29, 72, 0.1);
  color: var(--v6-accent2);
}

/* ========== 中部 ========== */
.v6-hub {
  max-width: var(--v6-max);
  margin: 0 auto;
  padding: 1.6rem 1.25rem 0;
}

/* ========== 首页大图推荐（bigpic，横向滑动） ========== */
.v6-hero {
  margin: 0 0 1.85rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--v6-line2);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
}

.v6-hero__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.v6-hero__viewport::-webkit-scrollbar {
  display: none;
}

.v6-hero__track {
  display: flex;
  flex-direction: row;
}

.v6-hero__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  aspect-ratio: 21 / 9;
  min-height: 168px;
  color: inherit;
}

.v6-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v6-hero__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.25) 48%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.v6-hero__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1rem 1.35rem 1.15rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, transparent 100%);
  pointer-events: none;
}

.v6-hero__tit {
  margin: 0;
  font-size: clamp(1.05rem, 3.2vw, 1.45rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
  max-width: min(100%, 26rem);
}

.v6-hero__meta {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.04em;
}

.v6-hero__go {
  margin-top: 0.15rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--v6-accent2);
}

.v6-stack {
  margin-bottom: 2.25rem;
}

.v6-stack__panel {
  padding: 0;
  border-radius: 12px;
  background: linear-gradient(165deg, rgba(24, 18, 18, 0.98) 0%, rgba(12, 10, 10, 0.99) 100%);
  border: 1px solid var(--v6-line2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 20px 48px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.v6-stack__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 1.25rem;
  margin: 0;
  padding: 1rem 1.35rem 1rem;
  background: linear-gradient(90deg, rgba(225, 29, 72, 0.06), rgba(10, 8, 8, 0.5));
  border-bottom: 1px solid var(--v6-line2);
}

.v6-stack__rail {
  width: 4px;
  align-self: stretch;
  min-height: 3rem;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--v6-accent2), var(--v6-accent-dim));
  display: block;
}

.v6-stack__tit h2 {
  margin: 0;
  font-size: 1.48rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--v6-text);
}

.v6-stack__hint {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: var(--v6-muted);
  letter-spacing: 0.02em;
}

.v6-stack__more {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--v6-accent2);
  padding: 0.42rem 0;
  border: 0;
  border-bottom: 2px solid var(--v6-accent);
  border-radius: 0;
  background: transparent;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.v6-stack__more-i {
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 700;
  opacity: 0.95;
}

.v6-stack__more:hover {
  color: var(--v6-text);
  border-bottom-color: var(--v6-accent2);
}

.v6-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 1rem 1.35rem 0.85rem;
  margin: 0;
}

.v6-chips::-webkit-scrollbar { display: none; }

.v6-chips a {
  flex: 0 0 auto;
  padding: 0.3rem 0.78rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--v6-text2);
  border: 1px solid var(--v6-line2);
  background: rgba(0, 0, 0, 0.25);
}

.v6-chips a:hover {
  border-color: rgba(225, 29, 72, 0.35);
  color: var(--v6-accent2);
}

.v6-deck {
  display: grid;
  grid-auto-flow: row;
  align-items: stretch;
  justify-items: stretch;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.35rem 1.1rem;
  padding: 0 1.35rem 1.35rem;
}

/* 帝国列表循环里偶尔会夹 <br>，会变成独立网格项导致整列像瀑布流错位 */
.v6-deck > br {
  display: none;
}

.v6-deck > * {
  min-width: 0;
}

/* 卡片：海报 + 悬停播放层 + 信息区 */
.v6-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  align-self: stretch;
  border-radius: 14px;
  background: var(--v6-panel);
  border: 1px solid var(--v6-line2);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.22s ease, border-color 0.2s ease;
}

.v6-card:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 29, 72, 0.45);
  box-shadow:
    0 0 0 1px rgba(225, 29, 72, 0.2),
    0 20px 50px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(225, 29, 72, 0.08);
}

.v6-card__link {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  color: inherit;
}

.v6-card__shot {
  position: relative;
  flex: 0 0 auto;
  aspect-ratio: 2 / 3;
  background: #0a0808;
}

.v6-card__footfade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46%;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 42%, transparent 100%);
  pointer-events: none;
  border-radius: inherit;
}

.v6-card__metatex {
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.48rem;
  z-index: 3;
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.03em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}

.v6-card__tpjb {
  position: absolute;
  top: 0.48rem;
  right: 0.48rem;
  z-index: 5;
  max-width: calc(100% - 1rem);
  padding: 0.32rem 0.68rem;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.06em;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: var(--v6-accent);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

@supports selector(:has(*)) {
  .v6-card__shot:has(.v6-card__rate--mark) .v6-card__tpjb {
    max-width: calc(100% - 5.5rem);
  }
}

.v6-card__rate--mark {
  position: absolute;
  top: 0.48rem;
  left: 0.48rem;
  z-index: 5;
}

.v6-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.v6-card:hover .v6-card__img {
  transform: scale(1.05);
  filter: brightness(0.88) saturate(1.05);
}

.v6-card__ov {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.65));
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.v6-card:hover .v6-card__ov {
  opacity: 1;
}

.v6-card__play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(145deg, var(--v6-accent2), var(--v6-accent));
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.22), 0 12px 28px rgba(0, 0, 0, 0.45);
}

.v6-card__play svg {
  margin-left: 3px;
}

.v6-card__rate {
  padding: 0.14rem 0.48rem;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--v6-accent2), var(--v6-accent));
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.v6-card__body {
  flex: 0 0 auto;
  margin-top: auto;
  padding: 0.75rem 0.85rem 0.9rem;
  border-top: 1px solid var(--v6-line2);
  background: linear-gradient(180deg, #181212 0%, #100c0c 100%);
}

.v6-card__tit {
  margin: 0 0 0.4rem;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--v6-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v6-card__tag {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.12rem 0.5rem;
  border-radius: 4px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--v6-accent2);
  background: rgba(225, 29, 72, 0.1);
  border: 1px solid rgba(225, 29, 72, 0.28);
}

.v6-card__cast {
  margin: 0;
  font-size: 0.72rem;
  color: var(--v6-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v6-deck__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--v6-muted);
  font-size: 0.88rem;
}

/* 编辑推荐区 */
.v6-band {
  margin: 0 0 2.5rem;
}

.v6-band__shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-radius: 12px;
  border: 1px solid var(--v6-line2);
  background: linear-gradient(180deg, rgba(22, 16, 16, 0.98), rgba(10, 8, 8, 0.99));
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.v6-band__shell .v6-feed {
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.v6-band__shell .v6-feed:first-child {
  border-right: 1px solid var(--v6-line2);
}

.v6-feed {
  border-radius: 12px;
  border: 1px solid var(--v6-line);
  background: var(--v6-panel2);
  padding: 1rem 1.15rem 1.15rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.v6-feed__h {
  margin: 0 0 0.75rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--v6-line2);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--v6-text);
}

.v6-feed__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.v6-feed__li { margin-bottom: 0.35rem; }

.v6-feed__hit {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.4rem;
  border-radius: 8px;
  transition: background 0.16s;
}

.v6-feed__hit:hover {
  background: rgba(225, 29, 72, 0.07);
}

.v6-feed__thumb {
  width: 56px;
  height: 76px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #0a0808;
  border: 1px solid var(--v6-line2);
}

.v6-feed__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v6-feed__txt {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.v6-feed__txt b {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--v6-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v6-feed__txt small {
  font-size: 0.7rem;
  color: var(--v6-muted);
}

.v6-feed__empty {
  display: block;
  padding: 0.85rem 0.4rem;
  color: var(--v6-muted);
  font-size: 0.85rem;
}

/* ========== 页脚（极简 · 高端留白） ========== */
.v6-tail {
  margin-top: 1.25rem;
  padding: 2rem 1.25rem max(1.35rem, env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(8, 6, 6, 0.98) 0%, #040303 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(225, 29, 72, 0.12);
}

.v6-tail__inner {
  max-width: var(--v6-max);
  margin: 0 auto;
}

.v6-tail__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 1.5rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.v6-tail__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.v6-tail__brand:hover .v6-tail__sitename {
  color: var(--v6-accent2);
}

.v6-tail__mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(20, 17, 17, 0.95);
  border: 1px solid rgba(225, 29, 72, 0.35);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35) inset;
}

.v6-tail__brand-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  min-width: 0;
}

.v6-tail__sitename {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--v6-text);
  transition: color 0.18s ease;
}

.v6-tail__slogan {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v6-muted);
}

.v6-tail__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem 0.5rem;
}

.v6-tail__nav a {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  border: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.v6-tail__nav a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.v6-tail__nav a:focus-visible {
  outline: 2px solid var(--v6-accent2);
  outline-offset: 2px;
}

.v6-tail__disclaimer {
  margin: 1.1rem 0 0;
  max-width: 48rem;
  font-size: 0.72rem;
  line-height: 1.65;
  letter-spacing: 0.03em;
  color: rgba(184, 168, 168, 0.82);
}

.v6-tail__fine {
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.v6-tail__copy {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(122, 108, 108, 0.95);
}

/* ========== 桌面 ========== */
@media (min-width: 861px) {
  .v6-find__fab,
  .v6-find__shade {
    display: none !important;
  }

  .v6-find > .v6-find__sheet {
    display: block !important;
    position: static !important;
    width: auto !important;
    max-width: min(340px, 36vw) !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .v6-find__form {
    border-radius: 10px;
    border-color: var(--v6-line);
    background: rgba(0, 0, 0, 0.35);
  }

  /* 桌面端：显示「搜索」主按钮（勿仅用浅色图标，否则几乎看不见） */
  .v6-find__go-t {
    display: inline !important;
  }

  .v6-find__go-i {
    display: none !important;
  }

  .v6-find__go {
    min-width: 3.1rem;
    height: 34px;
    padding: 0 0.75rem;
    border-radius: 8px;
    background: linear-gradient(145deg, var(--v6-accent2), var(--v6-accent));
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35);
  }

  .v6-find__go:hover {
    filter: brightness(1.08);
  }

  .v6-menu__btn {
    display: none !important;
  }
}

/* ========== 移动 ========== */
@media (max-width: 860px) {
  .v6-head__sub {
    display: none;
  }

  .v6-head__tools {
    margin-left: auto;
  }

  .v6-find__fab {
    display: inline-flex;
  }

  .v6-menu__btn {
    display: inline-flex;
  }

  .v6-find .v6-find__ico {
    display: none;
  }

  .v6-find__go-t {
    display: inline !important;
  }

  .v6-find__go-i {
    display: none !important;
  }

  .v6-find__go {
    min-width: 3.1rem;
    height: auto;
    border-radius: 8px;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(145deg, var(--v6-accent2), var(--v6-accent));
    color: #fff;
  }

  .v6-stack__head {
    display: block;
    padding: 1rem 1rem 0.95rem;
  }

  .v6-stack__head.v6-listhead {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .v6-listhead__band {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .v6-listhead__top {
    display: block;
  }

  .v6-listhead__top .v6-stack__rail {
    display: none;
  }

  .v6-stack__rail {
    display: none;
  }

  .v6-stack__tit h2 {
    font-size: 1.2rem;
    letter-spacing: 0.04em;
  }

  .v6-chips {
    padding: 0.85rem 1rem 0.75rem;
  }

  .v6-stack__more {
    display: inline-flex;
    margin-top: 0.75rem;
  }

  .v6-band__shell {
    grid-template-columns: 1fr;
  }

  .v6-band__shell .v6-feed:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--v6-line2);
  }

  .v6-tail__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .v6-tail__nav {
    justify-content: flex-start;
    width: 100%;
  }

  .v6-hero {
    margin-bottom: 1.35rem;
    border-radius: 10px;
  }

  .v6-hero__slide {
    aspect-ratio: 16 / 9;
    min-height: 176px;
  }

  .v6-hero__cap {
    padding: 0.85rem 1rem 1rem;
  }
}

@media (max-width: 600px) {
  .v6-listhub {
    padding-top: 0.85rem;
  }

  .v6-deck,
  .v6-deck--list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0.75rem;
    padding: 0 1rem 1.1rem;
  }
}

@media (min-width: 601px) and (max-width: 860px) {
  .v6-deck,
  .v6-deck--list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 0.75rem;
    padding: 0 1rem 1.1rem;
  }
}

/* ========== 列表页（list_page.temp.v6.htm） ========== */
.v6-listhub {
  padding-top: 1.05rem;
}

.v6-crumb {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  color: var(--v6-muted);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.35rem;
}

.v6-crumb a {
  color: var(--v6-text2);
  font-weight: 600;
}

.v6-crumb a:hover {
  color: var(--v6-accent2);
}

.v6-crumb__sep {
  opacity: 0.45;
}

.v6-crumb__here {
  color: var(--v6-text);
  font-weight: 800;
}

.v6-stack--list {
  margin-bottom: 1.5rem;
}

/* 列表头：三行分区（标题 / 子类 / 排序），与 shoutu48 信息流一致 */
.v6-stack__head.v6-listhead {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  border-bottom: none;
}

.v6-listhead__band {
  padding-left: 1.35rem;
  padding-right: 1.35rem;
}

.v6-listhead__band--title {
  position: relative;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: none;
  background:
    radial-gradient(ellipse 120% 90% at 0% -20%, rgba(225, 29, 72, 0.09), transparent 52%),
    linear-gradient(180deg, rgba(18, 14, 14, 0.55) 0%, transparent 100%);
}

.v6-listhead__band--title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(251, 113, 133, 0.5), rgba(225, 29, 72, 0.12) 36%, rgba(255, 255, 255, 0.06) 100%);
  pointer-events: none;
}

.v6-listhead__band--subcats {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(8, 6, 6, 0.2) 100%);
}

.v6-listhead__band--sort {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.85rem;
  padding-top: 0.78rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(6, 4, 4, 0.55), rgba(4, 3, 3, 0.35));
}

.v6-sort__label {
  flex: 0 0 auto;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--v6-muted);
}

.v6-listhead__band--sort .v6-sort {
  flex: 1 1 auto;
  min-width: 0;
  gap: 0.45rem 0.55rem;
}

.v6-listhead__top {
  display: flex;
  align-items: stretch;
  gap: 1rem 1.25rem;
}

.v6-listhead__top .v6-stack__rail {
  flex: 0 0 auto;
  width: 3px;
  margin-top: 0.35rem;
  align-self: stretch;
  min-height: 3.2rem;
  border-radius: 3px;
  opacity: 0.95;
}

.v6-listhead__top .v6-stack__tit {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.v6-stack__tit h1 {
  margin: 0;
  font-size: 1.48rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--v6-text);
}

.v6-stack--list .v6-stack__tit h1 {
  font-size: clamp(1.38rem, 3.6vw, 1.72rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: #faf6f6;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
}

.v6-listhead__intro:empty {
  display: none;
}

.v6-listhead__intro:not(:empty) {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 62rem;
  margin-top: 0.45rem;
  font-size: 0.8rem;
  line-height: 1.62;
  color: rgba(184, 168, 168, 0.92);
}

.v6-listhead__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  margin: 0.85rem 0 0;
  padding: 0;
  font-size: 0.74rem;
  color: var(--v6-muted);
  line-height: 1.45;
}

.v6-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  padding: 0.32rem 0.72rem 0.35rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(244, 240, 240, 0.78);
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.v6-stat__num {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: #fff;
}

.v6-stat__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(225, 29, 72, 0.55);
  opacity: 0.85;
}

.v6-listhead__meta strong:not(.v6-stat__num) {
  color: var(--v6-text2);
  font-weight: 800;
}

.v6-subcats {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  column-gap: 1rem;
  row-gap: 0.35rem;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
}

.v6-subcats__label {
  margin: 0.38rem 0 0;
  padding: 0.24rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(251, 113, 133, 0.88);
  border: 1px solid rgba(225, 29, 72, 0.28);
  border-radius: 6px;
  background: rgba(225, 29, 72, 0.08);
  line-height: 1;
  white-space: nowrap;
}

.v6-subcats__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(5.35rem, 1fr));
  gap: 0.45rem 0.5rem;
}

.v6-subcats__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.05rem;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(244, 240, 240, 0.88);
  text-decoration: none;
  text-align: center;
  line-height: 1.25;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(165deg, rgba(38, 32, 32, 0.95), rgba(14, 11, 11, 0.92));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 8px 22px rgba(0, 0, 0, 0.28);
  transition: border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.v6-subcats__item a:hover {
  border-color: rgba(225, 29, 72, 0.42);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 0 0 1px rgba(225, 29, 72, 0.12),
    0 10px 26px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}

.v6-subcats__item a:focus-visible {
  outline: 2px solid var(--v6-accent2);
  outline-offset: 2px;
}

.v6-subcats__item.is-on a {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, #fb7185, var(--v6-accent) 52%, #9f1239);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 12px 28px rgba(225, 29, 72, 0.28);
  transform: none;
}

@media (max-width: 520px) {
  .v6-subcats {
    grid-template-columns: 1fr;
  }

  .v6-subcats__label {
    margin: 0 0 0.15rem;
  }

  .v6-subcats__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.v6-sort {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  border: none;
  background: transparent;
}

.v6-sort > li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.v6-sort a {
  display: inline-block;
  padding: 0.42rem 1.15rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(40, 36, 36, 0.95);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.v6-sort a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(55, 48, 48, 0.98);
}

.v6-sort li.is-active a {
  color: #fff;
  border-color: transparent;
  background: var(--v6-accent);
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35);
}

.v6-sort a:focus-visible {
  outline: 2px solid var(--v6-accent2);
  outline-offset: 2px;
}

.v6-subcats__item a:focus-visible {
  outline: 2px solid var(--v6-accent2);
  outline-offset: 2px;
}

.v6-deck--list {
  padding-top: 0.35rem;
}

@media (min-width: 861px) {
  .v6-deck.v6-deck--list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem 1.15rem;
  }
}

@media (min-width: 1280px) {
  .v6-deck.v6-deck--list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.v6-stack--list .v6-card__tit {
  font-size: 0.92rem;
  font-weight: 800;
}

.v6-stack--list .v6-card__cast {
  color: var(--v6-muted);
  font-size: 0.74rem;
}

.v6-card__tpjb:empty {
  display: none;
}

.v6-pager__meta {
  margin: 1.1rem 0 0.45rem;
  font-size: 0.78rem;
  color: var(--v6-muted);
  text-align: center;
}

.v6-pager__hint {
  margin-left: 0.35rem;
  opacity: 0.75;
  font-size: 0.72rem;
}

.v6-pager {
  margin: 0 0 2rem;
  padding: 0 0 max(0.5rem, env(safe-area-inset-bottom, 0px));
}

.v6-pager__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

/* 帝国 [!--show.listpage--] 一般已自带 ul；勿再外包一层 ul，否则 ul 套 ul 会整列竖排 + 默认圆点 */
.v6-pager__inner > ul,
.v6-pager__inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.v6-pager__inner li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.v6-pager__inner a,
.v6-pager__inner span,
.v6-pager__inner strong,
.v6-pager__inner .pagenow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 2rem;
  min-height: 2.35rem;
  margin: 0.2rem;
  padding: 0 0.6rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--v6-text2);
  border: 1px solid var(--v6-line2);
  background: rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.v6-pager__inner a:hover {
  border-color: rgba(225, 29, 72, 0.4);
  color: var(--v6-accent2);
}

.v6-pager__inner strong,
.v6-pager__inner .pagenow {
  color: #fff;
  border-color: var(--v6-accent);
  background: linear-gradient(145deg, var(--v6-accent2), var(--v6-accent));
}

@media (max-width: 860px) {
  .v6-stack__tit h1 {
    font-size: 1.22rem;
  }
}

/* ========== 内容页（详情 / show.temp.v6） ========== */
.v6-showhub {
  padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
}

.v6-show {
  --v6-show-pad: 1.25rem;
  max-width: var(--v6-max);
  margin: 0 auto;
  padding: 0.85rem var(--v6-show-pad) 0;
}

.v6-show__crumb {
  margin: 0 0 1rem;
}

.v6-show__shell {
  border-radius: 16px;
  border: 1px solid var(--v6-line2);
  background: linear-gradient(165deg, var(--v6-panel) 0%, var(--v6-panel2) 100%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.v6-show__shell--pad {
  margin-top: 1rem;
  padding: 1.1rem 1.15rem 1.25rem;
}

.v6-show__hero {
  display: grid;
  grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
  gap: 1.15rem 1.5rem;
  padding: 1.1rem 1.15rem 1.2rem;
  align-items: start;
}

.v6-show__col-media {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
}

.v6-show__posterbox {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--v6-line2);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.55);
  aspect-ratio: 2 / 3;
  background: #0a0808;
}

.v6-show__posterbox a {
  display: block;
  height: 100%;
  line-height: 0;
}

.v6-show__posterbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v6-show__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.2rem, 3.2vw, 1.62rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--v6-text);
  line-height: 1.3;
}

.v6-show__main {
  min-width: 0;
}

.v6-show__tip {
  margin: 0 0 0.85rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--v6-muted);
  background: rgba(0, 0, 0, 0.28);
  border-radius: 10px;
  border: 1px solid var(--v6-line2);
}

.v6-show__tip b {
  color: var(--v6-text2);
  font-weight: 700;
}

/* 与 show.temp.shoutu48 一致：标签 + 内联值 */
.v6-drows {
  margin: 0 0 1rem;
}

.v6-drow {
  margin: 0.28rem 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--v6-text2);
  word-break: break-word;
}

.v6-drow .v6-dk {
  display: inline-block;
  min-width: 3.2rem;
  margin-right: 0.35rem;
  color: var(--v6-muted);
  font-weight: 600;
}

.v6-douban-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.6rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, #22c55e, #15803d);
  box-shadow: 0 2px 10px rgba(22, 163, 74, 0.35);
  vertical-align: middle;
}

.v6-douban-chip:hover {
  filter: brightness(1.06);
  color: #fff !important;
}

.v6-douban-chip-ico {
  flex-shrink: 0;
  opacity: 0.95;
}

.v6-douban-empty {
  color: var(--v6-muted);
  font-size: 0.875rem;
}

.v6-show__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin-top: 0.85rem;
}

.v6-showbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0 0.9rem;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  text-decoration: none !important;
  transition: color 0.15s, border-color 0.15s, background 0.15s, box-shadow 0.15s, filter 0.15s;
}

.v6-showbtn--play {
  width: 100%;
  min-height: 2.65rem;
  padding: 0 1rem;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff !important;
  border-color: transparent;
  background: linear-gradient(145deg, var(--v6-accent2), var(--v6-accent));
  box-shadow: 0 6px 22px rgba(225, 29, 72, 0.42);
}

.v6-showbtn--play:hover {
  filter: brightness(1.06);
  color: #fff !important;
}

.v6-showbtn--ghost {
  color: var(--v6-text2) !important;
  border-color: var(--v6-line2);
  background: rgba(0, 0, 0, 0.22);
  font-weight: 600;
}

.v6-showbtn--ghost:hover {
  color: #fff !important;
  border-color: rgba(225, 29, 72, 0.4);
}

.v6-show__h2 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  font-weight: 900;
  color: var(--v6-text);
  letter-spacing: 0.03em;
}

.v6-show__subh {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  color: var(--v6-muted);
}

.v6-show__playstack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.v6-show__linehead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.v6-show__h3 {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--v6-text2);
}

.v6-show__pill {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--v6-muted);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--v6-line2);
  background: rgba(0, 0, 0, 0.2);
}

.v6-show__epdeck {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.45rem;
}

.v6-show__ep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.1rem;
  padding: 0.38rem 0.55rem;
  border-radius: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--v6-text2);
  border: 1px solid var(--v6-line2);
  background: rgba(24, 20, 20, 0.85);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.v6-show__ep:hover {
  color: #fff;
  border-color: rgba(225, 29, 72, 0.45);
  background: rgba(40, 32, 32, 0.95);
}

.v6-show__text {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--v6-text2);
}

.v6-show__text p {
  margin: 0 0 0.75em;
}

.v6-show__text img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.v6-show__text table {
  max-width: 100%;
  display: block;
  overflow-x: auto;
}

/* 相关推荐：横向拉满内容区、密铺网格、弱化卡片框消除海报两侧“黑条”感 */
.v6-show__reco-panel {
  margin-top: 1rem;
  margin-left: calc(-1 * var(--v6-show-pad));
  margin-right: calc(-1 * var(--v6-show-pad));
  width: calc(100% + 2 * var(--v6-show-pad));
  border-radius: 16px;
  border: 1px solid var(--v6-line2);
  background: linear-gradient(165deg, var(--v6-panel) 0%, var(--v6-panel2) 100%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.v6-show__reco-title {
  margin: 0;
  padding: 1rem 10px 0.55rem;
}

.v6-deck.v6-deck--reco {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0 10px 14px;
  align-items: start;
}

@media (min-width: 420px) {
  .v6-deck.v6-deck--reco {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 0 10px 16px;
  }
}

@media (min-width: 640px) {
  .v6-deck.v6-deck--reco {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    padding: 0 12px 18px;
  }

  .v6-show__reco-title {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (min-width: 980px) {
  .v6-deck.v6-deck--reco {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

/* 推荐区卡片：透明底 + 圆角只压在海报上，图铺满格子 */
.v6-deck--reco .v6-card {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.v6-deck--reco .v6-card:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.v6-deck--reco .v6-card__shot {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  background: #0a0808;
}

.v6-deck--reco .v6-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.v6-deck--reco .v6-card:hover .v6-card__img {
  transform: scale(1.04);
}

.v6-deck--reco .v6-card__body {
  margin-top: 0;
  padding: 0.45rem 0 0;
  border-top: none;
  background: transparent;
}

.v6-deck--reco .v6-card__tit {
  font-size: 0.78rem;
  margin-bottom: 0.25rem;
}

.v6-deck--reco .v6-card__cast {
  font-size: 0.68rem;
  line-height: 1.45;
}

.v6-deck--reco .v6-show__emptyblk {
  grid-column: 1 / -1;
  padding: 1.25rem 0.5rem;
}

.v6-show__emptyblk {
  margin: 0;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--v6-muted);
}

@media (max-width: 720px) {
  .v6-show {
    --v6-show-pad: 1rem;
    padding: 0.85rem var(--v6-show-pad) 0;
  }

  .v6-show__hero {
    grid-template-columns: minmax(0, 132px) minmax(0, 1fr);
    gap: 0.85rem 1rem;
    padding: 0.95rem 1rem 1.05rem;
  }

  .v6-drow {
    font-size: 0.84rem;
  }

  .v6-drow .v6-dk {
    min-width: 2.85rem;
  }

  .v6-showbtn {
    min-height: 2.2rem;
    padding: 0 0.8rem;
    font-size: 0.78rem;
  }

  .v6-showbtn--play {
    min-height: 2.5rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 520px) {
  .v6-show__hero {
    grid-template-columns: 1fr;
  }

  .v6-show__col-media {
    max-width: 200px;
    margin: 0 auto;
  }
}

/* ========== 播放页（play.temp.v6 · 结构对齐 play.temp.shoutu48） ========== */
body.v6.v6-play {
  overflow-x: hidden;
}

.v6-hub.v6-playhub {
  --v6-play-pad: 1.25rem;
  padding: 0.75rem var(--v6-play-pad) 0;
  max-width: var(--v6-max);
}

.v6-play__inner {
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.v6-play__crumb {
  margin: 0 0 0.85rem;
}

.v6-play__stage-wrap {
  width: 100%;
  box-sizing: border-box;
}

.v6-play__stage {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--v6-line2);
  background: var(--v6-panel);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.v6-play__stage .video-frame,
.v6-play__stage .video-frame--v6-play {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  position: relative;
  box-sizing: border-box;
}

.v6-play__media-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-sizing: border-box;
}

@supports not (aspect-ratio: 16 / 9) {
  .v6-play__media-shell {
    height: 0;
    padding-bottom: 56.25%;
    aspect-ratio: auto;
  }

  .v6-play__media-shell > *:not(.v6-play__big-play) {
    position: absolute !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
}

.v6-play__media-shell--iframe .v6-play-iframe-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 0 !important;
  min-height: 0 !important;
  height: 100% !important;
  border-radius: 0;
}

.v6-play__stage video.video-el {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
  box-sizing: border-box;
}

.v6-play__media-shell #playera1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 0 !important;
  max-height: none !important;
  border-radius: 0;
  box-sizing: border-box;
}

body.v6.v6-play #playera1 .dplayer {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
}

.v6-play .v6-play-iframe-wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.v6-play__big-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  width: 4.25rem;
  height: 4.25rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.25s ease;
}

.v6-play__big-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 16px 48px rgba(225, 29, 72, 0.35);
}

.v6-play__big-play:active {
  transform: translate(-50%, -50%) scale(0.98);
}

.v6-play__big-play-ico {
  width: 1.6rem;
  height: 1.6rem;
  margin-left: 4px;
  color: #111;
}

.v6-play__media-shell.is-playing .v6-play__big-play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.v6-play__headline {
  margin: 1rem 0 0;
}

.v6-play__headline h1 {
  margin: 0;
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--v6-text);
  text-wrap: balance;
}

.v6-play__headline h1 a {
  color: var(--v6-text);
  text-decoration: none;
  border-radius: 4px;
}

.v6-play__headline h1 a:hover {
  color: var(--v6-accent2);
}

.v6-play__headline-ep {
  display: inline-block;
  margin: 0.35rem 0 0 0.5rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--v6-accent2), var(--v6-accent));
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  vertical-align: middle;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35);
}

.v6-play__card {
  margin-top: 1.15rem;
  background: linear-gradient(165deg, var(--v6-panel) 0%, var(--v6-panel2) 100%);
  color: var(--v6-text2);
  border-radius: 16px;
  padding: clamp(1rem, 3vw, 1.25rem) clamp(1rem, 3vw, 1.3rem) 1.35rem;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--v6-line2);
}

.v6-play__card-h {
  margin: 0 0 0.85rem;
  font-size: 1.02rem;
  font-weight: 900;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--v6-line2);
  color: var(--v6-text);
  letter-spacing: 0.02em;
}

.v6-play__dl {
  margin: 0;
  padding: 0;
}

.v6-play__dl > div {
  display: grid;
  grid-template-columns: minmax(4.25rem, 5.5rem) 1fr;
  gap: 0.4rem 0.75rem;
  padding: 0.48rem 0;
  border-bottom: 1px solid var(--v6-line2);
  font-size: 0.875rem;
  line-height: 1.6;
  align-items: start;
}

.v6-play__dl > div:last-of-type {
  border-bottom: 0;
}

.v6-play__dt {
  color: var(--v6-muted);
  font-weight: 600;
  font-size: 0.8125rem;
}

.v6-play__dd {
  color: var(--v6-text2);
  margin: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.v6-play__dd a {
  color: var(--v6-accent2);
  text-decoration: none;
}

.v6-play__dd a:hover {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.v6-play__syn {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--v6-line2);
}

.v6-play__syn-h {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--v6-muted);
  letter-spacing: 0.04em;
}

.v6-play__syn-body {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--v6-text2);
  word-break: break-word;
  overflow-wrap: anywhere;
}

.v6-play__syn-body p:first-child {
  margin-top: 0;
}

.v6-play__syn-body p:last-child {
  margin-bottom: 0;
}

.v6-play__syn-body a {
  color: var(--v6-accent2);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.v6-play__syn-body a:hover {
  color: #fff;
}

.v6-play__src {
  margin-top: 1.1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(165deg, var(--v6-panel) 0%, var(--v6-panel2) 100%);
  border: 1px solid var(--v6-line2);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.v6-play__src-h {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--v6-line2);
}

.v6-play__src-h strong {
  font-size: 0.9rem;
  color: var(--v6-text);
  font-weight: 800;
}

.v6-play__src-h span {
  font-size: 0.74rem;
  color: var(--v6-muted);
  line-height: 1.45;
  max-width: min(100%, 16rem);
  text-align: right;
}

.v6-play__pl {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.45rem;
}

.v6-play__pl li {
  margin: 0;
  padding: 0;
}

.v6-play__pl a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.38rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid var(--v6-line2);
  color: var(--v6-text2);
  text-decoration: none !important;
  background: rgba(0, 0, 0, 0.22);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.v6-play__pl a:hover {
  border-color: rgba(225, 29, 72, 0.45);
  color: #fff;
  background: rgba(40, 32, 32, 0.95);
}

.v6-play__pl a.active {
  background: linear-gradient(145deg, var(--v6-accent2), var(--v6-accent));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.38);
}

.v6-play__rec {
  margin-top: 1.5rem;
}

.v6-play__rec-h {
  margin: 0 0 0.5rem;
  font-size: 1.02rem;
  font-weight: 900;
  color: var(--v6-text);
  letter-spacing: 0.02em;
}

.v6-play__rec-lead {
  font-size: 0.8rem;
  color: var(--v6-muted);
  margin: 0 0 0.85rem;
  line-height: 1.55;
  max-width: 52rem;
}

.v6-play__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-width: 100%;
  padding: 1.25rem 1.5rem;
  color: var(--v6-muted);
  background: linear-gradient(165deg, var(--v6-panel2), #0a0808);
  border-radius: 14px;
  font-size: 0.875rem;
  line-height: 1.55;
  box-sizing: border-box;
  text-wrap: balance;
}

@media (max-width: 767px) {
  .v6-play__stage-wrap {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .v6-play__stage {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .v6-play__stage .video-frame--v6-play {
    border-radius: 0;
  }

  .v6-play__media-shell {
    border-radius: 0;
  }

  .v6-play__big-play {
    width: 3.85rem;
    height: 3.85rem;
  }

  .v6-play__big-play-ico {
    width: 1.5rem;
    height: 1.5rem;
  }

  .v6-play__headline-ep {
    margin-left: 0;
    margin-top: 0.45rem;
    display: inline-block;
  }

  .v6-play__src-h span {
    text-align: left;
    max-width: none;
  }
}

@media (max-width: 720px) {
  .v6-hub.v6-playhub {
    --v6-play-pad: 1rem;
    padding-left: var(--v6-play-pad);
    padding-right: var(--v6-play-pad);
  }
}

@media (max-width: 380px) {
  .v6-play__dl > div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .v6-play__dt {
    padding-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v6-play__big-play,
  .v6-play__pl a {
    transition: none;
  }

  .v6-play__big-play:hover,
  .v6-play__big-play:active {
    transform: translate(-50%, -50%);
  }
}

/* ========== 搜索页（search_page.temp.v6 · 对齐 shoutu48 结构） ========== */
.v6-hub.v6-searchhub {
  padding-top: 1.05rem;
}

.v6-search__crumb {
  margin-bottom: 1rem;
}

.v6-search-shell {
  border-radius: 16px;
  border: 1px solid var(--v6-line2);
  background: linear-gradient(165deg, var(--v6-panel) 0%, var(--v6-panel2) 100%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  margin-bottom: 0.35rem;
}

.v6-search-head {
  padding: 1.1rem 1.15rem 1rem;
  border-bottom: 1px solid var(--v6-line2);
}

.v6-search__h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.12rem, 2.8vw, 1.45rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--v6-text);
  word-break: break-word;
}

.v6-search__lead {
  margin: 0 0 0.4rem;
  font-size: 0.86rem;
  color: var(--v6-muted);
  line-height: 1.55;
}

.v6-search__meta {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  color: var(--v6-muted);
}

.v6-search__num {
  color: var(--v6-accent2);
  font-weight: 800;
}

/* 结果区内联搜索（勿用 .v6-find 类名，避免与顶栏冲突） */
.v6-hub .v6-search-again {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: nowrap;
  max-width: 36rem;
  margin-top: 0.15rem;
  padding: 0.38rem 0.55rem 0.38rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--v6-line2);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.v6-hub .v6-search-again__ico {
  color: var(--v6-muted);
  flex-shrink: 0;
}

.v6-hub .v6-search-again input[type="search"],
.v6-hub .v6-search-again input[type="text"] {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-size: 0.88rem;
  outline: none;
  color: var(--v6-text);
}

.v6-hub .v6-search-again input::placeholder {
  color: var(--v6-muted);
  opacity: 0.85;
}

.v6-hub .v6-search-again button[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--v6-accent2), var(--v6-accent));
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35);
}

.v6-hub .v6-search-again button[type="submit"]:hover {
  filter: brightness(1.06);
}

.v6-search-results.v6-deck--list {
  padding-top: 1rem;
  border-top: none;
}

.v6-pager__meta--search {
  margin-top: 1.05rem;
}

.v6-pager--search {
  margin-bottom: 1.5rem;
}

