:root {
  --ink: #0a1420;
  --ink-2: #0e1c2c;
  --ink-3: #122436;
  --ink-4: #17303f;
  --line: #1d3548;
  --line-soft: #16293a;
  --cold-white: #e8eef3;
  --cold-white-dim: #a9bccb;
  --muted: #6c8398;
  --gold: #c9a24a;
  --gold-dim: #8f7433;
  --radius: 3px;
  --radius-sm: 2px;
  --gap: 12px;
  --pad: 14px;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--cold-white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p, ul, ol, dl, dd, figure, blockquote {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
  border: 0;
}
a {
  color: var(--cold-white-dim);
  text-decoration: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 20, 32, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-bar {
  max-width: 1320px;
  margin: 0 auto;
  padding: 9px 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
a[data-contract="site-name"] {
  color: var(--cold-white);
  text-decoration: none;
  font-family: Georgia, "Songti SC", "SimSun", serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  border-left: 3px solid var(--gold);
  padding-left: 9px;
}
.category-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 0;
  min-width: 0;
  flex: 1 1 auto;
}
a.runtime-category {
  color: var(--cold-white-dim);
  text-decoration: none;
  white-space: nowrap;
  font-size: 13px;
  padding: 5px 11px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
a.runtime-category:hover {
  color: var(--gold);
  border-color: var(--line);
  background: var(--ink-2);
}
.page-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 18px;
}
.section-title {
  font-family: Georgia, "Songti SC", "SimSun", serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cold-white);
  padding: 0 0 8px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 46px;
  height: 2px;
  background: var(--gold);
}
.subsection-title {
  font-family: Georgia, "Songti SC", "SimSun", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-soft);
}
.hero-panel {
  position: relative;
  margin: 0 -18px 22px;
  min-height: 420px;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 0%, #162b3e 0%, #0a1420 70%),
    var(--ink);
  border-bottom: 1px solid var(--line);
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(233, 240, 246, 0.035) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(0deg, rgba(233, 240, 246, 0.03) 0 1px, transparent 1px 34px);
  filter: blur(1px);
  pointer-events: none;
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 32, 0.35) 0%, rgba(10, 20, 32, 0.1) 40%, rgba(10, 20, 32, 0.96) 88%);
  pointer-events: none;
}
.hero-figures {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  padding: 34px 18px 150px;
  max-width: 1320px;
  margin: 0 auto;
}
.hero-figure {
  position: relative;
  flex: 0 1 190px;
  margin: 0;
  filter: grayscale(0.5) contrast(1.05) brightness(0.82);
}
.hero-figure img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 74, 0.14);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
}
.hero-figure-1 { transform: translateY(24px); }
.hero-figure-2 { transform: translateY(-6px); }
.hero-figure-3 { transform: translateY(14px); flex-basis: 210px; }
.hero-figure-4 { transform: translateY(-14px); }
.hero-figure-5 { transform: translateY(20px); }
.hero-caption {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 22px 20px;
  text-align: left;
}
.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.34em;
  color: var(--gold);
  margin-bottom: 6px;
}
.hero-title {
  font-family: Georgia, "Songti SC", "SimSun", serif;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #f4f8fb;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.8);
}
.hero-tagline {
  margin-top: 8px;
  font-size: 14px;
  color: var(--cold-white-dim);
  letter-spacing: 0.08em;
  border-left: 2px solid var(--gold);
  padding-left: 10px;
}
.movie-overview {
  margin-bottom: 22px;
}
.overview-grid {
  display: grid;
  grid-template-columns: 216px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--pad);
}
.poster-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: start;
}
.poster-media {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--ink-3);
}
.poster-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
}
.poster-caption {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.poster-score {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.poster-meta {
  margin-top: 2px;
}
.overview-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.overview-head {
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 10px;
}
.overview-film-title {
  font-family: Georgia, "Songti SC", "SimSun", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--cold-white);
}
.overview-tagline {
  margin-top: 4px;
  font-size: 13px;
  color: var(--cold-white-dim);
  letter-spacing: 0.06em;
}
.player-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: #050b12;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.player-video {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  padding: 8px 10px;
  background: var(--ink-3);
  border-top: 1px solid var(--line-soft);
}
.player-btn {
  background: var(--ink-4);
  color: var(--cold-white-dim);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 9px;
  font-size: 12px;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.player-btn:hover {
  color: var(--gold);
  border-color: var(--gold-dim);
  background: #1b3a4e;
}
.player-shell.player-playing .player-btn[data-player-action="play"] {
  color: var(--gold);
  border-color: var(--gold-dim);
}
.player-shell.player-muted .player-btn[data-player-action="mute"] {
  color: var(--gold);
  border-color: var(--gold-dim);
}
.player-shell.player-theater {
  position: fixed;
  inset: 0;
  z-index: 90;
  max-width: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #02060a;
}
.player-shell.player-theater .player-video {
  max-height: 78vh;
  object-fit: contain;
}
.player-shell.player-lights-off {
  background: #000;
  box-shadow: 0 0 0 1px rgba(201, 162, 74, 0.24) inset;
}
.player-shell.player-lights-off .player-controls {
  background: #04090f;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.player-shell.player-lights-off:hover .player-controls {
  opacity: 1;
}
.player-shell.player-fullscreen .player-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.player-range {
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  background: var(--line);
  border-radius: 2px;
  cursor: pointer;
  flex: 1 1 110px;
  min-width: 80px;
  max-width: 220px;
}
.player-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  border: 0;
}
.player-range::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  border: 0;
}
.player-speed-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}
.player-select {
  background: var(--ink-4);
  color: var(--cold-white-dim);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 3px 6px;
  font-size: 12px;
}
.episode-status {
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
}
.status-line {
  font-size: 13px;
  color: var(--cold-white-dim);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.status-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chip {
  display: inline-block;
  font-size: 12px;
  padding: 3px 9px;
  color: var(--cold-white-dim);
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.chip:first-child {
  color: var(--gold);
  border-color: var(--gold-dim);
}
.cast-strip {
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cast-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px 5px 5px;
  background: var(--ink-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  flex: 0 1 auto;
  min-width: 0;
  transition: border-color 0.15s ease;
}
.cast-item:hover {
  border-color: var(--gold-dim);
}
.cast-avatar {
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--ink-4);
}
.cast-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) brightness(0.9);
}
.cast-names {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}
.cast-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--cold-white);
  white-space: nowrap;
}
.cast-role {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}
.synopsis-block {
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
}
.synopsis-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
}
.synopsis-para {
  font-size: 13px;
  line-height: 1.75;
  color: var(--cold-white-dim);
  text-align: justify;
}
.details-block {
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
}
.details-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px dashed var(--line-soft);
  min-width: 0;
}
.details-key {
  flex: 0 0 62px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.details-value {
  font-size: 13px;
  color: var(--cold-white);
  min-width: 0;
}
.timeline-section {
  margin-bottom: 22px;
}
.timeline-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 2px 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
  -webkit-overflow-scrolling: touch;
}
.timeline-track::-webkit-scrollbar {
  height: 6px;
}
.timeline-track::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 3px;
}
.timeline-node {
  position: relative;
  flex: 0 0 116px;
  padding: 12px 12px 10px;
  border-left: 1px solid var(--line);
  background: transparent;
  transition: flex-basis 0.25s ease, background 0.25s ease;
}
.timeline-node::before {
  content: "";
  position: absolute;
  top: 0;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line);
}
.timeline-node:first-child {
  border-left: 0;
}
.timeline-node:first-child::before {
  left: 12px;
}
.timeline-timecode {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 6px;
}
.timeline-label {
  display: block;
  font-size: 12px;
  line-height: 1.6;
  color: var(--cold-white-dim);
}
.timeline-node-active {
  flex: 0 0 234px;
  background: linear-gradient(180deg, rgba(201, 162, 74, 0.14) 0%, rgba(201, 162, 74, 0) 100%);
  border-left-color: var(--gold-dim);
}
.timeline-node-active::before {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.22);
  width: 9px;
  height: 9px;
  top: -1px;
  left: -5px;
}
.timeline-node-active .timeline-timecode {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
}
.timeline-node-active .timeline-label {
  color: #f0f5f9;
  font-size: 13px;
}
.episodes-section {
  margin-bottom: 22px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 11px 12px;
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--line);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.episode-card:hover {
  background: var(--ink-3);
  border-color: var(--line);
  border-left-color: var(--gold-dim);
}
.episode-number {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.episode-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--cold-white);
  letter-spacing: 0.03em;
}
.episode-summary {
  font-size: 12px;
  line-height: 1.65;
  color: var(--cold-white-dim);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.episode-duration {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: auto;
  padding-top: 4px;
  border-top: 1px dashed var(--line-soft);
}
.comments-section {
  margin-bottom: 22px;
}
.comment-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  align-items: start;
}
.comment-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.comment-item {
  min-width: 0;
}
.comment-quote {
  position: relative;
  padding: 10px 12px 10px 30px;
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
}
.comment-quote::before {
  content: "“";
  position: absolute;
  top: 4px;
  left: 9px;
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.8;
}
.comment-text {
  font-size: 13px;
  line-height: 1.75;
  color: #dbe6ee;
}
.comment-footer {
  margin-top: 7px;
  padding-top: 6px;
  border-top: 1px solid var(--line-soft);
}
.comment-nickname {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.comment-nickname::before {
  content: "— ";
  color: var(--gold-dim);
}
.recommend-region {
  margin-bottom: 22px;
}
.recommend-title {
  font-family: Georgia, "Songti SC", "SimSun", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cold-white);
  padding-bottom: 7px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.recommend-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 34px;
  height: 2px;
  background: var(--gold);
}
.recommend-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  align-items: start;
}
.recommend-item {
  min-width: 0;
}
a[data-runtime="recommendation"] {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  color: var(--cold-white-dim);
  text-decoration: none;
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, background 0.15s ease;
}
a[data-runtime="recommendation"]:hover {
  border-color: var(--gold-dim);
  background: var(--ink-3);
}
a[data-runtime="recommendation"] img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--ink-4);
  filter: brightness(0.88);
}
a[data-runtime="recommendation"] [data-runtime="name"] {
  font-size: 13px;
  font-weight: 600;
  color: var(--cold-white);
  line-height: 1.4;
}
a[data-runtime="recommendation"] [data-runtime="blurb"] {
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: #08111b;
  padding: 18px;
  margin-top: 8px;
}
.footer-nav {
  max-width: 1320px;
  margin: 0 auto 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: var(--cold-white-dim);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--gold);
  border-bottom-color: var(--gold-dim);
}
.footer-disclaimer {
  max-width: 1320px;
  margin: 0 auto 14px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
}
.friend-links {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
}
.friend-links-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gold);
  white-space: nowrap;
}
a.runtime-friend-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  white-space: nowrap;
  transition: color 0.15s ease;
}
a.runtime-friend-link:hover {
  color: var(--cold-white);
}
.player-shell.player-playing .player-btn[data-player-action="play"] {
  color: var(--gold);
}
.player-shell.player-muted .player-btn[data-player-action="mute"] {
  color: var(--gold);
}
.player-shell.player-theater .player-video {
  background: #000;
}
.player-shell.player-fullscreen {
  background: #02060a;
}
.player-shell.player-lights-off .player-video {
  filter: brightness(0.92);
}
.player-shell.player-playing .player-range {
  accent-color: var(--gold);
}
.player-shell.player-muted .player-range {
  opacity: 0.85;
}
.player-shell.player-theater .player-controls {
  background: #04090f;
}
.player-shell.player-fullscreen .player-video {
  max-height: 100vh;
  object-fit: contain;
}
@media (max-width: 1080px) {.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.hero-figure {
    flex-basis: 150px;
  }
.hero-figure-3 {
    flex-basis: 168px;
  }}
@media (max-width: 860px) {.overview-grid {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 16px;
  }
.synopsis-body, .details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-columns {
    grid-template-columns: minmax(0, 1fr);
  }
.hero-title {
    font-size: 32px;
  }
.hero-panel {
    min-height: 360px;
  }
.hero-figures {
    padding-bottom: 140px;
    gap: 7px;
  }}
@media (max-width: 640px) {.page-main {
    padding: 0 12px;
  }
.hero-panel {
    margin-left: -12px;
    margin-right: -12px;
  }
.header-bar {
    padding: 8px 12px;
    gap: 10px;
  }
.overview-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.poster-column {
    max-width: 220px;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.hero-figure {
    flex-basis: 104px;
  }
.hero-figure-3 {
    flex-basis: 118px;
  }
.hero-figures {
    padding-top: 22px;
    padding-bottom: 128px;
    gap: 5px;
  }
.hero-title {
    font-size: 26px;
  }
.hero-kicker {
    letter-spacing: 0.24em;
    font-size: 11px;
  }
.hero-tagline {
    font-size: 12px;
  }
.timeline-node {
    flex-basis: 104px;
  }
.timeline-node-active {
    flex-basis: 190px;
  }
.recommend-list {
    grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  }}
@media (max-width: 420px) {.hero-figure {
    flex-basis: 82px;
  }
.hero-figure-3 {
    flex-basis: 92px;
  }
.hero-title {
    font-size: 22px;
  }
.recommend-list {
    grid-template-columns: minmax(0, 1fr);
  }}

footer{text-align:center!important}
footer *{justify-content:center!important}
footer :is(div,nav,ul,ol,p,section,address){margin-left:auto!important;margin-right:auto!important}
