/* ====================================================================
   --------------------------------------------------------------------
   覆盖 index.html 的 22 个 PC 区块 / 18 个移动端区块
   Z2 HERO / Z3 数据条 / Z4 城市 / Z5-Z7 卡组 / Z8 人气榜
   Z9 视频墙 / Z10 分栏 tab / Z11 保障 / Z12 APP / Z13 Banner
   Z14 新闻 / Z15 写真 / Z16 标签 / Z17 本周之星 / Z18 FAQ
   Z19 评价 / Z20 攻略 / Z21 单页群
   ==================================================================== */

/* ============ 首页主体容器 ============ */
.home-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 20px 20px;
}
.home-main > section {
  margin-bottom: 36px;
}
.home-main > section:last-child { margin-bottom: 0; }

/* ====================================================================
   Z2 HERO 主视觉区 — 左视频/大图 + 右实时在线面板
   ==================================================================== */
.hero-section {
  margin-bottom: 28px !important;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 18px;
  align-items: stretch;
}
.hero-stage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-3);
  aspect-ratio: 16/9;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.hero-media { position: absolute; inset: 0; }
.hero-video, .hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,26,31,0) 0%, rgba(10,26,31,.4) 50%, rgba(10,26,31,.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 32px;
}
.hero-tag {
  align-self: flex-start;
  background: var(--primary);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  letter-spacing: .5px;
}
.hero-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-strong);
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.hero-sub {
  font-size: 14px;
  color: var(--primary-2);
  margin-bottom: 14px;
  letter-spacing: .5px;
}
.hero-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-meta span {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  font-size: 12px;
  color: var(--text-strong);
}
.hero-name { font-weight: 700; }
.hero-price { color: var(--price) !important; font-weight: 700; }
.hero-btn {
  align-self: flex-start;
  background: var(--primary);
  color: var(--bg);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  transition: all .25s var(--ease);
}
.hero-btn:hover { background: var(--primary-2); transform: translateY(-1px); box-shadow: var(--shadow-glow); color: var(--bg); }

/* 实时在线面板 */
.hero-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 14px;
  overflow: hidden;
}
.panel-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
}
.panel-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--online);
  box-shadow: 0 0 0 3px var(--online-bg);
  animation: onlinePulse 1.6s infinite;
}
.online-list { display: flex; flex-direction: column; gap: 10px; max-height: 380px; overflow-y: auto; }
.online-list::-webkit-scrollbar { width: 4px; }
.online-list::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 2px; }
.online-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: center;
  padding: 6px;
  border-radius: var(--radius-xs);
  transition: background .2s var(--ease);
}
.online-item:hover { background: var(--bg-2); }
.online-avatar { display: block; position: relative; width: 40px; height: 40px; }
.online-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--online);
  border: 2px solid var(--card);
}
.online-name { font-size: 13px; color: var(--text-strong); font-weight: 600; }
.online-city { font-size: 11px; color: var(--text-muted); }

/* ====================================================================
   Z3 数据统计条
   ==================================================================== */
.stats-bar {
  background: linear-gradient(135deg, var(--card) 0%, var(--bg-3) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 28px !important;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-item {
  text-align: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: var(--border);
}
.stat-num {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--primary-2);
  font-family: "DIN Alternate", -apple-system, sans-serif;
  letter-spacing: 1px;
  line-height: 1.1;
}
.stat-label { display: block; font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ====================================================================
   Z4 城市直达 (热力卡片+折叠列表)
   ==================================================================== */
.city-section { margin-bottom: 28px !important; }
.city-hot {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
.city-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-strong);
  transition: all .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.city-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-bg) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.city-card.hot { border-color: var(--primary-3); }
.city-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.city-card:hover::before { opacity: 1; }
.city-card span { position: relative; z-index: 1; }

.city-more {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
}
.city-more summary {
  font-size: 13px;
  color: var(--primary-2);
  font-weight: 600;
  text-align: center;
}
.city-more summary::before { content: "▸ "; }
.city-more[open] summary::before { content: "▾ "; }
.city-list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.city-list a {
  padding: 6px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  border-radius: var(--radius-xs);
  transition: all .2s var(--ease);
}
.city-list a:hover { background: var(--primary-bg); color: var(--primary-2); }

/* ====================================================================
   Z5/Z6/Z7 卡片横滑组 (新人/热门/星级)
   ==================================================================== */
.card-section { margin-bottom: 32px !important; }
.card-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.vcard {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s var(--ease);
}
.vcard:hover {
  border-color: var(--primary-3);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.vcard-photo { display: block; position: relative; aspect-ratio: 3/4; background: var(--bg-3); overflow: hidden; }
.vcard-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.vcard:hover .vcard-photo img { transform: scale(1.05); }
.badge-new, .badge-hot, .badge-star {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  letter-spacing: .5px;
}
.badge-new { background: var(--online); color: var(--bg); }
.badge-hot { background: var(--price); color: #fff; }
.badge-star { background: rgba(224,169,58,.9); color: var(--bg); top: auto; bottom: 8px; left: 8px; right: 8px; text-align: center; }
.vcard-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px 12px;
}
.vcard-name { font-size: 14px; font-weight: 700; color: var(--text-strong); }
.vcard-meta { font-size: 11.5px; color: var(--text-muted); }
.vcard-price { font-size: 13px; font-weight: 700; color: var(--price); margin-top: 2px; }

/* ====================================================================
   Z8 人气榜前十
   ==================================================================== */
.rank-section { margin-bottom: 32px !important; }
.rank-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.rank-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all .2s var(--ease);
}
.rank-item:hover { border-color: var(--primary-3); transform: translateY(-1px); }
.rank-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rank-item .rank-1 { background: var(--price); color: #fff; }
.rank-item .rank-2 { background: #b58a4a; color: #fff; }
.rank-item .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; flex: 1; }
.rank-name { font-size: 13px; color: var(--text-strong); font-weight: 600; }
.rank-name:hover { color: var(--primary-2); }
.rank-thumb-link { display: block; flex-shrink: 0; }
.rank-meta { font-size: 11px; color: var(--text-muted); }
.vcard-name:hover, .online-name:hover { color: var(--primary-2); }

/* ====================================================================
   Z9 精选视频墙 (PC 4列悬停 / 移动信息流)
   ==================================================================== */
.video-section { margin-bottom: 32px !important; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.video-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.video-card:hover { border-color: var(--primary-3); transform: translateY(-2px); box-shadow: var(--shadow); }
.video-el { width: 100%; height: 100%; object-fit: cover; }
.video-card::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: rgba(10,26,31,.75);
  border: 2px solid var(--primary-2);
  border-radius: 50%;
  color: var(--primary-2);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  backdrop-filter: blur(4px);
  transition: all .25s var(--ease);
}
.video-card:hover::after { background: var(--primary); color: var(--bg); border-color: var(--primary); }
.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(180deg, transparent 0%, rgba(10,26,31,.92) 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.video-name { font-size: 13px; font-weight: 700; color: var(--text-strong); }
.video-meta { font-size: 11px; color: var(--primary-2); }
.video-link { font-size: 11px; color: var(--primary-2); align-self: flex-start; }
.video-link:hover { color: var(--primary); }

/* ====================================================================
   Z10 分栏推荐 tab (高端/商务/私人/青春)
   ==================================================================== */
.tab-section { margin-bottom: 32px !important; }
.tab-nav {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  background: var(--card);
  padding: 6px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  width: fit-content;
}
.tab-btn {
  padding: 7px 22px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  transition: all .25s var(--ease);
}
.tab-btn:hover { color: var(--text-strong); }
.tab-btn.active { background: var(--primary); color: var(--bg); }
.tab-panels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.tab-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s var(--ease);
}
.tab-card:hover { border-color: var(--primary-3); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.tab-card a { display: block; }
.tab-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; background: var(--bg-3); }
.tab-card-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 12px;
}
.tab-card-name { font-size: 13.5px; font-weight: 700; color: var(--text-strong); }
.tab-card-meta { font-size: 11.5px; color: var(--text-muted); }

/* ====================================================================
   Z11 品牌保障条
   ==================================================================== */
.guarantee-bar {
  background: linear-gradient(135deg, var(--card) 0%, var(--bg-3) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  margin-bottom: 32px !important;
}
.guarantee-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.g-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-bg);
  color: var(--primary-2);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-3);
}
.guarantee-item h3 { font-size: 14px; color: var(--text-strong); margin-bottom: 2px; }
.guarantee-item p { font-size: 12px; color: var(--text-muted); margin: 0; }

/* ====================================================================
   Z13 活动 Banner (CSS 文字版, 无图)
   --------------------------------------------------------------------
   原 Z12 客户端下载模块已移除 (无真实 app, 假二维码负向体验)
   原 Z13 <img> banner 因 banner-promo.png 缺失改为纯 CSS 文字 banner
   ==================================================================== */
.banner-section { margin-bottom: 32px !important; }
.banner-link.css-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-2);
  background: linear-gradient(110deg, var(--card-3) 0%, var(--card) 45%, rgba(74,157,161,.18) 100%);
  transition: all .25s var(--ease);
  text-decoration: none;
}
.banner-link.css-banner:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.css-banner-tag {
  flex-shrink: 0;
  background: var(--price);
  color: var(--bg);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}
.css-banner-text {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-strong);
  letter-spacing: .3px;
}
.css-banner-cta {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-2);
  white-space: nowrap;
}

/* ====================================================================
   Z14 新闻资讯
   ==================================================================== */
.news-section { margin-bottom: 32px !important; }
.news-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 24px; }
.news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 4px;
  border-bottom: 1px dashed var(--border);
  transition: all .2s var(--ease);
}
.news-item:hover { padding-left: 8px; }
.news-title {
  font-size: 13.5px;
  color: var(--text);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-item:hover .news-title { color: var(--primary-2); }
.news-date { font-size: 11.5px; color: var(--text-dim); flex-shrink: 0; }

/* ====================================================================
   Z14-bis 资讯四模块差异化样式 (2026-08-08)
   ==================================================================== */

/* --- 行业洞察: 色条卡片网格 --- */
.insight-section { margin-bottom: 28px !important; }
.insight-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.insight-card {
  display: flex; align-items: center; gap: 10px;
  background: var(--card); border-radius: var(--radius-sm);
  padding: 10px 12px; border: 1px solid var(--border);
  border-left: 3px solid var(--primary-3);
  text-decoration: none; transition: all .2s var(--ease);
}
.insight-card:hover {
  border-left-color: var(--primary-2);
  background: var(--card-2); transform: translateX(2px);
}
.insight-icon {
  width: 24px; height: 24px; border-radius: var(--radius-xs);
  background: var(--primary-bg); color: var(--primary-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0;
}
.insight-title {
  font-size: 13px; color: var(--text); font-weight: 500; flex: 1;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.insight-card:hover .insight-title { color: var(--primary-2); }
.insight-date { font-size: 11px; color: var(--text-dim); flex-shrink: 0; }

/* --- 疑问解答: Q标识问答 --- */
.qa-section { margin-bottom: 28px !important; }
.qa-list { display: flex; flex-direction: column; gap: 6px; }
.qa-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--card); border-radius: var(--radius-sm);
  padding: 10px 12px; border: 1px solid var(--border);
  text-decoration: none; transition: all .2s var(--ease);
}
.qa-item:hover { background: var(--card-2); border-color: var(--primary-3); }
.qa-badge {
  width: 24px; height: 24px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary), var(--primary-3));
  color: #0a1a1f; font-weight: 800; font-size: 11px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.qa-title {
  font-size: 13px; color: var(--text); font-weight: 500; flex: 1;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.qa-item:hover .qa-title { color: var(--primary-2); }
.qa-meta { font-size: 11px; color: var(--text-dim); flex-shrink: 0; }

/* --- 服务分类: 方块卡片 --- */
.cat-section { margin-bottom: 28px !important; }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.cat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 10px;
  text-align: center; text-decoration: none; transition: all .2s var(--ease);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.cat-card:hover {
  background: var(--card-2); border-color: var(--primary-3);
  transform: translateY(-2px); box-shadow: var(--shadow-sm);
}
.cat-icon {
  width: 32px; height: 32px; border-radius: var(--radius-sm);
  background: var(--primary-bg); color: var(--primary-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.cat-card:nth-child(1) .cat-icon::before { content: '★'; }
.cat-card:nth-child(2) .cat-icon::before { content: '✈'; }
.cat-card:nth-child(3) .cat-icon::before { content: '♥'; }
.cat-card:nth-child(4) .cat-icon::before { content: '☀'; }
.cat-card:hover .cat-icon { background: var(--primary-bg-2); }
.cat-title {
  font-size: 12px; color: var(--text); font-weight: 500; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-card:hover .cat-title { color: var(--primary-2); }

/* --- 人气榜单: 排名序号 --- */
.ranknews-section { margin-bottom: 28px !important; }
.ranknews-list { display: flex; flex-direction: column; gap: 4px; }
.ranknews-item {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 12px; border-radius: var(--radius-sm);
  background: var(--card); border: 1px solid var(--border);
  text-decoration: none; transition: all .2s var(--ease);
}
.ranknews-item:hover { background: var(--card-2); }
.ranknews-num {
  width: 24px; height: 24px; border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px; flex-shrink: 0;
  background: var(--bg-3); color: var(--text-dim);
}
.ranknews-item:nth-child(1) .ranknews-num { background: linear-gradient(135deg,#e0a93a,#c48a2a); color: #1a1208; }
.ranknews-item:nth-child(2) .ranknews-num { background: linear-gradient(135deg,#b8c4ca,#8a969c); color: #101819; }
.ranknews-item:nth-child(3) .ranknews-num { background: linear-gradient(135deg,#b87850,#94603c); color: #1a0e08; }
.ranknews-title {
  font-size: 13px; color: var(--text); font-weight: 500; flex: 1;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ranknews-item:hover .ranknews-title { color: var(--primary-2); }
.ranknews-hot { font-size: 11px; color: var(--text-dim); flex-shrink: 0; }
.ranknews-item:nth-child(-n+3) .ranknews-hot { color: var(--price); }

/* ====================================================================
   Z15 写真专区 (瀑布流)
   ==================================================================== */
.gallery-section { margin-bottom: 32px !important; }
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.masonry-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-3);
  transition: all .25s var(--ease);
}
.masonry-item:hover { border-color: var(--primary-3); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.masonry-photo {
  display: block;
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #1c3236 0%, #182b30 100%);
}
.masonry-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease);
}
.masonry-item:hover .masonry-photo img { transform: scale(1.04); }
.masonry-info { padding: 8px 10px 10px; }
.masonry-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.masonry-tags { font-size: 11px; color: var(--text-muted); }
.masonry-tags .chip-city {
  display: inline-block;
  padding: 1px 6px;
  background: var(--primary-bg);
  color: var(--primary-2);
  border-radius: var(--radius-xs);
}

/* ====================================================================
   Z16 标签云
   ==================================================================== */
.tag-cloud-section { margin-bottom: 32px !important; }
.tag-cloud, .tag-static {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.tag-static { margin-bottom: 0; }
.tag-item {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 12.5px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  transition: all .2s var(--ease);
}
.tag-item:hover { border-color: var(--primary); color: var(--primary-2); background: var(--primary-bg); transform: translateY(-1px); }
.tag-item.static { background: var(--primary-bg); color: var(--primary-2); border-color: var(--primary-3); }
.tag-item.static:hover { background: var(--primary); color: var(--bg); }

/* ====================================================================
   Z17 本周之星
   ==================================================================== */
.star-week-section { margin-bottom: 32px !important; }
.star-week-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 24px;
  align-items: center;
}
.star-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--bg-3);
  max-height: 380px;
}
.star-info { display: flex; flex-direction: column; gap: 8px; }
.star-name { font-size: 24px; font-weight: 800; color: var(--text-strong); }
.star-meta { font-size: 13px; color: var(--primary-2); }
.star-feature { font-size: 14px; color: var(--text); line-height: 1.75; }
.star-link {
  align-self: flex-start;
  margin-top: 8px;
  background: var(--primary);
  color: var(--bg);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
}
.star-link:hover { background: var(--primary-2); color: var(--bg); }

/* ====================================================================
   Z18 常见问题 (手风琴)
   ==================================================================== */
.faq-section { margin-bottom: 32px !important; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0;
  transition: border-color .2s var(--ease);
  overflow: hidden;
}
.faq-item[open] { border-color: var(--primary-3); }
.faq-item summary {
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-strong);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::after {
  content: "+";
  font-size: 18px;
  color: var(--primary-2);
  transition: transform .25s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 18px 14px;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.75;
  margin: 0;
}
.faq-item p a { color: var(--primary-2); text-decoration: underline; }

/* ====================================================================
   Z19 用户评价
   ==================================================================== */
.review-section { margin-bottom: 32px !important; }
.review-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.review-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  position: relative;
}
.review-item::before {
  content: "“";
  position: absolute;
  top: 4px;
  right: 14px;
  font-size: 42px;
  color: var(--primary-bg);
  font-family: serif;
  line-height: 1;
}
.review-item p { font-size: 13.5px; color: var(--text); line-height: 1.75; margin: 0 0 10px; position: relative; }
.review-item cite { display: block; font-size: 12px; color: var(--primary-2); font-style: normal; font-weight: 600; }

/* ====================================================================
   Z20 攻略指南
   ==================================================================== */
.guide-section { margin-bottom: 32px !important; }
.guide-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 24px; }
.guide-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 4px;
  border-bottom: 1px dashed var(--border);
  transition: all .2s var(--ease);
}
.guide-item:hover { padding-left: 8px; }
.guide-title { font-size: 13.5px; color: var(--text); font-weight: 600; }
.guide-item:hover .guide-title { color: var(--primary-2); }
.guide-desc { font-size: 11.5px; color: var(--text-muted); line-height: 1.5; }

/* ====================================================================
   Z21 单页群
   ==================================================================== */
.page-cluster { margin-bottom: 0 !important; }
.page-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.page-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: all .25s var(--ease);
}
.page-card:hover {
  border-color: var(--primary-3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  color: var(--primary-2);
}
.page-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-bg);
  color: var(--primary-2);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-3);
}
.page-card span:last-child { font-size: 13px; font-weight: 600; }

/* ====================================================================
   响应式 — 移动端 (<1024px) 与小屏 (<768px)
   ==================================================================== */
@media (max-width: 1023px) {
  .home-main { padding: 12px 14px 16px; }

  /* Z2 HERO 移动端单列 */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stage { aspect-ratio: 9/16; }
  .hero-overlay { padding: 20px; }
  .hero-title { font-size: 22px; }
  .hero-panel { padding: 14px 12px; }
  .online-list { flex-direction: row; flex-wrap: wrap; max-height: none; gap: 8px; }
  .online-item { flex: 0 0 calc(50% - 4px); min-width: 0; }

  /* Z3 数据条移动端 */
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-num { font-size: 22px; }

  /* Z4 城市移动端横滑 */
  .city-hot { grid-template-columns: repeat(3, 1fr); }
  .city-list { grid-template-columns: repeat(4, 1fr); }

  /* Z5-Z7 卡片网格 (移动端2列,无横滑) */
  .card-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .card-row .vcard { width: 100%; }

  /* Z8 人气榜移动端 2 列 */
  .rank-grid { grid-template-columns: repeat(2, 1fr); }

  /* Z9 视频墙移动端2列 (无横滑) */
  .video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .video-card { width: 100%; }

  /* Z10 分栏 tab 移动端换行 (无横滑) */
  .tab-nav { width: 100%; flex-wrap: wrap; justify-content: center; }
  .tab-btn { padding: 7px 14px; font-size: 12.5px; }
  .tab-panels { grid-template-columns: repeat(2, 1fr); }

  /* Z11 保障条 */
  .guarantee-inner { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Z13 CSS Banner 移动端换行 */
  .banner-link.css-banner { flex-wrap: wrap; gap: 10px; padding: 16px; }
  .css-banner-text { font-size: 14px; }

  /* Z14 新闻移动端单列 */
  .news-list { grid-template-columns: 1fr; }
  .insight-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }

  /* Z15 写真网格 2 列 */
  .masonry-grid { grid-template-columns: repeat(2, 1fr); }

  /* Z17 本周之星 */
  .star-week-card { grid-template-columns: 1fr; padding: 18px; }
  .star-photo { max-width: 240px; margin: 0 auto; }

  /* Z19 评价 */
  .review-list { grid-template-columns: 1fr; }

  /* Z20 攻略 */
  .guide-list { grid-template-columns: 1fr; }

  /* Z21 单页群 */
  .page-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .home-main > section { margin-bottom: 24px; }
  .section-title { font-size: 18px; }
  .section-sub { font-size: 11.5px; }

  /* HERO 移动端 */
  .hero-title { font-size: 18px; }
  .hero-sub { font-size: 12px; }
  .hero-meta span { font-size: 11px; padding: 3px 8px; }
  .hero-btn { padding: 8px 18px; font-size: 12px; }
  .online-item { min-width: 110px; }
  .online-name { font-size: 12px; }

  /* 数据条 */
  .stat-num { font-size: 18px; }
  .stat-label { font-size: 10.5px; }

  /* 城市 */
  .city-hot { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .city-card { padding: 10px 4px; font-size: 12.5px; }
  .city-list { grid-template-columns: repeat(3, 1fr); }

  /* 卡组 (2列网格) */
  .vcard-name { font-size: 12.5px; }
  .vcard-meta { font-size: 10.5px; }
  .vcard-price { font-size: 12px; }

  /* tab */
  .tab-panels { grid-template-columns: 1fr; }

  /* 写真 */
  .masonry-grid { columns: 2; column-gap: 8px; }

  /* 评价 */
  .review-item { padding: 14px; }

  /* 单页群 */
  .page-grid { grid-template-columns: repeat(2, 1fr); }
  .page-card { padding: 14px 8px; }
  .page-icon { width: 36px; height: 36px; font-size: 18px; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .rank-grid { grid-template-columns: 1fr; }
  .guarantee-inner { grid-template-columns: 1fr; }
  .banner-link.css-banner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .masonry-grid { columns: 1; }
  .page-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ 横滑容器隐藏滚动条 (兼容) ============ */
.card-row::-webkit-scrollbar,
.video-grid::-webkit-scrollbar,
.online-list::-webkit-scrollbar,
.tab-nav::-webkit-scrollbar { height: 0; width: 0; display: none; }

/* ====================================================================
   第二轮新增样式 — 增加模型字段 + VIP badge + 写真重构 + 评价链接
   ==================================================================== */

/* vcard 额外字段容器 (语言/爱好/三围 chips) */
.vcard-extra {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 2px;
}
.vcard-extra .chip-sanwei,
.vcard-extra .chip-yuyan,
.vcard-extra .chip-aihao,
.vcard-extra .chip-fengge {
  font-size: 10.5px;
  padding: 2px 6px;
  line-height: 1.4;
}

/* VIP 角标 */
.badge-vip {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, #e0a93a 0%, #b58a4a 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  letter-spacing: .5px;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

/* 写真专区重构 (.masonry-item 由 a 改 div, 内部独立链接) */
.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all .25s var(--ease);
}
.masonry-item:hover { border-color: var(--primary-3); transform: translateY(-2px); box-shadow: var(--shadow); }
.masonry-photo { display: block; position: relative; }
.masonry-photo img { width: 100%; display: block; }
.masonry-info { padding: 8px 10px 10px; display: flex; flex-direction: column; gap: 4px; }
.masonry-name { font-size: 13px; font-weight: 700; color: var(--text-strong); }
.masonry-name:hover { color: var(--primary-2); }
.masonry-tags { font-size: 11px; }
.masonry-tags .chip-city,
.masonry-tags .chip-leixing { font-size: 10.5px; padding: 2px 6px; }

/* tab 卡片底部行 (类型 + 价格) */
.tab-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.tab-card-bottom .vcard-price { font-size: 13px; font-weight: 700; color: var(--price); }

/* 用户评价底部链接 */
.review-more-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--primary-2);
  font-weight: 600;
  transition: color .2s var(--ease);
}
.review-more-link:hover { color: var(--primary); }

