* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --page: #f8fafc;
  --text: #111827;
  --muted: #64748b;
  --line: #e5e7eb;
  --card: #ffffff;
  --dark: #0f172a;
  --red: #dc2626;
  --orange: #f97316;
  --amber: #f59e0b;
  --blue: #2563eb;
  --teal: #0d9488;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  color: var(--text);
  background: var(--page);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  max-width: 1280px;
  height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.26);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex: 1;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  background: #f1f5f9;
  color: #0f172a;
  transform: translateY(-1px);
}

.nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 10px 24px rgba(220, 38, 38, 0.22);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f1f5f9;
  color: #0f172a;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding: 0 24px 18px;
  border-top: 1px solid var(--line);
}

.mobile-nav.is-open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.page-shell {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-carousel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #7f1d1d, #9a3412 50%, #92400e);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  opacity: 0.46;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 25%, rgba(250, 204, 21, 0.32), transparent 35%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(127, 29, 29, 0.78) 48%, rgba(15, 23, 42, 0.35));
}

.hero-layer {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.3;
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  padding: 72px 0;
}

.hero-kicker,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fde68a;
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.hero-copy h1,
.hero-copy h2 {
  margin: 20px 0 0;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-copy h2 + p,
.hero-copy h1 + h2 + p {
  margin-top: 22px;
}

.hero-copy p {
  max-width: 760px;
  color: #f8fafc;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
}

.hero-tags,
.tag-row,
.detail-tags,
.genre-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.tag-row span,
.detail-tag,
.genre-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 16px 32px rgba(220, 38, 38, 0.28);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.btn-link {
  color: #fde68a;
}

.hero-nav {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 28px;
  background: #fff;
}

.section-block {
  padding: 64px 0;
}

.light-section {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2,
.section-heading h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-heading a {
  min-width: max-content;
  color: var(--red);
  font-weight: 900;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.featured-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.compact-grid,
.list-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.movie-card {
  min-width: 0;
}

.movie-card[hidden] {
  display: none;
}

.movie-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card-link:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.movie-poster,
.side-thumb,
.poster-card,
.category-thumbs span,
.rank-hero-card {
  background-image: var(--cover-image);
  background-size: cover;
  background-position: center;
  background-color: #111827;
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.movie-poster::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.72));
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  min-width: 38px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.28);
}

.movie-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  flex: 1;
}

.movie-card-body strong {
  font-size: 18px;
  line-height: 1.35;
}

.movie-card-link:hover strong {
  color: var(--red);
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
}

.movie-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #f1f5f9;
}

.movie-desc {
  color: #475569;
  line-height: 1.65;
  font-size: 14px;
}

.tag-row span {
  color: #334155;
  background: #f1f5f9;
}

.movie-card-compact .movie-poster {
  aspect-ratio: 16 / 10;
}

.movie-card-compact .movie-card-body strong {
  font-size: 16px;
}

.ranking-section {
  padding: 72px 0;
  color: #fff;
  background:
    radial-gradient(circle at 20% 10%, rgba(45, 212, 191, 0.25), transparent 32%),
    linear-gradient(135deg, #0f172a, #134e4a 72%, #0f766e);
}

.ranking-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 42px;
  align-items: center;
}

.ranking-copy h2 {
  margin: 18px 0 14px;
  font-size: clamp(32px, 5vw, 56px);
}

.ranking-copy p {
  color: #ccfbf1;
  line-height: 1.8;
  font-size: 18px;
  margin-bottom: 28px;
}

.side-list {
  display: grid;
  gap: 14px;
}

.ranking-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.side-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  color: inherit;
  background: rgba(255, 255, 255, 0.11);
  transition: background 0.2s ease, transform 0.2s ease;
}

.light-section .side-item,
.category-preview .side-item,
.detail-aside .side-item {
  color: var(--text);
  background: #f8fafc;
}

.side-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.light-section .side-item:hover,
.category-preview .side-item:hover,
.detail-aside .side-item:hover {
  background: #eef2ff;
}

.side-thumb {
  position: relative;
  width: 94px;
  height: 68px;
  flex: 0 0 auto;
  border-radius: 13px;
}

.side-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.side-copy strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.side-copy small {
  color: inherit;
  opacity: 0.72;
}

.list-rank {
  position: absolute;
  left: -8px;
  top: -8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: var(--red);
}

.category-chip-grid,
.category-card-grid,
.rank-hero-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.category-chip,
.category-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 22px;
  border-radius: 24px;
  color: #fff;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.category-chip::before,
.category-card::before,
.rank-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent 60%);
}

.category-chip strong,
.category-card strong {
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
}

.category-chip span,
.category-card em {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
  font-style: normal;
}

.tone-red { background: linear-gradient(135deg, #dc2626, #f97316); }
.tone-amber { background: linear-gradient(135deg, #d97706, #f59e0b); }
.tone-blue { background: linear-gradient(135deg, #2563eb, #4f46e5); }
.tone-teal { background: linear-gradient(135deg, #0f766e, #06b6d4); }
.tone-violet { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.tone-pink { background: linear-gradient(135deg, #db2777, #fb7185); }
.tone-cyan { background: linear-gradient(135deg, #0891b2, #0ea5e9); }
.tone-orange { background: linear-gradient(135deg, #ea580c, #f59e0b); }

.two-column-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.category-preview {
  padding: 24px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.compact-heading {
  align-items: flex-start;
}

.category-hero {
  padding: 62px 0;
  color: #fff;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: #fff;
}

.category-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.05em;
}

.category-hero p {
  max-width: 840px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.8;
}

.category-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.category-card {
  min-height: 230px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.category-card-copy {
  max-width: 58%;
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 64px);
  gap: 10px;
  align-content: center;
}

.category-thumbs span {
  display: block;
  width: 64px;
  height: 88px;
  border-radius: 12px;
  box-shadow: 0 12px 18px rgba(15, 23, 42, 0.24);
}

.filter-bar {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.filter-bar label {
  display: grid;
  gap: 8px;
  color: #475569;
  font-size: 13px;
  font-weight: 900;
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fafc;
  outline: none;
}

.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.empty-state {
  margin: 28px 0;
  padding: 22px;
  border-radius: 18px;
  color: #475569;
  background: #fff;
  text-align: center;
}

.rank-hero-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.rank-hero-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 24px;
  overflow: hidden;
  border-radius: 26px;
  color: #fff;
  box-shadow: var(--shadow);
}

.rank-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.86));
}

.rank-hero-card span,
.rank-hero-card strong,
.rank-hero-card em {
  position: relative;
  z-index: 1;
}

.rank-hero-card span {
  color: #fde68a;
  font-weight: 900;
}

.rank-hero-card strong {
  font-size: 26px;
}

.rank-hero-card em {
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
  line-height: 1.6;
}

.detail-top {
  padding: 34px 0 72px;
  background:
    radial-gradient(circle at 80% 0%, rgba(249, 115, 22, 0.12), transparent 34%),
    var(--page);
}

.detail-top .breadcrumb {
  color: #64748b;
}

.detail-top .breadcrumb a:hover {
  color: var(--red);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  align-items: start;
}

.player-column {
  min-width: 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #000;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.24);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #fff;
  cursor: pointer;
  background:
    linear-gradient(rgba(15, 23, 42, 0.38), rgba(15, 23, 42, 0.76)),
    var(--cover-image) center / cover;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-symbol {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding-left: 4px;
  color: #fff;
  font-size: 34px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 18px 38px rgba(220, 38, 38, 0.35);
}

.play-title {
  max-width: min(70%, 520px);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.38);
}

.detail-content-card,
.aside-card {
  margin-top: 24px;
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.detail-content-card h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.05em;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.detail-meta span,
.detail-meta a {
  padding: 8px 12px;
  border-radius: 12px;
  color: #334155;
  background: #f1f5f9;
  font-weight: 800;
  font-size: 13px;
}

.detail-meta a {
  color: #b91c1c;
  background: #fee2e2;
}

.detail-one-line {
  margin: 22px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--red);
  border-radius: 0 16px 16px 0;
  color: #334155;
  background: #fff7ed;
  line-height: 1.8;
  font-weight: 800;
}

.detail-content-card section {
  margin-top: 26px;
}

.detail-content-card h2,
.aside-card h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.detail-content-card p {
  color: #334155;
  line-height: 1.9;
  font-size: 16px;
}

.detail-tag,
.genre-row span {
  color: #334155;
  background: #f1f5f9;
}

.detail-tag:hover {
  color: #fff;
  background: var(--red);
}

.detail-aside {
  position: sticky;
  top: 92px;
}

.poster-card {
  min-height: 440px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.aside-card {
  margin-top: 20px;
}

.site-footer {
  color: #cbd5e1;
  background: #0f172a;
}

.footer-shell {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 22px;
  margin-bottom: 8px;
}

.footer-brand p {
  max-width: 760px;
  margin: 0;
  color: #94a3b8;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-links a:hover {
  color: #fff;
}

.copyright {
  margin: 26px 0 0;
  color: #64748b;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .movie-grid,
  .featured-grid,
  .compact-grid,
  .list-grid,
  .category-chip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ranking-layout,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-aside {
    position: static;
  }

  .poster-card {
    min-height: 360px;
  }
}

@media (max-width: 820px) {
  .page-shell,
  .footer-shell {
    width: min(100% - 32px, 1280px);
  }

  .nav-shell {
    padding: 0 16px;
  }

  .brand-name {
    font-size: 18px;
  }

  .hero-carousel {
    min-height: 580px;
  }

  .hero-copy {
    width: calc(100% - 32px);
    margin-left: 16px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .movie-grid,
  .featured-grid,
  .compact-grid,
  .list-grid,
  .category-chip-grid,
  .category-card-grid,
  .rank-hero-grid,
  .two-column-section,
  .ranking-list {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: auto;
  }

  .category-card-copy {
    max-width: none;
  }

  .category-thumbs {
    display: none;
  }

  .side-thumb {
    width: 86px;
    height: 62px;
  }

  .detail-content-card,
  .aside-card {
    padding: 20px;
  }
}
