:root {
  --ink: #10232b;
  --muted: #71858c;
  --brand: #0ea99d;
  --brand-dark: #00796f;
  --pale: #eafbfa;
  --line: #cfeceb;
  --orange: #ff7048;
  --gold: #ffb63d;
  --footer: #00665e;
  --shadow: 0 18px 40px rgba(5, 108, 100, .08);
  --font: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  background: linear-gradient(180deg, #f8ffff 0, #fff 440px);
}
a { color: inherit; text-decoration: none; }
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
  background: #eaf8f7;
  outline: 1px solid rgba(0, 0, 0, .08);
  outline-offset: -1px;
}
button,
input { font: inherit; }
.sz-wrap {
  width: 1180px;
  max-width: calc(100vw - 56px);
  margin: 0 auto;
}

.sz-header {
  height: 72px;
  color: #e4ffff;
  background: linear-gradient(135deg, #00665e, #003c37);
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 26px rgba(0, 64, 58, .18);
}
.sz-header-inner {
  height: 72px;
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr) 330px 54px 72px;
  gap: 18px;
  align-items: center;
}
.sz-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 950;
}
.sz-brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  overflow: hidden;
}
.sz-brand-mark img {
  width: auto;
  max-width: none;
  height: 44px;
  object-fit: contain;
  background: transparent;
  outline: 0;
}
.sz-brand-text {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0;
}
.sz-nav {
  display: flex;
  align-items: stretch;
  height: 72px;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.sz-nav a {
  min-width: 56px;
  display: grid;
  place-items: center;
  padding-top: 2px;
  border-bottom: 3px solid transparent;
  color: rgba(230,255,252,.9);
  font-weight: 850;
  white-space: nowrap;
}
.sz-nav a.active {
  color: #fff;
  border-color: #25d7c8;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0));
}
.sz-search {
  height: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 4px;
  background: #fff;
}
.sz-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 14px;
  color: #5b6e75;
}
.sz-search button {
  border: 0;
  color: #fff;
  background: #0ea99d;
  font-weight: 950;
}
.sz-history {
  color: #e4ffff;
  font-weight: 850;
  text-align: center;
}
.sz-login {
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #005f58;
  background: #fff;
  font-weight: 950;
}

.section-head {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 18px;
}
.section-head h2 {
  margin: 0;
  position: relative;
  padding-left: 13px;
  font-size: 24px;
  line-height: 1.2;
}
.section-head h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 4px;
  height: 24px;
  border-radius: 999px;
  background: var(--brand);
}
.section-head a {
  color: var(--brand-dark);
  font-weight: 950;
}

.detail-hero {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr) 260px;
  gap: 32px;
  align-items: start;
  padding: 34px 0 26px;
}
.detail-cover {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.detail-cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
}
.detail-cover b {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 58px;
  padding: 9px 12px;
  border-radius: 0 0 8px 0;
  color: #fff;
  background: var(--orange);
  font-size: 14px;
  text-align: center;
}
.detail-main h1 {
  margin: 6px 0 10px;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: 0;
}
.detail-main .subtitle {
  margin: 0 0 18px;
  color: #61757d;
  font-size: 18px;
  line-height: 1.6;
}
.meta-line,
.tag-list,
.detail-actions,
.chapter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
}
.meta-line span,
.tag-list a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: #41616a;
  background: #fff;
  font-weight: 850;
}
.tag-list {
  margin-top: 16px;
}
.tag-list a {
  color: var(--brand-dark);
  background: #f7ffff;
}
.intro {
  margin: 22px 0 0;
  color: #586f76;
  font-size: 16px;
  line-height: 1.95;
}
.detail-actions {
  margin-top: 28px;
}
.btn {
  min-height: 46px;
  min-width: 130px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  font-weight: 950;
  cursor: pointer;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #09a99d, #19c3b6);
  box-shadow: 0 14px 26px rgba(10, 169, 157, .22);
}
.btn-outline {
  color: var(--brand-dark);
  border: 1px solid var(--brand);
  background: #fff;
}
.btn-ghost {
  color: #42636b;
  border: 1px solid var(--line);
  background: #fff;
}
.detail-side {
  display: grid;
  gap: 14px;
}
.score-card,
.app-card,
.info-panel,
.chapter-panel,
.detail-info-board,
.detail-qa-panel,
.detail-latest-card,
.all-chapters-card,
.side-card,
.recommend-panel,
.reader-card,
.reader-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 14px 34px rgba(10, 90, 85, .045);
}
.score-card {
  padding: 20px;
}
.score-card strong {
  display: block;
  color: var(--orange);
  font-size: 42px;
  line-height: 1;
}
.score-card span,
.score-card p,
.app-card p,
.info-panel small {
  color: var(--muted);
}
.score-bars {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}
.score-bars i {
  height: 6px;
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background: #e1eeee;
}
.score-bars i::before {
  content: "";
  width: var(--w);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--brand);
}
.app-card {
  padding: 18px;
}
.app-card h3,
.info-panel h3,
.chapter-panel h2,
.recommend-panel h2,
.reader-panel h2 {
  margin: 0;
  font-size: 18px;
}
.qr-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 14px;
}
.qr-row img {
  width: 82px;
  height: 82px;
  padding: 5px;
  border-radius: 5px;
  background: #fff;
  object-fit: contain;
  outline: 0;
}

.detail-section {
  margin-top: 26px;
}
.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 22px;
  align-items: start;
  margin-top: 12px;
}
.detail-primary {
  min-width: 0;
}
.detail-primary .detail-section:first-child,
.detail-layout-side .side-card:first-child {
  margin-top: 0;
}
.detail-info-board,
.detail-qa-panel,
.detail-latest-card,
.all-chapters-card {
  overflow: hidden;
}
.compact-head {
  min-height: 58px;
  margin: 0;
  padding: 0 22px;
  border-bottom: 1px solid #e7f4f3;
}
.compact-head h2 {
  font-size: 20px;
}
.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 22px;
}
.detail-info-grid article {
  min-height: 118px;
  padding: 16px 18px;
  border: 1px solid #e6f1f0;
  border-radius: 4px;
  background: #fffafa;
}
.detail-info-grid h3,
.qa-list h3,
.side-card h3 {
  margin: 0;
  color: #15313a;
  font-size: 16px;
}
.detail-info-grid p,
.qa-list p {
  margin: 10px 0 0;
  color: #62777e;
  line-height: 1.75;
}
.info-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.info-links a,
.qa-list a {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #f3dbe1;
  border-radius: 3px;
  color: #e43b68;
  background: #fff8fa;
  font-size: 13px;
  font-weight: 850;
}
.qa-list {
  display: grid;
  gap: 12px;
  padding: 18px 22px;
}
.qa-list article {
  padding: 14px 16px;
  border: 1px solid #f2e0e5;
  border-radius: 4px;
  background: #fffafb;
}
.latest-banner {
  min-height: 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 18px 22px 0;
  padding: 12px 16px;
  border: 1px solid #f3dbe1;
  border-radius: 4px;
  color: #405e66;
  background: #fff8fa;
  font-weight: 850;
}
.latest-banner strong {
  color: var(--orange);
}
.info-panel {
  padding: 22px;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.info-grid div {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid #e3f2f1;
  border-radius: 7px;
  background: #f9ffff;
}
.info-grid strong {
  color: #12303a;
  font-size: 18px;
}
.chapter-panel {
  overflow: hidden;
}
.chapter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 22px;
  border-bottom: 1px solid #e7f4f3;
}
.chapter-tabs {
  display: flex;
  gap: 8px;
}
.chapter-tabs button,
.chapter-tabs a {
  height: 30px;
  min-width: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: #42636b;
  background: #fff;
  font-weight: 850;
}
.chapter-tabs button.active,
.chapter-tabs a.active {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}
.chapter-grid,
.all-chapter-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 20px 22px 22px;
}
.all-chapter-grid a.chapter-collapsed {
  display: none;
}
.chapter-grid a,
.all-chapter-grid a {
  min-width: 0;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid #dcefee;
  border-radius: 6px;
  color: #36565e;
  background: #fff;
  font-weight: 850;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chapter-grid a.hot,
.all-chapter-grid a.hot {
  color: var(--brand-dark);
  border-color: #bfe4e1;
  background: #f3ffff;
}
.detail-layout-side {
  display: grid;
  gap: 14px;
}
.side-card {
  padding: 18px;
}
.side-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.side-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.side-head a {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 950;
}
.side-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 14px;
}
.side-tags a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e7ecec;
  border-radius: 3px;
  color: #15313a;
  background: #fbfaf7;
  font-weight: 850;
}
.side-tags a::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: 7px;
  background: var(--brand);
}
.side-rank-list {
  display: grid;
  gap: 12px;
}
.side-rank-list a {
  min-width: 0;
  display: grid;
  grid-template-columns: 24px 48px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}
.side-rank-list em {
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  color: #fff;
  background: #e6003f;
  font-style: normal;
  font-weight: 950;
}
.side-rank-list img {
  width: 48px;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
}
.side-rank-list strong,
.side-rank-list span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.side-rank-list strong {
  font-size: 14px;
}
.side-rank-list span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}
.side-update-card dl {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
}
.side-update-card div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  color: #526d75;
  line-height: 1.55;
}
.side-update-card dt {
  color: var(--muted);
}
.side-update-card dd {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.side-qr {
  width: 96px;
  height: 96px;
  margin: 14px auto 10px;
  padding: 6px;
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
  outline: 0;
}
.side-app-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.side-app-actions a {
  min-height: 30px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #061514;
  font-size: 12px;
  font-weight: 950;
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}
.recommend-card {
  min-width: 0;
  display: grid;
}
.recommend-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  border-radius: 7px;
}
.recommend-card strong {
  overflow: hidden;
  margin-top: 11px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.recommend-card span {
  overflow: hidden;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-b .detail-hero {
  grid-template-columns: 246px minmax(0, 1fr) 310px;
}
.detail-b .detail-main h1 {
  font-size: 38px;
}
.data-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.data-row {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  min-height: 46px;
  border-bottom: 1px solid #e8f5f4;
}
.data-row:last-child { border-bottom: 0; }
.data-row b {
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: #365b64;
  background: #f0fbfb;
}
.data-row span {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 0 16px;
  color: #405b63;
}
.seo-blocks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.seo-block {
  min-height: 130px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.seo-block h3 {
  margin: 0 0 10px;
  font-size: 18px;
}
.seo-block p {
  margin: 0;
  color: #61757d;
  line-height: 1.8;
}

.detail-c {
  color: #eafffd;
  background:
    radial-gradient(circle at 20% 0, rgba(14,169,157,.22), transparent 28%),
    linear-gradient(180deg, #022b29 0, #061514 620px, #f8ffff 621px);
}
.detail-c .detail-hero {
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 42px;
  padding-top: 42px;
}
.detail-c .detail-main h1 {
  color: #fff;
  font-size: 52px;
}
.detail-c .subtitle,
.detail-c .intro {
  color: rgba(234,255,253,.82);
}
.detail-c .meta-line span,
.detail-c .tag-list a {
  color: #dcfffc;
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
}
.detail-c .detail-side {
  display: none;
}
.detail-c .detail-section {
  color: var(--ink);
}
.cinema-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.cinema-stats div {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}
.cinema-stats strong {
  color: #fff;
  font-size: 26px;
}
.cinema-stats span {
  color: rgba(234,255,253,.72);
}

.reader-body {
  background: #f6fbfb;
}
.reader-header {
  position: sticky;
  top: 0;
  z-index: 10;
}
.reader-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px) 88px;
  gap: 24px;
  align-items: start;
  padding: 24px 0 34px;
}
.reader-titlebar {
  grid-column: 1 / -1;
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(5,108,100,.05);
}
.reader-titlebar h1 {
  margin: 0;
  font-size: 24px;
}
.reader-titlebar p {
  margin: 6px 0 0;
  color: var(--muted);
}
.reader-tools {
  display: flex;
  gap: 10px;
}
.reader-tools button,
.reader-tools a,
.reader-rail a,
.reader-rail button {
  min-width: 40px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--brand-dark);
  background: #fff;
  font-weight: 950;
}
.reader-tool-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.catalog-list {
  display: grid;
  gap: 8px;
  padding: 14px;
}
.catalog-list a {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 5px;
  color: #4e6870;
  background: #f9ffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.catalog-list a.active {
  color: #fff;
  background: var(--brand);
}
.reader-pages {
  display: grid;
  gap: 18px;
}
.reader-page-img {
  overflow: hidden;
  border: 1px solid #d9eeee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(8,107,101,.06);
}
.reader-page-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 760 / 1080;
  border-radius: 8px;
}
.reader-page-img figcaption {
  padding: 8px 12px;
  color: #71858c;
  font-size: 13px;
  text-align: center;
}
.reader-rail {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
}
.reader-bottom-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.reader-bottom-nav a {
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--brand-dark);
  background: #fff;
  font-weight: 950;
}
.reader-b .reader-shell {
  grid-template-columns: minmax(0, 1fr) 320px;
}
.reader-b .reader-titlebar {
  grid-column: 1 / -1;
}
.reader-b .reader-pages {
  gap: 12px;
}
.reader-b .catalog-side {
  display: grid;
  gap: 14px;
}
.reader-b .reader-page-img figcaption {
  text-align: left;
}
.reader-c {
  color: #dffaf8;
  background: #061514;
}
.reader-c .sz-header {
  box-shadow: none;
}
.reader-c .reader-shell {
  grid-template-columns: minmax(0, 840px) 86px;
  justify-content: center;
}
.reader-c .reader-titlebar,
.reader-c .reader-panel,
.reader-c .reader-bottom-nav a,
.reader-c .reader-rail a,
.reader-c .reader-rail button {
  color: #eafffd;
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.reader-c .reader-tools a,
.reader-c .reader-tools button {
  color: #eafffd;
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.9);
}
.reader-c .reader-tool-icon {
  color: #00665e;
}
.reader-c .reader-rail .reader-tool-icon {
  color: #eafffd;
}
.reader-c .reader-tools .reader-tool-icon {
  color: #eafffd;
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
}
.reader-c .reader-titlebar p,
.reader-c .reader-page-img figcaption {
  color: rgba(234,255,253,.66);
}
.reader-c .reader-card {
  border: 0;
  background: transparent;
  box-shadow: none;
}
.reader-c .reader-page-img {
  border: 0;
  background: transparent;
  box-shadow: none;
}
.reader-c .reader-page-img img {
  border-radius: 5px 5px 0 0;
  outline: 0;
}
.reader-c .reader-page-img figcaption {
  background: rgba(0,0,0,.18);
}
.reader-c .reader-rail a,
.reader-c .reader-rail button {
  width: 52px;
  min-width: 52px;
  height: 48px;
  border-radius: 10px;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.reader-c .reader-rail a:hover,
.reader-c .reader-rail button:hover {
  border-color: rgba(37,215,200,.45);
  background: rgba(37,215,200,.16);
  transform: translateY(-1px);
}
.reader-c .reader-panel {
  display: none;
}

.reader-c {
  min-height: 100vh;
  color: #eafffd;
  background:
    radial-gradient(circle at 50% 120px, rgba(20, 172, 160, .18), transparent 380px),
    linear-gradient(180deg, #051c19 0, #061412 560px, #04110f 100%);
}
.reader-c.reader-light {
  color: #10232b;
  background: linear-gradient(180deg, #f4fffe 0, #ffffff 540px);
}
.reader-c .sz-nav a:first-child {
  color: #fff;
  border-color: #25d7c8;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0));
}
.reader-c .reader-shell {
  width: 1180px;
  max-width: calc(100vw - 56px);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 930px) 62px;
  gap: 26px;
  justify-content: center;
  padding: 24px 0 36px;
}
.reader-c .reader-titlebar {
  grid-column: 1 / 2;
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto auto;
  align-items: center;
  gap: 12px;
  padding: 10px 14px 10px 20px;
  border-color: rgba(255,255,255,.1);
  border-radius: 8px;
  color: #eafffd;
  background: rgba(255,255,255,.055);
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
}
.reader-c.reader-light .reader-titlebar,
.reader-c.reader-light .reader-recommend,
.reader-c.reader-light .reader-bottom-nav {
  color: #10232b;
  border-color: var(--line);
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 30px rgba(5,108,100,.07);
}
.reader-c .reader-chapter-title {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: inherit;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 950;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.reader-c .reader-chapter-title a,
.reader-c .reader-chapter-title span {
  color: inherit;
}
.reader-c .reader-chapter-title a {
  margin-right: 12px;
}
.reader-c .reader-page-total {
  padding: 0 8px;
  color: rgba(234,255,253,.78);
  font-size: 14px;
  white-space: nowrap;
}
.reader-c.reader-light .reader-page-total {
  color: #668088;
}
.reader-c .reader-nav-btn {
  min-width: 86px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 7px;
  color: #eefefc;
  background: rgba(255,255,255,.07);
  font-weight: 900;
  cursor: pointer;
}
.reader-c.reader-light .reader-nav-btn {
  color: var(--brand-dark);
  border-color: var(--line);
  background: #fff;
}
.reader-c .reader-card {
  grid-column: 1 / 2;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.reader-c .reader-pages {
  width: 840px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 0;
}
.reader-c .reader-page-img {
  overflow: hidden;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.reader-c .reader-page-img:first-child {
  border-radius: 0;
}
.reader-c .reader-page-img:last-child {
  border-bottom: 0;
  border-radius: 0;
}
.reader-c.reader-light .reader-page-img {
  background: transparent;
}
.reader-c .reader-page-img img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
  outline: 0;
  background: #101414;
}
.reader-c.reader-light .reader-page-img img {
  background: #fff;
}
.reader-c .reader-page-img figcaption {
  display: none;
}
.reader-c .reader-bottom-nav {
  width: 920px;
  max-width: 100%;
  min-height: 66px;
  display: grid;
  grid-template-columns: 170px 260px 220px 1fr;
  align-items: center;
  gap: 12px;
  margin: 12px auto 0;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 18px 42px rgba(0,0,0,.2);
  backdrop-filter: blur(8px);
}
.reader-c .reader-bottom-nav a,
.reader-c .reader-bottom-nav button {
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 6px;
  color: #eafffd;
  background: rgba(255,255,255,.065);
  font-weight: 950;
  cursor: pointer;
}
.reader-c .reader-bottom-nav .reader-next-link {
  color: #fff;
  border-color: rgba(37,215,200,.42);
  background: linear-gradient(135deg, #10b7aa, #078b82);
}
.reader-c .reader-progress {
  justify-self: end;
  color: #27ddcf;
  font-size: 18px;
  font-weight: 900;
}
.reader-c.reader-light .reader-bottom-nav a,
.reader-c.reader-light .reader-bottom-nav button {
  color: var(--brand-dark);
  border-color: var(--line);
  background: #fff;
}
.reader-c .reader-rail {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  align-self: start;
  position: sticky;
  top: 108px;
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 9px;
  background: rgba(31,45,44,.72);
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
  backdrop-filter: blur(7px);
}
.reader-c .reader-rail-btn {
  width: 60px;
  min-width: 60px;
  height: 61px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  border-radius: 0;
  color: rgba(238,255,253,.9);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}
.reader-c .reader-rail-btn:last-child {
  border-bottom: 0;
}
.reader-c .reader-rail-btn svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.reader-c .reader-rail-btn span {
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}
.reader-c .reader-rail-btn:hover,
.reader-c .reader-rail-btn.active {
  color: #fff;
  background: rgba(37,215,200,.16);
}
.reader-c.reader-light .reader-rail {
  border-color: var(--line);
  background: #fff;
  box-shadow: 0 14px 28px rgba(5,108,100,.08);
}
.reader-c.reader-light .reader-rail-btn {
  color: var(--brand-dark);
  border-color: #e0f1f0;
}
.reader-c .reader-recommend {
  grid-column: 1 / 2;
  width: 100%;
  margin-top: 18px;
  padding: 14px 18px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 18px 42px rgba(0,0,0,.17);
  backdrop-filter: blur(8px);
}
.reader-c .reader-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.reader-c .reader-section-head h2 {
  position: relative;
  margin: 0;
  padding-left: 14px;
  color: inherit;
  font-size: 20px;
  line-height: 1.2;
}
.reader-c .reader-section-head h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  border-radius: 999px;
  background: #16cabe;
}
.reader-c .reader-section-head button {
  border: 0;
  color: #27ddcf;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}
.reader-c .reader-recommend-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.reader-c .reader-recommend-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  color: #eafffd;
  background: rgba(255,255,255,.045);
}
.reader-c.reader-light .reader-recommend-card {
  color: #10232b;
  border-color: var(--line);
  background: #fff;
}
.reader-c .reader-recommend-card img {
  width: 68px;
  height: 88px;
  border-radius: 5px;
}
.reader-c .reader-recommend-card strong,
.reader-c .reader-recommend-card span,
.reader-c .reader-recommend-card small {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.reader-c .reader-recommend-card strong {
  align-self: end;
  color: inherit;
  font-size: 15px;
  line-height: 1.3;
}
.reader-c .reader-recommend-card span {
  color: #aef0ea;
  font-size: 13px;
}
.reader-c .reader-recommend-card small {
  color: rgba(234,255,253,.66);
  font-size: 13px;
}
.reader-c.reader-light .reader-recommend-card span {
  color: var(--brand-dark);
}
.reader-c.reader-light .reader-recommend-card small {
  color: #71858c;
}
.reader-c .reader-download-banner {
  grid-column: 1 / 2;
  min-height: 120px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 128px;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  padding: 24px 28px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 0;
  color: #fff;
  background: #151515;
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}
.reader-c .reader-download-banner img {
  width: 96px;
  height: 96px;
  border-radius: 10px;
  object-fit: cover;
  background: #fff;
  outline: 0;
}
.reader-c .reader-download-banner h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 950;
}
.reader-c .reader-download-banner p {
  margin: 0;
  color: rgba(221,238,246,.86);
  font-size: 17px;
  line-height: 1.5;
}
.reader-c .reader-download-banner a {
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #ef0050;
  font-size: 18px;
  font-weight: 950;
  box-shadow: 0 10px 20px rgba(239,0,80,.18);
}
.reader-c.reader-light .reader-download-banner {
  border-color: #222;
  color: #fff;
  background: #151515;
}
.reader-c .reader-catalog-drawer,
.reader-c .reader-app-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  background: rgba(0,0,0,.5);
}
.reader-c.catalog-open .reader-catalog-drawer,
.reader-c.app-modal-open .reader-app-modal {
  display: block;
}
.reader-c .reader-catalog-panel {
  width: 440px;
  max-width: calc(100vw - 32px);
  height: 100%;
  margin-left: auto;
  padding: 22px;
  color: #eafffd;
  background: #111b1b;
  box-shadow: -18px 0 42px rgba(0,0,0,.28);
}
.reader-c .reader-catalog-head,
.reader-c .reader-catalog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reader-c .reader-catalog-head strong {
  font-size: 24px;
}
.reader-c .reader-catalog-head button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: #10232b;
  background: #fff;
  font-size: 24px;
  cursor: pointer;
}
.reader-c .reader-catalog-meta {
  margin: 18px 0 14px;
  color: rgba(234,255,253,.66);
}
.reader-c .reader-catalog-meta button {
  min-width: 58px;
  height: 30px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 5px;
  color: #eafffd;
  background: rgba(255,255,255,.06);
  cursor: pointer;
}
.reader-c .reader-catalog-meta button.active {
  border-color: #14bdb0;
  background: #0ea99d;
}
.reader-c .reader-catalog-list {
  height: calc(100vh - 120px);
  overflow: auto;
  display: grid;
  gap: 8px;
  padding-right: 4px;
}
.reader-c .reader-catalog-list a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  color: rgba(234,255,253,.82);
  background: rgba(255,255,255,.04);
}
.reader-c .reader-catalog-list a.active {
  color: #fff;
  border-color: rgba(37,215,200,.45);
  background: rgba(37,215,200,.16);
}
.reader-c .reader-toast {
  position: fixed;
  left: 50%;
  bottom: 34px;
  z-index: 70;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  padding: 11px 18px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0,0,0,.72);
  transition: opacity .18s ease, transform .18s ease;
}
.reader-c .reader-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.reader-c .reader-app-dialog {
  width: 420px;
  max-width: calc(100vw - 34px);
  margin: 20vh auto 0;
  position: relative;
  padding: 34px;
  border-radius: 12px;
  text-align: center;
  color: #10232b;
  background: #fff;
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}
.reader-c .reader-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: #66777d;
  background: #f2f5f5;
  font-size: 24px;
  cursor: pointer;
}
.reader-c .reader-app-dialog strong {
  display: block;
  margin-bottom: 12px;
  font-size: 26px;
}
.reader-c .reader-app-dialog p {
  margin: 0 0 24px;
  color: #5d727a;
  font-size: 17px;
}
.reader-c .reader-app-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.reader-c .reader-app-actions a,
.reader-c .reader-app-actions button {
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--brand-dark);
  background: #fff;
  font-weight: 950;
  cursor: pointer;
}
.reader-c .reader-app-actions a {
  color: #fff;
  border-color: #0ea99d;
  background: #0ea99d;
}

.detail-live {
  background: linear-gradient(180deg, #f7ffff 0, #fff 520px);
}
.detail-live .sz-nav a:first-child {
  color: #fff;
  border-color: #25d7c8;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0));
}
.detail-live .detail-hero {
  display: grid;
  grid-template-columns: 278px minmax(0, 1fr) 220px;
  gap: 30px;
  align-items: start;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 16px 34px rgba(7, 86, 80, .05);
}
.detail-live .detail-cover {
  width: 278px;
  border-radius: 7px;
  box-shadow: none;
}
.detail-live .detail-cover img {
  width: 278px;
  height: 370px;
  border-radius: 7px;
}
.detail-live .detail-main {
  min-width: 0;
  padding: 4px 0 0;
}
.detail-live .detail-main h1 {
  margin: 0 0 18px;
  color: #10232b;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 950;
}
.detail-live .detail-line {
  min-height: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  color: #273f47;
  font-size: 15px;
  line-height: 1.6;
}
.detail-live .detail-line + .detail-line {
  margin-top: 7px;
}
.detail-live .detail-line a,
.detail-live .detail-line strong {
  color: var(--brand-dark);
  font-weight: 850;
}
.detail-live .tag-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
}
.detail-live .tag-list a {
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  color: #31525a;
  background: #eefafa;
  font-size: 14px;
}
.detail-live .intro {
  min-height: 104px;
  display: -webkit-box;
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid #e3f2f1;
  color: #405b63;
  font-size: 14px;
  line-height: 1.85;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.detail-live .detail-actions {
  margin-top: 22px;
  gap: 18px;
}
.detail-live .btn {
  min-width: 118px;
  min-height: 40px;
  border-radius: 5px;
  font-size: 15px;
}
.detail-live .detail-side {
  display: block;
}
.detail-live .score-card {
  min-height: 370px;
  padding: 24px 22px;
  border-radius: 7px;
  box-shadow: none;
}
.detail-live .score-card span {
  display: block;
  margin-bottom: 12px;
  color: #3d5961;
  font-size: 15px;
}
.detail-live .score-card strong {
  margin-bottom: 8px;
  color: #f07b00;
  font-size: 46px;
  font-weight: 950;
}
.detail-live .score-card p {
  margin: 8px 0 0;
  color: #6d8188;
  font-size: 14px;
}
.detail-live .star-row {
  color: #ff9500;
  font-size: 18px;
  letter-spacing: 2px;
}
.detail-live .score-divider {
  height: 1px;
  margin: 28px 0 24px;
  background: #dcefee;
}
.detail-live .score-card b,
.detail-live .score-card time {
  display: block;
  margin-bottom: 20px;
  color: #16313a;
  font-size: 18px;
  font-weight: 950;
}
.detail-live .latest-chapters-card,
.detail-live .all-chapters-card,
.detail-live .detail-seo-overview,
.detail-live .detail-seo-reading,
.detail-live .recommend-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 14px 32px rgba(7, 86, 80, .045);
}
.detail-live .chapter-head {
  min-height: 58px;
  padding: 0 18px;
}
.detail-live .chapter-head h2 {
  margin: 0;
  color: #10232b;
  font-size: 19px;
  font-weight: 950;
}
.detail-live .chapter-head small {
  margin-left: 6px;
  color: #789098;
  font-size: 14px;
  font-weight: 400;
}
.detail-live .chapter-note {
  color: #5f7880;
  font-size: 13px;
}
.detail-live .latest-chapter-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 14px 18px 18px;
}
.detail-live .latest-chapter-row a {
  min-width: 0;
  min-height: 70px;
  display: grid;
  align-content: start;
  gap: 5px;
  padding: 8px 12px;
  border: 1px solid #dcefee;
  border-radius: 5px;
  color: #5f7880;
  background: #fff;
  font-weight: 400;
}
.detail-live .latest-chapter-row a:first-child {
  color: #17958d;
  border-color: #bfe4e1;
  background: #f3ffff;
}
.detail-live .latest-chapter-row span {
  min-width: 0;
  min-height: 38px;
  display: -webkit-box;
  overflow: hidden;
  color: inherit;
  font-weight: 400;
  line-height: 19px;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.detail-live .latest-chapter-row time {
  min-width: 0;
  display: block;
  overflow: hidden;
  line-height: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.detail-live .latest-chapter-row time {
  color: #8a9ca2;
  font-size: 12px;
  font-weight: 400;
}
.detail-live .chapter-tabs {
  align-items: center;
  gap: 10px;
}
.detail-live .chapter-tabs button {
  height: 34px;
  min-width: 64px;
  border-radius: 5px;
}
.detail-live .chapter-tabs button:first-child {
  min-width: 88px;
}
.detail-live .all-chapter-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px 14px;
  padding: 14px 18px 20px;
}
.detail-live .all-chapter-grid a {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 6px 10px;
  line-height: 18px;
  border-radius: 5px;
  color: #5f7880;
  font-size: 13px;
  font-weight: 400;
  white-space: normal;
}
.detail-live .all-chapter-grid a span {
  min-width: 0;
  display: -webkit-box;
  overflow: hidden;
  color: inherit;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.detail-live .all-chapter-grid a.hot {
  color: #17958d;
}
.detail-live .detail-seo-overview,
.detail-live .detail-seo-reading {
  padding: 22px;
}
.detail-live .detail-seo-overview h2,
.detail-live .detail-seo-reading h2 {
  position: relative;
  margin: 0 0 18px;
  padding-left: 14px;
  color: #10232b;
  font-size: 22px;
  font-weight: 950;
}
.detail-live .detail-seo-overview h2::before,
.detail-live .detail-seo-reading h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 24px;
  border-radius: 99px;
  background: var(--brand);
}
.detail-live .detail-seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.detail-live .detail-seo-card {
  min-height: 128px;
  padding: 18px 20px;
  border: 1px solid #e7ecec;
  border-radius: 6px;
  background: #fffefe;
}
.detail-live .detail-seo-card h3 {
  margin: 0 0 10px;
  color: #10232b;
  font-size: 17px;
  font-weight: 950;
}
.detail-live .detail-seo-card p {
  margin: 0;
  color: #587078;
  font-size: 14px;
  line-height: 1.85;
}
.detail-live .detail-seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.detail-live .detail-seo-links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #dcefee;
  border-radius: 4px;
  color: #008a82;
  background: #f9ffff;
  font-size: 13px;
  font-weight: 850;
}
.detail-live .detail-recent-trail {
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid #e7ecec;
  border-radius: 6px;
  background: #fbffff;
}
.detail-live .detail-recent-trail h3 {
  margin: 0;
  color: #10232b;
  font-size: 17px;
}
.detail-live .detail-recent-trail p {
  margin: 10px 0 0;
  color: #71858c;
  font-size: 14px;
}
.detail-live .recommend-panel {
  padding: 0;
}
.detail-live .recommend-panel .section-head {
  min-height: 56px;
  margin: 0;
  padding: 0 18px;
  border-bottom: 1px solid #e7f4f3;
}
.detail-live .recommend-panel .section-head h2 {
  font-size: 19px;
}
.detail-live .recommend-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  padding: 18px 18px 22px;
}
.detail-live .recommend-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  align-items: start;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.detail-live .recommend-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
  background: #eef8f7;
}
.detail-live .recommend-card strong {
  min-width: 0;
  overflow: hidden;
  margin-top: 10px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.detail-live .recommend-card span,
.detail-live .recommend-card small {
  min-width: 0;
  overflow: hidden;
  margin-top: 6px;
  color: #71858c;
  font-size: 13px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.detail-live .recommend-card small {
  display: none;
}
.detail-live .recommend-card .recommend-reason {
  display: -webkit-box;
  overflow: hidden;
  margin: 7px 0 0;
  color: #61777e;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.sz-footer {
  margin-top: 34px;
  color: #d9f4f1;
  background: linear-gradient(135deg, #00665e, #003c37);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr) 1.35fr;
  gap: 42px;
  padding: 36px 0 30px;
}
.footer-brand .sz-brand-text { color: #fff; }
.footer-about p,
.footer-app p {
  color: #b9dbd8;
  line-height: 1.8;
}
.sz-footer nav,
.footer-app {
  display: grid;
  align-content: start;
  gap: 8px;
}
.sz-footer h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 16px;
}
.sz-footer nav a { color: #cae6e3; }
.socials {
  display: flex;
  gap: 10px;
}
.socials span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  font-size: 12px;
}
.footer-qr {
  width: 96px;
  height: 96px;
  padding: 6px;
  border-radius: 4px;
  background: #fff;
  object-fit: contain;
  outline: 0;
}
.footer-download-row {
  display: grid;
  grid-template-columns: 96px 150px;
  gap: 12px;
  align-items: start;
  margin-top: 12px;
}
.footer-download-actions {
  display: grid;
  gap: 10px;
}
.footer-app a {
  width: 150px;
  min-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 5px;
}
.copyright {
  padding: 12px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #b9dbd8;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 1080px) {
  .sz-header { height: auto; }
  .sz-header-inner {
    height: auto;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 14px 0;
  }
  .sz-search {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .sz-nav {
    grid-column: 1 / -1;
    height: auto;
    gap: 8px;
  }
  .sz-nav a {
    min-width: 64px;
    min-height: 40px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
  }
  .sz-history,
  .sz-login { display: none; }
  .detail-hero,
  .detail-b .detail-hero {
    grid-template-columns: 260px minmax(0, 1fr);
  }
  .detail-side {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }
  .detail-content-grid {
    grid-template-columns: 1fr;
  }
  .detail-layout-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .detail-c .detail-hero {
    grid-template-columns: 280px minmax(0, 1fr);
  }
  .info-grid,
  .seo-blocks,
  .cinema-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .chapter-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .recommend-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .reader-shell,
  .reader-b .reader-shell,
  .reader-c .reader-shell {
    grid-template-columns: minmax(0, 1fr);
  }
  .reader-panel,
  .reader-rail {
    position: static;
  }
  .reader-rail {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .sz-wrap { max-width: calc(100vw - 28px); }
  .sz-brand-text { font-size: 23px; }
  .detail-hero,
  .detail-b .detail-hero,
  .detail-c .detail-hero,
  .detail-side,
  .detail-content-grid,
  .detail-layout-side,
  .detail-info-grid,
  .info-grid,
  .seo-blocks,
  .cinema-stats,
  .chapter-grid,
  .all-chapter-grid,
  .recommend-grid {
    grid-template-columns: 1fr;
  }
  .detail-main h1,
  .detail-c .detail-main h1 {
    font-size: 36px;
  }
  .detail-cover {
    max-width: 320px;
  }
  .chapter-head,
  .reader-titlebar {
    align-items: start;
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }
  .reader-tools {
    flex-wrap: wrap;
  }
  .reader-bottom-nav {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .detail-live .detail-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 14px;
  }
  .detail-live .detail-cover {
    width: min(278px, 100%);
    margin: 0 auto;
  }
  .detail-live .detail-cover img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
  }
  .detail-live .detail-main h1 {
    font-size: 26px;
  }
  .detail-live .score-card {
    min-height: 0;
  }
  .detail-live .latest-chapter-row,
  .detail-live .all-chapter-grid,
  .detail-live .detail-seo-grid,
  .detail-live .recommend-grid {
    grid-template-columns: 1fr;
  }
  .detail-live .detail-seo-overview,
  .detail-live .detail-seo-reading {
    padding: 16px;
  }
  .detail-live .detail-seo-overview h2,
  .detail-live .detail-seo-reading h2 {
    font-size: 20px;
  }
  .detail-live .chapter-head {
    align-items: flex-start;
    gap: 12px;
  }
  .detail-live .chapter-tabs {
    width: 100%;
    flex-wrap: wrap;
  }
}

.reader-c .reader-nav-btn.disabled,
.reader-c .reader-bottom-nav a.disabled,
.reader-c .reader-rail a.disabled {
  opacity: .45;
  pointer-events: none;
}
.reader-c .reader-empty {
  min-height: 220px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  color: rgba(234,255,253,.7);
  background: rgba(255,255,255,.05);
}
.reader-c .reader-app-gate {
  align-content: center;
  gap: 10px;
  text-align: center;
}
.reader-c .reader-app-gate strong {
  color: #fff;
  font-size: 26px;
}
.reader-c .reader-app-gate p {
  margin: 0;
  color: rgba(234,255,253,.78);
  font-size: 17px;
}
.reader-c .reader-app-gate a {
  min-width: 150px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  justify-self: center;
  margin-top: 8px;
  border-radius: 7px;
  color: #fff;
  background: #0ea99d;
  font-weight: 950;
}
.reader-c .reader-rail .reader-rail-btn {
  width: 60px;
  min-width: 60px;
  height: 61px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  padding: 0;
}
.reader-c .reader-rail .reader-rail-btn svg {
  width: 21px;
  height: 21px;
}
.reader-c .reader-rail .reader-rail-btn span {
  font-size: 13px;
  line-height: 1;
}
.reader-c .reader-recommend-card > div {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 6px;
}
.reader-c .reader-recommend-card > div > strong,
.reader-c .reader-recommend-card > div > span,
.reader-c .reader-recommend-card > div > small {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media (max-width: 1040px) {
  .reader-c .reader-shell {
    grid-template-columns: minmax(0, 1fr);
    max-width: calc(100vw - 28px);
  }
  .reader-c .reader-titlebar,
  .reader-c .reader-card,
  .reader-c .reader-recommend {
    grid-column: 1;
  }
  .reader-c .reader-rail {
    position: fixed;
    right: 14px;
    top: auto;
    bottom: 96px;
    z-index: 20;
    grid-column: auto;
  }
  .reader-c .reader-rail .reader-rail-btn {
    width: 58px;
    min-width: 58px;
    height: 58px;
  }
  .reader-c .reader-rail .reader-rail-btn svg {
    width: 22px;
    height: 22px;
  }
  .reader-c .reader-rail .reader-rail-btn span {
    font-size: 12px;
  }
}

@media (max-width: 720px) {
  .reader-c .reader-shell {
    padding-top: 14px;
  }
  .reader-c .reader-titlebar {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px;
  }
  .reader-c .reader-chapter-title {
    grid-column: 1 / -1;
    white-space: normal;
    font-size: 17px;
  }
  .reader-c .reader-page-total {
    grid-column: 1 / -1;
    padding: 0;
  }
  .reader-c .reader-nav-btn {
    min-width: 0;
    width: 100%;
  }
  .reader-c .reader-pages,
  .reader-c .reader-bottom-nav {
    width: 100%;
  }
  .reader-c .reader-bottom-nav {
    grid-template-columns: 1fr 1fr;
    padding: 10px;
  }
  .reader-c .reader-progress {
    justify-self: center;
    grid-column: 1 / -1;
  }
  .reader-c .reader-recommend-grid {
    grid-template-columns: 1fr;
  }
  .reader-c .reader-download-banner {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
    margin-bottom: 88px;
  }
  .reader-c .reader-download-banner img {
    width: 78px;
    height: 78px;
  }
  .reader-c .reader-download-banner h2 {
    font-size: 20px;
  }
  .reader-c .reader-download-banner p {
    font-size: 14px;
  }
  .reader-c .reader-download-banner a {
    grid-column: 1 / -1;
    min-height: 42px;
    font-size: 16px;
  }
  .reader-c .reader-recommend-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }
  .reader-c .reader-rail {
    left: 14px;
    right: 14px;
    bottom: 12px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border-radius: 14px;
  }
  .reader-c .reader-rail .reader-rail-btn {
    width: auto;
    min-width: 0;
    height: 54px;
    border-bottom: 0;
    border-right: 1px solid rgba(255,255,255,.08);
  }
  .reader-c .reader-rail .reader-rail-btn:last-child {
    border-right: 0;
  }
}
