/* ====================================================================

   --------------------------------------------------------------------
   配色: 深青背景 #0a1a1f + 卡片 #142428 + 主色青 #4a9da1
   覆盖: head/foot/newslist/news/about/right/related 及响应式断点
   ==================================================================== */

/* ============ 设计令牌 ============ */
:root {
  --bg:           #0a1a1f;
  --bg-2:         #0d1f24;
  --bg-3:         #102529;
  --card:         #142428;
  --card-2:       #182b30;
  --card-3:       #1c3236;
  --border:       #1f3338;
  --border-2:     #2a4549;
  --primary:      #4a9da1;
  --primary-2:    #5fb5b9;
  --primary-3:    #3a7d81;
  --primary-bg:   rgba(74,157,161,.12);
  --primary-bg-2: rgba(74,157,161,.22);
  --text:         #c8d8db;
  --text-strong:  #e8f4f5;
  --text-muted:   #8aa7ab;
  --text-dim:     #5e7a7e;
  --price:        #d97757;
  --price-bg:     rgba(217,119,87,.14);
  --online:       #4ade80;
  --online-bg:    rgba(74,222,128,.18);
  --danger:       #ef6b6b;
  --warn:         #e0a93a;
  --radius:       12px;
  --radius-sm:    8px;
  --radius-xs:    6px;
  --radius-lg:    16px;
  --radius-full:  999px;
  --shadow:       0 4px 20px rgba(0,0,0,.30);
  --shadow-sm:    0 2px 10px rgba(0,0,0,.20);
  --shadow-lg:    0 8px 30px rgba(0,0,0,.42);
  --shadow-glow:  0 0 24px rgba(74,157,161,.22);
  --max-w:        1280px;
  --header-h:     68px;
  --ease:         cubic-bezier(.4,0,.2,1);
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
               "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: var(--primary-2); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }
ul, ol, li { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; color: var(--text-strong); line-height: 1.35; }
p { margin: 0 0 12px; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
blockquote { margin: 0; }
details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }

/* ============ 通用容器 ============ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 18px; gap: 12px; flex-wrap: wrap; }
.section-title { font-size: 22px; font-weight: 800; letter-spacing: .5px; color: var(--text-strong); position: relative; padding-left: 14px; }
.section-title::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 22px; background: var(--primary); border-radius: 2px; }
.section-title a { color: inherit; }
.section-title a:hover { color: var(--primary-2); }
.section-sub { font-size: 13px; color: var(--text-muted); }
.section-more { font-size: 13px; color: var(--primary-2); }
.section-more:hover { color: var(--primary); }

/* ============ 通用 chip 标签 ============ */
.chip-city, .chip-leixing, .chip-fengge, .chip-price, .tag-item, .tag-link, .side-tag {
  display: inline-block;
  font-size: 12px;
  padding: 3px 9px;
  border-radius: var(--radius-xs);
  line-height: 1.5;
  transition: all .2s var(--ease);
}
.chip-city { background: var(--primary-bg); color: var(--primary-2); }
.chip-city:hover { background: var(--primary-bg-2); color: var(--primary); }
.chip-leixing { background: rgba(232,244,245,.08); color: var(--text); border: 1px solid var(--border); }
.chip-leixing:hover { border-color: var(--primary); color: var(--primary-2); }
.chip-fengge { background: var(--price-bg); color: var(--price); }
.chip-price { background: var(--price-bg); color: var(--price); font-weight: 600; }
.chip-sanwei { background: rgba(232,244,245,.06); color: var(--text-muted); border: 1px dashed var(--border-2); }
.chip-yuyan { background: var(--primary-bg); color: var(--primary-2); }
.chip-aihao { background: rgba(224,169,58,.12); color: #b58a4a; }

/* ====================================================================
   头部 head.html — Z0 公告 + Z1 导航 (PC 零联系方式)
   ==================================================================== */
.topbar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-muted);
}
.topbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar-tag {
  background: var(--primary);
  color: var(--bg);
  padding: 2px 8px;
  border-radius: var(--radius-xs);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .5px;
}
.topbar-text { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.topbar-link { color: var(--primary-2); white-space: nowrap; font-weight: 600; }
.topbar-link:hover { color: var(--primary); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,26,31,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo { display: flex; align-items: baseline; gap: 8px; flex-shrink: 0; }
.logo-h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.logo-mark {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary-2);
  letter-spacing: 2px;
}
.logo-sub { font-size: 11.5px; color: var(--text-muted); letter-spacing: .5px; }

.main-nav ul { display: flex; gap: 4px; align-items: center; }
.main-nav li a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all .2s var(--ease);
  position: relative;
}
.main-nav li a:hover { color: var(--primary-2); background: var(--card); }
.main-nav li.active a { color: var(--primary-2); background: var(--primary-bg); }
.main-nav li.active a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--primary-2);
  border-radius: 1px;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 300;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #e8f4f5;
  background: rgba(74,157,161,.14);
  border: 1px solid rgba(74,157,161,.32);
  border-radius: 9px;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.menu-toggle:active { background: rgba(74,157,161,.28); }
.menu-icon::before { content: "☰"; }
.menu-toggle.active .menu-icon::before { content: "✕"; }

/* ====================================================================
   页脚 foot.html — Z22 + 移动端 CTA + 号码卡片
   ==================================================================== */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 40px 0 20px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.footer-cols .col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 12px;
  letter-spacing: .5px;
}
.footer-cols .col ul li { margin-bottom: 8px; }
.footer-cols .col ul li a {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-cols .col ul li a:hover { color: var(--primary-2); }
.footer-guarantee li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 0 4px 18px;
  position: relative;
}
.footer-guarantee li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-2);
  font-weight: 700;
}
.footer-copy {
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
}
.footer-copy p { margin: 4px 0; }
.footer-copy a { color: var(--text-muted); }
.footer-copy a:hover { color: var(--primary-2); }
.footer-brand {
  color: var(--primary-2) !important;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ---- 移动端底部固定 CTA 栏 ---- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 200;
  background: rgba(13,31,36,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-2);
  padding: 6px 10px calc(6px + env(safe-area-inset-bottom));
  justify-content: center;
  gap: 8px;
}
.cta-btn {
  flex: 1;
  max-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 4px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}
.cta-icon { font-size: 18px; line-height: 1; }
.cta-label { font-size: 11px; }
.cta-qq { background: var(--primary); color: var(--bg); }
.cta-phone { background: var(--card); color: var(--primary-2); border: 1px solid var(--primary-3); }
.cta-top { background: var(--card); color: var(--text-muted); border: 1px solid var(--border); }

/* ---- 号码卡片弹窗 ---- */
.contact-card-mask {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.contact-card-mask.show { display: flex; }
.contact-card {
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 24px 22px 18px;
  max-width: 320px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.card-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 28px;
  height: 28px;
  font-size: 22px;
  line-height: 1;
  color: var(--text-muted);
}
.contact-card h3 { font-size: 16px; color: var(--text-strong); margin-bottom: 12px; text-align: center; }
.card-number {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-2);
  text-align: center;
  letter-spacing: 1.5px;
  padding: 12px 0;
  user-select: all;
  -webkit-user-select: all;
}
.card-sub { font-size: 12px; color: var(--text-muted); text-align: center; margin: 0; }
.card-tip { font-size: 11px; color: var(--text-dim); text-align: center; margin: 12px 0 0; }

/* ====================================================================
   列表页 newslist.html
   ==================================================================== */
.list-page { max-width: var(--max-w); margin: 0 auto; padding: 16px 20px 40px; }
.breadcrumb {
  font-size: 12px;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary-2); }
.breadcrumb span { color: var(--text-dim); }

.list-layout { display: grid; grid-template-columns: 1fr 300px; gap: 28px; }
.list-header { margin-bottom: 18px; }
.list-title { font-size: 26px; font-weight: 800; color: var(--text-strong); margin-bottom: 6px; }
.list-desc { font-size: 13px; color: var(--text-muted); }

.list-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.list-card {
  display: flex;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s var(--ease);
}
.list-card:hover {
  border-color: var(--primary-3);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.list-card-photo {
  position: relative;
  display: block;
  width: 120px;
  flex-shrink: 0;
  aspect-ratio: 3 / 4;
  background: var(--bg-3);
  overflow: hidden;
}
.list-card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease);
}
.list-card-photo:hover img { transform: scale(1.04); }
.list-online-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--online);
  box-shadow: 0 0 0 3px var(--online-bg);
  animation: onlinePulse 1.6s infinite;
  z-index: 2;
}
@keyframes onlinePulse { 0%,100% { opacity: 1; } 50% { opacity: .55; } }

.list-card-body { padding: 12px 14px; flex: 1; display: flex; flex-direction: column; }
.list-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list-card-meta { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 6px; }
.list-card-desc {
  font-size: 12px;
  color: var(--text-muted);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 8px;
}
.list-card-foot {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-dim);
}

.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 28px; flex-wrap: wrap; }
.page-item {
  padding: 6px 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  color: var(--text);
  font-size: 13px;
  transition: all .2s var(--ease);
}
.page-item:hover, .page-item.active { background: var(--primary); color: var(--bg); border-color: var(--primary); }
.list-empty { text-align: center; padding: 40px 20px; color: var(--text-dim); font-size: 14px; }

/* ====================================================================
   详情页 news.html — 伴游女神信息卡 + 文章正文
   ==================================================================== */
.detail-page { max-width: var(--max-w); margin: 0 auto; padding: 16px 20px 40px; }
.detail-layout { display: grid; grid-template-columns: 1fr 300px; gap: 28px; }
.detail-main { min-width: 0; }

/* ---- 伴游女神信息卡 ---- */
.goddess-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
}
.goddess-photo { position: relative; border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-3); aspect-ratio: 3/4; }
.goddess-photo img { width: 100%; height: 100%; object-fit: cover; }
.online-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--online);
  color: #0a1a1f;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.video-play-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,26,31,.85);
  color: var(--primary-2);
  border: 1px solid var(--primary-3);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.video-play-btn:hover { background: var(--primary); color: var(--bg); }

.goddess-info { display: flex; flex-direction: column; }
.goddess-name { font-size: 24px; font-weight: 800; color: var(--text-strong); margin-bottom: 10px; }
.goddess-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.goddess-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.data-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 8px 10px;
  text-align: center;
}
.data-item span { display: block; font-size: 11px; color: var(--text-muted); margin-bottom: 2px; }
.data-item strong { font-size: 14px; color: var(--text-strong); font-weight: 700; }
.goddess-feature {
  font-size: 13px;
  color: var(--primary-2);
  font-style: italic;
  padding: 10px 14px;
  background: var(--primary-bg);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  margin-bottom: 14px;
}
.goddess-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.price-tag { font-size: 22px; font-weight: 800; color: var(--price); }
.price-link { font-size: 13px; color: var(--primary-2); }
.price-link:hover { color: var(--primary); }

/* ---- 普通文章标题(非伴游女神文章) ---- */
.article-title { font-size: 24px; font-weight: 800; color: var(--text-strong); margin-bottom: 8px; line-height: 1.4; }
.article-meta { display: flex; gap: 14px; font-size: 12px; color: var(--text-dim); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }

/* ---- 文章正文 ---- */
.article-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
}
.article-body h2 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-strong);
  margin: 24px 0 12px;
  padding-left: 12px;
  border-left: 4px solid var(--primary);
}
.article-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-strong);
  margin: 18px 0 10px;
}
.article-body p { margin: 0 0 14px; }
.article-body img {
  display: block;
  margin: 18px auto;
  border-radius: var(--radius-sm);
  max-width: 60%;
  border: 1px solid var(--border);
}
.article-body blockquote {
  background: var(--primary-bg);
  border-left: 3px solid var(--primary);
  padding: 12px 16px;
  margin: 16px 0;
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  color: var(--text);
  font-size: 14px;
}
.article-body ul, .article-body ol {
  margin: 12px 0;
  padding-left: 22px;
}
.article-body ul li { list-style: disc; margin-bottom: 6px; }
.article-body ol li { list-style: decimal; margin-bottom: 6px; }
.article-body ul, .article-body ol { color: var(--text); }
.article-body .tip-box {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-left: 3px solid var(--warn);
  padding: 12px 16px;
  margin: 16px 0;
  border-radius: var(--radius-xs);
  font-size: 13.5px;
  color: var(--text);
}
.article-body .tip-box::before {
  content: "提示";
  display: inline-block;
  background: var(--warn);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  padding: 1px 8px;
  border-radius: var(--radius-xs);
  margin-right: 8px;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 13.5px;
}
.article-body table th, .article-body table td {
  border: 1px solid var(--border);
  padding: 8px 10px;
  text-align: left;
}
.article-body table th { background: var(--card); color: var(--text-strong); font-weight: 700; }
.article-body table tr:nth-child(even) td { background: var(--bg-2); }
.article-body a { color: var(--primary-2); text-decoration: underline; text-underline-offset: 2px; }
.article-body strong, .article-body b { color: var(--text-strong); font-weight: 700; }

/* ---- 标签 ---- */
.article-tags {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.tags-label { font-size: 13px; color: var(--text-muted); }
.tag-link {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 12px;
  padding: 3px 10px;
  border-radius: var(--radius-xs);
}
.tag-link:hover { border-color: var(--primary-3); color: var(--primary-2); background: var(--primary-bg); }

/* ---- 上一篇/下一篇 (增强版定义见底部 增益区块) ---- */

/* ====================================================================
   侧边栏 right.html — 价位速筛 + 热门推荐 + 热门标签
   ==================================================================== */
.sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: calc(var(--header-h) + 16px); align-self: start; }
.side-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 14px;
}
.side-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.side-title a { color: inherit; }
.side-title a:hover { color: var(--primary-2); }

/* 价位速筛 (S3 独有) */
.price-tiers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.tier-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 8px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  text-align: center;
  transition: all .2s var(--ease);
}
.tier-card:hover { border-color: var(--primary-3); background: var(--primary-bg); }
.tier-range { font-size: 12px; font-weight: 700; color: var(--price); }
.tier-label { font-size: 11px; color: var(--text-muted); }
.price-detail-link {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--primary-2);
  margin-top: 10px;
  padding: 6px;
  background: var(--bg-2);
  border-radius: var(--radius-xs);
}
.price-detail-link:hover { background: var(--primary-bg); color: var(--primary); }

.side-rank-list { display: flex; flex-direction: column; gap: 8px; }
.rank-row { display: flex; align-items: center; gap: 10px; }
.rank-row a { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.rank-no {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rank-row .rank-1 { background: var(--price); color: #fff; }
.rank-row .rank-2 { background: #b58a4a; color: #fff; }
.rank-row .rank-3 { background: var(--primary-3); color: #fff; }
.rank-thumb { width: 40px; height: 50px; border-radius: var(--radius-xs); object-fit: cover; flex-shrink: 0; }
.rank-info { display: flex; flex-direction: column; min-width: 0; }
.rank-name { font-size: 13px; color: var(--text-strong); font-weight: 600; }
.rank-meta { font-size: 11px; color: var(--text-muted); }

.side-tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.side-tag {
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.side-tag:hover { border-color: var(--primary-3); color: var(--primary-2); background: var(--primary-bg); }

/* ====================================================================
   相关推荐 related.html
   ==================================================================== */
.related-box {
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.related-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.related-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.related-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  transition: all .2s var(--ease);
}
.related-card:hover { border-color: var(--primary-3); transform: translateY(-1px); }
.related-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-xs); }
.related-card.news .related-info { padding: 6px 4px; }
.related-info { display: flex; flex-direction: column; gap: 2px; padding: 0 4px 4px; }
.related-name { font-size: 12px; color: var(--text-strong); font-weight: 600; line-height: 1.3; }
.related-meta { font-size: 11px; color: var(--text-muted); }

/* ====================================================================
   单页 about.html
   ==================================================================== */
.danye-page { max-width: var(--max-w); margin: 0 auto; padding: 16px 20px 40px; }
.danye-layout { display: grid; grid-template-columns: 220px 1fr; gap: 28px; }
.danye-side-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 10px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
  align-self: start;
}
.danye-side-block h4 {
  font-size: 13px;
  color: var(--text-muted);
  padding: 0 10px 10px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--border);
  letter-spacing: .5px;
}
.danye-side-block ul li { margin-bottom: 2px; }
.danye-side-block ul li a {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text);
  border-radius: var(--radius-xs);
  transition: all .2s var(--ease);
}
.danye-side-block ul li a:hover { background: var(--bg-2); color: var(--primary-2); }
.danye-side-block ul li.hover a { background: var(--primary-bg); color: var(--primary-2); font-weight: 600; }
.danye-main-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  min-height: 400px;
}
.danye-main-block h1.danye-title, .danye-main-block h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-strong);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.danye-main-block h3 { font-size: 17px; color: var(--text-strong); margin: 18px 0 10px; }
.danye-main-block p { font-size: 14.5px; line-height: 1.85; color: var(--text); margin-bottom: 12px; }
.danye-main-block ul, .danye-main-block ol { padding-left: 22px; margin: 10px 0; }
.danye-main-block ul li { list-style: disc; margin-bottom: 6px; color: var(--text); }
.danye-main-block ol li { list-style: decimal; margin-bottom: 6px; color: var(--text); }
.danye-main-block img { max-width: 80%; margin: 16px auto; border-radius: var(--radius-sm); }
.danye-main-block blockquote {
  background: var(--primary-bg);
  border-left: 3px solid var(--primary);
  padding: 12px 16px;
  margin: 14px 0;
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  color: var(--text);
  font-size: 14px;
}
.danye-main-block .tip-box {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-left: 3px solid var(--warn);
  padding: 12px 16px;
  margin: 16px 0;
  border-radius: var(--radius-xs);
  font-size: 13.5px;
  color: var(--text);
}
.danye-main-block .tip-box::before {
  content: "提示";
  display: inline-block;
  background: var(--warn);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  padding: 1px 8px;
  border-radius: var(--radius-xs);
  margin-right: 8px;
}
.danye-main-block strong, .danye-main-block b { color: var(--text-strong); font-weight: 700; }
.danye-main-block a { color: var(--primary-2); text-decoration: underline; text-underline-offset: 2px; }
.danye-main-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 13.5px;
}
.danye-main-block table th, .danye-main-block table td {
  border: 1px solid var(--border);
  padding: 8px 10px;
  text-align: left;
}
.danye-main-block table th { background: var(--card-2); color: var(--text-strong); font-weight: 700; }
.danye-main-block table tr:nth-child(even) td { background: var(--bg-2); }

/* ====================================================================
   内容页增益 — 文章头/TOC/分享/上下篇 + 信任卡/快速通道/联系方式/最新列表
   ==================================================================== */

/* ---- 文章头 ---- */
.article-head { margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.article-head .article-title { font-size: 24px; font-weight: 800; color: var(--text-strong); line-height: 1.4; margin-bottom: 12px; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; font-size: 12.5px; color: var(--text-muted); }
.meta-item { display: inline-flex; align-items: center; gap: 4px; }
.meta-share { margin-left: auto; display: flex; gap: 6px; }
.share-mini { width: 28px; height: 28px; border-radius: var(--radius-xs); background: var(--card-2); border: 1px solid var(--border); font-size: 13px; display: flex; align-items: center; justify-content: center; transition: all .2s var(--ease); }
.share-mini:hover { border-color: var(--primary); background: var(--primary-bg); }

/* ---- TOC 目录 ---- */
.article-toc { background: var(--card); border: 1px solid var(--border); border-left: 3px solid var(--primary); border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 22px; }
.toc-head { font-size: 14px; font-weight: 700; color: var(--text-strong); margin-bottom: 10px; }
.toc-list { padding-left: 20px; margin: 0; }
.toc-list li { list-style: decimal; margin-bottom: 6px; font-size: 13.5px; }
.toc-list li a { color: var(--text); }
.toc-list li a:hover { color: var(--primary-2); }

/* ---- 点赞分享栏 ---- */
.article-share { display: flex; gap: 10px; flex-wrap: wrap; padding: 18px 0; margin-top: 8px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.share-action { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: var(--radius-full); background: var(--card); border: 1px solid var(--border); font-size: 13px; color: var(--text); transition: all .2s var(--ease); }
.share-action:hover { border-color: var(--primary); background: var(--primary-bg); color: var(--primary-2); }
.share-ico { font-size: 15px; }
.like-btn.liked { background: var(--primary-bg); border-color: var(--primary); color: var(--primary-2); }
.like-btn.liked .share-ico { animation: likePop .4s var(--ease); }
@keyframes likePop { 0%{transform:scale(1);} 50%{transform:scale(1.4);} 100%{transform:scale(1);} }

/* ---- 上下篇增强 (带缩略图) ---- */
.prev-next { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--border); }
.prev-next a { display: flex; flex-direction: row; align-items: center; gap: 10px; padding: 12px 14px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); transition: all .2s var(--ease); min-width: 0; }
.prev-next a:hover { border-color: var(--primary-3); transform: translateY(-1px); }
.next-link { flex-direction: row-reverse; text-align: right; }
.pn-thumb { width: 48px; height: 60px; object-fit: cover; border-radius: var(--radius-xs); flex-shrink: 0; background: var(--bg-3); }
.pn-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; flex: 1; }
.next-link .pn-body { align-items: flex-end; }
.pn-label { font-size: 12px; color: var(--text-dim); }
.pn-title { font-size: 14px; font-weight: 600; color: var(--text-strong); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ---- 服务保障信任卡 (right + about 共用) ---- */
.trust-list { display: flex; flex-direction: column; gap: 12px; }
.trust-item { display: flex; gap: 10px; align-items: flex-start; }
.ti-ico { flex-shrink: 0; width: 26px; height: 26px; border-radius: var(--radius-xs); background: var(--primary-bg); color: var(--primary-2); font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.trust-item b { font-size: 13.5px; color: var(--text-strong); display: block; }
.trust-item p { font-size: 12px; color: var(--text-muted); margin: 2px 0 0; }

/* ---- 快速通道 (about 单页) ---- */
.quick-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.quick-card { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 12px 6px; background: var(--card-2); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 12.5px; color: var(--text); transition: all .2s var(--ease); }
.quick-card:hover { border-color: var(--primary); background: var(--primary-bg); color: var(--primary-2); }
.qc-ico { font-size: 20px; }

/* ---- 联系方式卡 (about 单页) ---- */
.contact-rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 10px; }
.ct-row { display: flex; align-items: center; gap: 10px; }
.ct-label { flex-shrink: 0; width: 40px; font-size: 12px; color: var(--text-dim); }
.ct-value { font-size: 17px; font-weight: 700; color: var(--primary-2); letter-spacing: .5px; user-select: all; }
.ct-tip { font-size: 12px; color: var(--text-muted); text-align: center; margin: 8px 0 0; }

/* ---- 单页侧边栏卡片容器 ---- */
.danye-side-wrap {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.danye-side-wrap .danye-side-card:last-child { margin-bottom: 0; }
.danye-side-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 16px; }
.danye-side-card h4 { font-size: 14px; font-weight: 700; color: var(--text-strong); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }

/* ---- 最新文章列表 (right) ---- */
.latest-list { display: flex; flex-direction: column; }
.latest-item { display: flex; gap: 8px; align-items: flex-start; padding: 8px 0; border-bottom: 1px dashed var(--border); }
.latest-item:last-child { border-bottom: 0; }
.latest-dot { color: var(--primary-3); font-size: 8px; margin-top: 6px; }
.latest-item a { font-size: 13px; color: var(--text); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.latest-item a:hover { color: var(--primary-2); }

/* ---- toast 提示 ---- */
.eni-toast { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(.9); background: rgba(10,26,31,.95); color: var(--text-strong); padding: 14px 24px; border-radius: var(--radius); border: 1px solid var(--primary-3); font-size: 14px; z-index: 9999; opacity: 0; transition: all .25s var(--ease); pointer-events: none; }
.eni-toast.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ====================================================================
   响应式断点 — 移动端优先反向扩展(≥1024 PC)
   ==================================================================== */
@media (max-width: 1023px) {
  .list-layout, .detail-layout, .danye-layout { grid-template-columns: 1fr; }
  .sidebar, .danye-side-wrap { position: static; order: 2; }
  .related-list { grid-template-columns: repeat(3, 1fr); }
  .goddess-card { grid-template-columns: 1fr; }
  .goddess-photo { max-width: 280px; margin: 0 auto; }
  .goddess-data { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  :root { --header-h: 56px; }
  body { font-size: 13.5px; }

  /* 顶部公告条移动端 */
  .topbar-inner { padding: 6px 14px; gap: 6px; }
  .topbar-text { font-size: 11.5px; }

  /* 导航移动端汉堡菜单 — backdrop-filter会为fixed子元素创建包含块,导致nav被卡在header盒内,移动端关闭 */
  .site-header { backdrop-filter: none; z-index: 260; }
  .header-inner { padding: 0 14px; }
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-2);
    padding: var(--header-h) 0 calc(72px + env(safe-area-inset-bottom));
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .25s var(--ease), visibility 0s linear .25s;
    z-index: 250;
  }
  .main-nav.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform .25s var(--ease), visibility 0s linear 0s;
  }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li { width: 100%; }
  .main-nav li a { padding: 14px 20px; border-radius: 0; font-size: 15px; border-bottom: 1px solid var(--border); }
  .main-nav li.active a::after { display: none; }
  .menu-toggle { display: flex; }

  /* 页脚移动端 — 2x2 网格紧凑布局,避免四模块堆叠拉长 */
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 16px 14px; padding-bottom: 18px; }
  .footer-cols .col h4 { font-size: 13px; margin-bottom: 8px; }
  .footer-cols .col ul li { margin-bottom: 5px; }
  .footer-cols .col ul li a { font-size: 12px; }
  .footer-guarantee li { font-size: 12px; padding: 3px 0 3px 16px; }
  .site-footer { padding: 24px 0 16px; padding-bottom: 80px; }

  /* 移动端底部固定 CTA 显示 */
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 60px; }

  /* 列表页 */
  .list-grid { grid-template-columns: 1fr; }
  .list-card-photo { width: 100px; }
  .list-card-title { font-size: 14px; }

  /* 详情页 */
  .article-body { font-size: 14px; line-height: 1.8; }
  .article-body img { max-width: 100%; }
  .goddess-data { grid-template-columns: repeat(2, 1fr); }
  .goddess-name { font-size: 20px; }
  .price-tag { font-size: 18px; }

  /* 单页 */
  .danye-main-block { padding: 18px 16px; }
  .danye-main-block h2 { font-size: 20px; }

  /* 相关推荐 */
  .related-list { grid-template-columns: repeat(2, 1fr); }
  .related-box { padding: 14px; }

  /* 侧边栏 */
  .side-title { font-size: 14px; }
  .tier-card { padding: 8px 6px; }
  .tier-range { font-size: 11px; }

  /* breadcrumb */
  .breadcrumb { font-size: 11px; }
}

@media (max-width: 480px) {
  .container, .list-page, .detail-page, .danye-page { padding-left: 12px; padding-right: 12px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 14px 12px; }
  .footer-cols .col h4 { font-size: 12.5px; margin-bottom: 6px; }
  .footer-cols .col ul li { margin-bottom: 4px; }
  .footer-cols .col ul li a { font-size: 11.5px; }
  .footer-guarantee li { font-size: 11.5px; padding: 2px 0 2px 14px; }
  .footer-copy { padding-top: 14px; font-size: 11px; }
  .goddess-data { grid-template-columns: repeat(2, 1fr); }
  .related-list { grid-template-columns: 1fr; }
}
