/* 更多影视源码访问 https://yingshizhanzhang.com */
/* 影视站长 — 白色简约主题 */
:root {
  --yingshizhanzhang_com-bg: #f5f5f5;
  --yingshizhanzhang_com-surface: #ffffff;
  --yingshizhanzhang_com-text: #333333;
  --yingshizhanzhang_com-muted: #888888;
  --yingshizhanzhang_com-accent: #ff5f00;
  --yingshizhanzhang_com-accent-2: #7091fc;
  --yingshizhanzhang_com-accent-soft: rgba(255, 95, 0, 0.1);
  --yingshizhanzhang_com-radius: 0;
  --yingshizhanzhang_com-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  --yingshizhanzhang_com-header-h: 68px;
  --yingshizhanzhang_com-space-xs: 0.35rem;
  --yingshizhanzhang_com-space-sm: 0.65rem;
  --yingshizhanzhang_com-space-md: 1rem;
  --yingshizhanzhang_com-space-lg: 1.5rem;
  --yingshizhanzhang_com-space-xl: 2.25rem;
  --yingshizhanzhang_com-section-gap: 1.75rem;
  --yingshizhanzhang_com-focus-ring: 0 0 0 3px rgba(255, 95, 0, 0.35);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--yingshizhanzhang_com-header-h) + 12px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .yingshizhanzhang_com-vod-thumb,
  .yingshizhanzhang_com-vod-play-icon,
  .yingshizhanzhang_com-vod-card,
  .yingshizhanzhang_com-back-top {
    transition: none !important;
  }

  .yingshizhanzhang_com-vod-card:hover .yingshizhanzhang_com-vod-thumb {
    transform: none;
  }
}

body.yingshizhanzhang_com-body {
  font-family: "Microsoft YaHei", "PingFang SC", "Segoe UI", sans-serif;
  background: var(--yingshizhanzhang_com-bg);
  color: var(--yingshizhanzhang_com-text);
  padding-top: var(--yingshizhanzhang_com-header-h);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* 全局键盘焦点（不改动鼠标点击外观） */
.yingshizhanzhang_com-body :where(a, button, input, select, textarea, .btn):focus {
  outline: none;
}

.yingshizhanzhang_com-body :where(a, button, input, select, textarea, .btn):focus-visible {
  outline: none;
  box-shadow: var(--yingshizhanzhang_com-focus-ring);
}

.yingshizhanzhang_com-body .form-control:focus-visible {
  box-shadow: 0 0 0 2px var(--yingshizhanzhang_com-accent-soft), var(--yingshizhanzhang_com-focus-ring);
}

/* 内页主区域统一上下留白 */
.yingshizhanzhang_com-page-shell {
  padding-top: var(--yingshizhanzhang_com-space-lg);
  padding-bottom: var(--yingshizhanzhang_com-space-xl);
}

.yingshizhanzhang_com-page-intro {
  margin-bottom: var(--yingshizhanzhang_com-space-lg);
}

@media (min-width: 992px) {
  .yingshizhanzhang_com-page-shell {
    padding-top: var(--yingshizhanzhang_com-space-xl);
    padding-bottom: 2.75rem;
  }
}

/* 轻提示（复制链接等） */
.yingshizhanzhang_com-toast {
  position: fixed;
  left: 50%;
  top: calc(var(--yingshizhanzhang_com-header-h) + 12px);
  transform: translateX(-50%) translateY(-8px);
  z-index: 1090;
  max-width: min(90vw, 360px);
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
  color: #fff;
  background: rgba(51, 51, 51, 0.92);
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.yingshizhanzhang_com-toast.yingshizhanzhang_com-toast--show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* 空搜索时表单轻提示 */
form.yingshizhanzhang_com-search-form.yingshizhanzhang_com-form-nudge .form-control {
  border-color: var(--yingshizhanzhang_com-accent);
  animation: yingshizhanzhang_com-nudge 0.5s ease;
}

@keyframes yingshizhanzhang_com-nudge {
  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-4px);
  }

  75% {
    transform: translateX(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  form.yingshizhanzhang_com-search-form.yingshizhanzhang_com-form-nudge .form-control {
    animation: none;
  }
}

/* 首页公告条 + 顶栏下热搜 */
.yingshizhanzhang_com-announcement-bar {
  background: linear-gradient(90deg, #fff8f0 0%, #fff 50%, #f7f9ff 100%);
  border-bottom: 1px solid #eee;
  margin: 0 0 var(--yingshizhanzhang_com-space-sm);
}

.yingshizhanzhang_com-announcement-bar .container {
  padding-top: var(--yingshizhanzhang_com-space-sm);
  padding-bottom: var(--yingshizhanzhang_com-space-sm);
  row-gap: var(--yingshizhanzhang_com-space-sm);
}

.yingshizhanzhang_com-announcement-inner {
  flex-wrap: nowrap;
}

@media (max-width: 767.98px) {
  .yingshizhanzhang_com-announcement-inner {
    flex-wrap: wrap;
  }
}

.yingshizhanzhang_com-announcement-left {
  flex-shrink: 0;
}

.yingshizhanzhang_com-hot-inline {
  line-height: 1.6;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  max-width: 100%;
}

.yingshizhanzhang_com-hot-inline-label {
  flex-shrink: 0;
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.8rem;
}

.yingshizhanzhang_com-hot-inline-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  padding-bottom: 2px;
}

.yingshizhanzhang_com-announcement-badge {
  display: inline-block;
  padding: 0.1rem 0.45rem;
  margin-right: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: var(--yingshizhanzhang_com-accent);
  border-radius: 3px;
  vertical-align: middle;
}

.yingshizhanzhang_com-hot-inline-links a {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  font-size: 0.8rem;
  color: var(--yingshizhanzhang_com-text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  max-width: 11rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.yingshizhanzhang_com-hot-inline-links a:hover {
  border-color: var(--yingshizhanzhang_com-accent);
  color: var(--yingshizhanzhang_com-accent);
  background: #fff7f1;
}

/* 搜索关键词高亮 */
mark.yingshizhanzhang_com-highlight {
  padding: 0 0.15em;
  background: rgba(255, 95, 0, 0.22);
  color: inherit;
  border-radius: 2px;
}

/* 搜索无结果 */
.yingshizhanzhang_com-empty-state {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--yingshizhanzhang_com-surface);
  border: 1px dashed #ddd;
  border-radius: var(--yingshizhanzhang_com-radius);
  color: var(--yingshizhanzhang_com-muted);
}

.yingshizhanzhang_com-empty-state .bi {
  font-size: 2.5rem;
  color: #ccc;
  display: block;
  margin-bottom: 0.75rem;
}

/* 统一面包屑样式 */
.yingshizhanzhang_com-breadcrumb-wrap .breadcrumb {
  background: var(--yingshizhanzhang_com-surface);
  padding: 0.55rem 1rem;
  border-radius: var(--yingshizhanzhang_com-radius);
  border: 1px solid #eee;
  flex-wrap: wrap;
  gap: 0.25rem 0;
  margin-bottom: 0;
}

.yingshizhanzhang_com-breadcrumb-wrap .breadcrumb-item + .breadcrumb-item::before {
  color: #b6b6b6;
}

.yingshizhanzhang_com-breadcrumb-wrap .breadcrumb-item a {
  color: #666;
  text-decoration: none;
}

.yingshizhanzhang_com-breadcrumb-wrap .breadcrumb-item a:hover {
  color: var(--yingshizhanzhang_com-accent);
}

.yingshizhanzhang_com-breadcrumb-wrap .breadcrumb-item.active {
  color: #999;
}

.yingshizhanzhang_com-breadcrumb-wrap .breadcrumb-item.active::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 0.45rem;
  border-radius: 50%;
  background: var(--yingshizhanzhang_com-accent);
  vertical-align: middle;
}

/* 播放页侧栏：猜你喜欢紧凑卡片 */
.yingshizhanzhang_com-play-side-panel {
  background: var(--yingshizhanzhang_com-surface);
  border-radius: var(--yingshizhanzhang_com-radius);
  border: 1px solid #eee;
  box-shadow: var(--yingshizhanzhang_com-shadow);
  padding: 1rem;
}

.yingshizhanzhang_com-mini-vod {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 0.45rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.yingshizhanzhang_com-mini-vod:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.yingshizhanzhang_com-mini-vod:first-of-type {
  padding-top: 0;
}

.yingshizhanzhang_com-mini-vod:hover {
  color: var(--yingshizhanzhang_com-accent);
}

.yingshizhanzhang_com-mini-vod:focus-visible {
  border-radius: 4px;
  box-shadow: var(--yingshizhanzhang_com-focus-ring);
}

@media (min-width: 992px) {
  .yingshizhanzhang_com-play-aside-inner {
    position: sticky;
    top: calc(var(--yingshizhanzhang_com-header-h) + var(--yingshizhanzhang_com-space-md));
    align-self: flex-start;
  }
}

.yingshizhanzhang_com-mini-vod-thumb {
  width: 48px;
  height: 68px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  background: #e9ecef;
}

.yingshizhanzhang_com-mini-vod-title {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yingshizhanzhang_com-mini-vod-meta {
  font-size: 0.75rem;
  color: var(--yingshizhanzhang_com-muted);
  margin: 0;
}

.yingshizhanzhang_com-skip-link {
  position: absolute;
  left: -9999px;
  z-index: 1080;
  padding: 0.5rem 1rem;
  background: var(--yingshizhanzhang_com-accent);
  color: #fff;
  border-radius: 4px;
}

.yingshizhanzhang_com-skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.yingshizhanzhang_com-skip-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  box-shadow: var(--yingshizhanzhang_com-focus-ring);
}

/* 顶栏（仿 CMS 影视站：白底实色 + 扁平方角搜索） */
.yingshizhanzhang_com-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.yingshizhanzhang_com-site-header .navbar {
  min-height: var(--yingshizhanzhang_com-header-h);
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.yingshizhanzhang_com-brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--yingshizhanzhang_com-text) !important;
  text-decoration: none;
}

.yingshizhanzhang_com-brand-logo {
  display: block;
  max-height: 40px;
  width: auto;
  max-width: min(200px, 42vw);
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.yingshizhanzhang_com-brand-text {
  line-height: 1.2;
}

/* 顶栏：深色模式切换 */
.yingshizhanzhang_com-theme-toggle {
  flex-shrink: 0;
  position: relative;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: linear-gradient(145deg, #f0f2f5 0%, #e2e6eb 100%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: #4a5568;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.yingshizhanzhang_com-theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 95, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  color: var(--yingshizhanzhang_com-accent);
}

.yingshizhanzhang_com-theme-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 95, 0, 0.35);
}

.yingshizhanzhang_com-theme-toggle-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.yingshizhanzhang_com-theme-toggle-sun {
  display: none;
}

.yingshizhanzhang_com-theme-toggle.yingshizhanzhang_com-theme-toggle--on {
  background: linear-gradient(145deg, #3d3d44 0%, #2a2a30 100%);
  color: #ffc14d;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.yingshizhanzhang_com-theme-toggle.yingshizhanzhang_com-theme-toggle--on:hover {
  color: #ffd078;
  box-shadow: 0 4px 16px rgba(255, 193, 77, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.yingshizhanzhang_com-theme-toggle.yingshizhanzhang_com-theme-toggle--on .yingshizhanzhang_com-theme-toggle-moon {
  display: none;
}

.yingshizhanzhang_com-theme-toggle.yingshizhanzhang_com-theme-toggle--on .yingshizhanzhang_com-theme-toggle-sun {
  display: inline;
}

.yingshizhanzhang_com-brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--yingshizhanzhang_com-radius);
  background: var(--yingshizhanzhang_com-accent);
  color: #fff;
  font-size: 0.8rem;
  margin-right: 0.45rem;
}

.yingshizhanzhang_com-main-nav .nav-link {
  color: #555;
  font-weight: 400;
  padding: 0.55rem 0.8rem !important;
  border-radius: var(--yingshizhanzhang_com-radius);
}

.yingshizhanzhang_com-main-nav .nav-link:hover,
.yingshizhanzhang_com-main-nav .nav-link:focus {
  color: var(--yingshizhanzhang_com-accent);
  background: transparent;
}

.yingshizhanzhang_com-main-nav .nav-link.active {
  color: var(--yingshizhanzhang_com-accent);
  font-weight: 600;
  background: transparent;
}

.yingshizhanzhang_com-search-form {
  position: relative;
  z-index: 5;
}

.yingshizhanzhang_com-search-form .form-control {
  border-radius: var(--yingshizhanzhang_com-radius);
  border: 1px solid #ddd;
  height: 38px;
  padding-left: 0.65rem;
  padding-right: 2.5rem;
  min-width: 160px;
  font-size: 0.875rem;
}

.yingshizhanzhang_com-search-form .form-control:focus {
  border-color: var(--yingshizhanzhang_com-accent);
  box-shadow: 0 0 0 2px var(--yingshizhanzhang_com-accent-soft);
}

.yingshizhanzhang_com-search-submit {
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  border-radius: var(--yingshizhanzhang_com-radius);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yingshizhanzhang_com-accent);
  color: #fff;
  z-index: 6;
  cursor: pointer;
}

.yingshizhanzhang_com-search-submit:hover {
  background: #e55500;
  color: #fff;
}

@media (min-width: 1200px) {
  .yingshizhanzhang_com-home-wrap.container {
    max-width: 1200px;
  }
}

/* 主内容 */
.yingshizhanzhang_com-main {
  flex: 1;
}

/* 首页内容区 */
.yingshizhanzhang_com-home-wrap {
  padding-top: var(--yingshizhanzhang_com-space-sm);
  padding-bottom: var(--yingshizhanzhang_com-space-xl);
}

.yingshizhanzhang_com-section--stack {
  margin-bottom: var(--yingshizhanzhang_com-section-gap);
}

#yingshizhanzhang_com-section-new {
  margin-top: 0.65rem;
}

/* 仿 mytheme 面板 */
.yingshizhanzhang_com-panel {
  background: var(--yingshizhanzhang_com-surface);
  border-radius: var(--yingshizhanzhang_com-radius);
  margin-bottom: var(--yingshizhanzhang_com-section-gap);
  box-shadow: var(--yingshizhanzhang_com-shadow);
  border: 1px solid #eee;
}

.yingshizhanzhang_com-panel-hd {
  padding: 0.75rem 1.1rem;
  border-bottom: 1px solid #f0f0f0;
}

.yingshizhanzhang_com-panel-bd {
  padding: 0.85rem 1.1rem 1.15rem;
}

.yingshizhanzhang_com-panel-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  margin: 0;
  padding-left: 0.5rem;
  border-left: 3px solid var(--yingshizhanzhang_com-accent);
}

.yingshizhanzhang_com-panel-meta {
  margin: 0;
}

.yingshizhanzhang_com-text-accent {
  color: var(--yingshizhanzhang_com-accent);
  font-weight: 600;
}

.yingshizhanzhang_com-split {
  color: #ccc;
}

.yingshizhanzhang_com-inline-link {
  color: var(--yingshizhanzhang_com-muted);
  text-decoration: none;
}

.yingshizhanzhang_com-inline-link:hover {
  color: var(--yingshizhanzhang_com-accent);
}

/* 区块标题（主栏内） */
.yingshizhanzhang_com-section {
  margin-bottom: 0;
}

.yingshizhanzhang_com-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--yingshizhanzhang_com-space-sm);
  margin-bottom: var(--yingshizhanzhang_com-space-sm);
  padding-bottom: var(--yingshizhanzhang_com-space-sm);
  border-bottom: 1px solid #f0f0f0;
}

.yingshizhanzhang_com-detail-related-head {
  row-gap: 0.5rem;
}

.yingshizhanzhang_com-related-empty-msg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.yingshizhanzhang_com-related-empty-icon {
  color: var(--yingshizhanzhang_com-accent);
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.yingshizhanzhang_com-detail-related-tabs {
  flex-wrap: nowrap;
  gap: 0.2rem;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.yingshizhanzhang_com-detail-related-tabs .nav-link {
  padding: 0.35rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--yingshizhanzhang_com-muted);
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
}

.yingshizhanzhang_com-detail-related-tabs .nav-link:hover {
  color: var(--yingshizhanzhang_com-text);
  border-color: #e8e8e8;
  background: #fafafa;
}

.yingshizhanzhang_com-detail-related-tabs .nav-link.active {
  color: #fff;
  background: var(--yingshizhanzhang_com-accent);
  border-color: var(--yingshizhanzhang_com-accent);
}

.yingshizhanzhang_com-section-head--picks {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: var(--yingshizhanzhang_com-space-sm);
  box-shadow: none;
}

.yingshizhanzhang_com-section-head--picks .yingshizhanzhang_com-section-title {
  font-size: 1.05rem;
}

.yingshizhanzhang_com-section-head--picks p {
  color: var(--yingshizhanzhang_com-muted) !important;
}

/* 首页大片推荐卡片：独立样式 */
#yingshizhanzhang_com-section-picks .yingshizhanzhang_com-vod-card {
  border-color: #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#yingshizhanzhang_com-section-picks .yingshizhanzhang_com-vod-card:hover {
  border-color: rgba(255, 95, 0, 0.4);
  box-shadow: 0 8px 18px rgba(255, 95, 0, 0.14);
}

#yingshizhanzhang_com-section-picks .yingshizhanzhang_com-vod-thumb-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 100%);
}

#yingshizhanzhang_com-section-picks .yingshizhanzhang_com-vod-episode {
  font-size: 0.72rem;
  letter-spacing: 0.2px;
}

#yingshizhanzhang_com-section-picks .yingshizhanzhang_com-vod-body {
  padding-top: 0.68rem;
}

#yingshizhanzhang_com-section-picks .yingshizhanzhang_com-vod-title {
  font-size: 0.93rem;
  -webkit-line-clamp: 1;
}

#yingshizhanzhang_com-section-picks .yingshizhanzhang_com-vod-meta {
  font-size: 0.78rem;
}

/* 首页大片推荐：只一排 8 个不换行；容器不足时整行横向滑动 */
#yingshizhanzhang_com-section-picks .yingshizhanzhang_com-home-picks-one-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.45rem;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 6px;
}

#yingshizhanzhang_com-section-picks .yingshizhanzhang_com-home-picks-item {
  flex: 0 0 auto;
  width: calc((100% - 7 * 0.45rem) / 8);
  min-width: 88px;
}

#yingshizhanzhang_com-section-picks .yingshizhanzhang_com-home-picks-item .yingshizhanzhang_com-vod-title {
  font-size: 0.78rem;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#yingshizhanzhang_com-section-picks .yingshizhanzhang_com-home-picks-item .yingshizhanzhang_com-vod-meta {
  font-size: 0.7rem;
}

#yingshizhanzhang_com-section-picks .yingshizhanzhang_com-home-picks-item .yingshizhanzhang_com-vod-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.yingshizhanzhang_com-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #222;
}

.yingshizhanzhang_com-section-title-icon {
  color: var(--yingshizhanzhang_com-accent);
  font-size: 1.15rem;
}

.yingshizhanzhang_com-section-more {
  font-size: 0.8rem;
  color: var(--yingshizhanzhang_com-muted);
  text-decoration: none;
  white-space: nowrap;
}

.yingshizhanzhang_com-section-more:hover {
  color: var(--yingshizhanzhang_com-accent);
}

/* 侧栏排行榜 */
.yingshizhanzhang_com-sidebar {
  padding-left: 0;
}

@media (min-width: 992px) {
  .yingshizhanzhang_com-sidebar {
    padding-left: 0.5rem;
    border-left: 1px dashed #e8e8e8;
  }
}

.yingshizhanzhang_com-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid #f0f0f0;
}

.yingshizhanzhang_com-sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: #333;
}

@media (min-width: 992px) {
  .yingshizhanzhang_com-sidebar--fill {
    min-height: 100%;
  }

  .yingshizhanzhang_com-sidebar-bd {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }

  .yingshizhanzhang_com-sidebar-bd .yingshizhanzhang_com-rank-list {
    flex: 1 1 auto;
    max-height: min(70vh, 900px);
    overflow-y: auto;
    padding-right: 0.35rem;
    scrollbar-width: thin;
  }
}

.yingshizhanzhang_com-rank-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.yingshizhanzhang_com-rank-item {
  border-bottom: 1px dashed #eee;
}

.yingshizhanzhang_com-rank-item:last-child {
  border-bottom: none;
}

.yingshizhanzhang_com-rank-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0;
  min-height: 2.75rem;
  text-decoration: none;
  color: #333;
  font-size: 0.85rem;
}

.yingshizhanzhang_com-rank-link:hover {
  color: var(--yingshizhanzhang_com-accent);
}

.yingshizhanzhang_com-rank-num {
  flex-shrink: 0;
  min-width: 1.35rem;
  height: 1.35rem;
  line-height: 1.35rem;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: #ccc;
  border-radius: 3px;
}

.yingshizhanzhang_com-rank-num--1 {
  background: #ff4d4f;
}

.yingshizhanzhang_com-rank-num--2 {
  background: #ff7a45;
}

.yingshizhanzhang_com-rank-num--3 {
  background: #ffc53d;
  color: #333;
}

.yingshizhanzhang_com-rank-list > li:nth-child(1) .yingshizhanzhang_com-rank-num {
  background: #ff4d4f;
}

.yingshizhanzhang_com-rank-list > li:nth-child(2) .yingshizhanzhang_com-rank-num {
  background: #ff7a45;
}

.yingshizhanzhang_com-rank-list > li:nth-child(3) .yingshizhanzhang_com-rank-num {
  background: #ffc53d;
  color: #333;
}

.yingshizhanzhang_com-rank-title {
  flex: 1;
  min-width: 0;
}

.yingshizhanzhang_com-rank-meta {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: #999;
}

/* 影片卡片 */
.yingshizhanzhang_com-vod-card {
  border-radius: var(--yingshizhanzhang_com-radius);
  overflow: hidden;
  background: var(--yingshizhanzhang_com-surface);
  border: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.yingshizhanzhang_com-vod-card:hover {
  border-color: #eee;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.yingshizhanzhang_com-vod-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.yingshizhanzhang_com-vod-thumb-wrap {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, #e9ecef, #dee2e6);
}

.yingshizhanzhang_com-vod-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.yingshizhanzhang_com-vod-card:hover .yingshizhanzhang_com-vod-thumb {
  transform: scale(1.06);
}

.yingshizhanzhang_com-vod-badge-row {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.yingshizhanzhang_com-vod-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  backdrop-filter: blur(4px);
}

.yingshizhanzhang_com-vod-badge--score {
  background: var(--yingshizhanzhang_com-accent-2);
}

.yingshizhanzhang_com-vod-badge-row .yingshizhanzhang_com-vod-badge + .yingshizhanzhang_com-vod-badge {
  background: #ff9900;
}

.yingshizhanzhang_com-vod-episode {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.35rem 0.5rem;
  font-size: 0.75rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
  text-align: right;
}

.yingshizhanzhang_com-vod-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: opacity 0.25s ease;
  font-size: 2.5rem;
  color: #fff;
  pointer-events: none;
}

.yingshizhanzhang_com-vod-card:hover .yingshizhanzhang_com-vod-play-icon {
  opacity: 1;
}

/* 栅格列内卡片：避免「主演」等长文把列撑破导致无法省略 */
.yingshizhanzhang_com-panel .row > .col {
  min-width: 0;
}

.yingshizhanzhang_com-vod-link {
  display: block;
  min-width: 0;
}

.yingshizhanzhang_com-vod-body {
  padding: 0.75rem 0.85rem 0.95rem;
  min-width: 0;
}

.yingshizhanzhang_com-vod-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yingshizhanzhang_com-vod-meta {
  font-size: 0.8rem;
  color: var(--yingshizhanzhang_com-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yingshizhanzhang_com-vod-cast,
.yingshizhanzhang_com-vod-cast-line {
  font-size: 0.75rem;
  color: #999;
  margin: 0.2rem 0 0;
  line-height: 1.35;
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.yingshizhanzhang_com-vod-cast-line {
  margin: 0;
}

/* 详情页 */
.yingshizhanzhang_com-detail-hero {
  background: linear-gradient(180deg, #fff 0%, var(--yingshizhanzhang_com-bg) 100%);
  padding: var(--yingshizhanzhang_com-space-xl) 0 2.75rem;
}

.yingshizhanzhang_com-detail-hero section + section {
  margin-top: var(--yingshizhanzhang_com-space-lg);
}

.yingshizhanzhang_com-detail-hero #yingshizhanzhang_com-detail-synopsis-title {
  margin-bottom: var(--yingshizhanzhang_com-space-sm);
}

.yingshizhanzhang_com-detail-hero #yingshizhanzhang_com-detail-cast-title {
  margin-bottom: var(--yingshizhanzhang_com-space-sm);
}

.yingshizhanzhang_com-btn-fav.yingshizhanzhang_com-is-fav {
  border-color: var(--yingshizhanzhang_com-accent);
  color: var(--yingshizhanzhang_com-accent);
  background: var(--yingshizhanzhang_com-accent-soft);
}

.yingshizhanzhang_com-detail-poster {
  border-radius: var(--yingshizhanzhang_com-radius);
  box-shadow: var(--yingshizhanzhang_com-shadow);
  width: 100%;
  max-width: 280px;
}

.yingshizhanzhang_com-tag-pill {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.8rem;
  background: #e9ecef;
  color: var(--yingshizhanzhang_com-muted);
  margin-right: 0.35rem;
  margin-bottom: 0.35rem;
}

.yingshizhanzhang_com-detail-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
}

.yingshizhanzhang_com-btn-play {
  font-weight: 600;
}

.yingshizhanzhang_com-detail-cast-dl {
  max-width: 100%;
}

.yingshizhanzhang_com-detail-cast-dd {
  word-break: break-word;
  overflow-wrap: anywhere;
  min-width: 0;
}

.yingshizhanzhang_com-detail-qr-modal-mount {
  line-height: 0;
  padding: 0.5rem;
  background: #fff;
  border: 1px solid #e8e8e8;
}

.yingshizhanzhang_com-detail-qr-modal-mount canvas,
.yingshizhanzhang_com-detail-qr-modal-mount img {
  display: block;
  width: 200px;
  height: 200px;
  max-width: min(200px, 70vw);
  max-height: min(200px, 70vw);
}

/* 播放页 */
.yingshizhanzhang_com-player-wrap {
  background: #0d0d0f;
  border-radius: var(--yingshizhanzhang_com-radius);
  overflow: hidden;
  box-shadow: var(--yingshizhanzhang_com-shadow);
}

/* 苹果 CMS 等：播放器多为 iframe / 脚本注入，避免 overflow:hidden 裁切控件 */
.yingshizhanzhang_com-player-wrap--maccms {
  overflow: visible;
  background: #000;
}

.yingshizhanzhang_com-player-wrap--maccms .MacPlayer,
.yingshizhanzhang_com-player-wrap--maccms .MacPlayer iframe,
.yingshizhanzhang_com-player-wrap--maccms iframe,
.yingshizhanzhang_com-player-wrap--maccms video,
.yingshizhanzhang_com-player-wrap--maccms #playleft {
  display: block;
  width: 100%;
  min-height: 220px;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 0;
}

.yingshizhanzhang_com-player-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  display: block;
}

.yingshizhanzhang_com-player-reaction-num {
  margin-left: 0.2rem;
  font-weight: 600;
  color: var(--yingshizhanzhang_com-muted);
}

#yingshizhanzhang_com-player-btn-like.yingshizhanzhang_com-player-reaction--on {
  border-color: var(--yingshizhanzhang_com-accent);
  color: var(--yingshizhanzhang_com-accent);
  background: var(--yingshizhanzhang_com-accent-soft);
}

#yingshizhanzhang_com-player-btn-like.yingshizhanzhang_com-player-reaction--on .yingshizhanzhang_com-player-reaction-num {
  color: var(--yingshizhanzhang_com-accent);
}

#yingshizhanzhang_com-player-btn-dislike.yingshizhanzhang_com-player-reaction--on {
  border-color: #9a9a9a;
  color: #555;
  background: #f3f3f3;
}

#yingshizhanzhang_com-player-btn-dislike.yingshizhanzhang_com-player-reaction--on .yingshizhanzhang_com-player-reaction-num {
  color: #555;
}

/* 播放页：播放线路 Tab + 集数芯片（多列换行，区域可滚动） */
.yingshizhanzhang_com-play-line-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 0;
}

.yingshizhanzhang_com-play-line-tabs .nav-item {
  flex: 0 0 auto;
}

.yingshizhanzhang_com-play-line-tabs .nav-link {
  border: 1px solid transparent;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  padding: 0.4rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--yingshizhanzhang_com-muted);
  white-space: nowrap;
  margin-bottom: -1px;
}

.yingshizhanzhang_com-play-line-tabs .nav-link:hover {
  color: var(--yingshizhanzhang_com-text);
  border-color: #e8e8e8;
  background: #fafafa;
}

.yingshizhanzhang_com-play-line-tabs .nav-link.active {
  color: var(--yingshizhanzhang_com-accent);
  background: #fff;
  border-color: #e8e8e8 #e8e8e8 #fff;
  font-weight: 600;
}

.yingshizhanzhang_com-play-line-tabcontent {
  border: 1px solid #e8e8e8;
  border-top: none;
  border-radius: 0 0 var(--yingshizhanzhang_com-radius) var(--yingshizhanzhang_com-radius);
  padding: 0.65rem 0.5rem 0.75rem;
  background: #fff;
}

.yingshizhanzhang_com-episode-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.4rem;
  align-content: flex-start;
  max-height: min(52vh, 320px);
  overflow-y: auto;
  padding: 0.1rem 0.05rem 0.2rem;
}

.yingshizhanzhang_com-episode-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  padding: 0.28rem 0.5rem;
  font-size: 0.78rem;
  line-height: 1.25;
  text-decoration: none;
  color: #444;
  background: #f4f4f5;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.yingshizhanzhang_com-episode-chip:hover {
  border-color: var(--yingshizhanzhang_com-accent);
  color: var(--yingshizhanzhang_com-accent);
  background: #fff7f1;
}

.yingshizhanzhang_com-episode-chip.is-active {
  border-color: var(--yingshizhanzhang_com-accent);
  background: var(--yingshizhanzhang_com-accent);
  color: #fff;
  font-weight: 600;
}

.yingshizhanzhang_com-episode-chip:focus-visible {
  outline: none;
  box-shadow: var(--yingshizhanzhang_com-focus-ring);
}

/* 播放侧栏：提高选集芯片优先级，避免被通用链接样式覆盖 */
body.yingshizhanzhang_com-body .yingshizhanzhang_com-play-aside a.yingshizhanzhang_com-episode-chip {
  display: inline-flex;
  box-sizing: border-box;
  text-decoration: none;
  color: #444;
  background: #f4f4f5;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
}

body.yingshizhanzhang_com-body .yingshizhanzhang_com-play-aside a.yingshizhanzhang_com-episode-chip:hover {
  color: var(--yingshizhanzhang_com-accent);
  background: #fff7f1;
  border-color: var(--yingshizhanzhang_com-accent);
}

body.yingshizhanzhang_com-body .yingshizhanzhang_com-play-aside a.yingshizhanzhang_com-episode-chip.is-active {
  color: #fff;
  background: var(--yingshizhanzhang_com-accent);
  border-color: var(--yingshizhanzhang_com-accent);
}

/* 选集：与 Bootstrap .nav-tabs / 全局 a 颜色硬覆盖对抗 */
.yingshizhanzhang_com-play-line-tabcontent a.yingshizhanzhang_com-episode-chip,
.yingshizhanzhang_com-episode-grid a.yingshizhanzhang_com-episode-chip {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  min-width: 2.4rem !important;
  padding: 0.28rem 0.5rem !important;
  font-size: 0.78rem !important;
  line-height: 1.25 !important;
  text-decoration: none !important;
  color: #444 !important;
  background: #f4f4f5 !important;
  border: 1px solid #e4e4e4 !important;
  border-radius: 6px !important;
}

.yingshizhanzhang_com-play-line-tabcontent a.yingshizhanzhang_com-episode-chip:hover {
  color: var(--yingshizhanzhang_com-accent) !important;
  background: #fff7f1 !important;
  border-color: var(--yingshizhanzhang_com-accent) !important;
}

.yingshizhanzhang_com-play-line-tabcontent a.yingshizhanzhang_com-episode-chip.is-active {
  color: #fff !important;
  background: var(--yingshizhanzhang_com-accent) !important;
  border-color: var(--yingshizhanzhang_com-accent) !important;
  font-weight: 600 !important;
}

.yingshizhanzhang_com-episode-list .list-group-item {
  border-radius: 8px !important;
  margin-bottom: 0.35rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.yingshizhanzhang_com-episode-list .list-group-item.active {
  background: var(--yingshizhanzhang_com-accent-soft);
  border-color: var(--yingshizhanzhang_com-accent);
  color: var(--yingshizhanzhang_com-accent);
  font-weight: 600;
}

/* 筛选条 */
.yingshizhanzhang_com-filter-bar {
  background: var(--yingshizhanzhang_com-surface);
  border-radius: var(--yingshizhanzhang_com-radius);
  padding: var(--yingshizhanzhang_com-space-md) 1.25rem 1.15rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: var(--yingshizhanzhang_com-space-lg);
}

.yingshizhanzhang_com-filter-bar > div {
  margin-bottom: var(--yingshizhanzhang_com-space-md);
}

.yingshizhanzhang_com-filter-bar > div:last-child {
  margin-bottom: 0;
}

.yingshizhanzhang_com-filter-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--yingshizhanzhang_com-muted);
  margin-right: 0.5rem;
  margin-bottom: 0.35rem;
  vertical-align: top;
}

@media (min-width: 576px) {
  .yingshizhanzhang_com-filter-label {
    margin-bottom: 0;
  }
}

.yingshizhanzhang_com-filter-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.yingshizhanzhang_com-filter-links a {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--yingshizhanzhang_com-text);
  background: #f1f3f5;
  transition: background 0.2s ease, color 0.2s ease;
}

.yingshizhanzhang_com-filter-links a:hover,
.yingshizhanzhang_com-filter-links a.yingshizhanzhang_com-is-active {
  background: var(--yingshizhanzhang_com-accent);
  color: #fff;
}

/* 分页：主题橙 */
.yingshizhanzhang_com-pagination .page-link {
  color: var(--yingshizhanzhang_com-accent);
  border-color: #e8e8e8;
}

.yingshizhanzhang_com-pagination .page-link:hover {
  color: #fff;
  background: var(--yingshizhanzhang_com-accent);
  border-color: var(--yingshizhanzhang_com-accent);
}

.yingshizhanzhang_com-pagination .page-item.active .page-link {
  z-index: 1;
  background: var(--yingshizhanzhang_com-accent);
  border-color: var(--yingshizhanzhang_com-accent);
  color: #fff;
}

.yingshizhanzhang_com-pagination .page-item.disabled .page-link {
  color: #adb5bd;
  pointer-events: none;
}

/* 详情 · 猜你喜欢空状态 */
.yingshizhanzhang_com-related-empty-wrap {
  width: 100%;
  margin: 0 auto;
}

/* 搜索页 */
.yingshizhanzhang_com-search-hero {
  background: var(--yingshizhanzhang_com-surface);
  border-radius: var(--yingshizhanzhang_com-radius);
  padding: var(--yingshizhanzhang_com-space-lg) var(--yingshizhanzhang_com-space-md);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: var(--yingshizhanzhang_com-space-xl);
}

@media (min-width: 768px) {
  .yingshizhanzhang_com-search-hero {
    padding: var(--yingshizhanzhang_com-space-xl) var(--yingshizhanzhang_com-space-lg);
  }
}

#yingshizhanzhang_com-search-results-section > h2 {
  margin-bottom: var(--yingshizhanzhang_com-space-sm);
}

#yingshizhanzhang_com-search-summary {
  margin-bottom: var(--yingshizhanzhang_com-space-md) !important;
}

.yingshizhanzhang_com-hot-keywords a {
  display: inline-block;
  margin: 0.25rem 0.5rem 0.25rem 0;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #f1f3f5;
  color: var(--yingshizhanzhang_com-text);
  text-decoration: none;
  font-size: 0.875rem;
  transition: background 0.2s ease;
}

.yingshizhanzhang_com-hot-keywords a:hover {
  background: var(--yingshizhanzhang_com-accent-soft);
  color: var(--yingshizhanzhang_com-accent);
}

/* 首页友情链接：与上方「热门动漫」等共用 panel-bd，标题与图标左缘对齐 */
.yingshizhanzhang_com-links-panel {
  margin-bottom: var(--yingshizhanzhang_com-section-gap);
}

.yingshizhanzhang_com-links-panel-head {
  margin-bottom: var(--yingshizhanzhang_com-space-sm);
  padding-bottom: var(--yingshizhanzhang_com-space-sm);
  border-bottom: 1px solid #f0f0f0;
}

.yingshizhanzhang_com-links-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding-left: 0;
}

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

.yingshizhanzhang_com-links-list a {
  display: flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.18rem 0.7rem 0.18rem 0;
  text-decoration: none;
  color: #666;
  background: #fff;
  border: none;
  font-size: 0.82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.yingshizhanzhang_com-links-list a:hover {
  color: var(--yingshizhanzhang_com-accent);
  background: #fff7f1;
}

/* 整站改为直角风格 */
.yingshizhanzhang_com-body .rounded-3,
.yingshizhanzhang_com-body .card,
.yingshizhanzhang_com-body .breadcrumb,
.yingshizhanzhang_com-body .page-link,
.yingshizhanzhang_com-body .form-control,
.yingshizhanzhang_com-body .btn,
.yingshizhanzhang_com-body .list-group-item {
  border-radius: 0 !important;
}

/* 页脚 */
.yingshizhanzhang_com-site-footer {
  margin-top: auto;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 2.25rem 0 2.5rem;
  font-size: 0.875rem;
  color: var(--yingshizhanzhang_com-muted);
}

.yingshizhanzhang_com-footer-links a {
  color: var(--yingshizhanzhang_com-muted);
  text-decoration: none;
  margin: 0 0.5rem;
}

.yingshizhanzhang_com-footer-links a:hover {
  color: var(--yingshizhanzhang_com-accent);
}

/* 回到顶部 */
.yingshizhanzhang_com-back-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1030;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--yingshizhanzhang_com-surface);
  color: var(--yingshizhanzhang_com-accent);
  box-shadow: var(--yingshizhanzhang_com-shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.2s ease;
}

.yingshizhanzhang_com-back-top.yingshizhanzhang_com-back-top--visible {
  opacity: 1;
  visibility: visible;
}

.yingshizhanzhang_com-back-top:hover {
  transform: translateY(-3px);
}

/* 底栏导航（移动端） */
.yingshizhanzhang_com-mobile-tabbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.4rem 0 calc(0.4rem + env(safe-area-inset-bottom, 0px));
  justify-content: space-around;
  min-height: 3.35rem;
}

.yingshizhanzhang_com-mobile-tabbar a {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  color: var(--yingshizhanzhang_com-muted);
  text-decoration: none;
  padding: 0.35rem 0.25rem;
  min-height: 2.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.yingshizhanzhang_com-mobile-tabbar a.yingshizhanzhang_com-is-active {
  color: var(--yingshizhanzhang_com-accent);
  font-weight: 600;
}

.yingshizhanzhang_com-mobile-tabbar .bi {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 2px;
}

@media (max-width: 767.98px) {
  body.yingshizhanzhang_com-body {
    padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
  }

  .yingshizhanzhang_com-mobile-tabbar {
    display: flex;
  }

  .yingshizhanzhang_com-back-top {
    bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  }
}

/* 分页 */
.yingshizhanzhang_com-pagination .page-link {
  border-radius: 8px !important;
  margin: 0 2px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--yingshizhanzhang_com-text);
}

.yingshizhanzhang_com-pagination .page-item.active .page-link {
  background: var(--yingshizhanzhang_com-accent);
  border-color: var(--yingshizhanzhang_com-accent);
}

/* 猜你喜欢 / 同主演 / 大片推荐：卡片观感加固 */
#yingshizhanzhang_com-section-picks .yingshizhanzhang_com-home-picks-item .yingshizhanzhang_com-vod-card,
#yingshizhanzhang_com-related-tab-content .yingshizhanzhang_com-vod-card {
  background: var(--yingshizhanzhang_com-surface);
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

#yingshizhanzhang_com-section-picks .yingshizhanzhang_com-home-picks-item .yingshizhanzhang_com-vod-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* 深色模式（换肤：localStorage yingshizhanzhang_com_theme=dark） */
html.yingshizhanzhang_com-theme-dark {
  color-scheme: dark;
  --yingshizhanzhang_com-bg: #121214;
  --yingshizhanzhang_com-surface: #1c1c20;
  --yingshizhanzhang_com-text: #f2f2f6;
  --yingshizhanzhang_com-muted: #b8b8c6;
  --yingshizhanzhang_com-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-site-header .navbar {
  background: var(--yingshizhanzhang_com-surface) !important;
  border-bottom: 1px solid #2e2e34 !important;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-site-header .navbar-brand,
html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-site-header .nav-link {
  color: var(--yingshizhanzhang_com-text) !important;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-site-header .nav-link.active {
  color: var(--yingshizhanzhang_com-accent) !important;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-site-header .form-control {
  background: #2a2a30;
  border-color: #3a3a42;
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-site-header .navbar-toggler {
  filter: invert(0.88);
}

html.yingshizhanzhang_com-theme-dark .breadcrumb-item,
html.yingshizhanzhang_com-theme-dark .breadcrumb-item a {
  color: var(--yingshizhanzhang_com-muted);
}

html.yingshizhanzhang_com-theme-dark .breadcrumb-item.active {
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-section-head {
  border-bottom-color: #2e2e34;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-section-title {
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-filter-links a {
  background: #2a2a32;
  border: 1px solid #3e3e48;
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-filter-links a.yingshizhanzhang_com-is-active {
  background: var(--yingshizhanzhang_com-accent);
  border-color: var(--yingshizhanzhang_com-accent);
  color: #fff;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-vod-card,
html.yingshizhanzhang_com-theme-dark #yingshizhanzhang_com-section-picks .yingshizhanzhang_com-home-picks-item .yingshizhanzhang_com-vod-card,
html.yingshizhanzhang_com-theme-dark #yingshizhanzhang_com-related-tab-content .yingshizhanzhang_com-vod-card {
  background: var(--yingshizhanzhang_com-surface);
  border-color: #2e2e34;
  box-shadow: var(--yingshizhanzhang_com-shadow);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-vod-card:hover {
  border-color: rgba(255, 95, 0, 0.45);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-site-footer {
  background: #1a1a1e;
  border-top-color: #2e2e34;
  color: var(--yingshizhanzhang_com-muted);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-mobile-tabbar {
  background: rgba(30, 30, 34, 0.96);
  border-top-color: #2e2e34;
}

html.yingshizhanzhang_com-theme-dark .bg-white {
  background-color: var(--yingshizhanzhang_com-surface) !important;
}

html.yingshizhanzhang_com-theme-dark .text-muted,
html.yingshizhanzhang_com-theme-dark .text-secondary {
  color: var(--yingshizhanzhang_com-muted) !important;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-detail-related-tabs .nav-link {
  color: var(--yingshizhanzhang_com-muted);
  border-color: transparent;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-detail-related-tabs .nav-link:hover {
  background: #2a2a30;
  border-color: #3a3a42;
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-pagination .page-link {
  background: var(--yingshizhanzhang_com-surface);
  border-color: #2e2e34;
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-site-header {
  background: var(--yingshizhanzhang_com-surface);
  border-bottom-color: #2e2e34;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-main-nav .nav-link {
  color: #c4c4ce !important;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-main-nav .nav-link:hover,
html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-main-nav .nav-link:focus {
  color: #ffb380 !important;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-main-nav .nav-link.active {
  color: #ff8c4d !important;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-search-form .form-control {
  background: #2a2a30;
  border-color: #3a3a42;
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-search-submit {
  background: var(--yingshizhanzhang_com-accent);
  color: #fff;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-vod-title {
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-vod-meta {
  color: #b0b0bc;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-vod-cast,
html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-vod-cast-line {
  color: #a0a0ac;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-page-intro .text-muted,
html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-page-shell .text-muted {
  color: #b0b0bc !important;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-footer-links a {
  color: #c4c4ce;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-footer-links a:hover {
  color: var(--yingshizhanzhang_com-accent);
}

html.yingshizhanzhang_com-theme-dark .btn-outline-secondary {
  color: #d8d8e0 !important;
  border-color: #4a4a54 !important;
}

html.yingshizhanzhang_com-theme-dark .btn-outline-secondary:hover {
  color: #1a1a1e !important;
  background: #e8e8ec !important;
  border-color: #e8e8ec !important;
}

html.yingshizhanzhang_com-theme-dark .nav-tabs .nav-link {
  color: var(--yingshizhanzhang_com-muted);
}

html.yingshizhanzhang_com-theme-dark .nav-tabs .nav-link:hover {
  color: var(--yingshizhanzhang_com-text);
  border-color: #3a3a42;
}

html.yingshizhanzhang_com-theme-dark .nav-tabs .nav-link.active {
  color: var(--yingshizhanzhang_com-text);
  background: var(--yingshizhanzhang_com-surface);
  border-color: #3a3a42 #3a3a42 var(--yingshizhanzhang_com-surface);
}

html.yingshizhanzhang_com-theme-dark #yingshizhanzhang_com-play-line-tabcontent a.yingshizhanzhang_com-episode-chip {
  color: #d8d8e0 !important;
  background: #2c2c32 !important;
  border-color: #3e3e48 !important;
}

html.yingshizhanzhang_com-theme-dark #yingshizhanzhang_com-play-line-tabcontent a.yingshizhanzhang_com-episode-chip:hover {
  color: #ffb380 !important;
  background: #35353c !important;
  border-color: var(--yingshizhanzhang_com-accent) !important;
}

html.yingshizhanzhang_com-theme-dark #yingshizhanzhang_com-play-line-tabcontent a.yingshizhanzhang_com-episode-chip.is-active {
  color: #fff !important;
  background: var(--yingshizhanzhang_com-accent) !important;
  border-color: var(--yingshizhanzhang_com-accent) !important;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-mini-vod-title {
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-mini-vod-meta {
  color: #a8a8b4;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-theme-toggle:not(.yingshizhanzhang_com-theme-toggle--on) {
  background: linear-gradient(145deg, #3a3a42 0%, #2e2e34 100%);
  color: #c8c8d8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-theme-toggle:not(.yingshizhanzhang_com-theme-toggle--on):hover {
  color: #ffb380;
}

/* ========== 深色模式：补全仍使用浅色的模块（对比度统一用变量） ========== */

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-main,
html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-page-shell {
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-main h1,
html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-main h2,
html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-main h3,
html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-main h4,
html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-main h5,
html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-main h6,
html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-main .h1,
html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-main .h2,
html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-main .h3,
html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-main .h4,
html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-main .h5,
html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-main .h6 {
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .text-dark,
html.yingshizhanzhang_com-theme-dark .text-body {
  color: var(--yingshizhanzhang_com-text) !important;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-breadcrumb-wrap .breadcrumb {
  background: var(--yingshizhanzhang_com-surface);
  border-color: #35353c;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-breadcrumb-wrap .breadcrumb-item + .breadcrumb-item::before {
  color: #8e8e9c;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-breadcrumb-wrap .breadcrumb-item a {
  color: #c6c6d4;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-breadcrumb-wrap .breadcrumb-item a:hover {
  color: #ffb380;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-breadcrumb-wrap .breadcrumb-item.active {
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-announcement-bar {
  background: linear-gradient(90deg, #2a2418 0%, #1c1c20 50%, #1a1f28 100%);
  border-bottom-color: #35353c;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-hot-inline-label {
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-hot-inline-links a {
  background: #2a2a32;
  border-color: #3e3e48;
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-hot-inline-links a:hover {
  background: #352a22;
  border-color: var(--yingshizhanzhang_com-accent);
  color: #ffb380;
}

html.yingshizhanzhang_com-theme-dark mark.yingshizhanzhang_com-highlight {
  background: rgba(255, 95, 0, 0.38);
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-empty-state {
  background: var(--yingshizhanzhang_com-surface);
  border-color: #3a3a42;
  color: var(--yingshizhanzhang_com-muted);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-empty-state .bi {
  color: #6e6e7a;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-play-side-panel {
  background: var(--yingshizhanzhang_com-surface);
  border-color: #35353c;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-mini-vod {
  border-bottom-color: #2e2e34;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-mini-vod-thumb {
  background: #2a2a32;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-panel {
  border-color: #35353c;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-panel-hd {
  border-bottom-color: #2e2e34;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-panel-title {
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-split {
  color: #5c5c68;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-section-head--picks p {
  color: var(--yingshizhanzhang_com-muted) !important;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-sidebar {
  border-left-color: #3a3a42;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-sidebar-head {
  border-bottom-color: #2e2e34;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-sidebar-title {
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-rank-link {
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-rank-item {
  border-bottom-color: #2e2e34;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-rank-meta {
  color: #a8a8b6;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-rank-num {
  background: #4e4e58;
  color: #fff;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-vod-thumb-wrap {
  background: linear-gradient(145deg, #2e3036, #252528);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-vod-card:hover {
  border-color: rgba(255, 95, 0, 0.5);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

html.yingshizhanzhang_com-theme-dark #yingshizhanzhang_com-section-picks .yingshizhanzhang_com-vod-card {
  border-color: #35353c;
}

html.yingshizhanzhang_com-theme-dark #yingshizhanzhang_com-related-tab-content .yingshizhanzhang_com-vod-card,
html.yingshizhanzhang_com-theme-dark #yingshizhanzhang_com-section-picks .yingshizhanzhang_com-home-picks-item .yingshizhanzhang_com-vod-card {
  border-color: #35353c;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-filter-bar {
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-filter-label {
  color: #d0d0da;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-detail-hero {
  background: linear-gradient(180deg, #1c1c20 0%, var(--yingshizhanzhang_com-bg) 100%);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-tag-pill {
  background: #2a2a32;
  color: var(--yingshizhanzhang_com-muted);
  border: 1px solid #3e3e48;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-detail-qr-modal-mount {
  background: var(--yingshizhanzhang_com-surface);
  border-color: #35353c;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-player-reaction-num {
  color: #a8a8b6;
}

html.yingshizhanzhang_com-theme-dark #yingshizhanzhang_com-player-btn-dislike.yingshizhanzhang_com-player-reaction--on {
  border-color: #5a5a64;
  color: #ececf2;
  background: #35353c;
}

html.yingshizhanzhang_com-theme-dark #yingshizhanzhang_com-player-btn-dislike.yingshizhanzhang_com-player-reaction--on .yingshizhanzhang_com-player-reaction-num {
  color: #e0e0e8;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-play-line-tabs {
  border-bottom-color: #2e2e34;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-play-line-tabs .nav-link {
  color: var(--yingshizhanzhang_com-muted);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-play-line-tabs .nav-link:hover {
  color: var(--yingshizhanzhang_com-text);
  border-color: #3a3a42;
  background: #2a2a32;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-play-line-tabs .nav-link.active {
  color: var(--yingshizhanzhang_com-accent);
  background: var(--yingshizhanzhang_com-surface);
  border-color: #3a3a42 #3a3a42 var(--yingshizhanzhang_com-surface);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-play-line-tabcontent {
  background: var(--yingshizhanzhang_com-surface);
  border-color: #35353c;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-episode-chip,
html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-play-line-tabcontent a.yingshizhanzhang_com-episode-chip,
html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-episode-grid a.yingshizhanzhang_com-episode-chip,
html.yingshizhanzhang_com-theme-dark body.yingshizhanzhang_com-body .yingshizhanzhang_com-play-aside a.yingshizhanzhang_com-episode-chip {
  color: #e4e4ec !important;
  background: #2c2c34 !important;
  border-color: #42424c !important;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-episode-chip:hover,
html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-play-line-tabcontent a.yingshizhanzhang_com-episode-chip:hover,
html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-episode-grid a.yingshizhanzhang_com-episode-chip:hover,
html.yingshizhanzhang_com-theme-dark body.yingshizhanzhang_com-body .yingshizhanzhang_com-play-aside a.yingshizhanzhang_com-episode-chip:hover {
  color: #ffb380 !important;
  background: #383840 !important;
  border-color: var(--yingshizhanzhang_com-accent) !important;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-episode-chip.is-active,
html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-play-line-tabcontent a.yingshizhanzhang_com-episode-chip.is-active,
html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-episode-grid a.yingshizhanzhang_com-episode-chip.is-active,
html.yingshizhanzhang_com-theme-dark body.yingshizhanzhang_com-body .yingshizhanzhang_com-play-aside a.yingshizhanzhang_com-episode-chip.is-active {
  color: #fff !important;
  background: var(--yingshizhanzhang_com-accent) !important;
  border-color: var(--yingshizhanzhang_com-accent) !important;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-hot-keywords a {
  background: #2a2a32;
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-hot-keywords a:hover {
  background: rgba(255, 95, 0, 0.22);
  color: #ffb380;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-links-panel-head {
  border-bottom-color: #2e2e34;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-links-list a {
  color: #c8c8d4;
  background: transparent;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-links-list a:hover {
  color: #ffb380;
  background: rgba(255, 95, 0, 0.08);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-search-hero {
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-pagination .page-item.disabled .page-link {
  color: #6e6e78 !important;
  background: #222226 !important;
  border-color: #2e2e34 !important;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-pagination .page-link:hover {
  color: #fff;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-episode-list .list-group-item {
  background: var(--yingshizhanzhang_com-surface);
  border-color: #35353c;
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-episode-list .list-group-item.active {
  background: rgba(255, 95, 0, 0.18);
  border-color: var(--yingshizhanzhang_com-accent);
  color: #ffb380;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-related-empty-wrap,
html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-type-empty {
  color: var(--yingshizhanzhang_com-muted);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-related-empty-msg span {
  color: var(--yingshizhanzhang_com-muted);
}

html.yingshizhanzhang_com-theme-dark hr {
  border-color: #35353c;
  opacity: 1;
}

html.yingshizhanzhang_com-theme-dark .border {
  border-color: #35353c !important;
}

html.yingshizhanzhang_com-theme-dark .card {
  background: var(--yingshizhanzhang_com-surface);
  border-color: #35353c;
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .card-header,
html.yingshizhanzhang_com-theme-dark .card-footer {
  background: rgba(0, 0, 0, 0.15);
  border-color: #35353c;
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .modal-content {
  background: #222226;
  color: var(--yingshizhanzhang_com-text);
  border-color: #35353c;
}

html.yingshizhanzhang_com-theme-dark .modal-header,
html.yingshizhanzhang_com-theme-dark .modal-footer {
  border-color: #35353c;
}

html.yingshizhanzhang_com-theme-dark .btn-close {
  filter: invert(1) grayscale(100%);
  opacity: 0.65;
}

html.yingshizhanzhang_com-theme-dark .list-group-item {
  background: var(--yingshizhanzhang_com-surface);
  color: var(--yingshizhanzhang_com-text);
  border-color: #35353c;
}

html.yingshizhanzhang_com-theme-dark .dropdown-menu {
  background: #222226;
  border-color: #35353c;
}

html.yingshizhanzhang_com-theme-dark .dropdown-item {
  color: #e8e8f0;
}

html.yingshizhanzhang_com-theme-dark .dropdown-item:hover,
html.yingshizhanzhang_com-theme-dark .dropdown-item:focus {
  background: #2e2e34;
  color: #fff;
}

html.yingshizhanzhang_com-theme-dark .btn-light {
  background: #2a2a32;
  border-color: #3e3e48;
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .btn-light:hover {
  background: #383840;
  border-color: #4a4a54;
  color: #fff;
}

html.yingshizhanzhang_com-theme-dark .btn-outline-primary {
  color: #9ec0ff;
  border-color: #5a6e9a;
}

html.yingshizhanzhang_com-theme-dark .btn-outline-primary:hover {
  background: #3a4a6e;
  border-color: #6a80b0;
  color: #fff;
}

html.yingshizhanzhang_com-theme-dark .btn-outline-danger {
  color: #ff9a9a;
  border-color: #8a5058;
}

html.yingshizhanzhang_com-theme-dark .btn-outline-danger:hover {
  background: #b83232;
  border-color: #b83232;
  color: #fff;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-body .form-control {
  background: #2a2a32;
  border-color: #3e3e48;
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-body .form-control::placeholder {
  color: #8a8a96;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-body .form-select {
  background-color: #2a2a32;
  border-color: #3e3e48;
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-body .input-group-text {
  background: #252528;
  border-color: #3e3e48;
  color: var(--yingshizhanzhang_com-muted);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-mobile-tabbar a {
  color: #a8a8b6;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-back-top {
  background: var(--yingshizhanzhang_com-surface);
  color: var(--yingshizhanzhang_com-accent);
  border: 1px solid #35353c;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-vod-meta {
  color: var(--yingshizhanzhang_com-muted);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-vod-cast,
html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-vod-cast-line {
  color: var(--yingshizhanzhang_com-muted);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-mini-vod-meta {
  color: var(--yingshizhanzhang_com-muted);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-detail-related-tabs .nav-link.active {
  color: #fff;
}

html.yingshizhanzhang_com-theme-dark .alert {
  border-width: 1px;
}

html.yingshizhanzhang_com-theme-dark .alert-secondary,
html.yingshizhanzhang_com-theme-dark .alert-light {
  background: #2a2a32;
  border-color: #3e3e48;
  color: var(--yingshizhanzhang_com-text);
}

.yingshizhanzhang_com-cast-link {
  color: var(--yingshizhanzhang_com-text);
}
.yingshizhanzhang_com-cast-link:hover {
  color: var(--yingshizhanzhang_com-accent);
}

.yingshizhanzhang_com-rankchart-card .card-header {
  color: var(--yingshizhanzhang_com-text);
}

.yingshizhanzhang_com-rankchart-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.yingshizhanzhang_com-rankchart-row:last-child {
  border-bottom: none;
}

.yingshizhanzhang_com-rankchart-num {
  flex-shrink: 0;
  width: 1.85rem;
  height: 1.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  background: #eef0f3;
  color: #5c5c66;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.yingshizhanzhang_com-rankchart-num--1 {
  background: linear-gradient(145deg, #ffd24d 0%, #ff9a14 100%);
  color: #fff;
  box-shadow: 0 3px 10px rgba(255, 154, 20, 0.4);
}

.yingshizhanzhang_com-rankchart-num--2 {
  background: linear-gradient(145deg, #e8ecf2 0%, #9aa3b2 100%);
  color: #fff;
  box-shadow: 0 3px 10px rgba(100, 110, 130, 0.28);
}

.yingshizhanzhang_com-rankchart-num--3 {
  background: linear-gradient(145deg, #f0c09d 0%, #c17f4a 100%);
  color: #fff;
  box-shadow: 0 3px 10px rgba(190, 130, 80, 0.32);
}

.yingshizhanzhang_com-rankchart-poster {
  flex-shrink: 0;
  width: 3.5rem;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  line-height: 0;
}

.yingshizhanzhang_com-rankchart-poster img {
  width: 100%;
  height: auto;
  aspect-ratio: 56 / 78;
  object-fit: cover;
  display: block;
}

.yingshizhanzhang_com-rankchart-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.yingshizhanzhang_com-rankchart-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--yingshizhanzhang_com-text);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.yingshizhanzhang_com-rankchart-title:hover {
  color: var(--yingshizhanzhang_com-accent);
}

.yingshizhanzhang_com-rankchart-metric {
  font-size: 0.72rem;
}

.yingshizhanzhang_com-play-synopsis-text {
  word-break: break-word;
}

.yingshizhanzhang_com-play-comments .mac_comment {
  min-height: 2rem;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-rankchart-row {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-rankchart-num {
  background: #35353e;
  color: #b8b8c8;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-rankchart-num--1 {
  background: linear-gradient(145deg, #e8a820 0%, #c97800 100%);
  color: #fff;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-rankchart-num--2 {
  background: linear-gradient(145deg, #8a909c 0%, #5c6370 100%);
  color: #fff;
}

html.yingshizhanzhang_com-theme-dark .yingshizhanzhang_com-rankchart-num--3 {
  background: linear-gradient(145deg, #c9936a 0%, #8f5f38 100%);
  color: #fff;
}

.yingshizhanzhang_com-art-line-title,
.yingshizhanzhang_com-art-hot-link,
.yingshizhanzhang_com-topic-title {
  color: var(--yingshizhanzhang_com-text);
}
.yingshizhanzhang_com-art-line-title:hover,
.yingshizhanzhang_com-art-hot-link:hover,
.yingshizhanzhang_com-topic-title:hover {
  color: var(--yingshizhanzhang_com-accent);
}

.yingshizhanzhang_com-art-lines .yingshizhanzhang_com-art-line:last-child {
  border-bottom: 0;
}

.yingshizhanzhang_com-art-content img {
  max-width: 100%;
  height: auto;
}

.yingshizhanzhang_com-topic-content img {
  max-width: 100%;
  height: auto;
}

html.yingshizhanzhang_com-theme-dark aside .bg-light {
  background-color: #252528 !important;
  border-color: #35353c !important;
}

.mac_comment .fl {
  float: none;
}

.mac_comment .fr {
  float: none;
}

.mac_comment .clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.mac_comment .comment_form {
  margin-bottom: 1.25rem;
}

.mac_comment .input_wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mac_comment .comment_content {
  display: block;
  width: 100%;
  min-height: 5.5rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--yingshizhanzhang_com-text);
  background: var(--yingshizhanzhang_com-surface, #fff);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  resize: vertical;
  box-sizing: border-box;
}

.mac_comment .handle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.mac_comment .comment_face_panel {
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--yingshizhanzhang_com-muted);
}

.mac_comment .comment_face_box {
  display: none;
  flex-wrap: wrap;
  gap: 4px;
  width: 100%;
  padding: 0.5rem;
  background: #f8f8f8;
  border-radius: 8px;
  border: 1px solid #eee;
}

.mac_comment .comment_face_box img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.mac_comment .remaining-w {
  font-size: 0.8rem;
  color: var(--yingshizhanzhang_com-muted);
  margin-left: auto;
}

.mac_comment .smt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.mac_comment .cmt_text,
.mac_comment .mac_verify {
  width: 6rem;
  padding: 0.35rem 0.5rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.85rem;
}

.mac_comment .comment_submit {
  padding: 0.4rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: var(--yingshizhanzhang_com-accent, #ff5f00);
  border: none;
  border-radius: 999px;
  cursor: pointer;
}

.mac_comment .comment_submit:hover {
  filter: brightness(0.95);
}

.mac_comment .smt_wrap {
  margin-bottom: 0.75rem;
}

.mac_comment .total {
  font-size: 0.85rem;
  color: var(--yingshizhanzhang_com-muted);
}

.mac_comment .cmt_wrap {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 0.75rem;
}

.mac_comment .cmt_item {
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mac_comment .cmt_item .cmt_item {
  margin-top: 0.75rem;
  padding-left: 0.5rem;
  border-left: 3px solid var(--yingshizhanzhang_com-accent-soft, #fff0e8);
}

.mac_comment .face_wrap img.face {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  background: #eee;
}

.mac_comment .item_con {
  flex: 1;
  min-width: 0;
}

.mac_comment .item_con .top {
  font-size: 0.8rem;
  color: var(--yingshizhanzhang_com-muted);
  margin-bottom: 0.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.mac_comment .item_con .name {
  color: var(--yingshizhanzhang_com-accent);
  text-decoration: none;
  font-weight: 600;
}

.mac_comment .item_con .con {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--yingshizhanzhang_com-text);
  margin-bottom: 0.35rem;
  word-break: break-word;
}

.mac_comment .gw-action {
  font-size: 0.78rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.mac_comment .gw-action a {
  color: var(--yingshizhanzhang_com-muted);
  text-decoration: none;
}

.mac_comment .gw-action a:hover {
  color: var(--yingshizhanzhang_com-accent);
}

.mac_comment .mac_pages {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mac_comment .page_tip {
  font-size: 0.8rem;
  color: var(--yingshizhanzhang_com-muted);
  margin-bottom: 0.5rem;
}

.mac_comment .page_info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.mac_comment .page_link {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  font-size: 0.8rem;
  color: var(--yingshizhanzhang_com-text);
  text-decoration: none;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  background: #fafafa;
}

.mac_comment .page_link:hover {
  border-color: var(--yingshizhanzhang_com-accent);
  color: var(--yingshizhanzhang_com-accent);
}

.mac_comment .page_link.page_current {
  background: var(--yingshizhanzhang_com-accent);
  color: #fff;
  border-color: var(--yingshizhanzhang_com-accent);
}

.mac_comment .page_input {
  padding: 0.25rem;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.mac_comment .page_btn {
  padding: 0.25rem 0.6rem;
  font-size: 0.8rem;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
}

html.yingshizhanzhang_com-theme-dark .mac_comment .comment_content {
  background: #2a2a32;
  border-color: #3e3e48;
  color: var(--yingshizhanzhang_com-text);
}

html.yingshizhanzhang_com-theme-dark .mac_comment .cmt_wrap,
html.yingshizhanzhang_com-theme-dark .mac_comment .mac_pages {
  border-top-color: rgba(255, 255, 255, 0.08);
}

html.yingshizhanzhang_com-theme-dark .mac_comment .cmt_item {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

html.yingshizhanzhang_com-theme-dark .mac_comment .page_link {
  background: #2a2a32;
  border-color: #3e3e48;
  color: var(--yingshizhanzhang_com-text);
}
