/* ==========================================================
   www.香蕉漫画 - 全站样式表
   洁净浅底 + 蓝绿辅助色 · 视频内容导航站
   ========================================================== */

/* ----------------------------------------------------------
   Base / Reset
   ---------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  background-color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #1a5c6e;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #4aa3b5;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  line-height: 1.4;
  color: #1a5c6e;
}

figure {
  margin: 0;
}

/* ----------------------------------------------------------
   Layout / 全站统一外壳
   ---------------------------------------------------------- */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e6f0f2;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-shrink: 0;
}

.brand a {
  display: inline-flex;
  align-items: baseline;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  color: #1a5c6e;
  letter-spacing: 0;
}

.brand-slogan {
  font-size: 13px;
  color: #6b7b83;
  white-space: nowrap;
}

.site-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav .nav-list a {
  display: block;
  padding: 8px 14px;
  font-size: 15px;
  color: #333333;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav .nav-list a:hover {
  background-color: #f2f7f9;
  color: #1a5c6e;
}

.site-nav .nav-list a.is-current {
  background-color: #e6f0f2;
  color: #1a5c6e;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  border: none;
  background: none;
  padding: 10px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #1a5c6e;
  border-radius: 2px;
}

.site-main {
  flex: 1 0 auto;
}

.site-footer {
  background-color: #f2f7f9;
  border-top: 1px solid #e6f0f2;
  margin-top: 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 24px;
}

.footer-brand {
  margin-bottom: 24px;
}

.footer-brand p {
  font-size: 16px;
  color: #1a5c6e;
}

.footer-brand strong {
  font-size: 18px;
  font-weight: 700;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col h2 {
  font-size: 15px;
  font-weight: 600;
  color: #1a5c6e;
  margin-bottom: 12px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a {
  font-size: 14px;
  color: #6b7b83;
}

.footer-col ul a:hover {
  color: #1a5c6e;
}

.footer-bottom {
  border-top: 1px solid #e6f0f2;
  padding-top: 16px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #6b7b83;
}

/* ----------------------------------------------------------
   Components / 通用组件
   ---------------------------------------------------------- */

/* 面包屑 */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px 0;
  font-size: 14px;
  color: #6b7b83;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.breadcrumb a {
  color: #6b7b83;
}

.breadcrumb a:hover {
  color: #1a5c6e;
}

.breadcrumb-sep {
  color: #b0c4c9;
}

.breadcrumb-current {
  color: #1a5c6e;
  font-weight: 500;
}

/* 内页标题区 */
.inner-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-header {
  padding: 24px 0 8px;
  margin-bottom: 24px;
}

.page-header .page-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a5c6e;
  margin-bottom: 8px;
}

.page-description {
  font-size: 16px;
  color: #6b7b83;
  max-width: 720px;
}

/* 区块标题 */
.section-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a5c6e;
  margin-bottom: 20px;
}

/* 相关链接 */
.related-links {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 14px;
}

.related-links-label {
  color: #6b7b83;
  font-weight: 500;
}

.related-links-item {
  color: #1a5c6e;
  padding: 4px 0;
}

.related-links-item:hover {
  text-decoration: underline;
}

/* 状态标签 */
.status-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.status-updating {
  background-color: #e6f0f2;
  color: #1a5c6e;
}

.status-completed {
  background-color: #f0f7f0;
  color: #2e7d6b;
}

.status-paused {
  background-color: #f5f5f5;
  color: #6b7b83;
}

/* 文本链接 */
.text-link {
  color: #1a5c6e;
  font-weight: 500;
  border-bottom: 1px solid #4aa3b5;
  padding-bottom: 2px;
}

.text-link:hover {
  color: #4aa3b5;
}

/* 视觉隐藏（仅供屏幕阅读器） */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ----------------------------------------------------------
   Components / 首页模块
   ---------------------------------------------------------- */

/* 首屏焦点区 */
.hero-section {
  background-color: #f2f7f9;
  border-bottom: 1px solid #e6f0f2;
  padding: 56px 24px 48px;
}

.hero-section {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.hero-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a5c6e;
  line-height: 1.3;
  margin-bottom: 16px;
}

.hero-description {
  font-size: 16px;
  color: #6b7b83;
  margin-bottom: 24px;
}

.hero-cta {
  display: inline-block;
  background-color: #1a5c6e;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.hero-cta:hover {
  background-color: #2e7d6b;
  color: #ffffff;
}

.hero-media {
  position: relative;
}

.hero-figure {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26, 92, 110, 0.12);
}

.hero-figure img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.hero-entry-group {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.hero-entry-group .entry-card {
  background-color: #ffffff;
  border: 1px solid #e6f0f2;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-entry-group .entry-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26, 92, 110, 0.1);
}

.entry-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.entry-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a5c6e;
}

.entry-text {
  font-size: 14px;
  color: #6b7b83;
}

/* 通用区块 */
.section-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 0;
}

/* 频道分类速览 */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.channel-card {
  background-color: #ffffff;
  border: 1px solid #e6f0f2;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.channel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26, 92, 110, 0.08);
}

.channel-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1a5c6e;
  margin-bottom: 8px;
}

.channel-card p {
  font-size: 14px;
  color: #6b7b83;
  margin-bottom: 8px;
}

.channel-card a {
  font-size: 14px;
  color: #1a5c6e;
  font-weight: 500;
}

/* 今日精选 */
.video-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-card {
  background-color: #ffffff;
  border: 1px solid #e6f0f2;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26, 92, 110, 0.1);
}

.video-card a {
  display: block;
  color: inherit;
}

.video-card figure {
  overflow: hidden;
}

.video-card figure img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.video-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a5c6e;
  padding: 14px 16px 4px;
}

.video-tags {
  font-size: 13px;
  color: #4aa3b5;
  padding: 0 16px;
  margin-bottom: 4px;
}

.video-point {
  font-size: 14px;
  color: #6b7b83;
  padding: 0 16px 16px;
}

/* 最新更新摘要 */
.update-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #e6f0f2;
}

.update-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid #e6f0f2;
}

.update-item time {
  flex-shrink: 0;
  font-size: 14px;
  color: #6b7b83;
  min-width: 80px;
}

.update-item a {
  font-size: 15px;
  color: #333333;
}

.update-item a:hover {
  color: #1a5c6e;
}

.more-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  color: #1a5c6e;
  font-weight: 500;
}

.more-link:hover {
  color: #4aa3b5;
}

/* 热门推荐 */
.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: rank;
}

.ranking-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #e6f0f2;
}

.rank-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background-color: #e6f0f2;
  color: #1a5c6e;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rank-main {
  flex: 1;
}

.rank-main a {
  font-size: 16px;
  font-weight: 500;
  color: #1a5c6e;
}

.rank-main p {
  font-size: 14px;
  color: #6b7b83;
  margin-top: 4px;
}

/* 专题片单 */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.topic-card {
  display: block;
  background-color: #f2f7f9;
  border: 1px solid #e6f0f2;
  border-radius: 8px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.topic-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26, 92, 110, 0.08);
}

.topic-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a5c6e;
  margin-bottom: 8px;
}

.topic-card p {
  font-size: 14px;
  color: #6b7b83;
}

/* 指南FAQ入口 */
.entry-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.entry-pair .entry-card {
  background-color: #ffffff;
  border: 1px solid #e6f0f2;
  border-radius: 8px;
  padding: 24px;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.entry-pair .entry-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26, 92, 110, 0.08);
}

.entry-pair .entry-title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #1a5c6e;
  margin-bottom: 8px;
}

.entry-pair .entry-text {
  font-size: 14px;
  color: #6b7b83;
}

/* ----------------------------------------------------------
   Components / 内页通用模块
   ---------------------------------------------------------- */

/* 频道页 */
.page-channels .channel-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.page-channels .channel-card {
  overflow: hidden;
  padding: 0;
}

.page-channels .channel-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.page-channels .channel-card h3 {
  padding: 16px 20px 4px;
  font-size: 17px;
}

.page-channels .channel-card p {
  padding: 0 20px 8px;
  font-size: 14px;
  color: #6b7b83;
}

.page-channels .channel-card .represent {
  padding: 0 20px 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-channels .channel-card .represent a {
  font-size: 13px;
  color: #4aa3b5;
}

.page-channels .channel-card .represent a:hover {
  color: #1a5c6e;
}

.genre-tags {
  margin-top: 40px;
}

.genre-tags h2,
.channel-help h2 {
  font-size: 22px;
  font-weight: 600;
  color: #1a5c6e;
  margin-bottom: 16px;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags-list li a {
  display: inline-block;
  padding: 6px 16px;
  background-color: #f2f7f9;
  border: 1px solid #e6f0f2;
  border-radius: 999px;
  font-size: 14px;
  color: #1a5c6e;
  transition: background-color 0.2s ease;
}

.tags-list li a:hover {
  background-color: #e6f0f2;
}

.channel-help {
  margin-top: 40px;
  background-color: #f2f7f9;
  border-radius: 8px;
  padding: 24px;
}

.channel-help p {
  font-size: 15px;
  color: #333333;
  margin-bottom: 12px;
}

.channel-help ul {
  margin: 12px 0;
  padding-left: 0;
}

.channel-help ul li {
  padding: 6px 0;
  font-size: 14px;
  color: #6b7b83;
}

.channel-help ul strong {
  color: #1a5c6e;
  font-weight: 600;
}

/* 作品大全页 */
.layout-shell {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
  padding: 0 0 24px;
}

.main-content {
  min-width: 0;
}

.main-content .breadcrumb {
  padding: 16px 0 0;
}

.main-content .page-header {
  padding: 24px 0 8px;
}

.genre-filter {
  margin-bottom: 32px;
}

.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-group a {
  display: inline-block;
  padding: 6px 16px;
  background-color: #f2f7f9;
  border: 1px solid #e6f0f2;
  border-radius: 999px;
  font-size: 14px;
  color: #1a5c6e;
  transition: background-color 0.2s ease;
}

.tag-group a:hover {
  background-color: #e6f0f2;
}

.works-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.work-item {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #e6f0f2;
}

.work-thumb {
  flex-shrink: 0;
  width: 140px;
  height: 96px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f2f7f9;
}

.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-info {
  flex: 1;
  min-width: 0;
}

.work-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a5c6e;
  margin-bottom: 6px;
}

.work-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}

.work-tag {
  display: inline-block;
  padding: 2px 10px;
  background-color: #e6f0f2;
  border-radius: 999px;
  font-size: 12px;
  color: #1a5c6e;
}

.work-status {
  font-size: 12px;
  color: #6b7b83;
}

.work-desc {
  font-size: 14px;
  color: #6b7b83;
}

.aside-index {
  min-width: 0;
  background-color: #f2f7f9;
  border-radius: 8px;
  padding: 24px;
  position: sticky;
  top: 96px;
}

.aside-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a5c6e;
  margin-bottom: 16px;
}

.aside-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
}

.aside-links li {
  border-bottom: 1px solid #e6f0f2;
}

.aside-links li:last-child {
  border-bottom: none;
}

.aside-links a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: #333333;
}

.aside-links a:hover {
  color: #1a5c6e;
}

.aside-note {
  border-top: 1px solid #e6f0f2;
  padding-top: 16px;
}

.aside-note p {
  font-size: 13px;
  color: #6b7b83;
  margin-bottom: 8px;
}

.status-explainer {
  margin-top: 40px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.status-item {
  background-color: #f2f7f9;
  border-radius: 8px;
  padding: 20px;
}

.status-badge {
  display: inline-block;
  padding: 2px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  background-color: #e6f0f2;
  color: #1a5c6e;
}

.status-item p {
  font-size: 14px;
  color: #6b7b83;
}

/* 剧情介绍页 */
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.story-card {
  background-color: #ffffff;
  border: 1px solid #e6f0f2;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.story-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26, 92, 110, 0.08);
}

.story-figure {
  overflow: hidden;
}

.story-figure img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.story-body {
  padding: 20px;
}

.story-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a5c6e;
  margin-bottom: 6px;
}

.story-genre {
  font-size: 13px;
  color: #4aa3b5;
  margin-bottom: 8px;
}

.story-summary {
  font-size: 14px;
  color: #6b7b83;
}

.mainline-summary {
  margin-top: 40px;
}

.mainline-summary h2,
.audience-tips h2 {
  font-size: 22px;
  font-weight: 600;
  color: #1a5c6e;
  margin-bottom: 20px;
}

.mainline-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mainline-item {
  background-color: #f2f7f9;
  border-radius: 8px;
  padding: 20px;
}

.mainline-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a5c6e;
  margin-bottom: 6px;
}

.mainline-item p {
  font-size: 14px;
  color: #6b7b83;
}

.audience-tips {
  margin-top: 40px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tips-col {
  background-color: #ffffff;
  border: 1px solid #e6f0f2;
  border-radius: 8px;
  padding: 20px;
}

.tips-col h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a5c6e;
  margin-bottom: 12px;
}

.tips-col ul li {
  font-size: 14px;
  color: #6b7b83;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.tips-col ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #4aa3b5;
}

.related-nav {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid #e6f0f2;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.related-nav p {
  font-size: 14px;
}

.related-nav a {
  color: #1a5c6e;
  font-weight: 500;
}

/* 最新更新页 */
.timeline-section {
  margin-bottom: 40px;
}

.timeline-section h2,
.new-works-section h2,
.status-tags-section h2 {
  font-size: 22px;
  font-weight: 600;
  color: #1a5c6e;
  margin-bottom: 8px;
}

.section-desc {
  font-size: 14px;
  color: #6b7b83;
  margin-bottom: 20px;
}

.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid #e6f0f2;
  margin-left: 8px;
  padding-left: 24px;
}

.timeline-item {
  position: relative;
  padding: 16px 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #4aa3b5;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px #e6f0f2;
}

.timeline-date {
  display: block;
  font-size: 13px;
  color: #6b7b83;
  margin-bottom: 4px;
}

.timeline-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a5c6e;
  margin-bottom: 4px;
}

.timeline-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 14px;
  color: #6b7b83;
}

.new-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.new-work-card {
  background-color: #ffffff;
  border: 1px solid #e6f0f2;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.new-work-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26, 92, 110, 0.08);
}

.new-work-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.new-work-body {
  padding: 16px;
}

.new-work-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a5c6e;
  margin-bottom: 4px;
}

.tag-line {
  font-size: 13px;
  color: #4aa3b5;
  margin-bottom: 6px;
}

.new-work-body p {
  font-size: 14px;
  color: #6b7b83;
}

.status-tags-section {
  margin-top: 40px;
}

.status-tags-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.status-tag-item {
  background-color: #f2f7f9;
  border-radius: 8px;
  padding: 20px;
}

.status-tag-item .status-tag {
  margin-bottom: 8px;
}

.status-tag-item p {
  font-size: 14px;
  color: #6b7b83;
}

.related-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.related-links ul li a {
  font-size: 14px;
  color: #1a5c6e;
}

/* 热门推荐页 */
.page-ranking .section-intro,
.page-ranking .section-intro {
  font-size: 14px;
  color: #6b7b83;
  margin-bottom: 20px;
}

.rank-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #e6f0f2;
}

.rank-item .rank-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: #1a5c6e;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rank-media {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.rank-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-info {
  flex: 1;
  min-width: 0;
}

.rank-info h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.rank-info h3 a {
  color: #1a5c6e;
}

.rank-tags {
  font-size: 13px;
  color: #4aa3b5;
  margin-bottom: 4px;
}

.rank-reason {
  font-size: 14px;
  color: #6b7b83;
}

.editor-picks {
  margin-top: 48px;
}

.picks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pick-card {
  display: flex;
  gap: 16px;
  background-color: #f2f7f9;
  border-radius: 8px;
  overflow: hidden;
  padding: 16px;
}

.pick-card img {
  flex-shrink: 0;
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
}

.pick-body {
  flex: 1;
  min-width: 0;
}

.pick-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a5c6e;
  margin-bottom: 6px;
}

.pick-body p {
  font-size: 14px;
  color: #6b7b83;
}

.compare-summary {
  margin-top: 48px;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.compare-item {
  background-color: #ffffff;
  border: 1px solid #e6f0f2;
  border-radius: 8px;
  padding: 20px;
}

.compare-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1a5c6e;
  margin-bottom: 8px;
}

.compare-item p {
  font-size: 14px;
  color: #6b7b83;
}

.compare-note {
  margin-top: 20px;
  background-color: #f2f7f9;
  border-radius: 8px;
  padding: 16px 20px;
}

.compare-note p {
  font-size: 14px;
  color: #6b7b83;
}

.compare-note a {
  color: #1a5c6e;
  font-weight: 500;
  margin-right: 16px;
}

/* 观看指南页 */
.step-flow {
  margin-bottom: 40px;
}

.step-flow h2,
.channel-selection h2,
.entry-check h2 {
  font-size: 22px;
  font-weight: 600;
  color: #1a5c6e;
  margin-bottom: 16px;
}

.content-media-inline {
  margin: 0 0 20px;
  border-radius: 8px;
  overflow: hidden;
}

.content-media-inline img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.content-media-inline figcaption {
  font-size: 13px;
  color: #6b7b83;
  background-color: #f2f7f9;
  padding: 8px 16px;
  text-align: center;
}

.step-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #e6f0f2;
}

.step-item:last-child {
  border-bottom: none;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #1a5c6e;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content {
  flex: 1;
  min-width: 0;
}

.step-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1a5c6e;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 14px;
  color: #6b7b83;
  margin-bottom: 6px;
}

.step-content a {
  color: #1a5c6e;
  font-weight: 500;
  font-size: 14px;
}

.channel-selection {
  margin-top: 40px;
}

.selection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.selection-card {
  background-color: #f2f7f9;
  border-radius: 8px;
  padding: 20px;
}

.selection-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a5c6e;
  margin-bottom: 8px;
}

.selection-card p {
  font-size: 14px;
  color: #6b7b83;
}

.selection-tip {
  margin-top: 16px;
  font-size: 14px;
  color: #6b7b83;
  background-color: #ffffff;
  border: 1px solid #e6f0f2;
  border-radius: 8px;
  padding: 16px 20px;
}

.entry-check {
  margin-top: 40px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-item {
  display: flex;
  gap: 16px;
  background-color: #f2f7f9;
  border-radius: 8px;
  padding: 16px 20px;
}

.check-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #4aa3b5;
  color: #ffffff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-text {
  flex: 1;
  min-width: 0;
}

.check-text h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1a5c6e;
  margin-bottom: 4px;
}

.check-text p {
  font-size: 14px;
  color: #6b7b83;
}

.related-guide {
  margin-top: 40px;
}

.related-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.related-link-card {
  display: block;
  flex: 1;
  min-width: 240px;
  background-color: #ffffff;
  border: 1px solid #e6f0f2;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26, 92, 110, 0.08);
}

.related-link-title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #1a5c6e;
  margin-bottom: 6px;
}

.related-link-desc {
  font-size: 14px;
  color: #6b7b83;
}

/* FAQ 页 */
.faq-categories {
  margin-bottom: 32px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list li a {
  display: inline-block;
  padding: 6px 16px;
  background-color: #f2f7f9;
  border: 1px solid #e6f0f2;
  border-radius: 999px;
  font-size: 14px;
  color: #1a5c6e;
  transition: background-color 0.2s ease;
}

.tag-list li a:hover {
  background-color: #e6f0f2;
}

.faq-cat-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a5c6e;
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e6f0f2;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid #e6f0f2;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #1a5c6e;
  cursor: pointer;
  position: relative;
  padding-right: 40px;
  transition: background-color 0.2s ease;
}

.faq-item summary:hover {
  background-color: #f2f7f9;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #4aa3b5;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 20px 16px;
  font-size: 14px;
  color: #6b7b83;
}

.faq-guide-entry {
  margin-top: 40px;
  background-color: #f2f7f9;
  border-radius: 8px;
  padding: 24px;
}

.faq-guide-entry p {
  font-size: 14px;
  color: #6b7b83;
  margin-bottom: 12px;
}

.faq-related-links {
  margin-top: 40px;
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.link-list li a {
  font-size: 14px;
  color: #1a5c6e;
}

.link-list li a:hover {
  color: #4aa3b5;
}

.faq-figure {
  margin-top: 32px;
  border-radius: 8px;
  overflow: hidden;
}

.faq-figure img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.faq-figure figcaption {
  font-size: 13px;
  color: #6b7b83;
  background-color: #f2f7f9;
  padding: 8px 16px;
  text-align: center;
}

/* ----------------------------------------------------------
   Pages / 404
   ---------------------------------------------------------- */
.error-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.error-section {
  text-align: center;
  max-width: 480px;
}

.error-code {
  font-size: 72px;
  font-weight: 700;
  color: #e6f0f2;
  line-height: 1;
  margin-bottom: 16px;
}

.error-section h1 {
  font-size: 28px;
  font-weight: 700;
  color: #1a5c6e;
  margin-bottom: 12px;
}

.error-desc {
  font-size: 15px;
  color: #6b7b83;
  margin-bottom: 24px;
}

.error-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-home {
  display: inline-block;
  background-color: #1a5c6e;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
}

.btn-home:hover {
  background-color: #2e7d6b;
  color: #ffffff;
}

.error-actions a:not(.btn-home) {
  display: inline-block;
  padding: 12px 20px;
  border: 1px solid #e6f0f2;
  border-radius: 8px;
  font-size: 14px;
  color: #1a5c6e;
}

.error-actions a:not(.btn-home):hover {
  background-color: #f2f7f9;
}

/* ----------------------------------------------------------
   Responsive / 响应式
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-entry-group {
    grid-column: 1;
  }

  .layout-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .aside-index {
    position: static;
    order: 2;
  }

  .main-content {
    order: 1;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 60px;
    padding: 0 16px;
  }

  .brand-slogan {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e6f0f2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  }

  .site-nav .nav-list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 16px 16px;
    gap: 2px;
  }

  .site-nav .nav-list.is-open {
    display: flex;
  }

  .site-nav .nav-list a {
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 6px;
  }

  .inner-main {
    padding: 0 16px;
  }

  .breadcrumb {
    padding: 12px 16px 0;
    font-size: 13px;
  }

  .page-header {
    padding: 16px 0 4px;
  }

  .page-header .page-title {
    font-size: 24px;
  }

  .page-description {
    font-size: 14px;
  }

  .section-title {
    font-size: 20px;
  }

  .hero-section {
    padding: 32px 16px 24px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-figure img {
    height: 200px;
  }

  .hero-entry-group {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-block {
    padding: 32px 16px 0;
  }

  .channel-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .video-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .video-card figure img {
    height: 200px;
  }

  .update-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .topic-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .entry-pair {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-inner {
    padding: 32px 16px 20px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .related-links {
    padding: 16px;
  }

  /* 内页响应式 */
  .page-channels .channel-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-channels .channel-card img {
    height: 180px;
  }

  .work-item {
    flex-direction: column;
    gap: 12px;
  }

  .work-thumb {
    width: 100%;
    height: 160px;
  }

  .status-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .story-figure img {
    height: 200px;
  }

  .tips-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .new-works-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .new-work-card img {
    height: 180px;
  }

  .status-tags-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .rank-item {
    flex-direction: column;
    gap: 12px;
  }

  .rank-media {
    width: 100%;
    height: 160px;
  }

  .picks-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pick-card {
    flex-direction: column;
  }

  .pick-card img {
    width: 100%;
    height: 160px;
  }

  .compare-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-item {
    flex-direction: column;
    gap: 12px;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .selection-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .content-media-inline img {
    height: 180px;
  }

  .check-item {
    flex-direction: column;
    gap: 8px;
  }

  .related-link-card {
    min-width: 100%;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 18px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-cta {
    width: 100%;
    text-align: center;
  }

  .timeline-list {
    margin-left: 4px;
    padding-left: 16px;
  }

  .timeline-item::before {
    left: -22px;
  }

  .error-code {
    font-size: 56px;
  }
}

/* 无 JS 时导航可用性兜底 */
.no-js .nav-toggle {
  display: none;
}

.no-js .site-nav .nav-list {
  display: flex;
  flex-direction: row;
  position: static;
  box-shadow: none;
  background: none;
  border: none;
}

@media (max-width: 768px) {
  .no-js .site-nav .nav-list {
    flex-direction: column;
  }
}

/* 程序验收反馈：移动端正文优先 */
@media (max-width: 768px) {
  .site-main :is(.page-content, .main-content, .content-main) {
    order: 1;
  }

  .site-main :is(aside, .sidebar) {
    order: 2;
  }
}
