@charset "UTF-8";

/* 作者：搭客佬 */
/* 链接：https://www.ccmhpro.cn/ */

:root {
  --cream: #fffaf0;
  --paper: #fffdf8;
  --coral: #ff584f;
  --coral-dark: #d93d37;
  --forest: #123f3b;
  --forest-deep: #092e2b;
  --mint: #d9eee4;
  --ink: #1d2927;
  --muted: #697674;
  --line: #d7dfd9;
  --yellow: #ffc951;
  --content: 1200px;
  --shadow: 0 22px 60px rgba(18, 63, 59, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

ul,
p,
h1,
h2,
h3,
figure {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

[hidden] {
  display: none !important;
}

#home,
#updates,
#collections,
#screens,
#download {
  scroll-margin-top: 90px;
}

.container,
.header-inner,
.hero-inner,
.footer-inner {
  width: min(var(--content), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 76px;
  border-bottom: 1px solid rgba(18, 63, 59, .12);
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  min-width: 196px;
  align-items: center;
  gap: 11px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(18, 63, 59, .14);
  border-radius: 12px;
  background: #fff;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.18;
}

.brand-copy strong {
  overflow: hidden;
  max-width: 210px;
  color: var(--forest);
  font-size: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy small {
  overflow: hidden;
  max-width: 210px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-link {
  position: relative;
  display: block;
  padding: 27px 0 25px;
  color: #52615e;
  font-size: 14px;
  font-weight: 700;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--coral);
  content: "";
  opacity: 0;
  transform: scaleX(.3);
  transition: opacity .2s ease, transform .2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--forest);
}

.nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 9px;
}

.mobile-download {
  display: inline-grid;
  min-height: 36px;
  padding: 0 14px;
  place-items: center;
  border-radius: 6px;
  background: var(--coral);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.menu-button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
}

.menu-button i {
  width: 19px;
  height: 19px;
  background: url("../icons/menu.svg") center / contain no-repeat;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 82px;
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 201, 81, .25), transparent 23%),
    linear-gradient(180deg, #fff9ed 0%, #fffdf8 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: 24px;
  left: max(22px, calc((100% - var(--content)) / 2 - 42px));
  width: 82px;
  height: 82px;
  border: 1px solid rgba(18, 63, 59, .12);
  border-radius: 50%;
}

.hero::after {
  right: -58px;
  bottom: 42px;
  width: 190px;
  height: 190px;
  border: 34px solid rgba(255, 88, 79, .08);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 70px;
}

.hero-copy {
  padding-bottom: 4px;
}

.eyebrow,
.section-title > span {
  display: inline-block;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
}

.hero h1 {
  margin-top: 11px;
  color: var(--forest);
  font-family: Georgia, "Microsoft YaHei", serif;
  font-size: clamp(50px, 5.2vw, 76px);
  line-height: 1.06;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.hero-slogan {
  margin-top: 18px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.35;
}

.hero-intro {
  max-width: 455px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-tags li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid #dce2d9;
  border-radius: 99px;
  background: rgba(255, 255, 255, .74);
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
}

.hero-tags i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.tag-discover {
  background: var(--coral);
}

.tag-remind {
  background: var(--yellow);
}

.tag-shelf {
  background: #4ca58b;
}

.hero-action {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.primary-button,
.download-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 23px;
  border-radius: 7px;
  background: var(--coral);
  box-shadow: 0 9px 22px rgba(255, 88, 79, .2);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  transition: background .2s ease, transform .2s ease;
}

.primary-button:hover,
.download-button:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
}

.primary-button i,
.download-button i {
  font-size: 19px;
  font-style: normal;
}

.age-label {
  color: var(--muted);
  font-size: 12px;
}

.update-desk {
  overflow: hidden;
  border: 1px solid rgba(18, 63, 59, .23);
  border-radius: 13px;
  background: #fff;
  box-shadow: var(--shadow), 12px 12px 0 var(--mint);
}

.desk-head {
  display: flex;
  min-height: 98px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 22px;
  background: var(--forest);
  color: #fff;
}

.desk-head span {
  color: #a7d4c1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.desk-head h2 {
  margin-top: 2px;
  font-size: 23px;
  line-height: 1.3;
}

.desk-search {
  position: relative;
  width: min(235px, 42%);
}

.desk-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.desk-search input {
  width: 100%;
  height: 40px;
  padding: 0 40px 0 14px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 5px;
  outline: 0;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 13px;
}

.desk-search input::placeholder {
  color: rgba(255, 255, 255, .65);
}

.desk-search input:focus {
  border-color: #fff;
}

.desk-search button {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.desk-search button i {
  width: 17px;
  height: 17px;
  background: url("../icons/search.svg") center / contain no-repeat;
  filter: brightness(0) invert(1);
}

.desk-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: #f3f6f3;
}

.desk-tab {
  height: 46px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: #65736f;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.desk-tab:last-child {
  border-right: 0;
}

.desk-tab.is-active {
  background: #fff;
  color: var(--coral-dark);
  box-shadow: inset 0 -3px var(--coral);
}

.weekday-tabs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 14px 20px 10px;
  gap: 5px;
}

.weekday-tabs button {
  min-width: 0;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}

.weekday-tabs button:hover,
.weekday-tabs button.is-active {
  background: var(--mint);
  color: var(--forest);
  font-weight: 900;
}

.desk-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 22px 10px;
  color: var(--muted);
  font-size: 12px;
}

.reminder-control {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.reminder-switch {
  position: relative;
  width: 34px;
  height: 20px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: #bdc8c4;
  cursor: pointer;
}

.reminder-switch i {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform .2s ease;
}

.reminder-switch.is-on {
  background: var(--coral);
}

.reminder-switch.is-on i {
  transform: translateX(14px);
}

.update-list {
  min-height: 296px;
  padding: 0 20px 13px;
}

.update-row {
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr) auto 72px;
  min-height: 68px;
  align-items: center;
  gap: 12px;
  padding: 9px 2px;
  border-top: 1px dashed #dce2de;
}

.update-row[hidden] {
  display: none;
}

.update-cover {
  display: grid;
  width: 43px;
  height: 50px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--cream);
}

.update-cover img,
.mini-comic img,
.board-card img,
.screens-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.update-info {
  min-width: 0;
  line-height: 1.35;
}

.update-info h3 {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.update-info p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.update-row > strong {
  color: var(--forest);
  font-size: 12px;
  white-space: nowrap;
}

.follow-button {
  min-height: 31px;
  padding: 0 8px;
  border: 1px solid var(--coral);
  border-radius: 5px;
  background: #fff;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.follow-button.is-following {
  border-color: var(--line);
  background: #f2f5f2;
  color: var(--muted);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(320px, 1.2fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 34px;
}

.section-title h2 {
  margin-top: 5px;
  color: var(--forest);
  font-family: Georgia, "Microsoft YaHei", serif;
  font-size: 34px;
  line-height: 1.25;
}

.section-lead {
  width: min(100%, 530px);
  justify-self: end;
  color: var(--muted);
  text-align: right;
}

.collections-section {
  padding: 82px 0 88px;
  background: var(--forest);
  color: #fff;
}

.collections-section .section-title h2 {
  color: #fff;
}

.collections-section .section-title > span {
  color: #ffc0b8;
}

.collections-section .section-lead {
  color: #bcd1cc;
}

.collection-lanes {
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.collection-lane {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 80px;
  align-items: center;
  gap: 24px;
  min-height: 140px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.lane-label {
  display: flex;
  flex-direction: column;
}

.lane-label b {
  font-size: 19px;
}

.lane-label span {
  margin-top: 5px;
  color: #a9c2bc;
  font-size: 12px;
}

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

.mini-comic {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  min-width: 0;
  align-items: center;
  gap: 11px;
  min-height: 84px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .07);
}

.mini-comic img {
  width: 58px;
  height: 64px;
  background: #fff;
}

.mini-comic span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.mini-comic strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-comic small {
  margin-top: 6px;
  color: #a9c2bc;
  font-size: 12px;
}

.refresh-lane {
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffd9d5;
  font-size: 12px;
  cursor: pointer;
}

.refresh-lane:hover {
  color: #fff;
}

.refresh-lane i {
  margin-left: 4px;
  font-size: 17px;
  font-style: normal;
}

.workshop-section,
.screens-section,
.faq-section,
.reviews-section,
.download-section {
  padding: 84px 0;
}

.workshop-section {
  background: #f4f1e8;
}

.workshop-toolbar {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: #fff;
}

.workshop-toolbar p {
  color: var(--muted);
  font-size: 12px;
}

.workshop-toolbar > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.workshop-toolbar label {
  color: var(--muted);
  font-size: 12px;
}

.workshop-toolbar select,
.new-group-button {
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
}

.workshop-toolbar select {
  padding: 0 30px 0 10px;
}

.new-group-button {
  padding: 0 13px;
  cursor: pointer;
}

.new-group-button[aria-pressed="true"] {
  border-color: var(--coral);
  color: var(--coral-dark);
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: #fff;
}

.board-grid.has-extra {
  grid-template-columns: repeat(4, 1fr);
}

.board-column {
  min-width: 0;
  min-height: 360px;
  padding: 0 14px 16px;
  border-right: 1px solid var(--line);
  background: #fbfcfa;
}

.board-column:last-child {
  border-right: 0;
}

.board-column > header {
  display: flex;
  height: 54px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.board-column > header span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.board-column > header i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
}

.board-column:nth-child(2) > header i {
  background: var(--coral);
}

.board-column:nth-child(3) > header i {
  background: #55a98f;
}

.extra-column > header i {
  background: #8070b7 !important;
}

.board-column > header strong {
  font-size: 14px;
}

.column-count {
  display: grid;
  min-width: 25px;
  height: 23px;
  padding: 0 6px;
  place-items: center;
  border-radius: 99px;
  background: #edf1ed;
  color: var(--muted);
  font-size: 12px;
}

.board-list {
  padding-top: 12px;
}

.board-card {
  display: grid;
  grid-template-columns: 13px 42px minmax(0, 1fr) 26px;
  min-height: 66px;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 7px 7px 7px 5px;
  border: 1px solid #dfe5df;
  background: #fff;
  box-shadow: 0 3px 9px rgba(18, 63, 59, .04);
}

.board-card:first-child {
  margin-top: 0;
}

.drag-handle {
  color: #aab5b0;
  font-size: 15px;
  font-style: normal;
}

.board-card img {
  width: 42px;
  height: 50px;
  background: var(--cream);
}

.board-card span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.board-card strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.board-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.move-card {
  display: grid;
  width: 26px;
  height: 26px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--forest);
  cursor: pointer;
}

.move-card:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.screens-section {
  background: var(--paper);
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.screens-grid figure {
  min-width: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.screens-grid figure > div {
  display: grid;
  aspect-ratio: 9 / 16;
  padding: 9px;
  place-items: center;
  background: #eff3ef;
}

.screens-grid figcaption {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 72px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
}

.screens-grid figcaption > b {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 22px;
}

.screens-grid figcaption span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.screens-grid figcaption strong {
  font-size: 14px;
}

.screens-grid figcaption small {
  overflow: hidden;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.faq-section {
  border-top: 1px solid var(--line);
  background: #fff;
}

.faq-list {
  border-top: 1px solid var(--forest);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item > button {
  display: grid;
  width: 100%;
  min-height: 68px;
  grid-template-columns: 45px 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-item > button b {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 16px;
}

.faq-item > button span {
  font-size: 15px;
  font-weight: 800;
}

.faq-item > button i {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-item > button i::before,
.faq-item > button i::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  background: var(--forest);
  content: "";
}

.faq-item > button i::after {
  transform: rotate(90deg);
  transition: transform .2s ease;
}

.faq-item > button[aria-expanded="true"] i::after {
  transform: rotate(0);
}

.faq-item > div {
  padding: 0 48px 22px 57px;
  color: var(--muted);
}

.official-section {
  padding: 0 0 84px;
  background: #fff;
}

.official-details {
  border: 1px solid var(--line);
  background: var(--cream);
}

.official-details summary {
  display: grid;
  min-height: 68px;
  grid-template-columns: 24px 1fr 20px;
  align-items: center;
  gap: 13px;
  padding: 0 21px;
  cursor: pointer;
  list-style: none;
}

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

.globe-icon {
  width: 20px;
  height: 20px;
  background: url("../icons/globe.svg") center / contain no-repeat;
}

.official-details summary > span {
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--forest);
  border-bottom: 2px solid var(--forest);
  transform: rotate(45deg) translate(-2px, 2px);
}

.official-details[open] summary > span {
  transform: rotate(225deg) translate(-2px, 2px);
}

.official-details > div {
  padding: 0 58px 21px;
  color: var(--muted);
}

.official-details a {
  color: var(--coral-dark);
  font-weight: 800;
}

.reviews-section {
  background: #e2efe8;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  min-width: 0;
  min-height: 188px;
  padding: 22px;
  border-top: 4px solid var(--forest);
  background: #fff;
}

.review-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-user > span:first-child {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.review-avatar {
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f3e4dd url("../icons/avatar.svg") center / 18px no-repeat;
}

.review-user strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-rating {
  flex: 0 0 auto;
  color: #e79514;
  font-size: 12px;
  font-weight: 900;
}

.review-card > p {
  display: -webkit-box;
  min-height: 52px;
  overflow: hidden;
  margin-top: 17px;
  color: #44524f;
  font-size: 13px;
  line-height: 1.9;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.review-card time {
  display: block;
  margin-top: 18px;
  color: #89938f;
  font-size: 12px;
}

.download-section {
  background: #fff8ed;
}

.download-head .section-title h2 {
  white-space: nowrap;
}

.download-poster {
  position: relative;
  display: grid;
  min-height: 250px;
  grid-template-columns: 315px 1fr auto;
  align-items: center;
  gap: 55px;
  overflow: hidden;
  padding: 32px 42px 32px 0;
  border: 1px solid rgba(18, 63, 59, .18);
  background: #fff;
  box-shadow: 10px 10px 0 #eedfcf;
}

.bookmark-poster {
  position: relative;
  align-self: stretch;
  padding: 31px 36px;
  overflow: hidden;
  background: var(--coral);
  color: #fff;
}

.bookmark-poster::after {
  position: absolute;
  top: 0;
  right: -39px;
  width: 78px;
  height: 100%;
  background: #fff;
  content: "";
  transform: skewX(-9deg);
}

.bookmark-poster small,
.bookmark-poster strong,
.bookmark-poster span {
  position: relative;
  z-index: 1;
  display: block;
}

.bookmark-poster small {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
  opacity: .75;
}

.bookmark-poster strong {
  margin-top: 10px;
  font-family: Georgia, "Microsoft YaHei", serif;
  font-size: 26px;
}

.bookmark-poster span {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.7;
}

.bookmark-poster i {
  position: absolute;
  z-index: 1;
  right: 53px;
  bottom: -25px;
  width: 86px;
  height: 86px;
  border: 17px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
}

.download-benefits {
  display: grid;
  gap: 17px;
}

.download-benefits li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.download-benefits li > i {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--cream);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
}

.benefit-star {
  background-image: url("../icons/star.svg");
}

.benefit-bell {
  background-image: url("../icons/top.svg");
}

.benefit-book {
  background-image: url("../icons/globe.svg");
}

.download-benefits span {
  display: flex;
  flex-direction: column;
}

.download-benefits strong {
  color: var(--forest);
  font-size: 14px;
}

.download-benefits small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.download-button {
  min-width: 205px;
  white-space: nowrap;
}

.site-footer {
  position: relative;
  padding: 47px 0 21px;
  background: var(--forest-deep);
  color: #fff;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand .brand-copy strong {
  color: #fff;
}

.footer-brand .brand-copy small {
  color: #98b5ae;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 11px 25px;
}

.footer-nav a {
  color: #c1d3cf;
  font-size: 12px;
}

.footer-nav a:hover {
  color: #fff;
}

.copyright {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .22);
  color: #78978f;
  font-size: 12px;
  text-align: center;
}

.back-top {
  position: fixed;
  z-index: 90;
  right: max(20px, calc((100vw - var(--content)) / 2 - 64px));
  bottom: var(--back-top-bottom, 24px);
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 8px 22px rgba(9, 46, 43, .22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-top i {
  width: 18px;
  height: 18px;
  background: url("../icons/top.svg") center / contain no-repeat;
  filter: brightness(0) invert(1);
}

@media (max-width: 1050px) {
  .hero-inner {
    gap: 38px;
  }

  .main-nav ul {
    gap: 24px;
  }

  .collection-lane {
    grid-template-columns: 150px minmax(0, 1fr) 70px;
    gap: 16px;
  }

  .download-poster {
    grid-template-columns: 270px 1fr auto;
    gap: 32px;
  }

  .bookmark-poster {
    padding-left: 28px;
  }

  .download-button {
    min-width: 178px;
  }
}

@media (max-width: 820px) {
  body {
    padding-top: 66px;
  }

  .container,
  .header-inner,
  .hero-inner,
  .footer-inner {
    width: min(100% - 32px, 680px);
  }

  .site-header {
    position: fixed;
    right: 0;
    left: 0;
    width: 100%;
    height: 66px;
  }

  .header-inner {
    justify-content: flex-start;
    gap: 8px;
  }

  .brand {
    max-width: calc(100% - 113px);
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .brand-copy strong {
    max-width: 145px;
    font-size: 15px;
  }

  .brand-copy small {
    max-width: 145px;
    font-size: 12px;
  }

  .mobile-actions {
    display: flex;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    z-index: 99;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 18px 30px rgba(18, 63, 59, .1);
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    display: block;
    width: min(100% - 32px, 680px);
    margin: 0 auto;
    padding: 10px 0 16px;
  }

  .nav-link {
    padding: 10px 4px;
  }

  .nav-link::after {
    top: 10px;
    right: auto;
    bottom: 10px;
    left: -9px;
    width: 3px;
    height: auto;
    transform: scaleY(.3);
  }

  .nav-link.is-active::after {
    transform: scaleY(1);
  }

  .hero {
    padding: 57px 0 66px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 45px;
  }

  .hero-copy {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(45px, 12vw, 64px);
  }

  .hero-slogan {
    font-size: 25px;
  }

  .hero-intro {
    max-width: 570px;
  }

  .hero-tags,
  .hero-action {
    justify-content: center;
  }

  .update-desk {
    width: min(100%, 620px);
    margin-inline: auto;
    box-shadow: 8px 8px 0 var(--mint);
  }

  .section-head {
    display: block;
    margin-bottom: 28px;
  }

  .section-lead {
    width: auto;
    margin-top: 11px;
    text-align: left;
  }

  .collection-lane {
    grid-template-columns: 130px minmax(0, 1fr) 64px;
  }

  .lane-set {
    grid-template-columns: repeat(3, minmax(95px, 1fr));
  }

  .mini-comic {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 7px;
    padding: 7px;
  }

  .mini-comic img {
    width: 42px;
    height: 54px;
  }

  .board-grid,
  .board-grid.has-extra {
    grid-template-columns: repeat(2, 1fr);
  }

  .board-column:nth-child(2n) {
    border-right: 0;
  }

  .board-column:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .screens-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .download-poster {
    grid-template-columns: 230px 1fr;
    gap: 32px;
    padding-right: 30px;
  }

  .download-button {
    grid-column: 2;
    justify-self: start;
  }

  .footer-main {
    flex-direction: column;
  }

  .footer-nav {
    justify-content: center;
  }

  .copyright {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .container,
  .header-inner,
  .hero-inner,
  .footer-inner {
    width: calc(100% - 28px);
  }

  .brand {
    gap: 7px;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .brand-copy strong,
  .brand-copy small {
    max-width: none;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    margin-top: 3px;
    overflow: visible;
    font-size: 12px;
    text-overflow: clip;
  }

  .mobile-actions {
    gap: 6px;
  }

  .mobile-download {
    min-width: 64px;
    min-height: 34px;
    padding: 0 9px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }

  .menu-button {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
  }

  .hero {
    padding-top: 46px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(39px, 13vw, 53px);
    white-space: normal;
    word-break: break-word;
  }

  .hero-slogan {
    margin-top: 14px;
    font-size: 22px;
  }

  .hero-intro {
    font-size: 14px;
  }

  .hero-tags {
    gap: 7px;
  }

  .hero-tags li {
    padding: 6px 9px;
    font-size: 12px;
  }

  .hero-action {
    flex-direction: column;
    gap: 9px;
  }

  .primary-button {
    width: 100%;
    max-width: 288px;
  }

  .desk-head {
    display: block;
    padding: 17px 16px;
  }

  .desk-head h2 {
    font-size: 21px;
  }

  .desk-search {
    width: 100%;
    margin-top: 13px;
  }

  .weekday-tabs {
    padding-inline: 10px;
    gap: 2px;
  }

  .desk-meta {
    align-items: flex-start;
    padding-inline: 13px;
  }

  .desk-meta p {
    max-width: 53%;
  }

  .update-list {
    min-height: 294px;
    padding-inline: 12px;
  }

  .update-row {
    grid-template-columns: 39px minmax(0, 1fr) 63px;
    gap: 8px;
  }

  .update-cover {
    width: 39px;
    height: 48px;
  }

  .update-row > strong {
    display: none;
  }

  .follow-button {
    padding-inline: 5px;
  }

  .section-title h2 {
    font-size: 29px;
  }

  .collections-section,
  .workshop-section,
  .screens-section,
  .faq-section,
  .reviews-section,
  .download-section {
    padding: 64px 0;
  }

  .collection-lane {
    grid-template-columns: 1fr auto;
    gap: 15px;
    padding: 22px 0;
  }

  .lane-label {
    grid-column: 1;
  }

  .refresh-lane {
    grid-column: 2;
    grid-row: 1;
  }

  .lane-set {
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .mini-comic {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    min-height: 0;
  }

  .mini-comic img {
    width: 100%;
    height: 92px;
  }

  .mini-comic strong,
  .mini-comic small {
    font-size: 12px;
  }

  .workshop-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .workshop-toolbar > div {
    width: 100%;
    flex-wrap: wrap;
  }

  .workshop-toolbar select {
    flex: 1;
  }

  .board-grid,
  .board-grid.has-extra {
    grid-template-columns: 1fr;
  }

  .board-column,
  .board-column:nth-child(2n) {
    min-height: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .board-column:first-child {
    border-top: 0;
  }

  .screens-grid {
    gap: 10px;
  }

  .screens-grid figure > div {
    padding: 5px;
  }

  .screens-grid figcaption {
    align-items: flex-start;
    gap: 7px;
    min-height: 76px;
    padding: 9px;
  }

  .screens-grid figcaption > b {
    font-size: 17px;
  }

  .screens-grid figcaption strong {
    font-size: 12px;
  }

  .screens-grid figcaption small {
    font-size: 12px;
    white-space: normal;
  }

  .faq-item > button {
    min-height: 64px;
    grid-template-columns: 32px 1fr 22px;
    gap: 7px;
  }

  .faq-item > button span {
    font-size: 14px;
  }

  .faq-item > div {
    padding: 0 26px 20px 39px;
  }

  .official-section {
    padding-bottom: 64px;
  }

  .official-details summary {
    padding-inline: 14px;
  }

  .official-details > div {
    padding-inline: 50px 14px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: 0;
  }

  .download-head .section-title h2 {
    font-size: clamp(23px, 7.8vw, 30px);
  }

  .download-poster {
    display: block;
    padding: 0 0 24px;
    box-shadow: 7px 7px 0 #eedfcf;
  }

  .bookmark-poster {
    min-height: 210px;
    padding: 28px;
  }

  .bookmark-poster::after {
    display: none;
  }

  .download-benefits {
    padding: 24px 22px;
  }

  .download-button {
    width: calc(100% - 44px);
    margin: 0 22px;
  }

  .site-footer {
    padding-top: 40px;
  }

  .footer-main,
  .footer-nav {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-nav {
    gap: 12px 20px;
  }

  .back-top {
    right: 14px;
    bottom: var(--back-top-bottom, 16px);
    width: 41px;
    height: 41px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
