:root {
  --ink: #0a1014;
  --ink-2: #0f181d;
  --slate: #16232a;
  --slate-2: #1d2f38;
  --steel: #2a3f4a;
  --steel-line: #354b56;
  --mist: #7d97a3;
  --mist-2: #9fb6c0;
  --white: #eef4f6;
  --white-dim: #c8d6dc;
  --rust: #b8402c;
  --rust-deep: #8d2c1c;
  --rust-line: #c8503a;
  --rust-glow: rgba(200, 80, 58, 0.28);
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  --tight: 10px;
  --gap: 14px;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background-color: var(--ink);
  background-image:
    linear-gradient(180deg, rgba(22, 35, 42, 0.9) 0%, rgba(10, 16, 20, 0.98) 42%, #060c10 100%);
  color: var(--white-dim);
  font-family: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Heiti SC", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.01em;
  min-height: 100vh;
  overflow-x: hidden;
}
h1, h2, h3, p, dl, dd, dt, ul, ol, li, figure, figcaption, nav {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
img, video {
  display: block;
  max-width: 100%;
}
a {
  color: var(--mist-2);
  text-decoration: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(9, 14, 18, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--steel-line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 8px 18px;
  max-width: 1500px;
  margin: 0 auto;
}
a[data-contract="site-name"] {
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 16px;
  border-right: 1px solid var(--steel-line);
}
a[data-contract="site-name"]:hover {
  color: var(--rust-line);
}
.category-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  color: var(--mist);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 4px 9px;
  border: 1px solid transparent;
  white-space: nowrap;
}
a.runtime-category:hover {
  color: var(--white);
  border-color: var(--rust);
  background: rgba(184, 64, 44, 0.14);
}
.movie-main {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 18px 40px;
}
.movie-overview {
  padding-top: 18px;
}
.overview-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  background: linear-gradient(160deg, rgba(24, 38, 45, 0.85) 0%, rgba(12, 20, 25, 0.95) 70%);
  border: 1px solid var(--steel);
  box-shadow: var(--shadow);
  padding: 20px;
}
.overview-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 90% at 8% 12%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.55) 100%);
}
.poster-column {
  position: relative;
  z-index: 1;
  align-self: start;
}
.poster-figure {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.poster-media-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #060b0e;
  border: 1px solid var(--steel-line);
}
.poster-media-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(184, 64, 44, 0.18) 0 1px, transparent 1px) 0 0 / 100% 100%,
    radial-gradient(90% 70% at 50% 30%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.62) 100%);
  mix-blend-mode: screen;
}
.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(28%) contrast(112%) brightness(0.94) saturate(0.85);
}
.poster-caption {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
  border-top: 1px solid var(--steel-line);
}
.movie-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--white);
  line-height: 1.15;
}
.movie-tagline {
  font-size: 12px;
  color: var(--rust-line);
  letter-spacing: 0.06em;
  line-height: 1.45;
}
.overview-info-column {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.episode-status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--steel-line);
}
.status-chip {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border: 1px solid var(--steel-line);
  color: var(--mist-2);
  background: rgba(42, 63, 74, 0.35);
  white-space: nowrap;
}
.status-chip-current {
  color: var(--white);
  border-color: var(--rust);
  background: rgba(184, 64, 44, 0.22);
}
.status-chip-total {
  color: var(--mist-2);
}
.status-chip-state {
  color: var(--rust-line);
  border-color: var(--rust-deep);
  background: transparent;
}
.section-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--white);
  text-transform: uppercase;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--steel);
  position: relative;
}
.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 34px;
  height: 1px;
  background: var(--rust-line);
}
.details-panel {
  background: rgba(10, 17, 21, 0.55);
  border: 1px solid var(--steel-line);
  padding: 12px 14px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px dotted rgba(53, 75, 86, 0.6);
  min-width: 0;
}
.detail-key {
  flex: 0 0 46px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--mist);
  white-space: nowrap;
}
.detail-value {
  flex: 1 1 auto;
  font-size: 12px;
  color: var(--white-dim);
  min-width: 0;
  overflow-wrap: anywhere;
}
.player-panel {
  background: rgba(10, 17, 21, 0.55);
  border: 1px solid var(--steel-line);
  padding: 12px 14px;
}
.player-stage {
  position: relative;
  width: 100%;
  background: #04080a;
  border: 1px solid var(--steel);
  overflow: hidden;
}
.player-stage video {
  display: block;
  width: 100%;
  background: #000;
}
.player-stage.is-theater {
  box-shadow: 0 0 0 1px var(--rust), 0 0 40px rgba(0, 0, 0, 0.8);
}
.player-stage.is-light-off {
  filter: brightness(0.45) contrast(120%);
}
.player-control-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--steel-line);
}
.control-button {
  background: rgba(42, 63, 74, 0.5);
  border: 1px solid var(--steel-line);
  color: var(--white-dim);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  white-space: nowrap;
}
.control-button:hover {
  background: rgba(184, 64, 44, 0.24);
  border-color: var(--rust);
  color: var(--white);
}
.control-button.play, .control-button.mute, .control-button.pip, .control-button.theater, .control-button.light, .control-button.fullscreen {
  border-left: 2px solid var(--rust-deep);
}
.control-field {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.control-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--mist);
  white-space: nowrap;
}
.control-range {
  -webkit-appearance: none;
  appearance: none;
  width: 110px;
  height: 3px;
  background: var(--steel);
  outline: none;
  border-radius: 0;
}
.control-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 14px;
  background: var(--rust-line);
  border: none;
  cursor: pointer;
}
.control-range::-moz-range-thumb {
  width: 10px;
  height: 14px;
  background: var(--rust-line);
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.control-progress-field {
  flex: 1 1 160px;
}
.control-progress {
  width: 100%;
  min-width: 80px;
}
.control-select {
  background: rgba(42, 63, 74, 0.5);
  border: 1px solid var(--steel-line);
  color: var(--white-dim);
  font-size: 11px;
  padding: 4px 6px;
}
.cast-panel {
  background: rgba(10, 17, 21, 0.55);
  border: 1px solid var(--steel-line);
  padding: 12px 14px;
}
.cast-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cast-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 72px;
}
.cast-avatar {
  display: block;
  width: 72px;
  height: 72px;
  border: 1px solid var(--steel-line);
  background-color: var(--slate);
  background-image:
    radial-gradient(60% 50% at 50% 34%, rgba(238, 244, 246, 0.28) 0%, rgba(238, 244, 246, 0) 62%),
    linear-gradient(180deg, #2c414c 0%, #131e24 100%);
  filter: grayscale(70%) contrast(115%);
}
.cast-avatar-1 {
  background-color: #22343d;
  background-image:
    radial-gradient(64% 56% at 46% 38%, rgba(238, 244, 246, 0.34) 0%, rgba(238, 244, 246, 0) 60%),
    linear-gradient(180deg, #354c58 0%, #101a20 100%);
}
.cast-avatar-2 {
  background-color: #1d2e36;
  background-image:
    radial-gradient(60% 58% at 54% 34%, rgba(184, 64, 44, 0.42) 0%, rgba(184, 64, 44, 0) 62%),
    linear-gradient(180deg, #2b3f49 0%, #0d161b 100%);
}
.cast-avatar-3 {
  background-color: #24363f;
  background-image:
    radial-gradient(58% 54% at 42% 40%, rgba(238, 244, 246, 0.26) 0%, rgba(238, 244, 246, 0) 58%),
    linear-gradient(200deg, #334852 0%, #111b21 100%);
}
.cast-avatar-4 {
  background-color: #1a2a32;
  background-image:
    radial-gradient(62% 52% at 56% 32%, rgba(238, 244, 246, 0.3) 0%, rgba(238, 244, 246, 0) 60%),
    linear-gradient(180deg, #2d4250 0%, #0c1418 100%);
}
.cast-avatar-5 {
  background-color: #21323a;
  background-image:
    radial-gradient(60% 56% at 48% 42%, rgba(200, 80, 58, 0.34) 0%, rgba(200, 80, 58, 0) 64%),
    linear-gradient(160deg, #374d58 0%, #101a1f 100%);
}
.cast-avatar-6 {
  background-color: #1e2f37;
  background-image:
    radial-gradient(58% 50% at 52% 36%, rgba(238, 244, 246, 0.24) 0%, rgba(238, 244, 246, 0) 60%),
    linear-gradient(200deg, #2f444e 0%, #0b1317 100%);
}
.cast-name {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--mist-2);
  text-align: center;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.synopsis-panel {
  background: rgba(10, 17, 21, 0.55);
  border: 1px solid var(--steel-line);
  padding: 12px 14px;
}
.synopsis-body {
  columns: 2;
  column-gap: 22px;
  column-rule: 1px solid rgba(53, 75, 86, 0.7);
}
.synopsis-paragraph {
  font-size: 12.5px;
  line-height: 1.62;
  color: var(--white-dim);
  margin-bottom: 9px;
  break-inside: avoid;
  text-align: justify;
}
.synopsis-paragraph::first-letter {
  color: var(--rust-line);
  font-weight: 700;
}
.timeline-section {
  margin-top: 24px;
  padding: 14px 16px 12px;
  background: linear-gradient(180deg, rgba(16, 26, 32, 0.9), rgba(9, 15, 19, 0.95));
  border: 1px solid var(--steel);
}
.timeline-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 4px 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--rust-deep) var(--slate);
}
.timeline-scroll::-webkit-scrollbar {
  height: 6px;
}
.timeline-scroll::-webkit-scrollbar-track {
  background: var(--slate);
}
.timeline-scroll::-webkit-scrollbar-thumb {
  background: var(--rust-deep);
}
.timeline-ruler {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
  min-width: 100%;
  padding: 0 40px 0 40px;
}
.timeline-ruler::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0, var(--steel-line) 8%, var(--steel-line) 92%, transparent 100%);
}
.timeline-node {
  position: relative;
  flex: 1 0 168px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 0 10px;
}
.timeline-notch {
  position: relative;
  display: block;
  width: 12px;
  height: 22px;
  margin-top: 24px;
  background: linear-gradient(180deg, var(--steel-line) 0%, var(--rust-deep) 100%);
  clip-path: polygon(0 0, 100% 18%, 62% 34%, 100% 50%, 62% 66%, 100% 82%, 0 100%);
}
.timeline-node-start .timeline-notch {
  background: linear-gradient(180deg, var(--white-dim) 0%, var(--steel-line) 100%);
}
.timeline-node-end .timeline-notch {
  background: linear-gradient(180deg, var(--rust-line) 0%, var(--rust-deep) 100%);
  box-shadow: 0 0 12px var(--rust-glow);
}
.timeline-timecode {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--rust-line);
  font-weight: 700;
  white-space: nowrap;
  order: -1;
  margin-top: 0;
}
.timeline-label {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--mist-2);
  border-left: 1px solid var(--steel-line);
  padding-left: 8px;
}
.timeline-hint {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 2px;
  padding-top: 8px;
  border-top: 1px dotted rgba(53, 75, 86, 0.7);
}
.timeline-hint-edge {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--mist);
}
.timeline-hint-left {
  color: var(--mist);
}
.timeline-hint-right {
  color: var(--rust-line);
}
.episodes-section {
  margin-top: 24px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.episode-card {
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(14, 22, 27, 0.82);
  border: 1px solid var(--steel-line);
  border-left: 3px solid var(--rust-deep);
  min-width: 0;
}
.episode-card:hover {
  border-left-color: var(--rust-line);
  background: rgba(20, 31, 37, 0.95);
}
.episode-number-block {
  flex: 0 0 46px;
  align-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: linear-gradient(180deg, var(--mist-2), var(--steel));
  white-space: nowrap;
}
.episode-text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.episode-title {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1.3;
}
.episode-summary {
  font-size: 11.5px;
  line-height: 1.48;
  color: var(--mist-2);
  overflow-wrap: anywhere;
}
.episode-duration {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--rust-line);
  margin-top: 2px;
}
.comments-section {
  margin-top: 24px;
}
.comments-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
  padding: 6px 2px 2px;
}
.comments-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.comments-column-right {
  margin-top: 22px;
}
.comment-note {
  position: relative;
  padding: 10px 12px 8px;
  background: linear-gradient(170deg, #1c2a31 0%, #131e24 100%);
  border: 1px solid var(--steel-line);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.42);
  transform-origin: 50% 0;
}
.comment-note::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 14px;
  width: 26px;
  height: 8px;
  background: rgba(184, 64, 44, 0.55);
  transform: rotate(-2deg);
}
.comment-note-tilt-a { transform: rotate(-1.4deg); }
.comment-note-tilt-b { transform: rotate(0.9deg); }
.comment-note-tilt-c { transform: rotate(-0.6deg); }
.comment-note-tilt-d { transform: rotate(1.6deg); }
.comment-note-tilt-e { transform: rotate(-1.1deg); }
.comment-note-tilt-f { transform: rotate(0.7deg); }
.comment-text {
  font-size: 12px;
  line-height: 1.55;
  color: var(--white-dim);
}
.comment-nickname {
  display: inline-block;
  margin-top: 6px;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--rust-line);
  border-top: 1px solid rgba(53, 75, 86, 0.8);
  padding-top: 4px;
}
.recommend-region {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--steel);
}
.recommend-heading {
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--white);
  text-transform: none;
}
.recommend-column {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  align-items: start;
}
a.recommend-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 7px;
  background: rgba(13, 21, 26, 0.85);
  border: 1px solid var(--steel-line);
  color: var(--mist-2);
  text-decoration: none;
  min-width: 0;
}
a.recommend-item:hover {
  border-color: var(--rust);
  background: rgba(22, 34, 41, 0.95);
}
[data-runtime="recommendation"] img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #060b0e;
  filter: grayscale(40%) contrast(110%) brightness(0.92);
}
.recommend-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.recommend-blurb {
  font-size: 11px;
  line-height: 1.45;
  color: var(--mist);
  overflow-wrap: anywhere;
}
.recommend-region-1 .recommend-heading::before { background: var(--rust-line); }
.recommend-region-2 .recommend-heading { color: var(--mist-2); }
.recommend-region-3 .recommend-heading { color: var(--rust-line); }
.recommend-region-3 {
  border-bottom: 1px solid var(--rust-deep);
  padding-bottom: 16px;
}
.site-footer {
  background: linear-gradient(180deg, #0a1216 0%, #180c0a 100%);
  border-top: 1px solid var(--rust-deep);
  margin-top: 30px;
}
.footer-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: var(--white-dim);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.14em;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--steel-line);
}
a[data-contract="footer-home"] {
  color: var(--rust-line);
  border-bottom-color: var(--rust-deep);
}
a[data-contract="footer-sitemap"] {
  color: var(--mist-2);
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--white);
  border-bottom-color: var(--rust-line);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  padding-top: 10px;
  border-top: 1px dotted rgba(53, 75, 86, 0.8);
}
.friend-links-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--rust-line);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 11px;
  color: var(--mist);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
}
a.runtime-friend-link:hover {
  color: var(--white-dim);
  border-bottom-color: var(--rust-deep);
}
.footer-disclaimer {
  font-size: 11px;
  line-height: 1.6;
  color: #6d8189;
  max-width: 90ch;
  border-top: 1px dotted rgba(53, 75, 86, 0.6);
  padding-top: 10px;
}
.player .play, .player .mute, .player .pip, .player .theater, .player .light, .player .fullscreen, .player .progress, .player .volume, .player .speed, .player .timeupdate, .player .input, .player .change, .player .click {
  transition: none;
}
.is-theater .player-stage, .is-theater .player-panel {
  border-color: var(--rust);
}
.is-light-off .player-control-bar {
  opacity: 0.6;
}
@media (max-width: 1080px) {.overview-shell {
    grid-template-columns: minmax(0, 250px) minmax(0, 1fr);
    gap: 20px;
  }
.timeline-node {
    flex: 1 0 150px;
  }}
@media (max-width: 860px) {.overview-shell {
    grid-template-columns: minmax(0, 1fr);
  }
.poster-column {
    max-width: 320px;
  }
.synopsis-body {
    columns: 1;
    column-rule: none;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comments-wall {
    grid-template-columns: minmax(0, 1fr);
  }
.comments-column-right {
    margin-top: 0;
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }}
@media (max-width: 620px) {body {
    font-size: 12.5px;
  }
.movie-main {
    padding: 0 12px 30px;
  }
.header-inner {
    padding: 8px 12px;
    gap: 10px;
  }
a[data-contract="site-name"] {
    padding-right: 10px;
    font-size: 13px;
  }
.overview-shell {
    padding: 14px;
  }
.poster-media-wrap {
    aspect-ratio: 2 / 3;
  }
.movie-title {
    font-size: 19px;
  }
.control-range {
    width: 84px;
  }
.control-progress-field {
    flex: 1 1 100%;
  }
.control-progress {
    width: 100%;
  }
.timeline-section, .player-panel, .cast-panel, .synopsis-panel, .details-panel {
    padding: 10px 11px;
  }
.recommend-column {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }
.footer-inner {
    padding: 14px 12px;
  }}
@media (max-width: 400px) {.control-button {
    font-size: 10.5px;
    padding: 4px 7px;
  }
.cast-item, .cast-avatar {
    width: 62px;
  }
.cast-avatar {
    height: 62px;
  }
.episode-number-block {
    flex: 0 0 40px;
    font-size: 10px;
  }}
@media (prefers-reduced-motion: reduce) {html {
    scroll-behavior: auto;
  }
.comment-note {
    transform: none;
  }}

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}
