/**
 * 长汀旅游 - 移动端首页样式 v2
 * 现代扁平化设计 · 基于 Font Awesome 7 图标
 * 轻量、高速、纯净
 */

/* ========== CSS 变量 ========== */
:root {
  --ct-primary: #2563EB;
  --ct-primary-dark: #1D4ED8;
  --ct-primary-light: #EFF6FF;
  --ct-accent: #F59E0B;
  --ct-accent-light: #FFFBEB;
  --ct-danger: #EF4444;
  --ct-success: #10B981;
  --ct-bg: #F8FAFC;
  --ct-card: #FFFFFF;
  --ct-text: #1E293B;
  --ct-text-sub: #64748B;
  --ct-text-light: #94A3B8;
  --ct-border: #E2E8F0;
  --ct-shadow-sm: 0 0.0625rem 0.125rem rgba(0,0,0,0.04);
  --ct-shadow: 0 0.0625rem 0.1875rem rgba(0,0,0,0.06), 0 0.0625rem 0.125rem rgba(0,0,0,0.04);
  --ct-shadow-md: 0 0.25rem 0.375rem rgba(0,0,0,0.05), 0 0.125rem 0.25rem rgba(0,0,0,0.04);
  --ct-radius: 0.625rem;
  --ct-radius-lg: 0.875rem;
  --ct-radius-full: 624.9375rem;
  --ct-safe-bottom: env(safe-area-inset-bottom, 0);
  --ct-font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ========== 基础重置 ========== */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--ct-bg);
  color: var(--ct-text);
  font-family: var(--ct-font);
  font-size: 0.9375rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; vertical-align: middle; border: none; }
button, input { font-family: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

#mobile-mask {
  background: var(--ct-bg);
  min-height: 100vh;
  padding-bottom: calc(0 + var(--ct-safe-bottom));
}

/* ========== 顶部状态栏 ========== */
.ct-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.625rem 1rem 0.75rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.ct-topbar.scrolled {
  border-bottom-color: var(--ct-border);
}

.ct-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.625rem;
}

/* ========== Logo ========== */
.ct-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

/* Logo 图标容器 */
.ct-logo-icon {
  width: 2.375rem; height: 2.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6875rem;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  color: var(--ct-primary);
  font-size: 1.1875rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.12);
  transition: transform 0.25s, box-shadow 0.25s;
}

.ct-logo:active .ct-logo-icon {
  transform: scale(0.9);
  box-shadow: 0 1px 3px rgba(37, 99, 235, 0.08);
}

.ct-logo-info {
  display: flex;
  flex-direction: column;
}

/* Logo 名字 - 流光渐变动画 */
.ct-logo-name {
  display: inline-flex;
  gap: 0.0625rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--ct-primary);
  line-height: 1.3;
}

/* 每个字逐字淡入上浮 */
.ct-logo-char {
  display: inline-block;
  animation: charFadeUp 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.ct-logo-char:nth-child(1) { animation-delay: 0s; }
.ct-logo-char:nth-child(2) { animation-delay: 0.1s; }
.ct-logo-char:nth-child(3) { animation-delay: 0.2s; }
.ct-logo-char:nth-child(4) { animation-delay: 0.3s; }

@keyframes charFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Slogan 延迟淡入 */
.ct-logo-slogan {
  font-size: 0.6875rem;
  color: var(--ct-text-light);
  margin-top: 0.125rem;
  letter-spacing: 0.0625rem;
  animation: sloganFadeIn 0.5s 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes sloganFadeIn {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ========== 右侧区域：天气 + 按钮 ========== */
.ct-header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* 天气组件 */
.ct-weather {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--ct-text-sub);
  background: var(--ct-card);
  padding: 0.3125rem 0.625rem;
  border-radius: var(--ct-radius-full);
  box-shadow: var(--ct-shadow-sm);
}

.ct-weather i {
  font-size: 0.875rem;
  color: var(--ct-accent);
}

#ct-weather-city {
  max-width: 3.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
}

.ct-header-btns {
  display: flex;
  gap: 0.375rem;
}

.ct-header-btns a {
  width: 2.125rem; height: 2.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ct-card);
  border-radius: 50%;
  box-shadow: var(--ct-shadow-sm);
  color: var(--ct-text-sub);
  font-size: 0.9375rem;
  transition: color 0.2s, transform 0.2s;
}

.ct-header-btns a:active {
  transform: scale(0.92);
  color: var(--ct-primary);
}

/* ========== 搜索框 ========== */
.ct-search-box {
  margin: 0.875rem 0.625rem;
}

.ct-search-box form {
  display: flex;
  align-items: center;
  height: 2.75rem;
  background: var(--ct-card);
  border: 1px solid #CBD5E1;
  border-radius: var(--ct-radius-full);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ct-search-box form:focus-within {
  border-color: var(--ct-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* 左侧标签：趣游 / 搜索 两行极窄 */
.ct-search-label {
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.0625rem;
  position: relative;
  padding: 0 0.5rem 0 0.75rem;
  background: #DBEAFE;
  color: var(--ct-primary);
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1.1;
}

/* 分割线 */
.ct-search-divider {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.0625rem;
  height: 1.125rem;
  background: var(--ct-border, #E2E8F0);
  font-style: normal;
}

/* 中间输入区 */
.ct-search-field {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 0.75rem;
  background: #fff;
}

.ct-search-field input {
  width: 100%;
  border: none; outline: none;
  background: transparent;
  font-size: 0.875rem;
  color: var(--ct-text);
}

.ct-search-field input::placeholder {
  color: var(--ct-text-light);
}

/* 搜索词淡入淡出动画 */
@keyframes ctSearchOut {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(6px); }
}

@keyframes ctSearchIn {
  0%   { opacity: 0; transform: translateY(-6px); }
  100% { opacity: 1; transform: translateY(0); }
}

.ct-search-field input.ct-search-word-out {
  animation: ctSearchOut 0.2s ease forwards;
}

.ct-search-field input.ct-search-word-in {
  animation: ctSearchIn 0.25s ease forwards;
}

/* 右侧搜索按钮 */
.ct-search-submit {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.875rem;
  height: 100%;
  border: none;
  background: transparent;
  color: var(--ct-primary);
  font-size: 1.0625rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.ct-search-submit:active {
  background: var(--ct-primary-light);
  transform: scale(0.95);
}

/* 隐藏 TAG 数据源 */
.ct-search-tags[hidden] {
  display: none;
}

/* ========== Banner ========== */
.ct-banner-section { padding: 0.5rem 1rem 0.25rem; }

.ct-banner {
  position: relative;
  border-radius: var(--ct-radius-lg);
  overflow: hidden;
  box-shadow: var(--ct-shadow-md);
  height: 10.625rem;
  background: var(--ct-card);
}

.ct-banner .swiper-wrapper {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ct-banner .swiper-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.ct-banner .swiper-slide a {
  display: block;
  width: 100%; height: 100%;
}

.ct-banner .swiper-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.ct-banner .ct-banner-default {
  background: linear-gradient(135deg, #DBEAFE 0%, #EFF6FF 40%, #FEFCE8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-banner .banner-title {
  text-align: center;
  color: var(--ct-primary-dark);
}

.ct-banner .banner-title h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  letter-spacing: 0.125rem;
}

.ct-banner .banner-title p {
  font-size: 0.75rem;
  color: var(--ct-text-sub);
  letter-spacing: 0.0625rem;
}

.ct-banner .swiper-pagination {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.3125rem;
  z-index: 2;
}

.ct-banner .swiper-pagination span {
  width: 0.375rem; height: 0.375rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: all 0.3s;
}

.ct-banner .swiper-pagination span.active {
  width: 1rem;
  border-radius: 0.1875rem;
  background: var(--ct-primary);
}

/* ========== 快捷导航 ========== */
.ct-quick-nav {
  background: var(--ct-card);
  margin: 0.625rem 1rem;
  border-radius: var(--ct-radius-lg);
  padding: 1.25rem 0.75rem 0.875rem;
  box-shadow: var(--ct-shadow);
}

.ct-quick-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem 0.25rem;
}

.ct-quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4375rem;
  transition: transform 0.2s;
}

.ct-quick-item:active {
  transform: scale(0.95);
}

.ct-quick-icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ct-quick-icon i { font-size: 1.125rem; }

/* Lottie 动画容器——加载成功时覆盖 FA 图标 */
.ct-quick-lottie {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.ct-quick-lottie svg {
  width: 2rem;
  height: 2rem;
}

.ct-quick-icon.icon-dest   { background: #EFF6FF; color: #2563EB; }
.ct-quick-icon.icon-rank   { background: #FFFBEB; color: #D97706; }
.ct-quick-icon.icon-idea   { background: #FEFCE8; color: #CA8A04; }
.ct-quick-icon.icon-expert { background: #F5F3FF; color: #7C3AED; }
.ct-quick-icon.icon-ai     { background: #ECFEFF; color: #0891B2; }
.ct-quick-icon.icon-deal   { background: #FEF2F2; color: #DC2626; }
.ct-quick-icon.icon-qa     { background: #ECFDF5; color: #059669; }
.ct-quick-icon.icon-album  { background: #FAF5FF; color: #9333EA; }
.ct-quick-icon.icon-prep   { background: #FFF7ED; color: #EA580C; }
.ct-quick-icon.icon-trust  { background: #F0F9FF; color: #0284C7; }

.ct-quick-item span {
  font-size: 0.6875rem;
  color: var(--ct-text-sub);
  font-weight: 500;
}

/* ---- 角标通用（定位在图标右上角） ---- */
.ct-quick-badge {
  position: absolute;
  top: -0.3125rem;
  right: -0.3125rem;
  font-size: 0.5625rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.125rem 0.3125rem;
  border-radius: 0.5rem;
  white-space: nowrap;
  letter-spacing: 0.0312rem;
  pointer-events: none;
  transform: translate(30%, -30%);
}

/* ---- 角标动画 ---- */
.ct-quick-badge {
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: translate(30%, -30%) scale(1); }
  50%      { transform: translate(30%, -30%) scale(1.15); }
}

/* 必看榜单 — 橙红色 HOT */
.ct-quick-badge.badge-hot {
  background: linear-gradient(135deg, #FF6B3D, #F97316);
  color: #fff;
  box-shadow: 0 1px 4px rgba(249, 115, 22, 0.4);
  animation: badgePulse 1.8s ease-in-out infinite, badgeHotGlow 1.8s ease-in-out infinite;
}

@keyframes badgeHotGlow {
  0%, 100% { box-shadow: 0 1px 4px rgba(249, 115, 22, 0.4); }
  50%      { box-shadow: 0 2px 10px rgba(249, 115, 22, 0.7); }
}

/* 特惠商城 — 红色 特惠 */
.ct-quick-badge.badge-deal {
  background: linear-gradient(135deg, #EF4444, #DC2626);
  color: #fff;
  box-shadow: 0 1px 4px rgba(220, 38, 38, 0.4);
  animation: badgePulse 2.2s ease-in-out infinite, badgeDealGlow 2.2s ease-in-out infinite;
}

@keyframes badgeDealGlow {
  0%, 100% { box-shadow: 0 1px 4px rgba(220, 38, 38, 0.4); }
  50%      { box-shadow: 0 2px 10px rgba(220, 38, 38, 0.7); }
}

/* 实时问答 — 绿色 实时 */
.ct-quick-badge.badge-live {
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: #fff;
  box-shadow: 0 1px 4px rgba(22, 163, 74, 0.4);
  animation: badgePulse 2s ease-in-out infinite, badgeLiveGlow 2s ease-in-out infinite;
}

@keyframes badgeLiveGlow {
  0%, 100% { box-shadow: 0 1px 4px rgba(22, 163, 74, 0.4); }
  50%      { box-shadow: 0 2px 10px rgba(22, 163, 74, 0.7); }
}

/* 行程助手 — 蓝紫渐变 AI */
.ct-quick-badge.badge-ai {
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  color: #fff;
  box-shadow: 0 1px 4px rgba(99, 102, 241, 0.4);
  animation: badgePulse 2s ease-in-out infinite, badgeAiGlow 2s ease-in-out infinite;
}

@keyframes badgeAiGlow {
  0%, 100% { box-shadow: 0 1px 4px rgba(99, 102, 241, 0.4); }
  50%      { box-shadow: 0 2px 10px rgba(139, 92, 246, 0.7); }
}

/* ========== 地图导览 ========== */
.ct-map-guide {
  margin: 0.625rem 0.75rem;
  border-radius: var(--ct-radius-lg);
  overflow: hidden;
  box-shadow: var(--ct-shadow-md);
  position: relative;
  background: linear-gradient(135deg, #DBEAFE 0%, #EFF6FF 35%, #F0F9FF 65%, #FEFCE8 100%);
  cursor: pointer;
  min-height: 7.5rem;
}

#ct-gmap-wrap {
  width: 100%;
}

.ct-map-badge {
  position: absolute;
  left: 50%;
  bottom: 0.625rem;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  color: var(--ct-text);
  padding: 0.375rem 1rem;
  border-radius: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  pointer-events: none;
  z-index: 2;
}

/* ========== 头条资讯 ========== */
.ct-news-ticker {
  background: var(--ct-card);
  margin: 0.625rem 1rem;
  border-radius: var(--ct-radius);
  padding: 0.75rem 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  box-shadow: var(--ct-shadow);
}

.ct-news-label {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ct-danger);
  white-space: nowrap;
}

.ct-news-label i { font-size: 0.8125rem; }

.ct-news-list {
  flex: 1;
  height: 1.25rem;
  overflow: hidden;
  position: relative;
}

.ct-news-list a {
  display: block;
  font-size: 0.8125rem;
  color: var(--ct-text);
  line-height: 1.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ct-news-more {
  font-size: 0.6875rem;
  color: var(--ct-text-light);
  white-space: nowrap;
}

/* ========== 线路预订 + 游玩指南 ========== */
.ct-booking-guide {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 0.5rem;
  margin: 0.625rem 1rem;
  align-items: stretch;
}

/* SVG 斜角边框卡片：渐变背景 + SVG描边 */
.ct-booking-card,
.ct-guide-card {
  position: relative;
  display: flex;
  flex-direction: column;
  /* 上→下淡淡渐变背景 */
  background: linear-gradient(180deg, #e4f4ff 0%, #ffffff 100%);
  padding: 0.575rem 0.8125rem 1.25rem;
  /* 外层柔光 */
  box-shadow: 0 4px 16px rgba(78, 205, 230, 0.12);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

/* SVG 边框层：铺满卡片 + 穿透点击 */
.ct-card-border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  filter: url(#ct-border-glow);
}

/* 卡片内容需置于 SVG 边框之上 */
.ct-booking-card > :not(.ct-card-border),
.ct-guide-card > :not(.ct-card-border) {
  position: relative;
  z-index: 1;
}

/* SVG 发光滤镜（注入页面一次即可） */
.ct-border-glow-svg {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

.ct-booking-card__hd,
.ct-guide-card__hd {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.ct-booking-card__title,
.ct-guide-card__title {
  font-size: 1.125rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 0.0312rem;
}

.ct-booking-card__sub,
.ct-guide-card__sub {
  font-size: 0.625rem;
  color: var(--ct-text-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.ct-booking-card__sub em,
.ct-guide-card__sub em {
  font-style: normal;
  opacity: 0.35;
}

.ct-guide-card {
  text-align: center;
  align-items: center;
}

.ct-booking-card__hd {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.ct-booking-card__illu {
  width: 4.375rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  overflow: hidden;
}

.ct-booking-card__illu img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.ct-booking-card__stats {
  margin-top: auto;
  padding-top: 0.625rem;
  overflow: hidden;
}

/* 滚动容器：固定高度 = 一行文字 */
.ct-stats-roller {
  position: relative;
  height: 1.125rem;
}

.ct-stat-line {
  position: absolute;
  inset: 0;
  margin: 0;
  font-size: 0.6875rem;
  color: var(--ct-text);
  line-height: 1.125rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ct-stat-num {
  font-weight: 800;
  color: #ff6a3c;
  font-size: 0.75rem;
  padding: 0 0.0625rem;
}

/* Vue transition-group 淡入淡出 */
.stat-fade-enter-active,
.stat-fade-leave-active {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.stat-fade-enter-from {
  opacity: 0;
  transform: translateY(0.5rem);
}
.stat-fade-leave-to {
  opacity: 0;
  transform: translateY(-0.5rem);
}
.stat-fade-leave-active {
  position: absolute;
}

.ct-guide-card__photos {
  margin-top: auto;
  padding-top: 0.75rem;
  display: flex;
  align-items: center;
}

.ct-guide-card__photos img {
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 图片重叠堆叠：从第二张起向左偏移 */
.ct-guide-card__photos img + img,
.ct-guide-card__photos img + .ct-guide-card__more {
  margin-left: -0.375rem;
}

.ct-guide-card__more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background: #fff;
  color: #64748B;
  font-weight: 800;
  font-size: 0.6875rem;
  letter-spacing: 0.0625rem;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-left: -0.375rem !important;
}

/* ========== 推荐区（小红书风格） ========== */
.ct-recommend {
  background: var(--ct-card);
  margin: 0.625rem 1rem 1.25rem;
  border-radius: var(--ct-radius-lg);
  padding: 1.125rem 0.875rem 1.375rem;
  box-shadow: var(--ct-shadow);
}

.ct-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ct-section-title i {
  font-size: 1.125rem;
  color: var(--ct-accent);
}

.ct-section-title h2 {
  font-size: 1.0625rem;
  font-weight: 700;
}

/* ====== Tab 切换（波浪线下划线 + 滑动动效） ====== */
.ct-tabs-header {
  position: relative;
  display: flex;
  gap: 1.25rem;
  margin-bottom: 0.875rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--ct-border);
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ct-tabs-header::-webkit-scrollbar { display: none; }

.ct-tab-btn {
  position: relative;
  z-index: 2;
  font-size: 0.9375rem;
  color: var(--ct-text-sub);
  padding: 0.25rem 0.125rem;
  cursor: pointer;
  transition: color 0.35s ease, font-size 0.35s ease, font-weight 0.35s ease;
  font-weight: 500;
  white-space: nowrap;
  background: none;
  border: none;
}

.ct-tab-btn.active {
  color: var(--ct-text);
  font-weight: 700;
  font-size: 1.0625rem;
}

/* 波浪线滑动指示器 */
.ct-tab-indicator {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  height: 0.4375rem;
  width: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: 100%;
  overflow: hidden;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 13'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='0'%3E%3Cstop offset='0%25' stop-color='%2334D399'/%3E%3Cstop offset='50%25' stop-color='%2310B981'/%3E%3Cstop offset='100%25' stop-color='%23059669'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M2,8 Q9,1 17,8 Q25,15 33,8 Q41,1 49,8 Q57,15 58,8' fill='none' stroke='url(%23g)' stroke-width='5.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / auto 100%;
  transition: left 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), width 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ====== Filter 筛选标签（滑动背景高亮） ====== */
.ct-filters {
  position: relative;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.1875rem 0;
}

.ct-filters::-webkit-scrollbar { display: none; }

/* 滑动背景高亮块 */
.ct-filter-highlight {
  position: absolute;
  top: 0.1875rem;
  left: 0;
  height: calc(100% - 0.375rem);
  width: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: var(--ct-radius-full);
  box-shadow: 0 1px 4px rgba(37, 99, 235, 0.12);
  transition: left 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), width 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ct-filter-btn {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  padding: 0.4375rem 1rem;
  border-radius: var(--ct-radius-full);
  font-size: 0.75rem;
  color: var(--ct-text-sub);
  background: transparent;
  transition: color 0.35s ease, font-weight 0.35s ease;
  cursor: pointer;
  border: none;
  font-weight: 500;
}

.ct-filter-btn.active {
  color: var(--ct-primary);
  font-weight: 600;
}

/* 非激活态滤镜：极浅底色区分 */
.ct-filter-btn:not(.active) {
  background: rgba(241, 245, 249, 0.6);
}

/* Panel */
.ct-tab-panel { display: none; }
.ct-tab-panel.active {
  display: block;
  animation: ctFadeIn 0.3s ease;
}

@keyframes ctFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 今日最佳大图卡片 */
.ct-featured-card {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--ct-card);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  margin-bottom: 0.875rem;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}

.ct-featured-card:active {
  transform: translateY(-0.125rem);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.12);
}

.ct-featured-img {
  position: relative;
  width: 100%;
  padding-top: 52%;
  overflow: hidden;
  background: #F1F5F9;
}

.ct-featured-img img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.ct-featured-card:active .ct-featured-img img {
  transform: scale(1.03);
}

.ct-featured-date {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.ct-featured-day {
  font-size: 2.625rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.125rem;
}

.ct-featured-my {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.95;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.ct-featured-label {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.92), rgba(16, 185, 129, 0.92));
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.3125rem 0.75rem;
  border-radius: 1.25rem;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
}

.ct-featured-location {
  position: absolute;
  left: 0.75rem; bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 0.6875rem;
  padding: 0.25rem 0.625rem;
  border-radius: 1.25rem;
  backdrop-filter: blur(4px);
}

.ct-featured-location i { font-size: 0.625rem; }

.ct-featured-body {
  padding: 0.875rem 0.75rem;
}

.ct-featured-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ct-text);
  line-height: 1.4;
  margin-bottom: 0.625rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 瀑布流容器 */
.ct-waterfall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  align-items: start;
}

.ct-waterfall-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* 瀑布流卡片 */
.ct-card-waterfall {
  display: block;
  border-radius: 0.875rem;
  overflow: hidden;
  background: var(--ct-card);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid var(--ct-border);
}

.ct-card-waterfall:active {
  transform: translateY(-0.125rem);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}

.ct-card-waterfall .ct-card-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #F1F5F9;
}

.ct-card-waterfall .ct-card-img.ratio-1 { padding-top: 100%; }
.ct-card-waterfall .ct-card-img.ratio-2 { padding-top: 120%; }
.ct-card-waterfall .ct-card-img.ratio-3 { padding-top: 80%; }

.ct-card-waterfall .ct-card-img img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.ct-card-waterfall:active .ct-card-img img {
  transform: scale(1.04);
}

.ct-card-location {
  position: absolute;
  left: 0.5rem; bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.1875rem;
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 0.625rem;
  padding: 0.1875rem 0.5rem;
  border-radius: 1rem;
  backdrop-filter: blur(4px);
  max-width: 80%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ct-card-location i { font-size: 0.5625rem; }

.ct-card-waterfall .ct-card-body {
  padding: 0.625rem;
}

.ct-card-waterfall .ct-card-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ct-text);
  line-height: 1.45;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 作者 / 点赞 */
.ct-card-author {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.ct-author-avatar {
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #E2E8F0;
}

.ct-author-name {
  flex: 1;
  font-size: 0.6875rem;
  color: var(--ct-text-sub);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ct-card-likes {
  display: inline-flex;
  align-items: center;
  gap: 0.1875rem;
  font-size: 0.6875rem;
  color: var(--ct-text-light);
  flex-shrink: 0;
}

.ct-card-likes i {
  font-size: 0.625rem;
  color: #FB7185;
}

/* 底部提示 */
.ct-feed-end {
  text-align: center;
  padding: 1.25rem 0 0.375rem;
  font-size: 0.75rem;
  color: var(--ct-text-light);
}

.ct-feed-empty {
  text-align: center;
  padding: 2.5rem 0;
  color: var(--ct-text-light);
}

.ct-feed-empty i {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
  color: #CBD5E1;
}

.ct-feed-empty p {
  font-size: 0.8125rem;
}

/* ========== 权益卡 + 功能入口 ========== */
.ct-benefits-section {
  margin: 0.625rem 1rem 1.25rem;
}

.ct-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  align-items: stretch;
}

.ct-benefits-col {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.ct-benefits-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  flex: 1;
}

.ct-benefit-card {
  position: relative;
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--ct-shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ct-benefit-card:active {
  transform: scale(0.98);
}

.ct-benefit-card__content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 100%;
  padding: 0.75rem 0.625rem;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.ct-benefit-card__title {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.ct-benefit-card__title-main {
  font-size: 0.9375rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.ct-benefit-card__title-sub {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}

.ct-benefit-card__illu {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 65%;
  z-index: 1;
  pointer-events: none;
}

.ct-benefit-card__illu img {
  width: 100%;
  height: auto;
  display: block;
}

/* 左侧大卡片：权益卡 */
.ct-benefit-card--large {
  background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 50%, #2563EB 100%);
  min-height: 13.125rem;
}

.ct-benefit-card--large .ct-benefit-card__content {
  justify-content: space-between;
}

.ct-benefit-card--large .ct-benefit-card__title-main {
  font-size: 1.5rem;
  font-weight: 900;
}

.ct-benefit-card--large .ct-benefit-card__title-sub {
  font-size: 0.8125rem;
  margin-top: 0.25rem;
}

.ct-benefit-card--large .ct-benefit-card__illu {
  width: 92%;
  right: -14%;
  bottom: 6%;
}

.ct-benefit-card__badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(255,255,255,0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.3125rem 0.625rem;
  border-radius: 62.4375rem;
  border: 1px solid rgba(255,255,255,0.35);
  z-index: 2;
}

/* 漫游计划 */
.ct-benefit-card--citywalk {
  background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
  flex: 1;
  min-height: 6rem;
}

.ct-benefit-card--citywalk .ct-benefit-card__title-main {
  color: #0F172A;
  font-size: 0.9375rem;
}

.ct-benefit-card--citywalk .ct-benefit-card__title-sub {
  color: #475569;
  font-size: 0.6875rem;
}

.ct-benefit-card--citywalk .ct-benefit-card__illu {
  width: 52%;
  right: 2%;
  bottom: -3%;
}

/* AR寻宝 + 领券中心 */
.ct-benefit-card--small {
  background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
  min-height: 6rem;
}

.ct-benefit-card--small:nth-child(2) {
  background: linear-gradient(135deg, #FFF1F2 0%, #FFE4E6 100%);
}

.ct-benefit-card--small .ct-benefit-card__title-main {
  color: #0F172A;
  font-size: 0.8125rem;
}

.ct-benefit-card--small .ct-benefit-card__illu {
  width: 100%;
  right: -4%;
  bottom: -2%;
}

/* ========== 长白山甄选榜 ========== */
.ct-ranking-section {
  margin: 0.625rem 1rem 1.25rem;
  padding: 1rem 0.75rem;
  border-radius: 1.125rem;
  background: linear-gradient(135deg, #DCFCE7 0%, #BBF7D0 50%, #86EFAC 100%);
  box-shadow: var(--ct-shadow-md);
  overflow: hidden;
}

.ct-ranking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.875rem;
}

.ct-ranking-title {
  font-size: 1.125rem;
  font-weight: 900;
  color: #14532D;
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.ct-ranking-title__brand {
  position: relative;
  z-index: 1;
}

.ct-ranking-title__brand::after {
  content: '';
  position: absolute;
  left: -0.125rem;
  right: -0.125rem;
  bottom: 0.125rem;
  height: 0.4375rem;
  background: #FACC15;
  border-radius: 0.25rem;
  z-index: -1;
  opacity: 0.85;
}

.ct-ranking-meta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.ct-ranking-avatars {
  display: flex;
  align-items: center;
}

.ct-ranking-avatar {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 700;
  border: 2px solid #DCFCE7;
  margin-left: -0.3125rem;
}

.ct-ranking-avatar:first-child {
  margin-left: 0;
}

.ct-ranking-avatar--more {
  background: #FFFFFF;
  color: #64748B;
  font-weight: 800;
}

.ct-ranking-heat {
  font-size: 0.6875rem;
  color: #166534;
  font-weight: 600;
}

.ct-ranking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.ct-ranking-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.5rem 0.375rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s ease;
}

.ct-ranking-card:active {
  transform: scale(0.97);
}

.ct-ranking-card__info {
  flex: 1;
  min-width: 0;
}

.ct-ranking-card__title {
  font-size: 0.75rem;
  font-weight: 800;
  color: #1E293B;
  margin-bottom: 0.1875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ct-ranking-card__subtitle {
  font-size: 0.625rem;
  color: #64748B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ct-ranking-card__img {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
}

.ct-ranking-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 旧直播卡片 / 查看更多样式已废弃或仅保留在其他位置复用 */
.ct-live-card .ct-card-img::after {
  content: '● LIVE';
  position: absolute;
  top: 0.5rem; right: 0.5rem;
  background: var(--ct-danger);
  color: #fff;
  font-size: 0.625rem;
  padding: 0.125rem 0.4375rem;
  border-radius: 0.25rem;
  animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ========== 头条资讯滚动（Vue 驱动） ========== */
.ct-news-list > a {
  position: absolute; top: 0; left: 0; right: 0;
  opacity: 0; pointer-events: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: opacity 0.35s ease;
}
.ct-news-list > a.news-item--active {
  opacity: 1; pointer-events: auto;
}

/* ========== 页面页脚 ========== */
.ct-site-footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.7);
  padding-top: 2rem;
  margin-top: 1.5rem;
}

.ct-footer-inner {
  padding: 0 1.25rem;
}

/* 品牌 */
.ct-footer-brand {
  text-align: center;
  margin-bottom: 1.5rem;
}

.ct-footer-logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.0625rem;
  margin-bottom: 0.5rem;
}

.ct-footer-logo em {
  font-style: normal;
  color: #FF6B35;
}

.ct-footer-desc {
  margin: 0 auto;
  max-width: 18rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* 服务承诺 */
.ct-footer-promises {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  margin-bottom: 1.5rem;
}

.ct-footer-promise {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

.ct-footer-promise svg {
  color: rgba(255,255,255,0.4);
}

/* 联系方式 */
.ct-footer-contact {
  text-align: center;
  margin-bottom: 1.25rem;
}

.ct-footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: #FF6B35;
  text-decoration: none;
  transition: opacity 0.2s;
}

.ct-footer-phone:hover {
  opacity: 0.85;
}

.ct-footer-phone svg {
  color: #FF6B35;
  flex-shrink: 0;
}

/* 快速链接 */
.ct-footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.125rem;
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
}

.ct-footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 0.25rem 0.375rem;
  transition: color 0.2s;
}

.ct-footer-links a:hover {
  color: #FF6B35;
}

.ct-footer-sep {
  color: rgba(255,255,255,0.15);
}

/* 版权 */
.ct-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1.25rem 1.5rem;
  text-align: center;
}

.ct-footer-bottom p {
  margin: 0;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
}

.ct-footer-icp a {
  color: rgba(255,255,255,0.25);
  text-decoration: none;
}

/* 底部导航占位：防止 content 被 fixed navbar 遮挡 */
.ct-bottom-nav-placeholder {
  height: 1.625rem;
}

/* ========== 底部导航 ========== */
.ct-bottom-nav {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  justify-content: space-around;
  padding: 0.3125rem 0 calc(0.3125rem + var(--ct-safe-bottom));
  box-shadow: 0 -1px 0 var(--ct-border);
  border-top: 1px solid var(--ct-border);
}

.ct-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  color: var(--ct-text-light);
  font-size: 0.625rem;
  font-weight: 500;
  padding: 0.25rem 0.875rem;
  transition: color 0.2s;
}

.ct-bottom-nav a i {
  font-size: 1.1875rem;
  line-height: 1;
}

.ct-bottom-nav a.active,
.ct-bottom-nav a:hover {
  color: var(--ct-primary);
}

.ct-bottom-nav a.ai-icon i {
  width: 2.5rem; height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ct-primary), #6366F1);
  color: #fff;
  border-radius: 50%;
  margin-top: -0.875rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  font-size: 1.125rem;
}

/* ========== 线路预订弹窗 ========== */
.ct-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  /* 点击空白不关闭，不设置 @click 即可 */
}

.ct-modal-booking {
  width: 100%;
  max-width: 23.75rem;
  max-height: 85vh;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: ct-modal-in 0.3s ease;
}

@keyframes ct-modal-in {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* 头部 */
.ct-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.25rem 0;
}

.ct-modal__title-line {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.ct-modal__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a1a;
}

.ct-modal__sub {
  font-size: 0.75rem;
  color: #999;
  font-weight: 500;
}

.ct-modal__close {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: none;
  background: #f5f5f5;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.ct-modal__close:hover { background: #e8e8e8; color: #333; }

/* 内容区 */
.ct-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}

.ct-form-group {
  margin-bottom: 0.875rem;
}

.ct-form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.375rem;
}

.ct-form-label em {
  font-style: normal;
  color: #ff4d4f;
  margin-left: 0.125rem;
}

.ct-form-input,
.ct-form-textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid #e8e8e8;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  color: #333;
  background: #fafafa;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.ct-form-input:focus,
.ct-form-textarea:focus {
  border-color: #4ecde6;
  box-shadow: 0 0 0 3px rgba(78, 205, 230, 0.15);
  background: #fff;
}

.ct-form-textarea {
  resize: vertical;
  min-height: 3.25rem;
  font-family: inherit;
}

/* 双列 */
.ct-form-row {
  display: flex;
  gap: 0.75rem;
}

.ct-form-group--half {
  flex: 1;
  min-width: 0;
}

/* 预算标签 */
.ct-budget-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ct-budget-tag {
  padding: 0.4375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #666;
  background: #f5f5f5;
  border-radius: 1.25rem;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.ct-budget-tag--active {
  color: #fff;
  background: #4ecde6;
}

.ct-budget-tag:active { transform: scale(0.96); }

/* 底部 */
.ct-modal__footer {
  padding: 0.75rem 1.25rem 1.125rem;
  border-top: 1px solid #f0f0f0;
}

.ct-btn--block {
  width: 100%;
  padding: 0.8125rem;
  font-size: 0.9375rem;
  font-weight: 700;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}

.ct-btn--primary {
  background: linear-gradient(135deg, #4ecde6, #3db8d0);
  color: #fff;
  box-shadow: 0 4px 14px rgba(78, 205, 230, 0.4);
}

.ct-btn--primary:active {
  transform: scale(0.97);
  opacity: 0.9;
}

.ct-btn--secondary {
  background: #f5f5f5;
  color: #666;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.ct-btn--secondary:active {
  transform: scale(0.97);
  opacity: 0.8;
}

/* 按钮内联旋转器 */
.ct-btn-spinner {
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ct-spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 0.3125rem;
}

@keyframes ct-spin {
  to { transform: rotate(360deg); }
}

.ct-btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}

/* ========== 全局 Toast ========== */
.ct-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  white-space: nowrap;
  pointer-events: none;
}

.ct-toast--success { background: rgba(16, 185, 129, 0.92); }

.ct-toast--error   { background: rgba(239, 68, 68, 0.92); }

.ct-toast--info    { background: rgba(51, 153, 255, 0.92); }

.ct-toast__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Vue transition */
.toast-fade-enter-active,
.toast-fade-leave-active {
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.toast-fade-enter-from,
.toast-fade-leave-to {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
}

.ct-modal__tip {
  margin: 0.5rem 0 0;
  font-size: 0.6875rem;
  color: #999;
  text-align: center;
}

/* ========== 社区问答 ========== */
.ct-qa-section {
  margin: 0.625rem 1rem 1.25rem;
  padding: 1rem 0.75rem;
  background: #fff;
  border-radius: 1.125rem;
  box-shadow: var(--ct-shadow-md);
}

.ct-qa__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.875rem;
}

.ct-qa__title-line {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.ct-qa__title-icon {
  flex-shrink: 0;
}

.ct-qa__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}

.ct-qa__ask-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #3399FF;
  background: #EBF5FF;
  border: 1px solid #C5DFF8;
  border-radius: 1rem;
  padding: 0.3125rem 0.75rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-family: inherit;
  line-height: 1.4;
}

.ct-qa__ask-btn:active {
  background: #3399FF;
  color: #fff;
  border-color: #3399FF;
}

.ct-qa__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.ct-qa-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: #f8fbff;
  border: 1px solid #eef3f8;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.ct-qa-card:active {
  box-shadow: 0 2px 12px rgba(51,153,255,0.1);
  border-color: #d0e4f7;
}

.ct-qa-card__body {
  margin-bottom: 0.5rem;
}

.ct-qa-card__question {
  margin: 0 0 0.3125rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ct-qa-card__answer {
  margin: 0;
  font-size: 0.75rem;
  color: #999;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ct-qa-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ct-qa-card__user {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 0.6875rem;
  color: #bbb;
}

.ct-qa-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3125rem;
  height: 1.3125rem;
  border-radius: 50%;
  font-size: 0.625rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.ct-qa-card__avatar-img {
  width: 1.3125rem;
  height: 1.3125rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.ct-qa-card__stat {
  font-size: 0.6875rem;
  color: #bbb;
  background: #f0f2f5;
  padding: 0.125rem 0.5rem;
  border-radius: 0.625rem;
}

/* ========== 提交问题弹窗 ========== */
.ct-modal-question {
  max-width: 23.4375rem;
}

.ct-question-login {
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ct-question-login__icon {
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.ct-question-login__title {
  margin: 0 0 0.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a1a;
}

.ct-question-login__desc {
  margin: 0 0 1.125rem;
  font-size: 0.75rem;
  color: #999;
  line-height: 1.5;
}

.ct-question-login .ct-btn--primary {
  margin-bottom: 0.5rem;
}

/* ========== 定制师板块 ========== */
.ct-customizer-section {
  margin: 0.625rem 1rem 1rem;
  padding: 1rem 0.875rem 0.875rem;
  border-radius: var(--ct-radius-lg);
  background: linear-gradient(180deg, #E8F4FF 0%, #F5FAFF 60%, #FFFFFF 100%);
  overflow: hidden;
}

.ct-customizer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
}

.ct-customizer__title-wrap {
  flex: 1;
  min-width: 0;
}

.ct-customizer__title {
  margin: 0 0 0.375rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.ct-customizer__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 0.625rem;
  font-size: 0.625rem;
  color: #64748B;
}

.ct-customizer__features span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.ct-customizer__features i {
  color: var(--ct-primary);
  font-size: 0.6875rem;
}

.ct-customizer__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.625rem;
  background: var(--ct-primary);
  color: #fff;
  border-radius: var(--ct-radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0.125rem 0.5rem rgba(51, 153, 255, 0.28);
}

.ct-customizer__cta i {
  font-size: 0.625rem;
}

.ct-customizer__scroll {
  margin: 0 -0.875rem;
  padding: 0 0.875rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ct-customizer__scroll::-webkit-scrollbar {
  display: none;
}

.ct-customizer__cards {
  display: flex;
  gap: 0.625rem;
  width: max-content;
}

.ct-customizer-card {
  width: 7rem;
  padding: 0.75rem 0.625rem 0.625rem;
  background: #fff;
  border-radius: var(--ct-radius-lg);
  box-shadow: 0 0.125rem 0.625rem rgba(148, 163, 184, 0.12);
  text-align: center;
  flex-shrink: 0;
}

.ct-customizer-card__photo {
  position: relative;
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 auto 0.5rem;
}

.ct-customizer-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 0.125rem solid #fff;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
}

.ct-customizer-card__tag {
  position: absolute;
  right: -0.25rem;
  top: 0.25rem;
  padding: 0.125rem 0.375rem;
  background: linear-gradient(135deg, #F59E0B, #F97316);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 600;
  border-radius: var(--ct-radius-full);
  white-space: nowrap;
  box-shadow: 0 0.125rem 0.25rem rgba(249, 115, 22, 0.25);
}

.ct-customizer-card__name {
  margin: 0 0 0.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1a1a1a;
}

.ct-customizer-card__desc {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  color: #64748B;
  line-height: 1.4;
  min-height: 1.9375rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ct-customizer-card__btn {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  background: linear-gradient(135deg, #3399FF, #60A5FA);
  color: #fff;
  border-radius: var(--ct-radius-full);
  font-size: 0.6875rem;
  font-weight: 600;
  text-decoration: none;
}

.ct-customizer__dots {
  display: flex;
  justify-content: center;
  gap: 0.375rem;
  margin-top: 0.75rem;
}

.ct-customizer__dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #CBD5E1;
  transition: all 0.25s ease;
}

.ct-customizer__dot--active {
  width: 0.75rem;
  border-radius: var(--ct-radius-full);
  background: var(--ct-primary);
}

/* ========== 产品售卖板块 ========== */
.ct-product-section {
  margin: 0.625rem 1rem 1rem;
  padding: 0.75rem 0;
  background: #fff;
  border-radius: var(--ct-radius-lg);
  box-shadow: 0 0.125rem 0.625rem rgba(148, 163, 184, 0.08);
  overflow: hidden;
}
/* Vue 未移除 v-cloak 时的兜底，防止板块被隐藏 */
.ct-product-section[v-cloak],
.ct-customizer-section[v-cloak],
.ct-article-list-section[v-cloak],
.ct-itinerary-section[v-cloak] {
  display: block !important;
}

/* 成交数据提示条 */
.ct-product-deal-bar {
  padding: 0 0.75rem 0.5rem;
}

.ct-product-deal-bar__inner {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  padding: 0.3125rem 0.75rem;
  background: linear-gradient(135deg, #FFF3E0, #FFF8E1);
  border-radius: var(--ct-radius-full);
  font-size: 0.6875rem;
  color: #E65100;
  font-weight: 600;
}

.ct-product-deal-bar__inner i {
  font-size: 0.75rem;
  color: #FF6D00;
}

.ct-product-deal-bar__num {
  color: #BF360C;
}

.ct-product-deal-bar__dot {
  color: #FFB74D;
}

/* 分类 Tab */
.ct-product-tabs {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  margin: 0 0.75rem 0.75rem;
  border-bottom: 0.03125rem solid #F1F5F9;
}

.ct-product-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.375rem 0 0.5rem;
  font-weight: 600;
  color: #64748B;
  cursor: pointer;
  transition: color 0.25s ease;
  flex: 1;
}

.ct-product-tab__label {
  font-size: 0.875rem;
  line-height: 1.4;
}

.ct-product-tab__deals {
  position: relative;
  font-size: 0.625rem;
  font-weight: 500;
  color: #F97316;
  line-height: 1.3;
  white-space: nowrap;
  margin-top: 0.3rem;
  overflow: hidden;
}

.ct-product-tab__deals::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -100%;
  width: 60%;
  height: calc(100% + 4px);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  animation: deals-shine 3s ease-in-out infinite;
}

@keyframes deals-shine {
  0% { left: -100%; }
  100% { left: 200%; }
}

.ct-product-tab--active {
  color: #1a1a1a;
  font-weight: 700;
}

.ct-product-tab--active .ct-product-tab__label {
  transform: scale(1.12);
  transition: transform 0.25s ease;
}

.ct-product-tab--active .ct-product-tab__deals {
  color: #E65100;
  font-weight: 600;
}

.ct-product-tab__deals--sales {
  color: #16A34A;
}

.ct-product-tab--active .ct-product-tab__deals--sales {
  color: #15803D;
}

.ct-product-tab__img-line {
  position: absolute;
  bottom: -0.55rem;
  width: 3.5rem;
  height: 0.9rem;
  background: url('../images/new-section/Quyou-3249741779.png') center/contain no-repeat;
  transition: left 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 筛选栏 */
.ct-product-filters {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 0.75rem 0.625rem;
  margin-bottom: 0.5rem;
}

.ct-product-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.75rem;
  background: #F8FAFC;
  border-radius: var(--ct-radius-full);
  font-size: 0.75rem;
  color: #334155;
  cursor: pointer;
}

.ct-product-filter i {
  font-size: 0.625rem;
  color: #94A3B8;
}

/* 产品列表 —— 双列错峰瀑布 */
.ct-product-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  padding: 0 0.75rem;
}

.ct-product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--ct-radius);
  overflow: hidden;
  border-bottom: none;
  box-shadow: 0 0.0625rem 0.5rem rgba(0,0,0,0.06);
}

/* 错峰：偶数卡片向下偏移 */
.ct-product-card:nth-child(even) {
  margin-top: 1.25rem;
}

.ct-product-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0;
}

.ct-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.ct-product-card:hover .ct-product-card__img img,
.ct-product-card:active .ct-product-card__img img {
  transform: scale(1.06);
}

.ct-product-card__badge {
  position: absolute;
  top: 0.375rem;
  left: 0.375rem;
  padding: 0.125rem 0.5rem;
  background: rgba(51, 153, 255, 0.92);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 600;
  border-radius: var(--ct-radius);
}

.ct-product-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0.625rem 0.625rem;
}

.ct-product-card__info {
  flex: 1;
}

.ct-product-card__title {
  margin: 0 0 0.375rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ct-product-card__tags {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  margin-bottom: 0.375rem;
}

.ct-product-card__tags span {
  display: inline;
  padding: 0.0625rem 0.375rem;
  background: #F8FAFC;
  border: 0.03125rem solid #E2E8F0;
  border-radius: var(--ct-radius);
  font-size: 0.625rem;
  color: #64748B;
  line-height: 1.6;
}

.ct-product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ct-product-card__provider {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.ct-product-card__provider img {
  width: 0.9375rem;
  height: 0.9375rem;
  border-radius: 50%;
  object-fit: cover;
}

.ct-product-card__provider span {
  font-size: 0.6875rem;
  color: #64748B;
}

.ct-product-card__price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.0625rem;
  color: #FF5722;
}

.ct-product-card__price-symbol {
  font-size: 0.625rem;
}

.ct-product-card__price-num {
  font-size: 1rem;
  font-weight: 700;
}

.ct-product-card__price-unit {
  font-size: 0.625rem;
  color: #94A3B8;
}

.ct-product-card__btn {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.375rem 0;
  text-align: center;
  background: linear-gradient(135deg, #FF5722, #FF7043);
  color: #fff;
  border-radius: var(--ct-radius);
  font-size: 0.6875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0.125rem 0.375rem rgba(255, 87, 34, 0.25);
}

/* 查看更多 */
.ct-product__more {
  padding: 0.5rem 0.75rem 0;
  text-align: center;
}

.ct-product__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 0.03125rem solid #E2E8F0;
  border-radius: var(--ct-radius-full);
  font-size: 0.75rem;
  color: #64748B;
}

.ct-btn-spinner--sm {
  width: 0.625rem;
  height: 0.625rem;
  border-width: 0.09375rem;
}

/* ========== 页脚版权 ========== */
.ct-footer-copy {
  padding: 0.75rem 0.875rem 5.375rem;
  text-align: center;
  font-size: 0.6875rem;
  color: var(--ct-text-light);
}

/* ========== 响应式 ========== */
@media (max-width: 360px) {
  .ct-quick-icon { width: 2.375rem; height: 2.375rem; }
  .ct-quick-icon i { font-size: 1rem; }
  .ct-quick-item span { font-size: 0.625rem; }
  .ct-card-title { font-size: 0.75rem; }
  .ct-logo-name { font-size: 0.9375rem; }
}

/* ====== 精选行程 ====== */
.ct-itinerary-section {
  padding: 1rem 0.75rem 1.25rem;
  background: #fff;
}

.ct-itinerary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.ct-itinerary-header__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.ct-itinerary-header__title svg {
  flex-shrink: 0;
}

.ct-itinerary-header__link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: #999;
  text-decoration: none;
}

.ct-itinerary-header__link i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.875rem;
  height: 0.875rem;
  font-size: 0.375rem;
  background: #f2f2f2;
  border-radius: 50%;
  color: #999;
}

.ct-itinerary-list {
  overflow: hidden;
}

.ct-itinerary-list__track {
  display: flex;
  gap: 0.625rem;
  width: max-content;
  animation: itinerary-scroll 70s linear infinite;
}

@keyframes itinerary-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ct-itinerary-card {
  flex: 0 0 58%;
  width: 58vw;
  max-width: 13.5rem;
  min-height: 7.5rem;
  padding: 0.875rem;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.ct-itinerary-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  z-index: 1;
  flex: 1;
}

.ct-itinerary-card__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

.ct-itinerary-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: #666;
}

.ct-itinerary-card__meta span {
  position: relative;
  padding-left: 0.5rem;
}

.ct-itinerary-card__meta span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0.75rem;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 1px;
}

.ct-itinerary-card__price {
  margin-top: auto;
  font-size: 0.75rem;
  color: #e65100;
  font-weight: 500;
}

.ct-itinerary-card__price em {
  font-style: normal;
  font-size: 1.125rem;
  font-weight: 800;
}

.ct-itinerary-card__img {
  position: absolute;
  right: -12%;
  bottom: -16%;
  width: 54%;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  transform: rotate(45deg);
  z-index: 0;
}

.ct-itinerary-card__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transform: rotate(-45deg) scale(1.45);
}

/* ========== 图文列表 ========== */
.ct-section-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.ct-section-ttl {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.ct-section-ttl svg {
  flex-shrink: 0;
}

.ct-section-more {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: #999;
  text-decoration: none;
}

.ct-article-list-section {
  padding: 0 1rem;
  margin-bottom: 1.5rem;
}

.ct-article-list {
  display: flex;
  flex-direction: column;
}

.ct-article-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.875rem 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ct-article-item:last-child {
  border-bottom: none;
}

.ct-article-item__thumb {
  flex-shrink: 0;
  width: 6.625rem;
  height: 4.5rem;
  border-radius: 0.625rem;
  overflow: hidden;
  background: #f0f0f0;
}

.ct-article-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ct-article-item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.ct-article-item__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ct-article-item__desc {
  margin: 0;
  font-size: 0.75rem;
  color: #999;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ct-article-item__meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.6875rem;
  color: #bbb;
}

.ct-article-item__views {
  display: inline-flex;
  align-items: center;
  gap: 0.1875rem;
}

/* 图文列表 无限滚动状态 */
.ct-article-list__sentinel {
  height: 1px;
  width: 100%;
}

.ct-article-list__loading {
  text-align: center;
  padding: 1.25rem 0;
  font-size: 0.8125rem;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.ct-article-spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(0,0,0,.08);
  border-top-color: #4CAF50;
  border-radius: 50%;
  animation: article-spin 0.6s linear infinite;
}

@keyframes article-spin {
  to { transform: rotate(360deg); }
}

.ct-article-list__end {
  text-align: center;
  padding: 1.25rem 0;
  font-size: 0.75rem;
  color: #ccc;
}

.ct-article-list__error {
  text-align: center;
  padding: 1rem 0;
  font-size: 0.8125rem;
  color: #999;
}

.ct-article-list__error a {
  color: #4CAF50;
  cursor: pointer;
  text-decoration: underline;
}
