:root {
  --ink: #202124;
  --ink-strong: #101215;
  --muted: #646b73;
  --paper: #f4f0e8;
  --surface: #fffaf1;
  --surface-2: #e8eee9;
  --line: rgba(32, 33, 36, 0.14);
  --line-strong: rgba(32, 33, 36, 0.24);
  --night: #121417;
  --night-2: #20252b;
  --red: #b64245;
  --teal: #26756f;
  --gold: #c28b2c;
  --blue: #365e7d;
  --shadow: 0 14px 34px rgba(24, 27, 31, 0.11);
  --radius: 8px;
  --rail: 236px;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, #121417 0, #121417 var(--rail), transparent var(--rail)),
    var(--paper);
  font-size: 15px;
  line-height: 1.62;
  overflow-x: hidden;
}

body.drawer-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.16;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  color: #fff2bf;
  font-size: clamp(1.8rem, 4.1vw, 3.55rem);
  font-weight: 900;
  text-wrap: balance;
  text-shadow:
    0 3px 18px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(233, 185, 92, 0.32);
}

h2 {
  color: var(--red);
  font-size: clamp(1.28rem, 2.35vw, 2rem);
  font-weight: 880;
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(255, 250, 241, 0.78);
}

h3 {
  color: var(--ink-strong);
  font-size: clamp(1rem, 1.65vw, 1.2rem);
  font-weight: 840;
}

button {
  font: inherit;
}

.skip-target {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #fff;
  background: #000;
}

.skip-target:focus {
  transform: translateY(0);
}

.site-frame {
  display: grid;
  grid-template-columns: var(--rail) minmax(0, 1fr);
  min-height: 100vh;
}

.site-drawer {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px 20px;
  color: rgba(255, 250, 241, 0.82);
  background: #121417;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-logo {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.drawer-logo img {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  object-fit: cover;
}

.drawer-logo span {
  display: grid;
  gap: 4px;
}

.drawer-logo strong {
  color: #fffaf1;
  font-size: 1rem;
  line-height: 1.2;
}

.drawer-logo em {
  color: rgba(255, 250, 241, 0.56);
  font-size: 0.76rem;
  font-style: normal;
}

.drawer-nav {
  display: grid;
  gap: 4px;
}

.drawer-nav a {
  position: relative;
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 7px 10px 7px 15px;
  border-left: 3px solid transparent;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: rgba(255, 250, 241, 0.72);
  font-weight: 760;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.drawer-nav a:hover,
.drawer-nav a:focus-visible,
.drawer-nav a.is-current {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  outline: none;
}

.drawer-note {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.drawer-note span {
  display: block;
  margin-bottom: 8px;
  color: #e9b95c;
  font-size: 0.8rem;
  font-weight: 900;
}

.drawer-note p {
  margin: 0;
  color: rgba(255, 250, 241, 0.68);
  font-size: 0.86rem;
}

.mobile-bar {
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  right: 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 16px;
  color: #fffaf1;
  background: rgba(18, 20, 23, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.mobile-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.mobile-brand img {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
}

.drawer-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.drawer-button span {
  width: 20px;
  height: 2px;
  margin: 0;
  background: currentColor;
  border-radius: 3px;
  transition: transform 0.18s ease;
}

.drawer-button[aria-expanded="true"] span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.drawer-button[aria-expanded="true"] span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.content-flow {
  min-width: 0;
  background: var(--paper);
}

.cover-panel {
  position: relative;
  min-height: 460px;
  display: grid;
  align-items: end;
  padding: clamp(32px, 5.6vw, 64px);
  overflow: hidden;
  color: #fffaf1;
  background: var(--night);
}

.cover-visual,
.cover-visual img,
.cover-overlay {
  position: absolute;
  inset: 0;
}

.cover-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cover-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 20, 23, 0.9), rgba(18, 20, 23, 0.54) 54%, rgba(18, 20, 23, 0.18)),
    linear-gradient(180deg, rgba(18, 20, 23, 0.2), rgba(18, 20, 23, 0.84));
}

.cover-copy {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.cover-copy p {
  max-width: 680px;
  color: rgba(255, 250, 241, 0.84);
  font-size: clamp(0.96rem, 1.35vw, 1.05rem);
}

.label {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cover-panel .label {
  color: #e9b95c;
}

.cover-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.action {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 15px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.action:hover,
.action:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.action.primary {
  color: #16120d;
  background: #e9b95c;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.action.primary:hover,
.action.primary:focus-visible {
  background: #f0c979;
}

.action.secondary {
  color: #fffaf1;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.action.secondary:hover,
.action.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}

.data-strip {
  padding: 0 clamp(18px, 4vw, 44px);
  background: var(--paper);
}

.data-strip dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1040px;
  margin: -26px auto 0;
  padding: 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.data-strip div {
  padding: 15px 18px;
  background: var(--surface);
}

.data-strip dt {
  color: var(--muted);
  font-size: 0.76rem;
}

.data-strip dd {
  margin: 4px 0 0;
  color: var(--ink-strong);
  font-weight: 900;
}

.chapter {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(46px, 6vw, 76px) clamp(18px, 4vw, 44px);
}

.chapter + .chapter {
  border-top: 1px solid var(--line);
}

.chapter-head {
  max-width: 700px;
  margin-bottom: 26px;
}

.chapter-head.compact {
  margin-bottom: 20px;
}

.chapter-head p:last-child {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.98rem;
}

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

.brief-item {
  min-height: 170px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(24, 27, 31, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.brief-item:hover {
  transform: translateY(-4px);
  border-color: rgba(182, 66, 69, 0.28);
  box-shadow: 0 20px 42px rgba(24, 27, 31, 0.11);
}

.brief-item span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 950;
}

.brief-item p,
.character-copy p,
.settings-list p {
  color: var(--muted);
}

.wide-figure {
  margin: 24px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.wide-figure img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
}

.wide-figure figcaption {
  padding: 10px 13px;
  color: var(--muted);
  font-size: 0.86rem;
}

.route-chapter,
.records-chapter,
.faq-chapter {
  max-width: none;
  background: #e8eee9;
}

.route-chapter > *,
.records-chapter > *,
.faq-chapter > * {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.route-table {
  display: grid;
  gap: 7px;
}

.route-row {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1.8fr 1.3fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.route-row span {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  background: var(--surface);
}

.route-row.head span {
  color: #fffaf1;
  background: var(--night-2);
  font-weight: 900;
}

.route-row:not(.head) span:first-child {
  color: var(--red);
  font-weight: 900;
}

.character-board {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 0;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.character-board figure {
  margin: 0;
  min-height: 100%;
}

.character-board img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}

.character-copy {
  padding: clamp(20px, 3.2vw, 34px);
}

.plain-list {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  padding: 8px 10px;
  border-left: 4px solid var(--teal);
  background: #eef5f1;
  font-weight: 720;
}

.settings-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.settings-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101215;
  box-shadow: var(--shadow);
}

.settings-shot img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: right center;
}

.settings-list {
  display: grid;
  gap: 12px;
}

.settings-list article {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.settings-list h3 {
  margin-bottom: 7px;
}

.settings-list p {
  margin-bottom: 0;
}

.record-line {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.record-line::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 121px;
  width: 2px;
  background: rgba(32, 33, 36, 0.16);
}

.record-line li {
  position: relative;
  display: grid;
  grid-template-columns: 104px 110px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
}

.record-line li::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 116px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(194, 139, 44, 0.18);
}

.record-line time {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.record-line strong {
  color: var(--red);
  font-size: 0.96rem;
}

.record-line p {
  margin-bottom: 0;
  color: var(--ink);
}

.gallery-chapter {
  padding-right: 0;
}

.gallery-chapter .chapter-head {
  padding-right: clamp(22px, 5vw, 56px);
}

.image-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 36%);
  gap: 12px;
  overflow-x: auto;
  padding: 4px clamp(18px, 4vw, 44px) 10px 0;
  scroll-snap-type: x mandatory;
}

.image-rail figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(24, 27, 31, 0.07);
  scroll-snap-align: start;
}

.image-rail img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.image-rail figcaption {
  padding: 9px 11px;
  color: var(--muted);
  font-size: 0.84rem;
}

.faq-stack {
  display: grid;
  gap: 8px;
}

.faq-stack details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.faq-stack summary {
  position: relative;
  padding: 14px 46px 14px 16px;
  cursor: pointer;
  font-weight: 880;
  list-style: none;
}

.faq-stack summary::-webkit-details-marker {
  display: none;
}

.faq-stack summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.faq-stack details[open] summary::after {
  content: "-";
  background: var(--red);
}

.faq-stack p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
}

.download-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  padding: clamp(28px, 4vw, 42px);
  color: #fffaf1;
  background:
    linear-gradient(90deg, rgba(18, 20, 23, 0.96), rgba(32, 37, 43, 0.88)),
    url("img/tu4.jpg") center / cover;
}

.download-band h2 {
  max-width: 680px;
  color: #fff2bf;
  text-shadow:
    0 2px 16px rgba(0, 0, 0, 0.42),
    0 0 22px rgba(233, 185, 92, 0.26);
}

.download-band p:not(.label) {
  max-width: 620px;
  color: rgba(255, 250, 241, 0.74);
}

.download-band .label {
  color: #e9b95c;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.cover-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 28%, rgba(233, 185, 92, 0.22), transparent 26%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 38%);
  mix-blend-mode: screen;
}

.cover-visual img {
  transform: scale(1.01);
  transition: transform 1.2s ease, filter 1.2s ease;
}

.cover-panel:hover .cover-visual img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}

.drawer-nav a {
  overflow: hidden;
}

.drawer-nav a::after {
  content: "";
  position: absolute;
  inset: 6px 8px 6px auto;
  width: 7px;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.drawer-nav a:hover,
.drawer-nav a:focus-visible,
.drawer-nav a.is-current {
  transform: translateX(3px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.drawer-nav a:hover::after,
.drawer-nav a:focus-visible::after,
.drawer-nav a.is-current::after {
  opacity: 1;
  transform: translateX(0);
}

.action {
  position: relative;
  overflow: hidden;
}

.action::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transition: transform 0.5s ease;
}

.action:hover::before,
.action:focus-visible::before {
  transform: translateX(120%) skewX(-18deg);
}

.action:hover,
.action:focus-visible {
  box-shadow: 0 18px 36px rgba(24, 27, 31, 0.2);
}

.action.secondary:hover,
.action.secondary:focus-visible {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.data-strip div,
.brief-item,
.wide-figure,
.character-board,
.settings-shot,
.settings-list article,
.image-rail figure,
.faq-stack details {
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.data-strip div:hover,
.settings-list article:hover,
.faq-stack details:hover {
  transform: translateY(-3px);
  border-color: rgba(38, 117, 111, 0.28);
  background: #fffdf7;
  box-shadow: 0 16px 34px rgba(24, 27, 31, 0.1);
}

.brief-item:hover,
.wide-figure:hover,
.character-board:hover,
.settings-shot:hover,
.image-rail figure:hover {
  transform: translateY(-5px);
  border-color: rgba(182, 66, 69, 0.32);
  box-shadow: 0 22px 48px rgba(24, 27, 31, 0.15);
}

.wide-figure,
.character-board,
.settings-shot,
.image-rail figure {
  isolation: isolate;
}

.wide-figure img,
.character-board img,
.settings-shot img,
.image-rail img {
  transition: transform 0.55s ease, filter 0.55s ease;
}

.wide-figure:hover img,
.character-board:hover img,
.settings-shot:hover img,
.image-rail figure:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.02);
}

.brief-item span {
  transition: color 0.22s ease, transform 0.22s ease;
}

.brief-item:hover span {
  color: var(--teal);
  transform: translateX(4px);
}

.route-row {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.route-row:not(.head):hover {
  transform: translateX(4px);
  border-color: rgba(182, 66, 69, 0.28);
  box-shadow: 0 12px 28px rgba(24, 27, 31, 0.1);
}

.route-row:not(.head):hover span {
  background: #fffdf7;
}

.route-row:not(.head):hover span:first-child {
  color: var(--teal);
}

.plain-list li {
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.plain-list li:hover {
  transform: translateX(4px);
  border-color: var(--gold);
  background: #fff8e8;
}

.record-line li {
  border-radius: var(--radius);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.record-line li:hover {
  transform: translateX(5px);
  background: rgba(255, 250, 241, 0.62);
  box-shadow: 0 12px 30px rgba(24, 27, 31, 0.08);
}

.record-line li::before {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.record-line li:hover::before {
  transform: scale(1.24);
  background: var(--red);
  box-shadow: 0 0 0 9px rgba(182, 66, 69, 0.14);
}

.faq-stack summary {
  transition: color 0.2s ease, background 0.2s ease;
}

.faq-stack summary::after {
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.faq-stack details:hover summary {
  color: var(--red);
}

.faq-stack details:hover summary::after {
  transform: translateY(-50%) rotate(90deg);
  box-shadow: 0 0 0 6px rgba(54, 94, 125, 0.12);
}

.faq-stack details[open]:hover summary::after {
  transform: translateY(-50%) rotate(180deg);
  box-shadow: 0 0 0 6px rgba(182, 66, 69, 0.12);
}

.download-band {
  position: relative;
  overflow: hidden;
}

.download-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(233, 185, 92, 0.2), transparent 42%, rgba(38, 117, 111, 0.18));
  opacity: 0.64;
  transition: opacity 0.25s ease;
}

.download-band:hover::after {
  opacity: 0.95;
}

.download-band > * {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  body {
    background: var(--paper);
  }

  .mobile-bar {
    display: flex;
  }

  .site-frame {
    display: block;
  }

  .site-drawer {
    position: fixed;
    z-index: 880;
    top: 56px;
    left: 0;
    bottom: 0;
    width: min(84vw, 300px);
    height: auto;
    transform: translateX(-104%);
    transition: transform 0.22s ease;
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.28);
  }

  .site-drawer.is-open {
    transform: translateX(0);
  }

  .content-flow {
    padding-top: 56px;
  }

  .cover-panel {
    min-height: 420px;
  }

  .route-row {
    grid-template-columns: 0.78fr 1fr 1.45fr 1.18fr;
  }
}

@media (max-width: 820px) {
  .cover-panel {
    min-height: 400px;
    padding: 30px 20px;
  }

  .data-strip dl,
  .brief-grid,
  .character-board,
  .settings-layout {
    grid-template-columns: 1fr;
  }

  .route-table {
    gap: 12px;
  }

  .route-row,
  .route-row.head {
    grid-template-columns: 1fr;
  }

  .route-row.head {
    display: none;
  }

  .route-row span {
    min-height: auto;
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 10px;
  }

  .route-row span::before {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 900;
  }

  .route-row span:nth-child(1)::before {
    content: "内容";
  }

  .route-row span:nth-child(2)::before {
    content: "范围";
  }

  .route-row span:nth-child(3)::before {
    content: "说明";
  }

  .route-row span:nth-child(4)::before {
    content: "重点";
  }

  .record-line::before,
  .record-line li::before {
    display: none;
  }

  .record-line li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
  }

  .record-line {
    gap: 10px;
  }

  .download-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .mobile-brand span {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .cover-actions,
  .cover-actions .action,
  .download-band .action {
    width: 100%;
  }

  .data-strip {
    padding: 0 12px;
  }

  .chapter {
    padding: 44px 14px;
  }

  .gallery-chapter {
    padding-right: 0;
  }

  .gallery-chapter .chapter-head {
    padding-right: 16px;
  }

  .image-rail {
    grid-auto-columns: minmax(230px, 82%);
    padding-right: 14px;
  }

  .image-rail img {
    height: 180px;
  }

  .settings-shot img,
  .character-board img {
    min-height: 210px;
  }
}
