/* H5 移动端 - 严格按设计稿 */

.h5-app {
  width: 100%;
  height: 100%;
  background: var(--color-bg);
  position: relative;
  display: flex;
  flex-direction: column;
}

/* ===== 顶部状态栏 + 导航（浅青蓝渐变）===== */
.h5-header {
  background: var(--color-secondary-gradient);
  padding: 48px 20px 16px;
  position: relative;
}

.h5-topbar {
  display: flex; align-items: center; justify-content: space-between;
}
.h5-topbar-title {
  font-family: var(--font-serif);
  font-size: 24px; font-weight: 700;
  color: var(--color-text);
  letter-spacing: 1px;
  line-height: 1.2;
}
.h5-topbar-right {
  display: flex; align-items: center; gap: 12px;
}
.h5-icon-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text);
  cursor: pointer;
}
.h5-icon-btn svg { width: 22px; height: 22px; }

/* ===== Banner 卡片（浮在渐变上，水墨青蓝山水风）===== */
.h5-banner-card {
  margin: 16px 16px 0;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(45, 90, 90, 0.1);
}
.h5-banner-illu {
  position: relative;
  height: 160px;
  background: linear-gradient(180deg, #C9DEDC 0%, #7BAFB5 60%, #2D5A5A 100%);
  overflow: hidden;
}
.h5-banner-illu::before {
  content: '';
  position: absolute; inset: 0;
  background: url("../../assets/ink-wash-bg.jpg") center/cover no-repeat;
  opacity: 0.4;
  mix-blend-mode: multiply;
}
.h5-banner-illu-text {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.h5-banner-illu-sub {
  position: absolute;
  bottom: 16px; left: 0; right: 0;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  font-family: var(--font-serif);
}

/* 搜索卡片（浮在 banner 下半部分） */
.h5-banner-search {
  margin: -30px 16px 0;
  background: white;
  border-radius: 18px;
  padding: 16px 18px;
  position: relative;
  z-index: 5;
  box-shadow: 0 4px 20px rgba(45, 90, 90, 0.08);
}
.h5-banner-search-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.h5-banner-search-title svg {
  width: 18px; height: 18px;
  color: var(--color-text-tertiary);
}
.h5-banner-search-sub {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-bottom: 14px;
}
.h5-searchbar {
  display: flex; align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--color-bg);
  border-radius: 22px;
  border: 1px solid var(--color-border);
}
.h5-searchbar svg {
  width: 16px; height: 16px;
  color: var(--color-text-tertiary);
  flex-shrink: 0;
}
.h5-searchbar input {
  flex: 1;
  border: none; outline: none;
  background: transparent;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--color-text);
  width: 100%;
}
.h5-searchbar input::placeholder { color: var(--color-text-tertiary); }

/* ===== 主体内容区 ===== */
.h5-content {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 80px;
}

/* ===== 4 个功能入口 ===== */
.h5-entries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 20px 16px 8px;
}
.h5-entry-item {
  background: white;
  border-radius: 16px;
  padding: 16px 8px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(45, 90, 90, 0.04);
}
.h5-entry-item:active { transform: scale(0.96); }
.h5-entry-icon {
  width: 44px; height: 44px;
  margin: 0 auto 8px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(45, 90, 90, 0.08), rgba(123, 175, 181, 0.15));
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
}
.h5-entry-icon svg { width: 24px; height: 24px; }
.h5-entry-label {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 500;
}

/* ===== 板块标题 ===== */
.h5-section {
  padding: 20px 16px 8px;
}
.h5-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.h5-section-title {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
}
.h5-section-diamond {
  width: 6px; height: 6px;
  background: var(--color-primary);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.h5-section-more {
  font-size: 12px;
  color: var(--color-text-tertiary);
  cursor: pointer;
}

/* ===== 横向滚动路线卡片 ===== */
.h5-route-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 16px 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.h5-route-scroll::-webkit-scrollbar { display: none; }
.h5-route-card {
  flex-shrink: 0;
  width: 200px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  box-shadow: 0 2px 10px rgba(45, 90, 90, 0.05);
}
.h5-route-card-img {
  width: 100%; height: 120px;
  object-fit: cover;
  background: var(--color-primary-faint);
}
.h5-route-card-body {
  padding: 10px 12px 12px;
}
.h5-route-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4px;
}
.h5-route-card-tag {
  font-size: 10px;
  color: var(--color-primary);
  background: rgba(45, 90, 90, 0.08);
  padding: 2px 8px;
  border-radius: 10px;
}
.h5-route-card-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.h5-route-card-meta {
  font-size: 11px;
  color: var(--color-text-tertiary);
  display: flex; align-items: center; gap: 6px;
}

/* ===== 合伙人横幅 ===== */
.h5-partner-bar {
  margin: 16px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #4A8280 100%);
  border-radius: 16px;
  padding: 18px 20px;
  color: white;
  display: flex; align-items: center;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.h5-partner-bar-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}
.h5-partner-bar-sub {
  font-size: 12px;
  opacity: 0.75;
}
.h5-partner-bar-btn {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  font-size: 12px;
  color: white;
  flex-shrink: 0;
}

/* ===== 列表页通用 ===== */
.h5-list-page {
  flex: 1;
  overflow-y: auto;
  background: var(--color-bg);
  padding-bottom: 20px;
}
.h5-page-header {
  display: flex; align-items: center;
  padding: 16px 16px 12px;
  gap: 8px;
  background: var(--color-secondary-gradient);
}
.h5-page-back {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--color-text);
  flex-shrink: 0;
}
.h5-page-back svg { width: 20px; height: 20px; }
.h5-page-title {
  flex: 1;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  margin-right: 32px; /* 抵消返回按钮的视觉偏移 */
}
.h5-list-grid {
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.h5-list-item {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(45, 90, 90, 0.04);
}
.h5-list-item-img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  background: var(--color-primary-faint);
}
.h5-list-item-body {
  padding: 10px 12px 12px;
}
.h5-list-item-title {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.h5-list-item-meta {
  font-size: 11px;
  color: var(--color-text-tertiary);
  display: flex; align-items: center;
  gap: 6px;
}

/* 横向列表（路线列表页） */
.h5-list-horizontal {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.h5-list-h-item {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  box-shadow: 0 2px 8px rgba(45, 90, 90, 0.04);
}
.h5-list-h-img {
  width: 120px; height: 100px;
  object-fit: cover;
  flex-shrink: 0;
}
.h5-list-h-body {
  flex: 1;
  padding: 12px 14px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.h5-list-h-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.h5-list-h-desc {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.h5-list-h-foot {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px;
  color: var(--color-text-tertiary);
}

/* ===== 我的页面 ===== */
.h5-profile-header {
  background: var(--color-secondary-gradient);
  padding: 48px 20px 32px;
  display: flex; align-items: center; gap: 14px;
}
.h5-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: white;
  border: 3px solid rgba(255, 255, 255, 0.6);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(45, 90, 90, 0.1);
}
.h5-profile-info {
  flex: 1;
}
.h5-profile-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}
.h5-profile-sub {
  font-size: 12px;
  color: var(--color-text-secondary);
}
.h5-stats-bar {
  margin: -20px 16px 0;
  background: white;
  border-radius: 16px;
  padding: 16px 0;
  display: flex;
  position: relative;
  z-index: 5;
  box-shadow: 0 4px 16px rgba(45, 90, 90, 0.06);
}
.h5-stat-item {
  flex: 1;
  text-align: center;
  border-right: 1px solid var(--color-border-light);
}
.h5-stat-item:last-child { border-right: none; }
.h5-stat-num {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2px;
}
.h5-stat-label {
  font-size: 11px;
  color: var(--color-text-secondary);
}
.h5-menu-group {
  margin: 16px 16px;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(45, 90, 90, 0.04);
}
.h5-menu-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--color-border-light);
}
.h5-menu-item:last-child { border-bottom: none; }
.h5-menu-item:active { background: var(--color-primary-faint); }
.h5-menu-icon {
  width: 22px; height: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.h5-menu-label {
  flex: 1;
  font-size: 14px;
  color: var(--color-text);
  min-width: 0;
}
.h5-menu-item > span:nth-of-type(1) {
  flex-shrink: 0;
  margin: 0 4px;
  font-size: 12px;
  color: var(--color-text-tertiary);
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.h5-menu-arrow {
  color: var(--color-text-tertiary);
  flex-shrink: 0;
  width: 12px; height: 12px;
}

/* ===== AI 悬浮按钮 ===== */
.h5-ai-fab {
  position: absolute;
  right: 20px;
  bottom: 90px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 50;
  box-shadow: 0 8px 20px rgba(45, 90, 90, 0.3);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  transition: transform 0.2s;
}
.h5-ai-fab:active { transform: scale(0.9); }
.h5-heart-fab {
  position: absolute;
  right: 28px;
  bottom: 240px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: white;
  color: var(--color-text-tertiary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 49;
  box-shadow: 0 4px 12px rgba(45, 90, 90, 0.12);
}
.h5-heart-fab svg { width: 18px; height: 18px; }

/* ===== AI 全屏对话页 ===== */
.h5-ai-page {
  position: absolute;
  inset: 0;
  background: var(--color-bg);
  z-index: 100;
  display: flex;
  flex-direction: column;
}
.h5-ai-header {
  display: flex; align-items: center;
  padding: 16px 16px 14px;
  background: var(--color-secondary-gradient);
  gap: 12px;
}
.h5-ai-back {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--color-text);
}
.h5-ai-back svg { width: 20px; height: 20px; }
.h5-ai-title {
  flex: 1;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
}
.h5-ai-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.h5-msg {
  display: flex;
  gap: 10px;
  max-width: 85%;
}
.h5-msg-bot { align-self: flex-start; }
.h5-msg-user { align-self: flex-end; flex-direction: row-reverse; }
.h5-msg-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 14px;
  flex-shrink: 0;
}
.h5-msg-user .h5-msg-avatar {
  background: var(--color-accent);
}
.h5-msg-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
}
.h5-msg-bot .h5-msg-bubble {
  background: white;
  border-top-left-radius: 4px;
  box-shadow: 0 2px 6px rgba(45, 90, 90, 0.05);
}
.h5-msg-user .h5-msg-bubble {
  background: var(--color-primary);
  color: white;
  border-top-right-radius: 4px;
}
.h5-ai-quick {
  padding: 0 16px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.h5-ai-quick-item {
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  font-size: 12px;
  color: var(--color-text-secondary);
  cursor: pointer;
}
.h5-ai-input-bar {
  display: flex; align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: white;
  border-top: 1px solid var(--color-border-light);
}
.h5-ai-input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
  color: var(--color-text);
}
.h5-ai-send {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.h5-ai-send svg { width: 18px; height: 18px; }

/* ===== 底部 Tab ===== */
.h5-tabbar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70px;
  background: white;
  display: flex;
  border-top: 1px solid var(--color-border-light);
  padding-bottom: 6px;
  z-index: 30;
}
.h5-tab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  color: var(--color-text-tertiary);
  font-size: 12px;
  transition: color 0.2s;
}
.h5-tab-item.active {
  color: var(--color-primary);
}
.h5-tab-item svg {
  width: 24px; height: 24px;
}
.h5-tab-label {
  font-size: 11px;
}

/* ===== 合伙人页 ===== */
.h5-partner-page {
  flex: 1;
  overflow-y: auto;
  background: var(--color-bg);
  padding-bottom: 20px;
}
.h5-partner-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #4A8280 100%);
  color: white;
  padding: 48px 24px 32px;
  position: relative;
  overflow: hidden;
}
.h5-partner-hero h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}
.h5-partner-hero p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
}
.h5-partner-content {
  padding: 20px 16px;
}
.h5-partner-content h4 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
  margin-top: 8px;
}
.card {
  background: white;
  box-shadow: 0 2px 8px rgba(45, 90, 90, 0.04);
}

/* 四季专题 */
.h5-season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 16px 20px;
}
.h5-season-card {
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
}
.h5-season-card:active {
  transform: scale(0.95);
}
.h5-season-icon {
  font-size: 24px;
  margin-bottom: 6px;
}
.h5-season-name {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}
.h5-season-desc {
  font-size: 11px;
  color: var(--color-text-tertiary);
}

/* 集章Banner */
.h5-stamp-banner {
  margin: 4px 16px 20px;
  background: linear-gradient(135deg, #2D5A5A, #3A6B69);
  border-radius: 16px;
  padding: 18px 20px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.h5-stamp-banner::after {
  content: '';
  position: absolute;
  right: -20px;
  top: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.h5-stamp-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}
.h5-stamp-sub {
  font-size: 12px;
  opacity: 0.85;
}
.h5-stamp-btn {
  padding: 7px 14px;
  background: rgba(255,255,255,0.2);
  border-radius: 16px;
  font-size: 12px;
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 1;
}

/* 集章页 */
.h5-stamp-hero {
  background: linear-gradient(180deg, var(--color-primary-faint), var(--color-bg));
  padding: 24px 20px 28px;
  text-align: center;
}
.h5-stamp-hero-title {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}
.h5-stamp-hero-num {
  color: var(--color-primary);
  margin-bottom: 14px;
}
.h5-stamp-bar {
  height: 6px;
  background: rgba(45,90,90,0.1);
  border-radius: 3px;
  max-width: 240px;
  margin: 0 auto 12px;
  overflow: hidden;
}
.h5-stamp-bar-fill {
  height: 100%;
  background: var(--color-primary);
  border-radius: 3px;
  transition: width 0.6s;
}
.h5-stamp-hero-tip {
  font-size: 12px;
  color: var(--color-text-tertiary);
}
.h5-stamp-city {
  padding: 16px;
  border-bottom: 8px solid var(--color-bg);
}
.h5-stamp-city-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text);
}
.h5-stamp-city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.h5-stamp-item {
  background: white;
  border-radius: 12px;
  padding: 14px 8px;
  text-align: center;
  border: 1px solid var(--color-border-light);
}
.h5-stamp-item.got {
  background: linear-gradient(135deg, #2D5A5A, #3A6B69);
  color: white;
  border-color: transparent;
}
.h5-stamp-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 18px;
}
.h5-stamp-item.got .h5-stamp-icon {
  background: rgba(255,255,255,0.2);
  color: white;
}
.h5-stamp-name {
  font-size: 12px;
  color: var(--color-text-secondary);
}
.h5-stamp-item.got .h5-stamp-name {
  color: rgba(255,255,255,0.95);
}
.h5-stamp-nft {
  margin: 16px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(45,90,90,0.04);
}

/* 城市切换页 */
.h5-city-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
}
.h5-city-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(45,90,90,0.04);
  border: 2px solid transparent;
}
.h5-city-card.active {
  border-color: var(--color-primary);
}
.h5-city-card-img {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.h5-city-card-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  letter-spacing: 2px;
}
.h5-city-card-body {
  padding: 10px 12px 12px;
}
.h5-city-card-slogan {
  font-size: 12px;
  color: var(--color-text);
  margin-bottom: 6px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.h5-city-card-stats {
  font-size: 11px;
  color: var(--color-text-tertiary);
  display: flex;
  gap: 4px;
}

/* 顶部城市选择箭头 */
.h5-topbar-arrow {
  width: 14px;
  height: 14px;
  margin-left: 2px;
  vertical-align: middle;
  color: var(--color-primary);
}

/* 无人机页面 */
.h5-drone-hero {
  background: linear-gradient(135deg, #1A3333, #2D5A5A 50%, #3A6B69);
  padding: 24px 20px 28px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.h5-drone-img {
  width: 200px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
}
.h5-drone-hero-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.h5-drone-hero-sub {
  font-size: 12px;
  opacity: 0.85;
}
.h5-drone-price {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px;
  background: white;
  margin-bottom: 8px;
}
.h5-drone-price-item {
  background: var(--color-bg-warm);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  position: relative;
  border: 1px solid transparent;
}
.h5-drone-price-item.highlight {
  background: linear-gradient(180deg, #2D5A5A, #3A6B69);
  color: white;
  transform: scale(1.02);
}
.h5-drone-price-num {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.h5-drone-price-num span {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.7;
}
.h5-drone-price-item.highlight .h5-drone-price-num {
  color: #FFE082;
}
.h5-drone-price-label {
  font-size: 12px;
  color: var(--color-text-secondary);
}
.h5-drone-price-item.highlight .h5-drone-price-label {
  color: rgba(255,255,255,0.85);
}
.h5-drone-price-tag {
  position: absolute;
  top: -6px;
  right: 8px;
  background: #C9A96E;
  color: white;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 8px;
  font-weight: 500;
}
.h5-drone-tip {
  margin: 0 16px 8px;
  padding: 10px 14px;
  background: #FFF8E7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #8B6914;
}
.h5-drone-tip-icon {
  font-size: 14px;
}
.h5-drone-cabinet-list {
  padding: 0 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.h5-drone-cabinet-item {
  background: white;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(45,90,90,0.04);
}
.h5-drone-cabinet-main {
  flex: 1;
  min-width: 0;
}
.h5-drone-cabinet-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.h5-drone-cabinet-addr {
  font-size: 12px;
  color: var(--color-text-tertiary);
  margin-bottom: 6px;
}
.h5-drone-cabinet-info {
  display: flex;
  gap: 10px;
  font-size: 11px;
  color: var(--color-text-secondary);
}
.h5-drone-status {
  padding: 1px 8px;
  border-radius: 8px;
  background: #F0F2F1;
  color: var(--color-text-tertiary);
}
.h5-drone-status.open {
  background: var(--color-primary-faint);
  color: var(--color-primary);
}
.h5-drone-cabinet-right {
  text-align: right;
  flex-shrink: 0;
}
.h5-drone-distance {
  font-size: 12px;
  color: var(--color-text-tertiary);
  margin-bottom: 8px;
}
.h5-drone-nav-btn {
  padding: 5px 12px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 12px;
  cursor: pointer;
}
.h5-drone-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 16px 16px;
}
.h5-drone-step {
  background: white;
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(45,90,90,0.04);
}
.h5-drone-step-num {
  width: 28px;
  height: 28px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: var(--color-primary-faint);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 14px;
}
.h5-drone-step-t {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}
.h5-drone-step-d {
  font-size: 10px;
  color: var(--color-text-tertiary);
  line-height: 1.3;
}
.h5-drone-compliance {
  margin: 8px 16px 16px;
  padding: 14px 16px;
  background: #FFF8E7;
  border-radius: 12px;
  border-left: 3px solid #E5A55E;
}
.h5-drone-compliance-title {
  font-size: 13px;
  font-weight: 600;
  color: #8B6914;
  margin-bottom: 8px;
}
.h5-drone-compliance-list {
  margin: 0;
  padding-left: 18px;
  font-size: 12px;
  color: #8B6914;
  line-height: 2;
}
.h5-drone-order-btn {
  width: 100%;
  padding: 14px;
  background: white;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  font-size: 14px;
  color: var(--color-text);
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(45,90,90,0.04);
}

/* H5备案 */
.h5-beian {
  padding: 20px 16px 16px;
  text-align: center;
  font-size: 11px;
  color: #8A9694;
  line-height: 1.8;
}
.h5-beian a {
  color: #8A9694;
  text-decoration: none;
}
