:root {
  --ink: #10232b;
  --muted: #71858c;
  --brand: #0ea99d;
  --brand-dark: #00796f;
  --pale: #eafbfa;
  --line: #cfeceb;
  --orange: #ff7048;
  --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;
}

html.is-live-data-loading main {
  position: relative;
}
html.is-live-data-loading main > * {
  opacity: 0;
  pointer-events: none;
}
html.is-live-data-ready main > * {
  opacity: 1;
  transition: opacity .16s ease-out;
}
.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;
  position: relative;
}
.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-brand-text small {
  margin-top: 7px;
  color: #4e666d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
}
.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;
}

.sz-hero {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr) 340px;
  gap: 36px;
  align-items: center;
  min-height: 474px;
  padding: 28px 0 26px;
}
.hero-poster {
  height: 432px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
  background: #eaf8f7;
}
.hero-poster img {
  width: 100%;
  height: 100%;
}
.poster-badge {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  min-width: 64px;
  padding: 10px 13px 11px;
  border-radius: 0 0 9px 0;
  color: #fff;
  background: var(--orange);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 950;
  text-align: center;
}
.poster-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, .78);
  font-weight: 900;
}
.hero-copy {
  align-self: center;
  min-width: 0;
  height: 432px;
  padding-top: 2px;
}
.hero-meta {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-copy h1 {
  display: -webkit-box;
  overflow: hidden;
  min-height: 95px;
  max-height: 95px;
  margin: 0 0 10px;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.hero-copy h2 {
  display: -webkit-box;
  overflow: hidden;
  min-height: 56px;
  max-height: 56px;
  margin: 0 0 24px;
  color: #60737a;
  font-size: 22px;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.hero-desc {
  display: -webkit-box;
  overflow: hidden;
  max-width: 48em;
  min-height: 96px;
  max-height: 96px;
  margin: 0;
  color: #61757d;
  font-size: 16px;
  line-height: 2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.hero-actions {
  display: flex;
  gap: 28px;
  margin-top: 26px;
}
.btn {
  min-height: 48px;
  min-width: 132px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 950;
}
.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;
}
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}
.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c9dcda;
  cursor: pointer;
}
.hero-dots button.active { background: var(--brand); }

.today-panel {
  height: 432px;
  padding: 22px;
  border: 1px solid #d7f0ef;
  border-radius: 8px;
  background: linear-gradient(180deg, #eafafa, #f9ffff);
}
.panel-title h2 {
  margin: 0 0 18px;
  font-size: 24px;
}
.today-list {
  display: grid;
  gap: 14px;
}
.today-list a,
.latest-col a {
  display: grid;
  grid-template-columns: 48px 48px minmax(0, 1fr) 24px;
  gap: 10px;
  align-items: center;
}
.today-list time,
.latest-col time {
  color: #758a91;
  font-size: 13px;
}
.today-list img,
.latest-col img,
.rank-row img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
}
.today-list strong,
.latest-col strong,
.rank-row strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: #152932;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.today-list small,
.latest-col small,
.rank-row small {
  display: block;
  min-width: 0;
  overflow: hidden;
  margin-top: 4px;
  color: #7b8e95;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.today-list em,
.latest-col em {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid #ff9c82;
  border-radius: 6px;
  color: var(--orange);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}
.today-more {
  display: block;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #cbe9e7;
  color: var(--brand-dark);
  font-weight: 900;
  text-align: center;
}

.update-bar {
  height: 66px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px 150px;
  align-items: center;
  border: 1px solid #ccebea;
  border-radius: 8px;
  background: linear-gradient(90deg, #e5fafa, #f8ffff);
}
.update-title {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 24px;
  font-size: 21px;
}
.update-title span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(135deg, #0aa69a, #36d1c3);
}
.update-title span svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.update-title b { color: var(--orange); }
.update-bar a {
  height: 100%;
  display: grid;
  place-items: center;
  border-left: 1px solid #ccebea;
  color: var(--brand-dark);
  font-weight: 950;
}

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

.editor-layout {
  display: grid;
  grid-template-columns: 2.05fr repeat(4, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}
.editor-feature {
  height: 316px;
  display: grid;
  grid-template-columns: 52% minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: linear-gradient(135deg, #fff, #eafafa);
}
.editor-feature img {
  width: 100%;
  height: 100%;
}
.feature-copy {
  min-width: 0;
  padding: 26px 20px 20px;
}
.feature-copy h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 9px;
  font-size: 24px;
  line-height: 1.16;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.feature-copy span {
  display: block;
  color: var(--brand-dark);
  font-weight: 900;
}
.feature-copy p {
  display: -webkit-box;
  overflow: hidden;
  margin: 14px 0 15px;
  color: #667a82;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.feature-copy em {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--brand);
  border-radius: 5px;
  color: var(--brand-dark);
  font-style: normal;
  font-weight: 950;
}
.poster-card {
  display: grid;
  gap: 9px;
  text-align: center;
}
.poster-card img {
  width: 100%;
  height: 260px;
  border-radius: 7px;
}
.poster-card strong {
  overflow: hidden;
  font-size: 16px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.poster-card span {
  color: var(--muted);
  font-size: 13px;
}

.latest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}
.latest-col {
  display: grid;
}
.latest-col a {
  min-height: 124px;
  grid-template-columns: 78px minmax(0, 1fr) 56px 24px;
  gap: 16px;
  border-bottom: 1px dashed #dbeaea;
}
.latest-col img {
  width: 78px;
  height: 104px;
  aspect-ratio: 3 / 4;
  border-radius: 7px;
}
.latest-col time {
  text-align: right;
}
.latest-col strong {
  font-size: 17px;
}
.latest-col small {
  font-size: 12px;
}
.latest-desc {
  overflow: hidden;
  display: -webkit-box;
  margin: 6px 0 0;
  color: #7b8e95;
  font-size: 12px;
  line-height: 1.5;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 18px;
}
.topic-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background: #0c746c;
}
.topic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.58)),
    var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.topic-card > * {
  position: relative;
  z-index: 1;
}
.topic-card strong {
  font-size: 30px;
  line-height: 1.1;
}
.topic-card span {
  margin-top: 8px;
  color: rgba(255,255,255,.9);
}
.topic-card em {
  width: fit-content;
  margin-top: 18px;
  padding: 8px 18px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: #fff;
  font-style: normal;
  font-weight: 950;
}
.topic-a { --bg: url("assets/topic-hot-adventure.png"); }
.topic-b { --bg: url("assets/topic-romance-ancient.png"); }
.topic-c { --bg: url("assets/topic-mystery-detective.png"); }
.topic-d { --bg: url("assets/topic-completed-masterpiece.png"); }

.new-layout {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}
.new-card {
  overflow: hidden;
  display: grid;
  min-width: 0;
  border: 1px solid #d6efee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 107, 101, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.new-card:hover {
  transform: translateY(-3px);
  border-color: #9adbd7;
  box-shadow: 0 18px 36px rgba(8, 107, 101, .12);
}
.new-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
}
.new-card strong {
  min-width: 0;
  margin: 12px 12px 0;
  margin-top: 14px;
  overflow: hidden;
  color: #152932;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.new-card span {
  min-width: 0;
  overflow: hidden;
  margin: 8px 12px 0;
  color: #61737a;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.new-card small {
  min-width: 0;
  overflow: hidden;
  margin: 9px 12px 14px;
  color: #7c8e94;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rank-section {
  padding: 20px 20px 22px;
  border: 1px solid #d6efee;
  border-radius: 9px;
  background: linear-gradient(90deg, rgba(231, 251, 250, .96), rgba(255,255,255,.98));
  box-shadow: 0 16px 36px rgba(0, 108, 101, .08);
}
.rank-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}
.rank-head h2 {
  margin: 0;
  font-size: 24px;
}
.rank-head a {
  color: var(--brand-dark);
  font-weight: 950;
}
.rank-tabs {
  display: flex;
  justify-content: center;
  gap: 34px;
}
.rank-tabs button {
  min-width: 86px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  color: #586b71;
  background: transparent;
  cursor: pointer;
  font-weight: 950;
}
.rank-tabs button:hover {
  color: var(--brand-dark);
}
.rank-tabs button.active {
  color: #fff;
  background: linear-gradient(135deg, #0aada0, #16c3b7);
}
.rank-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #cceae8;
}
.rank-title-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 110px;
  padding-bottom: 6px;
  color: #6d8087;
  font-size: 12px;
}
.rank-title-row span:nth-child(2) { padding-left: 60px; }
.rank-row {
  min-height: 58px;
  display: grid;
  grid-template-columns: 42px 48px minmax(0, 1fr) 90px;
  gap: 12px;
  align-items: center;
  border-top: 1px solid rgba(204,234,232,.75);
}
.rank-row em {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #eef5f5;
  color: #122026;
  font-style: normal;
  font-weight: 950;
}
.rank-row:nth-child(2) em { color: #fff; background: #ff694a; }
.rank-row:nth-child(3) em { color: #fff; background: #ff980f; }
.rank-row:nth-child(4) em { color: #fff; background: #ffae21; }
.rank-row b {
  color: #687b82;
  font-size: 13px;
  text-align: right;
  white-space: nowrap;
}
.rank-row i {
  display: none;
}

.sz-footer {
  margin-top: 34px;
  color: #d9f4f1;
  background: linear-gradient(135deg, #00665e, #003c37);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, .85fr) 1.75fr;
  gap: 42px;
  padding: 36px 0 30px;
}
.footer-brand .sz-brand-text,
.footer-brand .sz-brand-text small { 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; }
  .sz-hero { grid-template-columns: 300px minmax(0, 1fr); }
  .hero-copy { height: auto; min-height: 320px; }
  .today-panel { grid-column: 1 / -1; height: auto; }
  .editor-layout { grid-template-columns: repeat(3, 1fr); }
  .editor-feature { grid-column: 1 / -1; }
  .topic-grid { grid-template-columns: repeat(2, 1fr); }
  .new-layout { grid-template-columns: repeat(3, 1fr); }
  .rank-table { grid-template-columns: 1fr; }
  .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; }
  .sz-hero,
  .editor-layout,
  .latest-grid,
  .topic-grid,
  .new-layout {
    grid-template-columns: 1fr;
  }
  .hero-poster { height: 360px; }
  .hero-copy {
    height: auto;
    min-height: 0;
  }
  .hero-copy h1 {
    min-height: auto;
    max-height: 78px;
    font-size: 36px;
  }
  .hero-copy h2 {
    min-height: auto;
    max-height: 50px;
  }
  .hero-desc {
    min-height: auto;
    max-height: 96px;
  }
  .update-bar { grid-template-columns: 1fr 100px 100px; }
  .update-title { padding-left: 12px; font-size: 16px; }
  .editor-feature {
    height: auto;
    grid-template-columns: 48% minmax(0, 1fr);
  }
  .editor-feature img { height: 260px; }
  .feature-copy { padding: 22px 18px; }
  .poster-card {
    grid-template-columns: 106px minmax(0, 1fr);
    align-items: center;
    text-align: left;
  }
  .poster-card img { width: 106px; height: 140px; }
  .poster-card span { align-self: start; }
  .rank-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .rank-tabs {
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .rank-tabs button { flex: 0 0 auto; }
  .rank-title-row { display: none; }
  .rank-row {
    grid-template-columns: 34px 48px minmax(0, 1fr) 58px;
    gap: 8px;
  }
  .footer-grid { grid-template-columns: 1fr; }
}
