:root {
  --yellow: #ffd23a;
  --yellow-deep: #f5c518;
  --yellow-header: #f0c93a;
  --blue: #3b82f6;
  --blue-soft: #e8f3ff;
  --blue-hero: #d7ebff;
  --text: #1f2329;
  --muted: #8a9199;
  --line: #f0f1f3;
  --bg: #f5f6f8;
  --card: #ffffff;
  --radius: 16px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --tab-h: 56px;
  --app-max: 430px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  height: 100%;
  overflow-x: hidden;
  background: #e9edf2;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
  color: var(--text);
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: default;
}

.app {
  width: 100%;
  max-width: var(--app-max);
  min-height: 100%;
  min-height: 100dvh;
  margin: 0 auto;
  background: var(--bg);
  position: relative;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 12px 40px rgba(15, 35, 70, 0.08);
}

.page {
  display: none;
  padding-bottom: calc(var(--tab-h) + var(--safe-bottom) + 12px);
}

.page.is-active {
  display: block;
}

.page-me.is-active {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  box-sizing: border-box;
}

/* —— 首页轮播 —— */
.banner-swiper {
  position: relative;
  background: #d7ebff;
  overflow: hidden;
}

.banner-track {
  position: relative;
  width: 100%;
}

.banner-slide {
  display: none;
  line-height: 0;
}

.banner-slide.is-active {
  display: block;
}

.banner-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}

.banner-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
  transition: width 0.2s ease, background 0.2s ease;
}

.banner-dots .dot.is-active {
  width: 14px;
  background: #fff;
}

/* —— 通用卡片 —— */
.card {
  background: var(--card);
  border-radius: var(--radius);
  margin: 12px 12px 0;
  padding: 14px;
  box-shadow: 0 4px 16px rgba(20, 40, 80, 0.04);
}

.btn-primary {
  width: 100%;
  height: 46px;
  border-radius: 999px;
  background: #f5c518;
  color: #3a2f00;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(245, 197, 24, 0.3);
}

.btn-block {
  margin: 12px 12px 0;
  width: calc(100% - 24px);
}

.cs-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.cs-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #ffe56a;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.cs-title {
  font-size: 14px;
  font-weight: 600;
  color: #2a2f36;
}

.cs-title em {
  font-style: normal;
  color: #1f2329;
  font-weight: 800;
}

.cs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.cs-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: #1f8a5b;
  background: #eaf8f0;
  border-radius: 999px;
  padding: 3px 8px;
  font-weight: 500;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.feature-item {
  position: relative;
  background: #fffaf0;
  border: 1px solid #f3e8c8;
  border-radius: 12px;
  padding: 14px 4px 10px;
  text-align: center;
}

.feature-item .rec {
  position: absolute;
  top: 0;
  right: 0;
  background: #f5c518;
  color: #5c4700;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 0 12px 0 8px;
  font-weight: 700;
}

.feature-icon {
  display: grid;
  place-items: center;
  height: 30px;
}

.feature-name {
  margin-top: 6px;
  font-size: 11px;
  color: #333;
  font-weight: 500;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.head-ico {
  flex-shrink: 0;
}

.tag-rec {
  background: #f5c518;
  color: #5c4700;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
}

.process-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.step {
  flex: 1;
  text-align: center;
}

.step-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 8px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.si-green { background: #d9f5e5; }
.si-blue { background: #dcecff; }
.si-orange { background: #ffe8cc; }
.si-purple { background: #ece4ff; }

.step-name {
  font-size: 12px;
  color: #2a2f36;
  font-weight: 700;
}

.step-sub {
  margin-top: 2px;
  font-size: 10px;
  color: #9aa1aa;
}

.step-arrow {
  color: #e0b83a;
  font-size: 14px;
  font-weight: 700;
  margin-top: 12px;
  flex-shrink: 0;
}

.trust-title {
  font-size: 14px;
  text-align: center;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  color: #2a2f36;
}

.trust-title .bar {
  width: 3px;
  height: 14px;
  border-radius: 2px;
  background: #f0b429;
}

.trust-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 12px;
  color: #8a9199;
  margin-bottom: 14px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.cert-item {
  text-align: center;
  font-size: 10px;
  color: #556;
  background: #fff;
  border: 1px solid #f0f1f3;
  border-radius: 12px;
  padding: 10px 4px 8px;
}

.cert-badge {
  width: 42px;
  height: 42px;
  margin: 0 auto 6px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffe98a, #f5c518);
  display: grid;
  place-items: center;
  box-shadow: 0 2px 6px rgba(245, 197, 24, 0.28);
}

.cert-badge-emoji {
  font-size: 18px;
  line-height: 1;
}

.partners {
  background: #f4f7fb;
  border-radius: 12px;
  padding: 12px 10px;
}

.partners-head {
  text-align: center;
  font-size: 12px;
  color: #6a7788;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
  font-weight: 600;
}

.airline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.airline {
  background: #fff;
  border-radius: 10px;
  padding: 10px 6px;
  border: 1px solid #e8edf3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 11px;
  color: #334;
  font-weight: 500;
}

.plane-ico {
  font-size: 12px;
  line-height: 1;
}

.partner-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 12px;
}

.partner-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-align: center;
  font-size: 11px;
  border-radius: 999px;
  padding: 8px 0;
  font-weight: 600;
}

.pl-gold {
  background: #ffe56a;
  color: #6a5200;
}

.pl-blue {
  background: #e8f1ff;
  color: #3b6fd8;
  border: 1px solid #c9dcff;
}

.pl-outline {
  background: #fff;
  color: #9a7a10;
  border: 1px solid #f0d56a;
}

.reviews-wrap {
  padding-bottom: 8px;
}

.reviews-head {
  margin: 16px 16px 0;
}

.reviews-title {
  display: flex;
  align-items: center;
  gap: 6px;
}

.reviews-title h2 {
  font-size: 16px;
  font-weight: 800;
  color: #1f2329;
}

.score-badge {
  background: #fff3c2;
  color: #d4a017;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}

.review-card {
  margin-top: 10px;
  padding: 14px;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.review-user {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-width: 0;
}

.ru-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #ffe56a;
}

.ru-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ru-meta {
  min-width: 0;
}

.ru-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.ru-name {
  font-size: 14px;
  font-weight: 700;
  color: #1f2329;
}

.ru-route {
  font-size: 11px;
  color: #3b82f6;
  background: #eaf3ff;
  border: 1px solid #cfe0ff;
  border-radius: 999px;
  padding: 1px 8px;
  font-weight: 500;
  white-space: nowrap;
}

.ru-time {
  margin-top: 3px;
  font-size: 11px;
  color: #9aa1aa;
}

.ru-like {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  background: #fff6d6;
  color: #c98900;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}

.stars {
  display: flex;
  gap: 2px;
  margin-top: 10px;
}

.review-text {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: #333;
}

.review-tags {
  margin-top: 10px;
}

.review-tags span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #9a7400;
  background: #fff6d6;
  border-radius: 999px;
  padding: 3px 10px;
  font-weight: 500;
}

.review-photos {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.review-photos img {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  object-fit: cover;
  background: #e8eef5;
}

/* —— 我的 —— */
.me-header {
  background:
    radial-gradient(circle at 12% 30%, rgba(255, 255, 255, 0.18), transparent 22%),
    radial-gradient(circle at 85% 20%, rgba(0, 0, 0, 0.04), transparent 25%),
    radial-gradient(circle at 70% 80%, rgba(0, 0, 0, 0.05), transparent 28%),
    linear-gradient(180deg, #f2cc3d 0%, #ebc230 100%);
  padding: 12px 16px 28px;
  position: relative;
  overflow: hidden;
}

.me-header::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  top: -20px;
  background:
    radial-gradient(circle at 50% 40%, transparent 28%, rgba(0, 0, 0, 0.05) 29%, rgba(0, 0, 0, 0.05) 42%, transparent 43%),
    radial-gradient(circle at 30% 70%, rgba(0, 0, 0, 0.05) 0 10%, transparent 11%),
    radial-gradient(circle at 55% 72%, rgba(0, 0, 0, 0.05) 0 8%, transparent 9%),
    radial-gradient(circle at 72% 68%, rgba(0, 0, 0, 0.05) 0 9%, transparent 10%);
  opacity: 0.55;
  pointer-events: none;
}

.me-title {
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  position: relative;
  z-index: 1;
}

.me-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

.me-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: #ffe56a;
  object-fit: cover;
  flex-shrink: 0;
}

.me-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.me-name {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.me-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.me-slogan {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}

.me-slogan .paw {
  color: #2f4a7a;
  opacity: 0.85;
}

.me-quick {
  margin-top: -14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 18px 8px;
}

.quick-item {
  text-align: center;
  font-size: 13px;
  color: #333;
}

.quick-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 8px;
  border-radius: 12px;
  background: #fff3ea;
  display: grid;
  place-items: center;
  font-size: 22px;
}

.qi-chat { background: #eef4ff; }
.qi-star { background: #fff8e5; }

.me-menu {
  padding: 0 14px;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  border-bottom: 1px solid var(--line);
}

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

.menu-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.menu-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff3ea;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.mi-gift { background: #fff5e8; }
.mi-pen { background: #fff8e0; }
.mi-gear { background: #eaf2ff; }
.mi-bag { background: #f4ebe3; }

.menu-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hint {
  font-size: 12px;
  color: var(--muted);
}

.chev {
  color: #c0c6ce;
  font-size: 20px;
  font-weight: 300;
}

.me-footer {
  text-align: center;
  color: #b0b6be;
  font-size: 12px;
  line-height: 1.8;
  padding: 20px 0 4px;
  margin-top: auto;
}

/* —— Tabbar —— */
.tabbar {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--app-max);
  height: calc(var(--tab-h) + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid #eef0f3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 20;
}

.tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #9aa1aa;
  font-size: 11px;
}

.tab-icon {
  display: grid;
  place-items: center;
  height: 24px;
}

.tab-icon svg {
  fill: #9aa1aa;
}

.tab.is-active {
  color: var(--blue);
  font-weight: 600;
}

.tab.is-active .tab-icon svg {
  fill: var(--blue);
}

/* —— 客服弹窗 —— */
.cs-modal[hidden] {
  display: none;
}

.cs-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 18px;
}

.cs-modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 40, 0.48);
}

.cs-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 340px;
  max-height: calc(100vh - 40px);
  overflow: auto;
}

.cs-modal-close {
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: #666;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.cs-modal-head {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, #ffe56a, #fff1a8);
  border-radius: 18px;
  padding: 14px 16px;
  margin-bottom: 12px;
  box-shadow: 0 6px 18px rgba(230, 180, 40, 0.18);
}

.cs-modal-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  background: #fff;
  border: 2px solid #fff;
  flex-shrink: 0;
}

.cs-modal-brand {
  font-size: 16px;
  font-weight: 800;
  color: #1f2329;
}

.cs-modal-sub {
  margin-top: 4px;
  font-size: 12px;
  color: #8a9199;
}

.cs-modal-body {
  background: #fff;
  border-radius: 22px;
  padding: 22px 18px 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(20, 40, 80, 0.1);
}

.cs-modal-body h3 {
  font-size: 20px;
  font-weight: 800;
  color: #1f2329;
}

.cs-modal-cert {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  background: #fff6d6;
  color: #c98900;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
}

.cs-qr-wrap {
  width: 200px;
  height: 200px;
  margin: 18px auto 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(40, 70, 120, 0.12);
  padding: 10px;
  display: grid;
  place-items: center;
}

.cs-qr-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cs-qr-tip {
  margin-top: 14px;
  font-size: 13px;
  color: #8a9199;
}

.cs-match {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: #ffe56a;
  border-radius: 999px;
  padding: 11px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #2a2f36;
}

.cs-wecom {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2b7de9;
  font-size: 13px;
  font-weight: 600;
}

.cs-modal-foot {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: #9aa1aa;
}

.js-open-cs {
  cursor: pointer;
}

@media (min-width: 431px) {
  body {
    padding: 24px 0;
  }

  .app {
    min-height: calc(100dvh - 48px);
    border-radius: 20px;
    overflow: hidden;
  }

  .page-me.is-active {
    min-height: calc(100dvh - 48px);
  }

  .tabbar {
    border-radius: 0 0 20px 20px;
  }
}

/* —— 子页面 —— */
.subpage[hidden],
.sheet-modal[hidden] { display: none !important; }

.subpage {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  max-width: var(--app-max);
  height: 100%;
  z-index: 80;
  background: #f5f6f8;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sub-nav {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  flex-shrink: 0;
}

.sub-nav-orange { background: #ff8c42; }
.sub-nav-yellow { background: #ffce00; color: #1f2329; }

.sub-nav h1 {
  font-size: 17px;
  font-weight: 700;
}

.sub-back {
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 40px;
  color: inherit;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.sub-body {
  flex: 1;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 24px;
}

.feedback-body { padding: 20px 16px; }
.fb-title { font-size: 22px; font-weight: 800; color: #2a2f36; }
.fb-desc { margin-top: 8px; font-size: 13px; color: #8a9199; }
.fb-card {
  margin-top: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(20,40,80,.04);
}
.fb-label { display: block; font-size: 14px; font-weight: 600; color: #333; margin: 12px 0 8px; }
.fb-label:first-child { margin-top: 0; }
.fb-label em { color: #f5c518; font-style: normal; }
.fb-label .opt { color: #9aa1aa; font-weight: 400; font-size: 12px; }
.fb-area {
  background: #fff5f2;
  border-radius: 10px;
  padding: 10px;
  position: relative;
}
.fb-area textarea {
  width: 100%;
  min-height: 120px;
  border: none;
  outline: none;
  resize: none;
  background: transparent;
  font: inherit;
  font-size: 14px;
  color: #333;
}
.fb-count { text-align: right; font-size: 12px; color: #b0b6be; }
.fb-input {
  width: 100%;
  height: 44px;
  border: none;
  outline: none;
  background: #fff5f2;
  border-radius: 10px;
  padding: 0 12px;
  font: inherit;
  font-size: 14px;
}
.fb-submit {
  margin-top: 22px;
  width: 100%;
  height: 48px;
  border-radius: 999px;
  background: #e9c46a;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(233,196,106,.35);
  cursor: pointer;
}
.fb-foot { text-align: center; margin-top: 16px; font-size: 13px; color: #c98900; }

.cash-body { background: #fef9f2; }
.cash-hero {
  background: #ffce00;
  padding: 8px 16px 22px;
}
.cash-official {
  display: inline-block;
  background: #fff;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
}
.cash-hero h2 { margin-top: 10px; font-size: 28px; font-weight: 800; }
.cash-hero p { margin-top: 6px; font-size: 13px; color: #444; }
.cash-max {
  display: inline-block;
  margin-top: 10px;
  border: 1px solid #ff8d29;
  color: #ff8d29;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255,255,255,.55);
}
.cash-card {
  margin: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 14px;
}
.cash-row, .cash-copy-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cash-ico { font-size: 18px; }
.cash-tag {
  margin-left: auto;
  background: #fff3e0;
  color: #ff8d29;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
}
.cash-copy-box {
  flex: 1;
  background: #fff9e6;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 13px;
}
.cash-copy-btn {
  background: #ffce00;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.cash-sec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  margin-bottom: 10px;
}
.cash-sec i {
  width: 4px;
  height: 14px;
  background: #ff8d29;
  border-radius: 2px;
  display: inline-block;
}
.cash-p { font-size: 13px; color: #555; line-height: 1.6; }
.cash-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.cash-pills span {
  background: #fff3d6;
  color: #9a7400;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
}
.cash-step {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 10px;
}
.cs-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #ff8d29;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.cash-step b { font-size: 14px; }
.cash-step p { font-size: 12px; color: #888; margin-top: 2px; }
.cash-input {
  width: 100%;
  height: 42px;
  border: none;
  outline: none;
  background: #fff9e6;
  border-radius: 10px;
  padding: 0 12px;
  font: inherit;
  font-size: 13px;
}
.cash-upload {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.cash-upbox {
  width: 88px;
  height: 88px;
  border: 1.5px dashed #ff8d29;
  border-radius: 12px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #ff8d29;
  font-size: 12px;
  background: #fffaf3;
}
.cash-uphint { font-size: 12px; color: #888; line-height: 1.5; }
.cash-rules { list-style: none; padding: 0; }
.cash-rules li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: #555;
  line-height: 1.8;
}
.cash-rules li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff8d29;
  font-weight: 700;
}
.cash-trust {
  display: flex;
  justify-content: space-around;
  margin: 8px 12px;
  font-size: 11px;
  color: #9aa1aa;
}
.cash-btn-main, .cash-btn-line {
  display: block;
  width: calc(100% - 24px);
  margin: 10px 12px 0;
  height: 46px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.cash-btn-main {
  background: linear-gradient(180deg, #ff9f45, #ff8d29);
  color: #fff;
}
.cash-btn-line {
  background: #fff;
  color: #ff8d29;
  border: 1.5px solid #ff8d29;
}
.cash-disc { text-align: center; font-size: 11px; color: #c0c6ce; margin-top: 12px; }

/* —— 通用底部弹层 —— */
.sheet-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
}
.sheet-mask {
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 40, 0.48);
}
.sheet-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #fff;
  border-radius: 24px;
}
.sheet-x {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  flex-shrink: 0;
}
.sheet-x.dark { background: #f0f1f3; color: #666; position: absolute; right: 12px; top: 12px; }
.sheet-x.light { background: rgba(255,255,255,.35); }
.sheet-cta {
  width: 100%;
  height: 46px;
  margin-top: 14px;
  border-radius: 999px;
  background: #e8c352;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.outlets-head {
  background: #e8c352;
  border-radius: 24px 24px 0 0;
  padding: 18px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: #fff;
}
.outlets-title { font-size: 18px; font-weight: 800; }
.outlets-sub { margin-top: 4px; font-size: 12px; opacity: .92; }
.outlets-body { padding: 14px 16px 18px; }
.outlets-badges { display: flex; gap: 8px; margin-bottom: 12px; }
.outlets-badges span {
  flex: 1;
  text-align: center;
  background: #eaf8f0;
  color: #1f8a5b;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 0;
  border-radius: 10px;
}
.outlets-search {
  background: #f3f4f6;
  border-radius: 12px;
  padding: 11px 12px;
  color: #9aa1aa;
  font-size: 13px;
  margin-bottom: 12px;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.city-grid span {
  text-align: center;
  background: #f5f6f8;
  border-radius: 999px;
  padding: 8px 0;
  font-size: 12px;
  color: #333;
}
.city-more { text-align: center; font-size: 12px; color: #9aa1aa; margin: 12px 0 4px; }

.koubei-panel { overflow: hidden; }
.koubei-head {
  background: #e8c352;
  padding: 20px 16px 18px;
  color: #fff;
  text-align: center;
  position: relative;
}
.koubei-head .sheet-x { position: absolute; right: 12px; top: 12px; }
.koubei-title { font-size: 18px; font-weight: 800; }
.koubei-sub { margin-top: 6px; font-size: 12px; opacity: .92; }
.koubei-body { padding: 18px 16px 16px; text-align: center; }
.koubei-score { font-size: 40px; font-weight: 800; color: #a38029; line-height: 1; }
.koubei-stars { color: #e8c352; letter-spacing: 2px; margin-top: 6px; }
.koubei-basis { margin-top: 6px; font-size: 12px; color: #9aa1aa; }
.kb-bars { margin-top: 16px; text-align: left; }
.kb-row {
  display: grid;
  grid-template-columns: 72px 1fr 36px;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
  font-size: 12px;
  color: #444;
}
.kb-track {
  height: 8px;
  background: #f0f1f3;
  border-radius: 999px;
  overflow: hidden;
}
.kb-track i {
  display: block;
  height: 100%;
  background: #e8c352;
  border-radius: 999px;
}
.kb-row b { text-align: right; color: #a38029; }
.koubei-brand { margin-top: 12px; font-size: 12px; color: #9aa1aa; }

.biz-panel { padding: 20px 16px 18px; text-align: center; }
.biz-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  margin: 4px auto 10px;
  display: block;
}
.biz-panel h3 { font-size: 20px; font-weight: 800; }
.biz-channel { margin-top: 6px; color: #22a06b; font-size: 13px; font-weight: 600; }
.biz-tip {
  margin-top: 14px;
  background: #fff8e1;
  border-radius: 12px;
  padding: 12px;
  text-align: left;
}
.biz-tip strong { font-size: 14px; }
.biz-tip p { margin-top: 4px; font-size: 12px; color: #888; line-height: 1.5; }
.biz-label {
  display: block;
  text-align: left;
  margin: 12px 0 6px;
  font-size: 13px;
  font-weight: 600;
  color: #444;
}
.biz-area {
  width: 100%;
  min-height: 84px;
  border: 1px solid #f0d56a;
  border-radius: 12px;
  padding: 10px;
  resize: none;
  outline: none;
  font: inherit;
  font-size: 13px;
  background: #fff;
}
.biz-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #f0d56a;
  border-radius: 12px;
  padding: 0 12px;
  height: 44px;
}
.biz-contact input {
  flex: 1;
  border: none;
  outline: none;
  font: inherit;
  font-size: 13px;
  background: transparent;
}
.biz-submit {
  width: 100%;
  height: 46px;
  margin-top: 16px;
  border-radius: 12px;
  background: #ffd23a;
  font-size: 15px;
  font-weight: 800;
  color: #1f2329;
  box-shadow: 0 4px 0 #e0b83a;
  cursor: pointer;
}
.biz-hint { margin-top: 12px; font-size: 12px; color: #9aa1aa; }
.biz-entry {
  width: 100%;
  height: 42px;
  margin-top: 8px;
  border-radius: 12px;
  border: 1.5px solid #f5c518;
  background: #fff;
  color: #c98900;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.menu-item, .quick-item { cursor: pointer; }

/* —— 航空托运弹窗 —— */
.airline-panel {
  overflow: hidden;
  padding: 0;
}

.air-head {
  position: relative;
  padding: 18px 16px 16px;
  background:
    radial-gradient(circle at 92% 10%, rgba(255,255,255,.55), transparent 28%),
    linear-gradient(135deg, #ffe56a 0%, #fff1a8 55%, #ffe9a0 100%);
}

.air-head .sheet-x {
  position: absolute;
  right: 12px;
  top: 12px;
}

.air-brand {
  font-size: 12px;
  color: #6a5200;
  font-weight: 600;
}

.air-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.air-title-row h3 {
  font-size: 18px;
  font-weight: 800;
  color: #1f2329;
}

.air-priority {
  background: #e0b83a;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}

.air-sub {
  margin-top: 8px;
  font-size: 12px;
  color: #5b6b84;
}

.air-body {
  padding: 14px 16px 16px;
}

.air-carrier {
  display: flex;
  align-items: center;
  gap: 10px;
}

.air-plane {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eaf3ff;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.air-name {
  font-size: 16px;
  font-weight: 800;
  color: #1f2329;
}

.air-live {
  margin-top: 3px;
  font-size: 12px;
  color: #22a06b;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.air-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22a06b;
  display: inline-block;
}

.air-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.air-stat {
  background: #fff8e1;
  border: 1px solid #f3e2a8;
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
}

.air-stat span {
  display: block;
  font-size: 11px;
  color: #8a9199;
}

.air-stat strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.air-stat .orange { color: #e89a1c; }
.air-stat .green { color: #22a06b; }

.air-coop {
  margin-top: 12px;
  background: #fffaf0;
  border: 1px solid #f0d56a;
  border-radius: 12px;
  padding: 12px;
}

.air-coop-title {
  font-size: 14px;
  font-weight: 700;
  color: #1f2329;
}

.air-coop p {
  margin-top: 6px;
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}

.air-std-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
}

.air-std-title i {
  width: 4px;
  height: 14px;
  background: #f5c518;
  border-radius: 2px;
  display: inline-block;
}

.air-std-list {
  list-style: none;
  margin-top: 10px;
  padding: 0;
}

.air-std-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fffaf0;
  border: 1px solid #f5ebc8;
  border-radius: 12px;
  padding: 10px;
  margin-top: 8px;
  font-size: 12px;
  color: #444;
  line-height: 1.5;
}

.air-std-list span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f5c518;
  color: #5c4700;
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.air-actions {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 10px;
  margin-top: 16px;
}

.air-back,
.air-consult {
  height: 44px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.air-back {
  background: #f3f4f6;
  color: #666;
}

.air-consult {
  background: #f5c518;
  color: #1f2329;
}

