/* FilmCMS 默认模板 - 深色影院风格（模板目录 css/style.css） */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Helvetica Neue", sans-serif;
  background: #0a0a0d;
  color: #e2e8f0;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
}
a { color: #38bdf8; text-decoration: none; transition: color 0.2s, border-color 0.2s; }
a:hover { color: #7dd3fc; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.site-header {
  background: linear-gradient(180deg, rgba(12,12,16,0.98) 0%, rgba(12,12,16,0.92) 100%);
  border-bottom: 1px solid rgba(56,189,248,0.2);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(56,189,248,0.06);
}
.site-header::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #38bdf8, #7dd3fc);
  opacity: 0.9;
}
.site-header .container,
.site-header .header-inner {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  text-shadow: 0 0 20px rgba(56,189,248,0.15);
}
.logo:hover { color: #38bdf8; text-decoration: none; }
.nav-toggle {
  position: absolute;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
  opacity: 0;
  pointer-events: none;
}
.nav-toggle-label {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  border-radius: 8px;
  background: rgba(30,41,59,0.8);
  border: 1px solid #334155;
}
.nav-toggle-label span {
  display: block;
  width: 22px;
  height: 2px;
  background: #94a3b8;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle:checked + .nav-toggle-label span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle:checked + .nav-toggle-label span:nth-child(2) { opacity: 0; }
.nav-toggle:checked + .nav-toggle-label span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav { display: flex; gap: 28px; }
.nav a {
  color: #94a3b8;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: #38bdf8; border-bottom-color: #38bdf8; text-decoration: none; }
.search-form { display: flex; margin-left: auto; gap: 10px; align-items: center; }
.search-input {
  padding: 10px 16px;
  border: 1px solid #334155;
  border-radius: 10px;
  background: #1e293b;
  color: #e2e8f0;
  width: 220px;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input::placeholder { color: #64748b; }
.search-input:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56,189,248,0.2);
}
.search-btn {
  padding: 10px 20px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: filter 0.2s, transform 0.1s;
}
.search-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.main { padding: 10px 0 64px; min-height: 65vh; }

.index-hero {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 20px;
  margin-bottom: 15px;
  align-items: stretch;
}
.index-hero-left { display: flex; min-height: 0; }
.index-slide-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #1e293b;
  flex: 1;
  width: 100%;
  min-height: 320px;
}
.index-slide-list { position: relative; width: 100%; height: 100%; }
.index-slide-item {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.index-slide-item.active { display: flex; }
.index-slide-item::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0; right: 0;
  height: 60%;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  pointer-events: none;
}
.index-slide-label {
  position: relative;
  z-index: 1;
  font-size: 0.8rem;
  background: rgba(0,0,0,0.5);
  padding: 4px 10px;
  border-radius: 6px;
  align-self: flex-start;
  margin-bottom: 8px;
}
.index-slide-info { position: relative; z-index: 1; }
.index-slide-info h3 { margin: 0 0 6px; font-size: 1.2rem; }
.index-slide-info p { margin: 0; font-size: 0.85rem; opacity: 0.9; max-height: 2.6em; overflow: hidden; text-overflow: ellipsis; }
.index-slide-dots {
  position: absolute;
  bottom: 12px;
  right: 16px;
  z-index: 2;
  display: flex;
  gap: 6px;
}
.index-slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s;
}
.index-slide-dot.active { background: #38bdf8; }
.index-slide-placeholder {
  min-height: 320px;
  background: #1e293b;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 0.9rem;
}
.index-hero-right {
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #334155;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.index-tabs { display: flex; border-bottom: 1px solid #334155; flex-shrink: 0; }
.index-tab {
  flex: 1;
  padding: 10px 12px;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.index-tab:hover { color: #e2e8f0; }
.index-tab.active { background: rgba(56,189,248,0.15); color: #38bdf8; font-weight: 600; }
.index-tab-panels { padding: 10px 12px; flex: 1; min-height: 0; }
.index-tab-panel { display: none; min-height: 280px; }
.index-tab-panel.active { display: block; }
.index-rank-list { list-style: none; padding: 0; margin: 0 0 6px; }
.index-rank-list li { margin-bottom: 6px; }
.index-rank-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}
.index-rank-list a:hover { color: #38bdf8; }
.index-rank-list .num {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #334155;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.index-more { display: inline-block; font-size: 0.85rem; color: #38bdf8; margin-top: 4px; }
.index-more:hover { color: #7dd3fc; }
.index-rec7 { margin-bottom: 32px; }
.index-rec7-title {
  font-size: 1.2rem;
  margin: 0 0 20px;
  color: #f8fafc;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(56,189,248,0.25);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.index-rec7-new { font-size: 0.75rem; background: #0ea5e9; color: #fff; padding: 2px 8px; border-radius: 4px; }
.index-art-section { margin-top: 32px; }
.art-list-home {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.art-list-home li a {
  display: block;
  padding: 10px 14px;
  background: #1e293b;
  border-radius: 8px;
  color: #94a3b8;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.art-list-home li a:hover { background: #334155; color: #38bdf8; }

.type-nav { margin-bottom: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.type-link {
  padding: 10px 20px;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 10px;
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}
.type-link:hover {
  background: rgba(56,189,248,0.12);
  border-color: #38bdf8;
  color: #38bdf8;
  text-decoration: none;
  transform: translateY(-1px);
}

.vod-list > h2, .vod-list > h1, .main > h1, .main article h1 {
  font-size: 1.35rem;
  margin-bottom: 24px;
  color: #f8fafc;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(56,189,248,0.25);
  display: inline-block;
}
.main article h1 { margin-top: 0; }
.main article .meta { color: #64748b; font-size: 0.9rem; margin: -12px 0 20px; }
.vod-list .sub-types {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
/* 子分类 + 辅助筛选 同一容器，统一用 gap 控制上下间隔 */
.vod-list .vod-list-filter-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid #334155;
}
.vod-list .vod-list-filter-wrap .sub-types:not(.vod-list-filters) {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.vod-list .vod-list-filter-wrap .vod-list-filters {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* 仅子分类行（无 wrap 时）：无底边线，下间距一致 */
.vod-list .sub-types:not(.vod-list-filters) {
  margin-bottom: 12px;
  border-bottom: none;
}
.vod-list .sub-types-label { color: #94a3b8; font-size: 0.9rem; margin-right: 4px; }
.vod-list .sub-type-link {
  padding: 6px 14px;
  background: #1e293b;
  color: #94a3b8;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.vod-list .sub-type-link.active { background: #334155; color: #38bdf8; }
.vod-list .sub-type-link:hover { background: #334155; color: #38bdf8; }
.vod-list .vod-list-filters .filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.vod-list .vod-list-empty { color: #64748b; padding: 40px 20px; text-align: center; font-size: 1rem; }
.vod-list-block { margin-bottom: 36px; }
.vod-list-block-title {
  font-size: 1.1rem;
  margin: 0 0 16px;
  color: #e2e8f0;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid #334155;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vod-list-block-more { font-size: 0.9rem; font-weight: normal; color: #38bdf8; }
.vod-list-block-more:hover { color: #7dd3fc; }
.vod-grid.vod-grid-6 {
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: start;
}
@media (max-width: 1200px) {
  .vod-grid.vod-grid-6 { grid-template-columns: repeat(4, 1fr); }
}
.vod-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 20px;
}
.vod-grid .vod-item {
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
  transition: transform 0.2s;
}
.vod-grid .vod-pic-wrap {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 150%;
  flex-shrink: 0;
  background: #1e293b;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}
@supports (aspect-ratio: 2/3) {
  .vod-grid .vod-pic-wrap {
    height: auto;
    padding-bottom: 0;
    aspect-ratio: 2/3;
  }
}
.vod-grid .vod-pic-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(56,189,248,0.3);
}
.vod-grid .vod-pic-wrap .vod-pic,
.vod-grid .vod-pic {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  font-size: 0;
}
.vod-remarks {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.88);
  padding: 5px 12px;
  font-size: 0.75rem;
  border-radius: 8px;
  color: #fbbf24;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.vod-name {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  color: #e2e8f0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.95rem;
  line-height: 1.35;
}
.vod-name:hover { color: #38bdf8; }
.vod-info { margin: 6px 0 0; font-size: 0.8rem; color: #64748b; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.breadcrumb { margin-bottom: 1px; color: #64748b; font-size: 0.9rem; padding: 10px 0; }
.breadcrumb a { color: #94a3b8; }
.breadcrumb a:hover { color: #38bdf8; }

.pagination {
  margin-top: 32px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pagination a {
  padding: 10px 18px;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 10px;
  color: #38bdf8;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}
.pagination a:hover {
  background: rgba(56,189,248,0.15);
  border-color: #38bdf8;
  text-decoration: none;
  transform: translateY(-1px);
}
.pagination span { color: #64748b; font-size: 0.9rem; }

.vod-detail-page .breadcrumb { margin-bottom: 20px; }
.vod-detail { display: flex; gap: 40px; margin-bottom: 40px; flex-wrap: wrap; }
.vod-detail-pic { flex: 0 0 260px; }
.vod-detail-pic img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}
.vod-detail-info { flex: 1; min-width: 0; }
.vod-detail-info h1 { margin: 0 0 20px; font-size: 1.65rem; font-weight: 600; color: #f8fafc; line-height: 1.35; }
.vod-detail-info .remarks { color: #fbbf24; font-size: 1rem; font-weight: 600; }
.vod-detail-info p { margin: 12px 0; color: #94a3b8; font-size: 0.95rem; }
.vod-blurb { color: #64748b; line-height: 1.75; }
.play-list {
  margin-bottom: 32px;
  padding: 24px;
  background: #1e293b;
  border-radius: 12px;
  border: 1px solid #334155;
}
.play-list h2 { font-size: 1.1rem; margin: 0 0 16px; color: #e2e8f0; font-weight: 600; }
.play-list p { margin: 10px 0; }
.play-list a { color: #38bdf8; }
.play-list .play-group { margin-bottom: 20px; }
.play-list .play-group h3 { font-size: 1rem; margin: 0 0 10px; color: #94a3b8; font-weight: 600; }
.play-list .play-page-tabs {
  margin: 0 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.play-list .play-page-tab {
  padding: 4px 10px;
  background: #111827;
  border: 1px solid #334155;
  border-radius: 999px;
  color: #9ca3af;
  font-size: 0.8rem;
  cursor: pointer;
}
.play-list .play-page-tab.active {
  background: #0ea5e9;
  border-color: #0ea5e9;
  color: #0f172a;
}
.play-list .play-episodes {
  margin: 0;
}
.play-list .play-episodes-page {
  display: none;
  margin: 0;
}
.play-list .play-episodes-page.active {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.play-list .play-ep { display: inline-block; padding: 6px 12px; background: #334155; border-radius: 6px; color: #38bdf8; text-decoration: none; font-size: 0.9rem; }
.play-list .play-ep:hover { background: #475569; color: #7dd3fc; }
.play-list .play-ep.cur { background: #0ea5e9; color: #0f172a; font-weight: 600; }
.vod-play-page .play-toolbar { margin-bottom: 16px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.vod-play-page .play-toolbar .btn { padding: 8px 16px; background: #334155; color: #e2e8f0; border-radius: 8px; text-decoration: none; font-size: 0.9rem; }
.vod-play-page .play-toolbar .btn:hover { background: #475569; color: #fff; }
.vod-play-page .player-wrap { margin-bottom: 24px; border-radius: 12px; overflow: hidden; background: #0f172a; min-height: 500px; width: 100%; max-width: 100%; }
.vod-play-page .player-wrap #playerCnt { display: block; width: 100%; min-height: 500px; height: 500px; }
.vod-play-page .player-wrap iframe { max-width: 100%; }
.vod-content { margin-top: 28px; }
.vod-content h2 { font-size: 1.15rem; margin-bottom: 14px; color: #e2e8f0; font-weight: 600; }
.vod-content .content-text,
.content-text { white-space: pre-wrap; color: #94a3b8; line-height: 1.85; }

.art-list { list-style: none; padding: 0; }
.art-list li { padding: 16px 0; border-bottom: 1px solid rgba(30,41,59,0.8); transition: background 0.2s; }
.art-list li:hover { background: rgba(30,41,59,0.3); }
.art-list li a { color: #e2e8f0; font-weight: 500; }
.art-list li a:hover { color: #38bdf8; }
.art-list .date { color: #64748b; font-size: 0.85rem; margin-left: 14px; }

.site-footer {
  background: linear-gradient(180deg, #0f172a 0%, #0a0f1a 100%);
  padding: 32px 0;
  text-align: center;
  color: #64748b;
  font-size: 0.9rem;
  border-top: 1px solid rgba(30,41,59,0.8);
  margin-top: 48px;
}
.site-footer .container { padding: 0 20px; }
.site-footer p { margin: 0; }
.site-footer a { color: #64748b; }
.site-footer a:hover { color: #38bdf8; }

.page-404 { text-align: center; padding: 80px 24px; }
.page-404 h1 { font-size: 5rem; margin: 0 0 20px; color: #334155; font-weight: 700; letter-spacing: 0.05em; line-height: 1; }
.page-404 p { color: #64748b; margin-bottom: 28px; font-size: 1.05rem; line-height: 1.6; }
.page-404 .back-home {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  transition: filter 0.2s, transform 0.1s;
}
.page-404 .back-home:hover { filter: brightness(1.1); transform: translateY(-2px); color: #fff; text-decoration: none; }

@media (max-width: 1024px) {
  .container { padding: 0 16px; }
  .index-hero { grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
  .index-hero-right { min-height: 280px; }
  .index-slide-wrap { min-height: 300px; }
  .index-tab-panel { min-height: 240px; }
  .vod-grid.vod-grid-6 { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .vod-detail { gap: 28px; }
  .vod-detail-pic { flex: 0 0 220px; }
  .main { padding: 24px 0 48px; }
  .vod-play-page .player-wrap { min-height: 400px; }
  .vod-play-page .player-wrap #playerCnt { min-height: 400px; height: 400px; }
}
@media (max-width: 768px) {
  .container { max-width: 100%; padding: 0 14px; }
  .site-header .container, .site-header .header-inner { gap: 12px; padding-top: 12px; padding-bottom: 12px; }
  .logo { font-size: 1.25rem; }
  .nav-toggle-label { display: flex; margin-left: auto; order: 2; }
  .nav {
    display: none;
    order: 4;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    border-top: 1px solid #334155;
    margin-top: 4px;
  }
  .nav-toggle:checked ~ .nav { display: flex; }
  .nav a { padding: 12px 0; font-size: 1rem; border-bottom: none; border-left: 3px solid transparent; padding-left: 12px; }
  .nav a:hover { border-left-color: #38bdf8; }
  .search-form { order: 3; width: 100%; margin-left: 0; margin-top: 8px; }
  .search-form .search-input { flex: 1; min-width: 0; width: 100%; }
  .index-hero { margin-bottom: 20px; }
  .index-slide-wrap { min-height: 260px; }
  .index-slide-item { padding: 16px; }
  .index-slide-info h3 { font-size: 1.05rem; }
  .index-slide-info p { font-size: 0.8rem; max-height: 2.4em; }
  .index-hero-right { min-height: 260px; }
  .index-tab-panel { min-height: 220px; }
  .index-rec7-title { font-size: 1.1rem; margin-bottom: 16px; }
  .vod-grid.vod-grid-6 { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .vod-grid { gap: 14px; }
  .vod-detail { flex-direction: column; gap: 24px; }
  .vod-detail-pic { flex: none; max-width: 260px; margin: 0 auto; width: 100%; }
  .vod-detail-info h1 { font-size: 1.4rem; }
  .play-list { padding: 16px; }
  .vod-list .sub-types { gap: 8px; }
  .vod-list .sub-type-link { padding: 6px 12px; font-size: 0.85rem; }
  .main > h1, .vod-list > h1, .vod-list > h2 { font-size: 1.2rem; margin-bottom: 18px; }
  .pagination { margin-top: 24px; gap: 10px; }
  .pagination a { padding: 10px 16px; font-size: 0.85rem; }
  .main { padding: 20px 0 40px; }
  .vod-play-page .player-wrap { min-height: 0; aspect-ratio: 16/9; width: 100%; position: relative; }
  .vod-play-page .player-wrap #playerCnt { min-height: 0; height: 100%; width: 100%; position: absolute; left: 0; top: 0; right: 0; bottom: 0; }
  .vod-play-page .player-wrap .dplayer { width: 100% !important; height: 100% !important; max-width: 100% !important; position: absolute !important; left: 0 !important; top: 0 !important; right: 0 !important; bottom: 0 !important; }
  .vod-play-page .player-wrap .dplayer video { width: 100% !important; height: 100% !important; max-width: 100% !important; object-fit: contain !important; }
  .vod-play-page .player-wrap iframe { width: 100% !important; height: 100% !important; max-width: 100% !important; position: absolute; left: 0; top: 0; right: 0; bottom: 0; }
  .page-404 { padding: 48px 16px; }
  .page-404 h1 { font-size: 3.5rem; }
  .art-list-home { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
  .container { padding: 0 12px; }
  .logo { font-size: 1.15rem; }
  .search-form { flex-wrap: wrap; }
  .search-input { width: 100%; }
  .search-btn { flex: 1; min-width: 80px; }
  .index-slide-wrap { min-height: 220px; }
  .index-slide-dots { bottom: 8px; right: 12px; }
  .index-slide-dot { width: 6px; height: 6px; }
  .index-hero-right { min-height: 220px; }
  .index-tab { padding: 8px 10px; font-size: 0.8rem; }
  .index-tab-panel { min-height: 180px; padding: 8px 10px; }
  .index-rank-list a { font-size: 0.8rem; }
  .index-rec7 { margin-bottom: 24px; }
  .index-rec7-title { font-size: 1rem; margin-bottom: 14px; }
  .vod-grid.vod-grid-6, .vod-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .vod-grid .vod-name { font-size: 0.85rem; margin-top: 8px; }
  .vod-grid .vod-info { font-size: 0.75rem; margin-top: 4px; }
  .vod-remarks { bottom: 6px; right: 6px; padding: 4px 8px; font-size: 0.7rem; }
  .vod-detail-pic { max-width: 200px; }
  .vod-detail-info h1 { font-size: 1.25rem; margin-bottom: 14px; }
  .vod-list .sub-type-link { padding: 6px 10px; font-size: 0.8rem; }
  .vod-list-block-title { font-size: 1rem; margin-bottom: 12px; }
  .breadcrumb { font-size: 0.85rem; margin-bottom: 16px; }
  .pagination { flex-direction: column; margin-top: 20px; }
  .pagination a { width: 100%; text-align: center; }
  .art-list li { padding: 12px 0; }
  .art-list li a { font-size: 0.95rem; }
  .art-list .date { display: block; margin-left: 0; margin-top: 4px; }
  .content-text { font-size: 0.95rem; }
  .site-footer { padding: 24px 0; font-size: 0.85rem; }
  .page-404 h1 { font-size: 2.75rem; }
  .page-404 p { font-size: 0.95rem; }
  .page-404 .back-home { padding: 12px 24px; }
}
@media (max-width: 480px) {
  .container { padding: 0 10px; }
  .index-slide-wrap { min-height: 200px; }
  .index-slide-item { padding: 12px; }
  .index-slide-info h3 { font-size: 0.95rem; }
  .index-hero-right { min-height: 200px; }
  .index-tab-panel { min-height: 160px; }
  .vod-grid.vod-grid-6, .vod-grid { gap: 10px; }
  .vod-detail-info h1 { font-size: 1.15rem; }
  .play-list { padding: 12px; }
  .play-list .play-episodes { gap: 6px; }
  .play-list .play-ep { padding: 5px 10px; font-size: 0.8rem; }
}
