/* ============================================================
   熊猫到家 · 用户端样式（移动优先，≥768px 桌面布局）
   ============================================================ */
:root {
  --green: #07C160;
  --green-dark: #06A653;
  --green-light: #E8F9F0;
  --red: #FF3B30;
  --red-soft: #FFE9E9;
  --price: #FF3B30;
  --blue: #2B8CFF;
  --blue-light: #EAF4FF;
  --orange: #FF7A00;
  --pink: #FF2D78;
  --bg: #F7F8FA;
  --card: #FFFFFF;
  --text: #1A1A1A;
  --text-2: #666666;
  --gray: #999999;
  --line: #EEEEEE;
  --radius-s: 10px;
  --radius: 14px;
  --radius-l: 20px;
  --shadow-1: 0 2px 8px rgba(0, 0, 0, .05);
  --shadow-2: 0 6px 20px rgba(0, 0, 0, .08);
  --shadow-3: 0 12px 32px rgba(0, 0, 0, .12);
  --header-h: 60px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
input { font-family: inherit; border: none; outline: none; background: none; }
a { color: inherit; text-decoration: none; }

/* ---------- 通用工具 ---------- */
.page { min-height: 100vh; }
.container { width: 100%; margin: 0 auto; }
.btn-press { transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease; }
.btn-press:active { transform: scale(.96); opacity: .88; }
.ellipsis { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.clamp2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.fade-enter-active, .fade-leave-active { transition: opacity .25s ease; }
.fade-enter-from, .fade-leave-to { opacity: 0; }
.pop-enter-active { transition: opacity .25s ease, transform .25s cubic-bezier(.2, 1.2, .4, 1); }
.pop-leave-active { transition: opacity .18s ease, transform .18s ease; }
.pop-enter-from, .pop-leave-to { opacity: 0; transform: scale(.85) translateY(16px); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; top: 18%; left: 50%; transform: translateX(-50%);
  background: rgba(0, 0, 0, .78); color: #fff; padding: 10px 20px;
  border-radius: 22px; font-size: 14px; z-index: 9999; max-width: 80vw;
  text-align: center; box-shadow: var(--shadow-3); pointer-events: none;
}

/* ---------- 骨架屏 ---------- */
.skeleton { position: relative; overflow: hidden; background: #EDEFF2; border-radius: var(--radius-s); }
.skeleton::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .65), transparent);
  animation: sk 1.3s infinite;
}
@keyframes sk { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

/* ---------- 空状态 ---------- */
.empty { padding: 48px 0; text-align: center; color: var(--gray); }
.empty .e-emoji { font-size: 44px; margin-bottom: 10px; }
.empty .e-text { font-size: 13px; }

/* ============================================================
   PC 顶部 Header（≥768px 显示）
   ============================================================ */
.pc-header { display: none; }
.pc-footer { display: none; }

@media (min-width: 768px) {
  .pc-header {
    display: block; position: fixed; top: 0; left: 0; right: 0; z-index: 900;
    background: rgba(255, 255, 255, .92); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line); height: var(--header-h);
  }
  .pc-header-inner {
    max-width: 1200px; margin: 0 auto; height: 100%;
    display: flex; align-items: center; gap: 28px; padding: 0 24px;
  }
  .pc-logo { display: flex; align-items: center; gap: 8px; cursor: pointer; flex-shrink: 0; }
  .pc-logo img { width: 34px; height: 34px; border-radius: 50%; }
  .pc-logo .lg-name { font-size: 19px; font-weight: 800; }
  .pc-logo .lg-sub { font-size: 11px; color: var(--green); border: 1px solid var(--green); border-radius: 4px; padding: 0 4px; margin-left: 2px; }
  .pc-nav { display: flex; gap: 4px; }
  .pc-nav a {
    padding: 7px 14px; border-radius: 18px; font-size: 14px; color: var(--text-2);
    cursor: pointer; transition: all .15s;
  }
  .pc-nav a:hover { background: var(--green-light); color: var(--green-dark); }
  .pc-nav a.active { background: var(--green); color: #fff; font-weight: 600; }
  .pc-search {
    flex: 1; max-width: 320px; display: flex; align-items: center; gap: 6px;
    background: #F2F3F5; border-radius: 20px; padding: 8px 14px; margin-left: auto;
  }
  .pc-search input { flex: 1; font-size: 13px; }
  .pc-search .s-ico { color: var(--gray); }
  .pc-user { flex-shrink: 0; }
  .pc-login-btn {
    background: var(--green); color: #fff; padding: 8px 20px; border-radius: 20px;
    font-size: 13px; font-weight: 600; box-shadow: 0 4px 12px rgba(7, 193, 96, .3);
  }
  .pc-user-chip { display: flex; align-items: center; gap: 8px; cursor: pointer; }
  .pc-user-chip img { width: 32px; height: 32px; border-radius: 50%; background: var(--green-light); }
  .pc-user-chip span { font-size: 13px; color: var(--text-2); max-width: 120px; }

  .pc-footer {
    display: block; background: #22252B; color: #9BA1AB; margin-top: 48px;
  }
  .pc-footer-inner { max-width: 1200px; margin: 0 auto; padding: 36px 24px; text-align: center; }
  .pc-footer .f-brand { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 10px; }
  .pc-footer .f-brand img { width: 36px; height: 36px; border-radius: 50%; }
  .pc-footer .f-brand b { color: #fff; font-size: 18px; }
  .pc-footer .f-slogan { font-size: 13px; letter-spacing: 2px; }
  .pc-footer .f-copy { margin-top: 14px; font-size: 12px; color: #6B7078; }

  .page { padding-top: var(--header-h); }
  .container { max-width: 1200px; padding: 0 24px; }
}

/* ============================================================
   底部 TabBar（<768px 显示）
   ============================================================ */
.tabbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 800;
  background: #fff; border-top: 1px solid var(--line);
  display: flex; padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, .04);
}
.tabbar .tab {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  padding: 7px 0 5px; color: var(--gray); font-size: 11px; gap: 2px;
  transition: color .15s;
}
.tabbar .tab .t-ico { font-size: 21px; line-height: 1; filter: grayscale(1) opacity(.6); transition: all .15s; }
.tabbar .tab.active { color: var(--green); font-weight: 600; }
.tabbar .tab.active .t-ico { filter: none; transform: translateY(-1px); }
@media (min-width: 768px) { .tabbar { display: none; } }
.has-tabbar { padding-bottom: 64px; }

/* ============================================================
   启动闪屏页
   ============================================================ */
.splash {
  position: fixed; inset: 0; background: #fff; z-index: 2000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
}
.splash-words { display: flex; gap: 28px; margin-bottom: 8vh; position: relative; }
.splash-words .brush {
  position: absolute; top: -26px; right: -34px; width: 46px; height: 16px;
  background: #22C55E; border-radius: 60% 40% 55% 45%;
  transform: rotate(-32deg); opacity: .9;
}
.word-col { display: flex; flex-direction: column; gap: 6px; }
.word-3d {
  font-size: 46px; font-weight: 900; color: #22C55E; letter-spacing: 4px;
  text-shadow: 1px 1px 0 #1DB457, 2px 2px 0 #19A24E, 3px 3px 0 #158F44,
    4px 4px 0 #127C3B, 5px 5px 0 #106A33, 7px 8px 14px rgba(0, 0, 0, .18);
  animation: wordIn .8s cubic-bezier(.2, 1.4, .4, 1) both;
}
.word-col:nth-child(2) .word-3d { animation-delay: .12s; }
.word-3d:nth-child(2) { animation-delay: .2s; }
.word-3d:nth-child(3) { animation-delay: .28s; }
.word-3d:nth-child(4) { animation-delay: .36s; }
@keyframes wordIn { from { opacity: 0; transform: translateY(26px) scale(.8); } to { opacity: 1; transform: none; } }

.splash-tiles { position: relative; width: 320px; height: 200px; }
.tile {
  position: absolute; width: 78px; height: 78px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 19px; font-weight: 700; letter-spacing: 2px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .14), inset 0 -6px 0 rgba(0, 0, 0, .08), inset 0 4px 0 rgba(255, 255, 255, .25);
  animation: tileFloat 3.2s ease-in-out infinite;
}
.tile.t-green { background: linear-gradient(145deg, #34D16B, #1FA855); left: 30px; top: 20px; transform: rotate(-8deg); }
.tile.t-orange { background: linear-gradient(145deg, #FFB23E, #F08C0A); left: 130px; top: 90px; transform: rotate(6deg); animation-delay: .5s; }
.tile.t-blue { background: linear-gradient(145deg, #5AA9FF, #2B7FE0); left: 226px; top: 10px; transform: rotate(10deg); animation-delay: 1s; }
.tile.t-cyan { background: linear-gradient(145deg, #4ED6C3, #23AE9C); left: 92px; top: -34px; transform: rotate(-14deg); animation-delay: 1.5s; }
.tile-deco { position: absolute; border-radius: 16px; opacity: .45; animation: tileFloat 4s ease-in-out infinite; }
.tile-deco.d1 { width: 46px; height: 46px; background: #FDEBD0; left: -6px; top: 110px; }
.tile-deco.d2 { width: 38px; height: 38px; background: #D6E9FF; left: 190px; top: -26px; animation-delay: .8s; }
.tile-deco.d3 { width: 30px; height: 30px; background: #D9F5E3; left: 268px; top: 108px; animation-delay: 1.4s; }
@keyframes tileFloat { 0%, 100% { margin-top: 0; } 50% { margin-top: -12px; } }

.splash-logo { position: absolute; bottom: 7%; display: flex; align-items: center; gap: 10px; }
.splash-logo img { width: 46px; height: 46px; }
.splash-logo b { font-size: 25px; font-weight: 900; letter-spacing: 1px; }
.splash-logo b sup { font-size: 12px; font-weight: 400; }

/* ============================================================
   登录页
   ============================================================ */
.login-page {
  min-height: 100vh; background: linear-gradient(160deg, #4CAF50, #43A047 55%, #388E3C);
  display: flex; align-items: flex-start; justify-content: center; padding: 15vh 20px 40px;
}
.login-card {
  background: #fff; border-radius: var(--radius-l); width: 100%; max-width: 400px;
  padding: 52px 26px 26px; position: relative; text-align: center;
  box-shadow: var(--shadow-3); animation: cardUp .5s cubic-bezier(.2, 1.2, .4, 1) both;
}
@keyframes cardUp { from { opacity: 0; transform: translateY(36px); } to { opacity: 1; transform: none; } }
.login-avatar {
  position: absolute; top: -42px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 84px; border-radius: 50%; background: #fff;
  box-shadow: var(--shadow-2); display: flex; align-items: center; justify-content: center;
}
.login-avatar img { width: 68px; height: 68px; }
.login-card h1 { font-size: 26px; font-weight: 900; }
.login-card h1 sup { font-size: 12px; font-weight: 400; }
.login-card .lg-slogan { color: var(--gray); font-size: 13px; margin: 6px 0 26px; letter-spacing: 3px; }
.login-btn-main {
  width: 100%; height: 48px; border-radius: 10px; background: var(--green); color: #fff;
  font-size: 16px; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 6px 16px rgba(7, 193, 96, .35); margin-bottom: 14px;
}
.login-btn-sub {
  width: 100%; height: 48px; border-radius: 10px; background: #fff; color: var(--text);
  font-size: 16px; border: 1.5px solid #DDD; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.login-form { margin-top: 18px; text-align: left; animation: cardUp .3s both; }
.login-form .lf-row {
  display: flex; align-items: center; gap: 10px; background: #F5F6F8;
  border-radius: 10px; padding: 0 14px; height: 46px; margin-bottom: 12px;
}
.login-form .lf-row input { flex: 1; font-size: 15px; }
.login-form .lf-code-btn { color: var(--green); font-size: 13px; font-weight: 600; white-space: nowrap; }
.login-form .lf-submit {
  width: 100%; height: 46px; border-radius: 10px; background: var(--green); color: #fff;
  font-size: 16px; font-weight: 600; box-shadow: 0 6px 16px rgba(7, 193, 96, .35);
}
.login-agree { margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12px; color: var(--gray); flex-wrap: wrap; }
.login-agree .agree-dot {
  width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid #CCC; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center; transition: all .15s;
}
.login-agree .agree-dot.on { background: var(--green); border-color: var(--green); }
.login-agree .agree-dot.on::after { content: "✓"; color: #fff; font-size: 10px; }
.login-agree a { color: var(--green); }

/* ============================================================
   首页
   ============================================================ */
.home-hero {
  background: linear-gradient(180deg, #FF3B30 0%, #FF6B6B 62%, rgba(255, 107, 107, 0) 100%);
  padding: 14px 14px 26px; border-radius: 0 0 24px 24px;
}
.home-brand { display: flex; align-items: center; gap: 8px; color: #fff; margin-bottom: 12px; }
.home-brand .b-name { font-size: 23px; font-weight: 900; letter-spacing: 1px; text-shadow: 0 2px 6px rgba(0, 0, 0, .15); }
.home-brand .b-sub { font-size: 11px; opacity: .92; border-left: 1px solid rgba(255, 255, 255, .5); padding-left: 8px; }
.home-brand .b-ai {
  background: #D8F8E4; color: #111; font-size: 10px; font-weight: 700;
  border-radius: 6px; padding: 2px 6px; margin-left: 2px;
}
.home-loc-row { display: flex; align-items: center; gap: 8px; }
.home-loc { color: #fff; font-size: 14px; font-weight: 600; white-space: nowrap; display: flex; align-items: center; gap: 2px; }
.home-search {
  flex: 1; display: flex; align-items: center; background: #fff; border-radius: 20px;
  height: 36px; padding: 0 6px 0 12px; box-shadow: var(--shadow-1);
}
.home-search .s-ico { color: var(--gray); margin-right: 6px; font-size: 14px; }
.home-search input { flex: 1; font-size: 13px; min-width: 0; }
.home-search .s-btn {
  background: linear-gradient(135deg, #FF5147, #F0312A); color: #fff; font-size: 13px;
  border-radius: 16px; padding: 6px 15px; font-weight: 600; flex-shrink: 0;
}

/* banner 轮播 */
.banner-wrap { margin: -14px 14px 0; position: relative; }
.banner-track { border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-2); }
.banner-slide { position: relative; cursor: pointer; }
.banner-slide img { width: 100%; aspect-ratio: 3.4 / 1; object-fit: cover; }
.banner-slide .bs-text { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); }
.banner-slide .bs-title { font-size: 19px; font-weight: 900; color: #17324D; }
.banner-slide .bs-sub { font-size: 11px; color: #3D5A76; margin-top: 3px; }
.banner-dots { position: absolute; bottom: 8px; left: 0; right: 0; display: flex; justify-content: center; gap: 5px; }
.banner-dots i { width: 5px; height: 5px; border-radius: 3px; background: rgba(255, 255, 255, .65); transition: all .25s; }
.banner-dots i.on { width: 14px; background: #fff; }
.banner-anim-enter-active, .banner-anim-leave-active { transition: opacity .5s ease; }
.banner-anim-enter-from, .banner-anim-leave-to { opacity: 0; }
.banner-anim-leave-active { position: absolute; inset: 0; }

/* 会员专享横滑 */
.member-strip { margin: 14px 0 0; }
.strip-title { display: flex; align-items: baseline; gap: 8px; padding: 0 14px 10px; }
.strip-title b { font-size: 17px; font-weight: 800; }
.strip-title span { font-size: 11px; color: var(--gray); }
.member-scroll { display: flex; gap: 10px; overflow-x: auto; padding: 2px 14px 8px; scrollbar-width: none; }
.member-scroll::-webkit-scrollbar { display: none; }
.m-card {
  flex: 0 0 132px; background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-1); position: relative; cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.m-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.m-card .mc-img { position: relative; }
.m-card .mc-img img { width: 100%; aspect-ratio: 1.15; object-fit: cover; }
.mc-corner {
  position: absolute; top: 0; left: 0; background: linear-gradient(135deg, #FF416C, #FF2D55);
  color: #fff; font-size: 10px; padding: 3px 8px 3px 6px; border-radius: 0 0 10px 0; font-weight: 600;
}
.mc-blue {
  position: absolute; top: 6px; right: 6px; background: var(--blue); color: #fff;
  font-size: 10px; border-radius: 6px; padding: 2px 6px; font-weight: 700;
}
.m-card .mc-body { padding: 8px 9px 10px; }
.m-card .mc-name { font-size: 12.5px; font-weight: 600; }
.m-card .mc-note { font-size: 10px; color: var(--pink); margin-top: 2px; }
.mc-price-row { display: flex; align-items: baseline; gap: 5px; margin-top: 4px; }
.mc-price { color: var(--price); font-weight: 800; font-size: 15px; }
.mc-price::first-letter { font-size: 11px; }
.mc-orig { color: var(--gray); font-size: 10.5px; text-decoration: line-through; }
.mc-btn {
  position: absolute; right: 0; bottom: 0; background: linear-gradient(135deg, #FF5147, #F0312A);
  color: #fff; font-size: 10px; padding: 4px 9px 4px 11px; font-weight: 600;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%); border-radius: 6px 0 0 0;
}

/* 服务宫格 */
.grid-card { background: #fff; border-radius: var(--radius); margin: 12px 14px 0; padding: 16px 6px 12px; box-shadow: var(--shadow-1); }
.svc-grid { display: grid; grid-template-columns: repeat(5, 1fr); row-gap: 16px; }
.svc-cell { display: flex; flex-direction: column; align-items: center; gap: 6px; cursor: pointer; position: relative; }
.svc-cell:active { opacity: .7; }
.svc-ico {
  width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 22px; box-shadow: inset 0 -3px 6px rgba(0, 0, 0, .06), 0 3px 8px rgba(0, 0, 0, .08);
}
.svc-cell.small .svc-ico { width: 40px; height: 40px; font-size: 19px; border-radius: 13px; }
.svc-cell .sc-name { font-size: 11.5px; color: var(--text); }
.svc-badge {
  position: absolute; top: -6px; right: 2px; background: linear-gradient(135deg, #FF5147, #F0312A);
  color: #fff; font-size: 8.5px; border-radius: 8px 8px 8px 2px; padding: 2px 5px; font-weight: 600;
  box-shadow: 0 2px 6px rgba(255, 59, 48, .4); white-space: nowrap;
}

/* 红包浮标 */
.rp-float { position: fixed; right: 10px; bottom: 148px; z-index: 700; width: 74px; cursor: pointer; animation: rpShake 2.6s ease-in-out infinite; }
@keyframes rpShake { 0%, 88%, 100% { transform: rotate(0); } 91% { transform: rotate(-7deg); } 94% { transform: rotate(6deg); } 97% { transform: rotate(-3deg); } }
.rp-float .rp-body {
  background: linear-gradient(160deg, #FF5A45, #E2231A); border-radius: 14px; padding: 8px 4px 7px;
  text-align: center; color: #FFE9A8; box-shadow: 0 8px 18px rgba(226, 35, 26, .4);
  border: 1.5px solid #FFC46B;
}
.rp-float .rp-amt { font-size: 16px; font-weight: 900; color: #FFE9A8; }
.rp-float .rp-txt { font-size: 9.5px; color: #fff; margin-top: 1px; }
.rp-float .rp-close {
  position: absolute; top: -7px; right: -6px; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(0, 0, 0, .55); color: #fff; font-size: 10px; display: flex; align-items: center; justify-content: center;
}
.rp-float img { width: 30px; margin: 0 auto 2px; }
@media (min-width: 768px) { .rp-float { right: 36px; bottom: 90px; } }

/* 三入口卡 */
.entry-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 12px 14px 0; }
.entry-card {
  background: #fff; border-radius: var(--radius); padding: 12px 8px; display: flex; align-items: center; gap: 6px;
  box-shadow: var(--shadow-1); cursor: pointer; transition: transform .15s, box-shadow .15s; min-width: 0;
}
.entry-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.entry-card .ec-ico { width: 33px; height: 33px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.entry-card .ec-name { font-size: 12px; font-weight: 700; white-space: nowrap; }
.entry-card .ec-name i { font-style: normal; font-size: 9px; color: var(--gray); font-weight: 400; }
.entry-card .ec-sub { font-size: 9.5px; color: var(--gray); white-space: nowrap; }

/* 热门服务 + 活动专区 */
.dual-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 12px 14px 0; align-items: stretch; }
.dual-card { background: #fff; border-radius: var(--radius); padding: 12px 10px; box-shadow: var(--shadow-1); min-width: 0; }
.dual-head { display: flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.dual-head b { font-size: 15px; font-weight: 800; }
.dual-head .dh-tag { background: var(--red-soft); color: var(--price); font-size: 9.5px; border-radius: 9px; padding: 2px 7px; font-weight: 600; }
.dual-head .dh-more { margin-left: auto; color: var(--gray); font-size: 12px; }
.hot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hot-item { cursor: pointer; }
.hot-item:active { opacity: .75; }
.hot-item img { width: 100%; aspect-ratio: 1.18; object-fit: cover; border-radius: 9px; }
.hot-item .hi-name { font-size: 11px; font-weight: 600; margin-top: 4px; }
.hot-price-row { display: flex; align-items: center; gap: 4px; margin-top: 1px; flex-wrap: wrap; }
.hot-price { color: var(--price); font-size: 13px; font-weight: 800; }
.hot-orig { color: var(--gray); font-size: 9.5px; text-decoration: line-through; }
.hot-tag {
  font-size: 8.5px; color: #fff; background: linear-gradient(135deg, #FF5147, #F0312A);
  padding: 1.5px 6px 1.5px 8px; font-weight: 600; clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}
.hot-tag.gray { background: #9AA0A6; clip-path: none; border-radius: 4px; }
.act-item {
  display: flex; align-items: center; gap: 8px; background: linear-gradient(120deg, #F4F9FF, #EAF4FF);
  border-radius: 10px; padding: 10px 8px; margin-bottom: 8px;
}
.act-item.a2 { background: linear-gradient(120deg, #FFF6F0, #FFEEE3); margin-bottom: 0; }
.act-item .ai-emoji { font-size: 26px; flex-shrink: 0; }
.act-item .ai-name { font-size: 11.5px; font-weight: 700; }
.act-item .ai-sub { font-size: 9.5px; color: var(--gray); margin: 2px 0 5px; }
.act-item .ai-btn {
  font-size: 10px; color: #fff; background: var(--blue); border-radius: 10px; padding: 3px 9px; font-weight: 600;
}
.act-item.a2 .ai-btn { background: linear-gradient(135deg, #FF5147, #F0312A); }

/* 内容流 */
.feed-card { margin: 14px 14px 0; }
.feed-tabs { display: flex; gap: 20px; overflow-x: auto; padding: 4px 6px 0; scrollbar-width: none; background: var(--bg); position: sticky; top: 0; z-index: 50; border-radius: 8px; }
.feed-tabs::-webkit-scrollbar { display: none; }
.feed-tab { font-size: 14.5px; color: var(--text-2); padding: 8px 0 10px; white-space: nowrap; cursor: pointer; position: relative; flex-shrink: 0; }
.feed-tab.active { font-size: 16.5px; font-weight: 800; color: var(--text); }
.feed-tab.active::after {
  content: ""; position: absolute; left: 50%; bottom: 4px; transform: translateX(-50%);
  width: 20px; height: 4px; border-radius: 3px; background: var(--green);
}
.waterfall { columns: 2; column-gap: 10px; margin-top: 10px; }
.wf-item { break-inside: avoid; margin-bottom: 10px; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-1); }
.wf-img { position: relative; }
.wf-img img { width: 100%; }
.wf-img .wf-label {
  position: absolute; left: 0; bottom: 0; background: rgba(0, 0, 0, .55); color: #fff;
  font-size: 10px; padding: 3px 9px; border-radius: 0 8px 0 0;
}
.wf-cover { height: 110px; display: flex; align-items: center; justify-content: center; font-size: 46px; }
.wf-body { padding: 9px 10px 11px; }
.wf-title { font-size: 13px; font-weight: 700; }
.wf-text { font-size: 12px; color: var(--text-2); margin-top: 4px; }
.wf-user { display: flex; align-items: center; gap: 6px; margin-top: 8px; }
.wf-avatar { width: 20px; height: 20px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.wf-avatar img { width: 100%; height: 100%; }
.wf-user span { font-size: 10.5px; color: var(--gray); }
.wf-stars { color: #FFC300; font-size: 10px; letter-spacing: 1px; }

/* 话题卡 */
.topic-card .tc-tag { color: var(--green); font-weight: 700; font-size: 13px; }
.topic-card .tc-title { font-size: 16px; font-weight: 900; margin: 2px 0 8px; }
.topic-row { display: flex; align-items: center; gap: 9px; padding: 7px 0; border-top: 1px dashed var(--line); cursor: pointer; }
.topic-row img { width: 44px; height: 44px; border-radius: 9px; object-fit: cover; flex-shrink: 0; }
.topic-row .tr-name { font-size: 12.5px; font-weight: 600; }
.topic-row .tr-tag { font-size: 10.5px; color: var(--green); margin-top: 2px; }

/* 次卡促销 */
.cardpromo-banner {
  background: linear-gradient(120deg, #0FA958, #07C160 60%, #3ED598); border-radius: var(--radius) var(--radius) 0 0;
  padding: 14px 14px 12px; color: #fff; position: relative; overflow: hidden;
}
.cardpromo-banner .cp-hot { font-size: 13px; font-weight: 700; }
.cardpromo-banner .cp-low { font-size: 17px; font-weight: 900; color: #FF5147; text-shadow: 0 1px 0 #fff, 0 0 8px rgba(255, 255, 255, .7); }
.cardpromo-banner .cp-name { font-size: 21px; font-weight: 900; color: #FF3B30; text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff; }
.cardpromo-banner .cp-lock { display: inline-block; background: #7B4B1D; color: #FFE3B3; font-size: 10px; border-radius: 10px; padding: 2px 9px; margin-top: 5px; }
.cardpromo-banner .cp-note { font-size: 9.5px; opacity: .92; margin-top: 5px; }
.cardpromo-banner img { position: absolute; right: 10px; bottom: 6px; width: 56px; }
.cardpromo-row { display: flex; align-items: center; gap: 9px; padding: 9px 10px; border-top: 1px solid #F4F4F4; }
.cardpromo-row img { width: 52px; height: 36px; border-radius: 7px; object-fit: cover; flex-shrink: 0; }
.cardpromo-row .cr-name { flex: 1; font-size: 12px; font-weight: 600; }
.cardpromo-row .cr-price { color: var(--price); font-weight: 800; font-size: 14px; }
.cardpromo-row .cr-orig { color: var(--gray); font-size: 10px; text-decoration: line-through; margin-left: 4px; }
.cardpromo-more {
  display: block; margin: 8px auto 12px; border: 1px solid #DDD; color: var(--gray);
  font-size: 11px; border-radius: 14px; padding: 5px 18px;
}

/* 漫画 banner */
.comic-card .cc-art {
  background: linear-gradient(120deg, #FFF3D6, #FFE7B0); padding: 16px 14px; position: relative; min-height: 84px;
}
.comic-card .cc-runner { font-size: 34px; letter-spacing: 4px; }
.comic-card .cc-b1, .comic-card .cc-b2 { position: absolute; background: #1A1A1A; color: #fff; font-size: 11px; padding: 3px 9px; border-radius: 5px; font-weight: 700; }
.comic-card .cc-b1 { top: 10px; left: 12px; }
.comic-card .cc-b2 { bottom: 10px; right: 12px; }
.comic-card .cc-title { padding: 10px 12px 13px; font-size: 13.5px; font-weight: 700; }

/* 加载更多 / 回顶 */
.load-more { display: block; margin: 14px auto; color: var(--gray); font-size: 12px; border: 1px solid #DDD; padding: 7px 22px; border-radius: 18px; background: #fff; }
.back-top {
  position: fixed; left: 12px; bottom: 148px; z-index: 700; width: 40px; height: 40px; border-radius: 50%;
  background: var(--green); color: #fff; font-size: 17px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(7, 193, 96, .4);
}
@media (min-width: 768px) { .back-top { left: auto; right: 36px; bottom: 36px; width: 46px; height: 46px; } }

/* ============================================================
   首页弹窗
   ============================================================ */
.mask { position: fixed; inset: 0; background: rgba(0, 0, 0, .6); z-index: 1500; display: flex; align-items: center; justify-content: center; padding: 30px; }
.pop-member { width: 100%; max-width: 340px; position: relative; }
.pm-card {
  border-radius: 22px; padding: 3px; background: linear-gradient(150deg, #FF2D78, #FF7A00);
  box-shadow: var(--shadow-3);
}
.pm-inner { background: linear-gradient(180deg, #FFF5F7, #FFFFFF 40%); border-radius: 20px; padding: 34px 16px 44px; position: relative; }
.pm-crown {
  position: absolute; top: -21px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #FF2D78, #FF7A00); color: #FFE9A8; font-weight: 900; font-size: 16px;
  padding: 7px 22px; border-radius: 20px; white-space: nowrap; letter-spacing: 1px;
  box-shadow: 0 6px 14px rgba(255, 45, 120, .4); text-shadow: 0 1px 2px rgba(0, 0, 0, .25);
}
.pm-gem { position: absolute; top: 8px; right: 14px; font-size: 22px; }
.pm-label { display: inline-block; background: linear-gradient(135deg, #FF5147, #F0312A); color: #fff; font-size: 11px; font-weight: 700; border-radius: 5px; padding: 2px 8px; margin-bottom: 8px; }
.pm-coupons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.pm-coupon { background: var(--red-soft); border-radius: 10px; text-align: center; padding: 9px 2px 7px; }
.pm-coupon .pc-amt { color: #F0312A; font-size: 19px; font-weight: 900; }
.pm-coupon .pc-amt i { font-style: normal; font-size: 11px; }
.pm-coupon .pc-txt { color: #E0503C; font-size: 9px; margin-top: 2px; }
.pm-ac { display: flex; align-items: center; gap: 10px; background: #FFF; border: 1px solid #FFE1E1; border-radius: 12px; padding: 8px 10px; }
.pm-ac .pa-t1 { font-size: 13px; font-weight: 800; }
.pm-ac .pa-t2 { font-size: 12px; margin-top: 2px; }
.pm-ac .pa-t2 b { color: #F0312A; font-size: 16px; }
.pm-ac img { width: 74px; height: 54px; border-radius: 8px; object-fit: cover; margin-left: auto; }
.pm-cta {
  position: absolute; left: 50%; bottom: -24px; transform: translateX(-50%);
  width: 58%; height: 48px; border-radius: 24px; color: #fff; font-size: 17px; font-weight: 800;
  background: linear-gradient(135deg, #FF416C, #FF4B2B); box-shadow: 0 10px 22px rgba(255, 65, 108, .5);
  letter-spacing: 2px;
}
.pop-close {
  position: absolute; left: 50%; bottom: -72px; transform: translateX(-50%);
  width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, .85);
  background: rgba(0, 0, 0, .35); color: #fff; font-size: 16px;
}

/* 加小管家弹窗 */
.pop-steward { width: 100%; max-width: 330px; position: relative; }
.ps-card {
  background: #fff; border: 2.5px solid var(--blue); border-radius: 22px; padding: 40px 20px 18px;
  position: relative; text-align: center; box-shadow: var(--shadow-3);
}
.ps-gift { position: absolute; top: -34px; left: 50%; transform: translateX(-50%); width: 68px; filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .2)); }
.ps-title { font-size: 24px; font-weight: 900; }
.ps-title .b { color: var(--blue); text-shadow: 1px 1px 0 #BFE0FF; }
.ps-title .o { color: #FF5A2D; text-shadow: 1px 1px 0 #FFD9C7; }
.ps-pill {
  display: inline-block; background: linear-gradient(135deg, #FFE082, #FFD54F); border-radius: 16px;
  padding: 5px 16px; font-size: 13px; font-weight: 700; color: #2B6CB0; margin: 10px 0 14px;
  box-shadow: 0 3px 8px rgba(255, 213, 79, .5);
}
.ps-pill b { color: #F0312A; }
.ps-qr { width: 168px; height: 168px; margin: 0 auto; border: 1px solid var(--line); border-radius: 12px; padding: 10px; background: #fff; }
.ps-qr img { width: 100%; height: 100%; object-fit: contain; }
.ps-hint { color: #F0312A; font-weight: 800; font-size: 15px; margin-top: 12px; letter-spacing: 1px; }

/* ============================================================
   全部服务页
   ============================================================ */
.cats-hero { background: linear-gradient(160deg, #FFF3E8, #FFE9DD); padding: 12px 14px 0; }
.cats-top { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.cats-loc { font-size: 14px; font-weight: 700; white-space: nowrap; }
.cats-search {
  flex: 1; display: flex; align-items: center; gap: 6px; background: #fff; border: 1.5px solid var(--green);
  border-radius: 20px; height: 34px; padding: 0 14px;
}
.cats-search .s-ico { color: var(--green); font-size: 13px; }
.cats-search input { flex: 1; font-size: 13px; min-width: 0; }
.cats-row { display: flex; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.cats-row::-webkit-scrollbar { display: none; }
.cat-tab { flex: 1; min-width: 68px; display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 6px 2px 10px; cursor: pointer; }
.cat-tab .ct-ico { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 21px; box-shadow: var(--shadow-1); }
.cat-tab .ct-name { font-size: 11.5px; color: var(--text-2); padding: 2px 8px; border-radius: 11px; white-space: nowrap; transition: all .15s; }
.cat-tab.active .ct-name { background: var(--green); color: #fff; font-weight: 700; box-shadow: 0 3px 8px rgba(7, 193, 96, .35); }

.cats-body { display: flex; align-items: flex-start; }
.cats-side { width: 25%; flex-shrink: 0; background: #F7F8FA; min-height: 60vh; }
.cats-side .cs-item {
  padding: 14px 6px; text-align: center; font-size: 12.5px; color: var(--text-2); cursor: pointer;
  border-left: 3px solid transparent; transition: all .12s;
}
.cats-side .cs-item.active { background: #fff; color: var(--green); font-weight: 700; border-left-color: var(--green); }
.cats-main { flex: 1; padding: 12px 10px 20px; min-width: 0; }
.cats-sec-title { display: flex; align-items: center; gap: 7px; font-size: 15px; font-weight: 800; margin: 2px 2px 12px; }
.cats-sec-title::before { content: ""; width: 4px; height: 15px; border-radius: 2px; background: var(--green); }
.cats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.cats-cell { cursor: pointer; text-align: center; }
.cats-cell:active { opacity: .75; }
.cats-cell img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 11px; box-shadow: var(--shadow-1); }
.cats-cell .cc-emoji { width: 100%; aspect-ratio: 1; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 34px; }
.cats-cell .cc-name { font-size: 11.5px; margin-top: 5px; font-weight: 600; }
.cats-cell .cc-price { font-size: 10.5px; color: var(--price); font-weight: 700; }
.cats-up { text-align: center; color: var(--gray); font-size: 11px; padding: 18px 0 8px; }
.cart-fab {
  position: fixed; right: 14px; bottom: 130px; z-index: 700; width: 48px; height: 48px; border-radius: 50%;
  background: #fff; border: 2px solid var(--green); color: var(--green); font-size: 20px;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-2);
}
.cart-fab .cf-badge {
  position: absolute; top: -4px; right: -4px; min-width: 17px; height: 17px; border-radius: 9px;
  background: var(--red); color: #fff; font-size: 9.5px; display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
@media (min-width: 768px) { .cart-fab { right: 40px; bottom: 60px; } }

/* ============================================================
   服务详情页
   ============================================================ */
.subnav {
  position: sticky; top: 0; z-index: 600; background: #fff; display: flex; align-items: center;
  height: 46px; padding: 0 10px; border-bottom: 1px solid var(--line);
}
.subnav .sn-back { font-size: 19px; color: var(--text); padding: 4px 10px; }
.subnav .sn-title { flex: 1; text-align: center; font-size: 16px; font-weight: 700; }
.subnav .sn-right { width: 38px; text-align: right; font-size: 16px; color: var(--text-2); }
@media (min-width: 768px) { .subnav { top: var(--header-h); } }

.detail-hero { position: relative; background: #DCEEF7; }
.detail-hero img.dh-img { width: 100%; aspect-ratio: 1.6; object-fit: cover; }
.dh-overlay { position: absolute; left: 16px; bottom: 16px; }
.dh-logo { background: var(--blue); color: #fff; font-size: 11px; font-weight: 800; border-radius: 5px; padding: 2px 7px; display: inline-block; margin-bottom: 7px; }
.dh-title { font-size: 24px; font-weight: 900; text-shadow: 0 2px 8px rgba(255, 255, 255, .8); }
.dh-badges { display: flex; gap: 7px; margin-top: 8px; }
.dh-badge { background: var(--blue); color: #fff; font-size: 11px; border-radius: 11px; padding: 3px 10px; font-weight: 600; box-shadow: 0 3px 8px rgba(43, 140, 255, .35); }
.blue-strip {
  background: linear-gradient(90deg, #2B8CFF, #5AA9FF); color: #fff; display: flex; align-items: center;
  justify-content: center; gap: 10px; padding: 10px; font-size: 14px; font-weight: 700; letter-spacing: 3px;
}
.blue-strip .bs-page { background: rgba(255, 255, 255, .92); color: var(--blue); border-radius: 9px; font-size: 10.5px; padding: 1px 8px; letter-spacing: 0; margin-left: auto; position: absolute; right: 14px; }
.blue-strip { position: relative; }

.buy-panel { background: #fff; border-radius: 0 0 var(--radius-l) var(--radius-l); padding: 16px 14px 14px; box-shadow: var(--shadow-1); }
.buy-panel .bp-title { font-size: 16px; font-weight: 800; margin-bottom: 12px; }
.spec-scroll { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
.spec-scroll::-webkit-scrollbar { display: none; }
.spec-card {
  flex: 0 0 auto; display: flex; align-items: center; gap: 8px; border: 1.5px solid #E5E5E5; border-radius: 12px;
  padding: 8px 12px 8px 8px; cursor: pointer; position: relative; background: #fff; transition: all .15s; min-width: 150px;
}
.spec-card img { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; }
.spec-card .sp-name { font-size: 12.5px; font-weight: 600; }
.spec-card .sp-price { font-size: 11px; color: var(--price); font-weight: 700; }
.spec-card.active { border-color: var(--green); background: var(--green-light); box-shadow: 0 3px 10px rgba(7, 193, 96, .15); }
.spec-card .sp-check {
  position: absolute; right: -1px; bottom: -1px; width: 20px; height: 20px; background: var(--green);
  color: #fff; font-size: 10px; display: none; align-items: center; justify-content: center;
  border-radius: 10px 0 10px 0;
}
.spec-card.active .sp-check { display: flex; }
.spec-more { flex: 0 0 auto; align-self: center; color: var(--gray); font-size: 12px; padding: 0 4px; white-space: nowrap; }

.price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 12px; }
.price-big { color: var(--price); font-size: 30px; font-weight: 900; }
.price-big i { font-style: normal; font-size: 15px; }
.price-unit { color: var(--gray); font-size: 13px; }
.price-orig { color: var(--gray); font-size: 12.5px; text-decoration: line-through; }
.member-banner {
  margin-top: 12px; background: linear-gradient(90deg, #FF5A45, #F0312A); border-radius: 12px;
  display: flex; align-items: center; gap: 8px; padding: 10px 12px; color: #fff;
}
.member-banner .mb-ico { font-size: 19px; }
.member-banner .mb-txt { flex: 1; font-size: 12.5px; }
.member-banner .mb-txt b { color: #FFE9A8; }
.member-banner .mb-btn { background: #fff; color: #F0312A; font-size: 11px; font-weight: 800; border-radius: 12px; padding: 4px 11px; flex-shrink: 0; }
.served-line { margin-top: 10px; color: #F0312A; font-size: 11.5px; }
.info-row { display: flex; align-items: center; gap: 8px; padding: 13px 2px 0; font-size: 13px; }
.info-row + .info-row { border-top: 1px solid #F5F5F5; margin-top: 12px; }
.info-row .ir-ico { font-size: 16px; }
.info-row .ir-main { flex: 1; min-width: 0; }
.info-row .ir-main b { font-size: 13.5px; margin-right: 6px; }
.info-row .ir-main span { color: var(--gray); font-size: 12px; }
.info-row .ir-arrow { color: #CCC; }

/* 锚点 Tab */
.anchor-tabs { position: sticky; z-index: 500; background: #fff; display: flex; border-bottom: 1px solid var(--line); top: 46px; }
@media (min-width: 768px) { .anchor-tabs { top: calc(var(--header-h) + 46px); } }
.anchor-tab { flex: 1; text-align: center; padding: 12px 0; font-size: 14px; color: var(--text-2); cursor: pointer; position: relative; }
.anchor-tab.active { color: var(--green); font-weight: 800; }
.anchor-tab.active::after { content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 24px; height: 3.5px; border-radius: 2px; background: var(--green); }

/* 富详情区块 */
.rich { padding: 14px; }
.rich-sec { scroll-margin-top: 110px; }
.hazard-card { background: var(--blue-light); border-radius: var(--radius-l); padding: 20px 16px; position: relative; overflow: hidden; }
.hazard-card .hz-title { font-size: 19px; font-weight: 900; }
.hazard-card .hz-title b { color: var(--blue); }
.hazard-card .hz-sub { color: var(--text-2); font-size: 12px; margin-top: 4px; }
.hazard-card .hz-bubbles { display: flex; gap: 10px; margin: 14px 0 4px; }
.hz-bubble { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; background: rgba(255, 255, 255, .75); box-shadow: var(--shadow-1); }
.hazard-list { background: #fff; border-radius: var(--radius); margin-top: 12px; padding: 6px 14px; box-shadow: var(--shadow-1); }
.hazard-item { display: flex; gap: 9px; padding: 11px 0; font-size: 13px; border-bottom: 1px dashed var(--line); align-items: flex-start; }
.hazard-item:last-child { border-bottom: none; }
.hazard-item .hi-no { color: #F0312A; flex-shrink: 0; }
.wave { text-align: center; color: var(--blue); font-size: 15px; letter-spacing: 6px; margin: 14px 0 4px; opacity: .7; }
.rich-h2 { font-size: 18px; font-weight: 900; text-align: center; margin: 14px 0 2px; }
.rich-h2 b { color: var(--blue); }
.rich-h2 .h2-line { display: block; width: 42px; height: 5px; border-radius: 3px; background: linear-gradient(90deg, #2B8CFF, #8FC6FF); margin: 7px auto 0; }
.rich-sub { text-align: center; color: var(--gray); font-size: 12px; margin-top: 5px; }
.sp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.sp-cell { background: linear-gradient(150deg, #F4F9FF, #EAF4FF); border-radius: var(--radius); padding: 14px 12px; display: flex; gap: 10px; align-items: center; }
.sp-cell .sp-emoji { font-size: 25px; flex-shrink: 0; }
.sp-cell .sp-t { font-size: 13.5px; font-weight: 800; }
.sp-cell .sp-d { font-size: 10.5px; color: var(--text-2); margin-top: 2px; }
.step-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-1); padding: 14px; margin-top: 10px; display: flex; gap: 12px; align-items: center; position: relative; }
.step-card .st-no {
  position: absolute; top: -1px; left: 12px; background: var(--blue); color: #fff; font-size: 10.5px;
  font-weight: 700; padding: 2px 9px; border-radius: 0 0 8px 8px;
}
.step-card .st-body { flex: 1; padding-top: 10px; }
.step-card .st-title { font-size: 15px; font-weight: 800; }
.step-card .st-desc { font-size: 12px; color: var(--text-2); margin-top: 3px; }
.step-card .st-img { width: 84px; height: 84px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 38px; }
.svc-table { border-radius: var(--radius); overflow: hidden; margin-top: 14px; box-shadow: var(--shadow-1); background: #fff; }
.svc-table .st-head { background: var(--blue); color: #fff; display: flex; font-weight: 700; font-size: 13.5px; }
.svc-table .st-head span { flex: 1; padding: 11px 12px; text-align: center; }
.svc-table .st-row { display: flex; border-top: 1px solid #F0F0F0; font-size: 12.5px; }
.svc-table .st-row .c1 { flex: 0 0 88px; padding: 11px 10px; color: var(--text-2); background: #FAFCFF; font-weight: 600; }
.svc-table .st-row .c2 { flex: 1; padding: 11px 12px; }
.proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
.proc-cell { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-1); overflow: hidden; position: relative; }
.proc-cell .prc-img { height: 74px; display: flex; align-items: center; justify-content: center; font-size: 34px; }
.proc-cell .prc-no {
  position: absolute; top: 6px; left: 6px; width: 19px; height: 19px; border-radius: 50%;
  background: var(--blue); color: #fff; font-size: 10.5px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.proc-cell .prc-name { text-align: center; font-size: 12px; font-weight: 700; padding: 8px 2px 10px; }
.tip-list { margin-top: 12px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-1); padding: 6px 14px; }
.tip-item { display: flex; gap: 10px; padding: 11px 0; font-size: 12.5px; border-bottom: 1px dashed var(--line); align-items: flex-start; }
.tip-item:last-child { border-bottom: none; }
.tip-item .tp-no {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--blue); color: #fff;
  font-size: 10.5px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.notice-blue-title { font-size: 21px; font-weight: 900; color: var(--blue); margin: 10px 0 4px; }
.dash-sep { border-top: 1.5px dashed #D8D8D8; margin: 12px 0; }
.notice-sub { font-size: 15px; font-weight: 800; margin: 10px 0 6px; }
.notice-dot-item { display: flex; gap: 8px; font-size: 13px; padding: 4px 0; align-items: flex-start; }
.notice-dot-item::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--text); margin-top: 7px; flex-shrink: 0; }
.notice-ol { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-1); padding: 6px 14px; margin-top: 10px; }
.notice-ol .no-item { display: flex; gap: 9px; padding: 11px 0; font-size: 13px; border-bottom: 1px dashed var(--line); align-items: flex-start; }
.notice-ol .no-item:last-child { border-bottom: none; }
.notice-ol .no-n { color: var(--text); font-weight: 700; flex-shrink: 0; }
.accordion { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-1); margin-top: 12px; overflow: hidden; }
.acc-item + .acc-item { border-top: 1px dashed var(--line); }
.acc-head { display: flex; align-items: center; gap: 8px; padding: 14px; cursor: pointer; font-size: 13.5px; font-weight: 700; }
.acc-head .ac-arrow { margin-left: auto; color: var(--gray); transition: transform .2s; flex-shrink: 0; }
.acc-item.open .ac-arrow { transform: rotate(180deg); }
.acc-body { padding: 0 14px 14px; font-size: 12.5px; color: var(--text-2); }
.supplement { background: #FFF7EC; border-radius: var(--radius); padding: 14px; margin-top: 14px; }
.supplement .sp-title { color: #E6432E; font-weight: 800; font-size: 14px; margin-bottom: 8px; }
.supplement .sp-item { color: #E6432E; font-size: 12.5px; display: flex; gap: 8px; padding: 4px 0; align-items: flex-start; }
.faq-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-1); padding: 14px; margin-top: 10px; }
.faq-card .fq-q { font-size: 13.5px; font-weight: 800; display: flex; gap: 6px; }
.faq-card .fq-q i { font-style: normal; color: var(--blue); }
.faq-card .fq-a { font-size: 12.5px; color: var(--text-2); margin-top: 7px; display: flex; gap: 6px; }
.faq-card .fq-a i { font-style: normal; color: var(--gray); flex-shrink: 0; }
.review-head { display: flex; align-items: baseline; margin: 6px 0 10px; }
.review-head b { font-size: 17px; font-weight: 900; }
.review-head span { margin-left: auto; color: var(--gray); font-size: 12px; }
.review-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.review-tag { background: #F2F3F5; color: var(--text-2); font-size: 11.5px; border-radius: 14px; padding: 5px 12px; }
.review-tag b { color: var(--text); font-weight: 700; }
.review-item { display: flex; gap: 10px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-1); padding: 13px; margin-bottom: 10px; }
.review-item .rv-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--blue-light); flex-shrink: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.review-item .rv-avatar img { width: 100%; height: 100%; }
.review-item .rv-main { flex: 1; min-width: 0; }
.review-item .rv-top { display: flex; align-items: baseline; gap: 8px; }
.review-item .rv-phone { font-size: 13.5px; font-weight: 700; }
.review-item .rv-city { font-size: 11px; color: var(--gray); }
.review-item .rv-time { margin-left: auto; font-size: 10.5px; color: var(--gray); white-space: nowrap; }
.review-item .rv-stars { color: #FFC300; font-size: 12px; letter-spacing: 2px; margin-top: 3px; }
.review-item .rv-content { font-size: 12.5px; color: var(--text-2); margin-top: 5px; }
.review-all { display: block; text-align: center; color: var(--gray); font-size: 12.5px; padding: 14px 0 4px; }
.brand-footer { text-align: center; color: #C0C4CC; font-size: 12.5px; padding: 22px 0 90px; line-height: 1.9; }
@media (min-width: 768px) { .brand-footer { padding-bottom: 40px; } }

/* 详情吸底操作栏 */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 800; background: #fff;
  display: flex; align-items: center; gap: 10px; padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line); box-shadow: 0 -4px 16px rgba(0, 0, 0, .05);
}
.ab-ico { display: flex; flex-direction: column; align-items: center; font-size: 10px; color: var(--text-2); gap: 1px; width: 44px; position: relative; flex-shrink: 0; }
.ab-ico .ai-e { font-size: 20px; }
.ab-ico .ab-badge {
  position: absolute; top: -4px; right: 2px; min-width: 15px; height: 15px; border-radius: 8px;
  background: var(--red); color: #fff; font-size: 9px; display: flex; align-items: center; justify-content: center; padding: 0 3px;
}
.ab-cart { flex: 1; height: 44px; border-radius: 22px; background: var(--green-light); color: var(--green); font-size: 15px; font-weight: 700; }
.ab-buy { flex: 1.4; height: 44px; border-radius: 22px; background: var(--green); color: #fff; font-size: 15px; font-weight: 700; box-shadow: 0 6px 14px rgba(7, 193, 96, .35); }
@media (min-width: 768px) {
  .action-bar { left: 50%; transform: translateX(-50%); max-width: 1200px; border-radius: 18px 18px 0 0; }
}

/* 详情 PC 双栏 */
@media (min-width: 768px) {
  .detail-top { display: grid; grid-template-columns: 1.05fr 1fr; gap: 20px; padding: 20px 24px 0; max-width: 1200px; margin: 0 auto; align-items: start; }
  .detail-left { position: sticky; top: calc(var(--header-h) + 20px); }
  .detail-hero { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-2); }
  .detail-hero img.dh-img { aspect-ratio: 1.25; }
  .buy-panel { border-radius: var(--radius-l); }
  .blue-strip-wrap { max-width: 1200px; margin: 16px auto 0; padding: 0 24px; }
  .detail-top .blue-strip-wrap { margin: 12px 0 0; padding: 0; max-width: none; }
  .blue-strip { border-radius: 12px; padding-right: 60px; }
  .rich { max-width: 1200px; margin: 0 auto; padding: 14px 24px; }
}

/* ============================================================
   选择城市页
   ============================================================ */
.city-page { background: #fff; min-height: 100vh; }
.city-search-row { display: flex; align-items: center; gap: 10px; padding: 10px 14px; }
.city-search { flex: 1; display: flex; align-items: center; gap: 7px; background: #F5F5F5; border-radius: 18px; height: 36px; padding: 0 14px; }
.city-search .s-ico { color: var(--gray); }
.city-search input { flex: 1; font-size: 13.5px; min-width: 0; }
.city-cancel { color: var(--green); font-size: 14.5px; flex-shrink: 0; }
.city-sec { padding: 12px 14px 4px; }
.city-sec-title { color: var(--gray); font-size: 12.5px; margin-bottom: 10px; }
.city-now { display: flex; align-items: center; gap: 7px; padding: 4px 0 10px; }
.city-now .cn-ico { color: var(--green); font-size: 17px; }
.city-now b { font-size: 15px; }
.city-now .cn-re { margin-left: auto; color: var(--green); font-size: 12.5px; }
.hot-city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.hot-city { background: #F5F5F5; border-radius: 9px; text-align: center; padding: 9px 2px; font-size: 13px; cursor: pointer; transition: background .12s; }
.hot-city:active { background: #EBEBEB; }
.city-group-title { color: var(--gray); font-size: 12.5px; padding: 12px 14px 6px; background: #FAFAFA; }
.city-cell { padding: 13px 14px; font-size: 14.5px; border-bottom: 1px solid #F4F4F4; cursor: pointer; }
.city-cell:active { background: #F8F8F8; }
.city-index { position: fixed; right: 2px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; z-index: 100; padding: 6px 4px; }
.city-index span { font-size: 10.5px; color: var(--gray); padding: 1.5px 5px; cursor: pointer; text-align: center; }
.city-index span:active { color: var(--green); font-weight: 700; }

/* ============================================================
   占位页（待其它代理补全）
   ============================================================ */
.stub-page { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 24px; text-align: center; }
.stub-page .st-emoji { font-size: 52px; margin-bottom: 14px; }
.stub-page h2 { font-size: 19px; margin-bottom: 8px; }
.stub-page p { color: var(--gray); font-size: 13px; max-width: 320px; }
.stub-page .st-btn { margin-top: 20px; background: var(--green); color: #fff; border-radius: 22px; padding: 10px 30px; font-size: 14px; font-weight: 700; box-shadow: 0 6px 14px rgba(7, 193, 96, .3); }

/* ============================================================
   PC 端首页/全部服务 多列增强
   ============================================================ */
@media (min-width: 768px) {
  .home-hero { border-radius: 0 0 28px 28px; padding: 26px 0 40px; }
  .home-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .home-brand .b-name { font-size: 28px; }
  .home-search { height: 42px; border-radius: 22px; }
  .banner-wrap { margin: -24px auto 0; max-width: 1200px; padding: 0 24px; }
  .banner-slide img { aspect-ratio: 4.2 / 1; }
  .banner-slide .bs-title { font-size: 26px; }
  .banner-slide .bs-sub { font-size: 13px; }
  .member-strip, .grid-card, .entry-row, .dual-row, .feed-card { margin-left: auto; margin-right: auto; max-width: 1200px; }
  .member-strip { margin-top: 22px; }
  .grid-card, .entry-row, .dual-row, .feed-card { margin-top: 18px; }
  .member-scroll { display: grid; grid-template-columns: repeat(4, 1fr); overflow: visible; padding: 2px 0 8px; }
  .m-card { flex: none; }
  .svc-grid { grid-template-columns: repeat(5, 1fr); row-gap: 22px; }
  .svc-ico { width: 56px; height: 56px; font-size: 27px; }
  .hot-grid { grid-template-columns: 1fr 1fr; }
  .waterfall { columns: 4; column-gap: 14px; }
  .cats-hero { border-radius: 0 0 24px 24px; padding-bottom: 8px; }
  .cats-hero-inner, .cats-body { max-width: 1200px; margin: 0 auto; }
  .cats-body { padding: 0 24px; }
  .cats-side { width: 180px; border-radius: var(--radius); margin-top: 12px; min-height: 0; }
  .cats-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .cats-main { padding: 16px 0 30px 20px; }
  .hot-city-grid { grid-template-columns: repeat(6, 1fr); }
  .city-page { max-width: 860px; margin: 0 auto; }
}

/* 页面切换过渡 */
.page-enter-active { transition: opacity .22s ease, transform .22s ease; }
.page-enter-from { opacity: 0; transform: translateY(10px); }

/* 移动端：为固定底栏预留空间 */
@media (max-width: 767.9px) {
  .page { padding-bottom: 62px; }
  .city-page { padding-bottom: 0; }
}
/* PC 细节修正 */
@media (min-width: 768px) {
  .city-page { padding-top: var(--header-h); }
  .rich-sec { scroll-margin-top: 200px; }
}

/* ============================================================
   通用：模拟支付弹层 / 吸底会员开通栏 / 飘带标题
   ============================================================ */
.pay-sheet {
  background: #fff; border-radius: 20px; width: 100%; max-width: 360px;
  padding: 22px 18px 16px; text-align: center; box-shadow: var(--shadow-3);
  animation: cardUp .3s cubic-bezier(.2, 1.2, .4, 1) both;
}
.psh-title { font-size: 15px; font-weight: 700; color: var(--text-2); }
.psh-amount { font-size: 36px; font-weight: 900; margin: 8px 0 16px; }
.psh-amount i { font-style: normal; font-size: 18px; margin-right: 2px; }
.psh-method {
  display: flex; align-items: center; gap: 10px; padding: 12px 12px;
  border: 1.5px solid var(--line); border-radius: 12px; margin-bottom: 10px; cursor: pointer;
}
.psh-method.on { border-color: var(--green); background: var(--green-light); }
.psh-method .pm-ico { font-size: 20px; }
.psh-method .pm-name { flex: 1; text-align: left; font-size: 14px; font-weight: 600; }
.psh-method .pm-check { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid #DDD; font-size: 11px; color: #fff; display: flex; align-items: center; justify-content: center; }
.psh-method.on .pm-check { background: var(--green); border-color: var(--green); }
.psh-btn {
  width: 100%; height: 46px; border-radius: 23px; margin-top: 6px;
  background: var(--green); color: #fff; font-size: 16px; font-weight: 700;
  box-shadow: 0 6px 16px rgba(7, 193, 96, .35);
}
.psh-cancel { margin-top: 12px; color: var(--gray); font-size: 13px; }

.member-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 800;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 32%);
}
.member-cta .mcta-bubble {
  position: absolute; right: 18px; top: -22px; background: #1A1A1A; color: #fff;
  font-size: 11px; border-radius: 12px 12px 2px 12px; padding: 6px 11px;
  box-shadow: var(--shadow-2); white-space: nowrap;
}
.member-cta .mcta-bubble b { color: #FFD54F; }
.member-cta .mcta-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; height: 50px; border-radius: 25px; color: #fff; font-size: 16px; font-weight: 800;
  background: linear-gradient(135deg, #FF9500, #FF7A00);
  box-shadow: 0 10px 22px rgba(255, 122, 0, .45); letter-spacing: 1px;
}
.member-cta .mcta-btn b { font-size: 19px; }
.member-cta .mcta-btn s { font-size: 12px; opacity: .75; font-weight: 400; }
.member-cta .mcta-btn.is-member { background: linear-gradient(135deg, #3A3A3F, #1F1F23); font-size: 14px; letter-spacing: 0; }
@media (min-width: 768px) {
  .member-cta { left: 50%; transform: translateX(-50%); max-width: 560px; }
}

.ribbon {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 18px auto 12px; width: fit-content; position: relative;
  background: linear-gradient(180deg, #FFF7E0, #FFF3D6); color: #1A1A1A;
  font-size: 16px; padding: 8px 30px; border-radius: 4px;
  box-shadow: 0 3px 8px rgba(240, 140, 10, .15);
}
.ribbon b { font-weight: 900; letter-spacing: 2px; }
.ribbon span { color: #F0312A; font-weight: 700; font-size: 13px; }
.ribbon::before, .ribbon::after {
  content: ""; position: absolute; top: 50%; width: 4px; height: 4px; border-radius: 50%;
  background: #F08C0A; box-shadow: 0 -8px 0 #F08C0A, 0 8px 0 #F08C0A;
}
.ribbon::before { left: 12px; transform: translateY(-50%); }
.ribbon::after { right: 12px; transform: translateY(-50%); }
.ribbon.orange { background: linear-gradient(120deg, #FFE7C2, #FFD9A0); color: #C2500A; }
.ribbon.orange b { color: #D4380D; text-shadow: 1px 1px 0 #fff; }

/* ============================================================
   灯火大会员活动页
   ============================================================ */
.member-page { background: linear-gradient(180deg, #E6005C 0%, #FF2D78 30%, #FFF0F4 60%, #F7F8FA 100%); }
.mem-wrap { padding-bottom: 10px; }
.mem-hero {
  position: relative; padding: 26px 16px 20px; color: #fff; overflow: hidden;
}
.mem-hero .mh-rule {
  position: absolute; top: 12px; right: 14px; z-index: 2;
  background: rgba(0, 0, 0, .3); color: #fff; font-size: 11px; border-radius: 12px; padding: 4px 12px;
}
.mh-title { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.mh-t1 {
  font-size: 38px; font-weight: 900; letter-spacing: 2px; color: #2B0A1A;
  text-shadow: 2px 2px 0 #FF9EC4, 4px 4px 0 rgba(0, 0, 0, .12);
  -webkit-text-stroke: 1px rgba(255, 255, 255, .55);
}
.mh-t2 { font-size: 30px; font-weight: 900; color: #2B0A1A; letter-spacing: 1px; text-shadow: 2px 2px 0 #FF9EC4; }
.mh-t2 i {
  font-style: normal; color: #fff; font-size: 38px; padding: 0 6px;
  text-shadow: 2px 2px 0 #D1004F, -1px -1px 0 #D1004F, 1px -1px 0 #D1004F, -1px 1px 0 #D1004F;
}
.mh-tags { display: flex; gap: 8px; margin-top: 12px; }
.mh-tag { font-size: 12px; font-weight: 700; border-radius: 6px; padding: 4px 12px; }
.mh-tag.orange { background: linear-gradient(135deg, #FF9500, #FF7A00); color: #fff; }
.mh-tag.white { background: #fff; color: #E6005C; }
.mh-time { margin-top: 10px; font-size: 12px; opacity: .92; }
.mh-box { position: absolute; right: 12px; bottom: 10px; width: 92px; filter: drop-shadow(0 8px 12px rgba(0, 0, 0, .25)); }

.flash-card {
  background: linear-gradient(180deg, #FFF7E0, #FFF3D6); border-radius: var(--radius-l);
  margin: 0 12px; padding: 14px 12px 12px; box-shadow: var(--shadow-2);
}
.flash-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.fh-title { font-size: 16px; font-weight: 900; color: #D4380D; }
.fh-count { display: flex; align-items: center; gap: 3px; margin-top: 6px; font-size: 12px; color: #7A4A12; }
.fc-block {
  background: #fff; color: #F0312A; font-weight: 800; font-size: 13px;
  border-radius: 5px; padding: 2px 5px; box-shadow: var(--shadow-1); font-variant-numeric: tabular-nums;
}
.fh-sub {
  background: linear-gradient(135deg, #FF5147, #F0312A); color: #fff; font-size: 11px; font-weight: 700;
  border-radius: 16px; padding: 7px 12px; white-space: nowrap; box-shadow: 0 4px 10px rgba(240, 49, 42, .35);
}
.flash-scroll { display: flex; gap: 10px; overflow-x: auto; padding: 12px 2px 4px; scrollbar-width: none; }
.flash-scroll::-webkit-scrollbar { display: none; }
.flash-item {
  flex: 0 0 128px; background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-1); position: relative; cursor: pointer; padding-bottom: 34px;
}
.fi-img { position: relative; }
.fi-img img { width: 100%; aspect-ratio: 1.15; object-fit: cover; }
.fi-corner {
  position: absolute; top: 0; left: 0; background: linear-gradient(135deg, #FF416C, #FF2D55);
  color: #fff; font-size: 9.5px; padding: 2px 7px 2px 5px; border-radius: 0 0 9px 0; font-weight: 700;
}
.fi-blue {
  position: absolute; top: 6px; right: 6px; background: var(--blue); color: #fff;
  font-size: 10px; border-radius: 6px; padding: 2px 6px; font-weight: 700;
}
.fi-name { font-size: 12px; font-weight: 700; padding: 7px 8px 0; }
.fi-price { display: flex; align-items: baseline; gap: 5px; padding: 3px 8px 0; }
.fi-price s { color: var(--gray); font-size: 10px; }
.fi-price b { color: var(--price); font-size: 16px; }
.fi-progress { height: 5px; border-radius: 3px; background: #F3E3D3; margin: 6px 8px 0; overflow: hidden; }
.fi-progress i { display: block; height: 100%; border-radius: 3px; background: linear-gradient(90deg, #FF9500, #FF5147); }
.fi-left { font-size: 9.5px; color: #B3541E; padding: 3px 8px 0; }
.fi-btn {
  position: absolute; right: 0; bottom: 0; background: linear-gradient(135deg, #FF9500, #FF7A00);
  color: #fff; font-size: 12px; font-weight: 800; padding: 7px 14px; border-radius: 12px 0 0 0;
  box-shadow: 0 4px 10px rgba(255, 122, 0, .4);
}
.flash-addr {
  width: 100%; margin-top: 12px; height: 42px; border-radius: 21px;
  background: linear-gradient(135deg, #FF9500, #FF7A00); color: #fff; font-size: 14px; font-weight: 700;
  box-shadow: 0 6px 14px rgba(255, 122, 0, .35);
}

.coupon22 { margin: 4px 12px 0; }
.c22-body {
  position: relative; display: flex; align-items: center; gap: 16px;
  background: linear-gradient(120deg, #FF5147, #E2231A); border-radius: var(--radius);
  padding: 18px 18px; color: #fff; overflow: hidden;
}
.c22-body::before, .c22-body::after {
  content: ""; position: absolute; top: 50%; width: 22px; height: 22px; border-radius: 50%;
  background: #FFF0F4; transform: translateY(-50%);
}
.c22-body::before { left: -11px; }
.c22-body::after { right: -11px; }
.c22-amt { font-size: 42px; font-weight: 900; text-shadow: 0 3px 6px rgba(0, 0, 0, .18); }
.c22-amt i { font-style: normal; font-size: 16px; margin-left: 2px; }
.c22-mid { flex: 1; border-left: 1.5px dashed rgba(255, 255, 255, .5); padding-left: 16px; }
.c22-mid b { font-size: 16px; display: block; }
.c22-mid span { font-size: 11px; opacity: .9; }
.c22-tag {
  position: absolute; top: 0; right: 14px; background: linear-gradient(135deg, #FFD54F, #FFC300);
  color: #7A3B00; font-size: 10px; font-weight: 800; border-radius: 0 0 8px 8px; padding: 3px 8px;
}
.c22-btn {
  display: block; margin: 12px auto 0; width: 62%; height: 42px; border-radius: 21px;
  background: linear-gradient(135deg, #FF9500, #FF7A00); color: #fff; font-size: 15px; font-weight: 800;
  box-shadow: 0 8px 18px rgba(255, 122, 0, .4);
}

.welfare-card {
  background: linear-gradient(180deg, #FFF7E0, #FFF3D6); border-radius: var(--radius-l);
  margin: 14px 12px 0; padding: 14px 12px; box-shadow: var(--shadow-1);
}
.wf-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.wf-head b { font-size: 16px; font-weight: 900; color: #D4380D; }
.wf-head .wf-sub {
  background: #fff; color: #F0312A; font-size: 11px; border-radius: 13px; padding: 4px 11px;
  border: 1px solid #FFD3D3; cursor: pointer;
}
.wf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.wf-coupon {
  background: #fff; border-radius: 10px; text-align: center; padding: 10px 2px 9px; position: relative;
  box-shadow: var(--shadow-1);
}
.wf-coupon::before, .wf-coupon::after {
  content: ""; position: absolute; top: 55%; width: 10px; height: 10px; border-radius: 50%; background: #FFF3D6;
}
.wf-coupon::before { left: -5px; }
.wf-coupon::after { right: -5px; }
.wc-amt { color: #F0312A; font-size: 19px; font-weight: 900; }
.wc-cond { font-size: 9.5px; color: var(--text-2); margin-top: 2px; }
.wc-type { font-size: 8.5px; color: var(--gray); }
.wc-btn {
  margin-top: 7px; background: linear-gradient(135deg, #FF5147, #F0312A); color: #fff;
  font-size: 10px; font-weight: 700; border-radius: 11px; padding: 3px 13px;
}

.install-tabs {
  display: flex; gap: 8px; background: rgba(255, 243, 214, .9); border-radius: 24px;
  margin: 16px 12px 0; padding: 5px;
}
.install-tabs span {
  flex: 1; text-align: center; padding: 9px 0; border-radius: 19px;
  font-size: 14px; font-weight: 700; color: #E6005C; cursor: pointer; transition: all .18s;
}
.install-tabs span.active {
  background: linear-gradient(135deg, #E6005C, #FF2D78); color: #fff;
  box-shadow: 0 5px 12px rgba(230, 0, 92, .35);
}
.msvc-list { margin: 10px 12px 0; display: flex; flex-direction: column; gap: 10px; }
.msvc-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-1);
  display: flex; align-items: center; gap: 12px; padding: 12px;
}
.msvc-card img { width: 76px; height: 76px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.msvc-card img.round { border-radius: 50%; }
.msvc-main { flex: 1; min-width: 0; }
.msvc-name { font-size: 15px; font-weight: 800; }
.msvc-served { font-size: 11px; color: var(--gray); margin-top: 3px; }
.msvc-price { font-size: 11px; color: var(--text-2); margin-top: 5px; background: #FFF3E8; border-radius: 7px; padding: 4px 8px; display: inline-block; }
.msvc-price s { color: var(--gray); }
.msvc-price b { color: var(--price); font-size: 16px; }
.msvc-price2 { margin-top: 6px; color: var(--text-2); font-size: 11px; }
.msvc-price2 b { color: var(--price); font-size: 19px; font-weight: 900; }
.msvc-price2 b.zero { font-size: 16px; }
.msvc-btn {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 12px;
  background: linear-gradient(135deg, #FF9500, #FF7A00); color: #fff;
  font-size: 12px; font-weight: 800; line-height: 1.35;
  box-shadow: 0 5px 12px rgba(255, 122, 0, .35);
}

.prize-card {
  background: linear-gradient(180deg, #FFF7E8, #FFEFD2); border: 1.5px solid #FFC46B;
  border-radius: var(--radius-l); margin: 4px 12px 0; padding: 14px 12px;
}
.prize-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.prize-cell {
  background: #fff; border-radius: 10px; text-align: center; padding: 16px 4px 9px;
  position: relative; box-shadow: var(--shadow-1);
}
.pz-qty {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  background: #1A1A1A; color: #fff; font-size: 9px; border-radius: 9px; padding: 2px 9px; white-space: nowrap;
}
.pz-emoji { font-size: 34px; display: block; }
.pz-name { font-size: 10.5px; color: var(--text-2); display: block; margin-top: 5px; line-height: 1.3; min-height: 27px; }
.lottery-steps { margin-top: 16px; }
.ls-title { text-align: center; font-size: 16px; font-weight: 900; }
.ls-title b { color: #F0312A; }
.ls-row { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.ls-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; position: relative; }
.ls-no {
  width: 19px; height: 19px; border-radius: 50%; background: linear-gradient(135deg, #FF9500, #FF7A00);
  color: #fff; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.ls-ico { font-size: 30px; }
.ls-ico img { width: 34px; height: 34px; }
.ls-txt { font-size: 10.5px; color: var(--text-2); text-align: center; }
.ls-arrow { color: #F08C0A; font-size: 13px; flex-shrink: 0; }
.lottery-tip { margin-top: 14px; font-size: 10.5px; color: var(--gray); line-height: 1.7; }
.more-svc {
  display: block; margin: 18px auto 0; background: linear-gradient(135deg, #FFD54F, #FFC300);
  color: #B3541E; font-size: 14px; font-weight: 800; border-radius: 22px; padding: 11px 30px;
  box-shadow: 0 6px 14px rgba(255, 195, 0, .4);
}
.rule-pop {
  background: #fff; border-radius: var(--radius-l); width: 100%; max-width: 340px;
  padding: 22px 18px 16px; box-shadow: var(--shadow-3);
}
.rule-pop .rp-title { font-size: 17px; font-weight: 900; text-align: center; }
.rule-pop .rp-body { font-size: 13px; color: var(--text-2); line-height: 2; margin: 12px 0 16px; }
.rule-pop .rp-btn {
  width: 100%; height: 42px; border-radius: 21px; background: linear-gradient(135deg, #FF9500, #FF7A00);
  color: #fff; font-size: 15px; font-weight: 700;
}

/* ============================================================
   寄修也靠谱活动页
   ============================================================ */
.mail-page { background: #F7F8FA; }
.mail-hero {
  position: relative; overflow: hidden; padding: 30px 16px 24px;
  background: linear-gradient(160deg, #FF9500, #FFB84D); border-radius: 0 0 24px 24px;
}
.ml-art {
  font-size: 42px; font-weight: 900; letter-spacing: 3px; color: #fff;
  background: linear-gradient(180deg, #FFF7E0, #FFD54F);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(2px 3px 0 rgba(180, 83, 9, .55));
}
.ml-pill {
  display: inline-block; margin-top: 14px; background: rgba(214, 90, 0, .85); color: #fff;
  font-size: 12px; font-weight: 600; border-radius: 16px; padding: 6px 14px;
}
.ml-badge {
  display: inline-block; margin-left: 8px; background: #fff; color: #D65A00;
  font-size: 11px; font-weight: 800; border-radius: 16px; padding: 6px 12px;
  box-shadow: 0 4px 10px rgba(180, 83, 9, .25);
}
.ml-gift { position: absolute; right: 66px; bottom: 12px; width: 60px; transform: rotate(-8deg); }
.ml-treasure { position: absolute; right: 8px; bottom: 18px; width: 66px; transform: rotate(6deg); }
.mail-pack {
  background: #fff; border-radius: var(--radius-l); margin: 14px 12px 0; padding: 16px 12px;
  box-shadow: var(--shadow-1);
}
.mp-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 14px; }
.mp-head b { font-size: 16px; font-weight: 900; color: #F0312A; }
.mp-head b span { font-size: 24px; margin: 0 2px; }
.mp-head .mp-sub {
  background: var(--red-soft); color: #F0312A; font-size: 11px; font-weight: 700;
  border-radius: 13px; padding: 5px 11px; cursor: pointer; white-space: nowrap;
}
.mp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mp-coupon {
  text-align: center; padding: 10px 4px; border-right: 1.5px dashed var(--line);
}
.mp-coupon:last-child { border-right: none; }
.mpc-amt { color: #F0312A; font-size: 24px; font-weight: 900; }
.mpc-cond { font-size: 11px; color: var(--text-2); margin-top: 2px; }
.mpc-type { font-size: 10px; color: var(--gray); margin-bottom: 8px; }
.mpc-btn {
  background: linear-gradient(135deg, #FF5147, #F0312A); color: #fff; font-size: 11px;
  font-weight: 700; border-radius: 13px; padding: 4px 16px;
}
.mail-bar {
  background: linear-gradient(135deg, #FF5147, #E2231A); color: #fff; text-align: center;
  font-size: 15px; font-weight: 800; letter-spacing: 3px; border-radius: 12px;
  margin: 14px 12px 0; padding: 11px 0; box-shadow: 0 6px 14px rgba(226, 35, 26, .3);
}
.mail-product {
  background: #fff; border-radius: var(--radius); margin: 10px 12px 0; padding: 12px;
  display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-1); position: relative; cursor: pointer;
}
.mail-product img { width: 82px; height: 82px; border-radius: 10px; object-fit: cover; }
.mpr-main { flex: 1; }
.mpr-name { font-size: 15px; font-weight: 800; }
.mpr-served { font-size: 11px; color: var(--gray); margin-top: 4px; }
.mpr-price { color: var(--price); font-size: 21px; font-weight: 900; margin-top: 5px; }
.mpr-btn {
  position: absolute; right: 0; bottom: 0; background: linear-gradient(135deg, #FF9500, #FF7A00);
  color: #fff; font-size: 13px; font-weight: 800; padding: 8px 20px; border-radius: 12px 0 0 0;
}

/* ============================================================
   我的（个人中心）
   ============================================================ */
.mine-page { background: #F5F6F8; }
.mine-wrap { padding: 12px 12px 20px; }
.mine-user { display: flex; align-items: center; gap: 12px; padding: 8px 4px 14px; }
.mu-avatar {
  width: 62px; height: 62px; border-radius: 50%; background: #E4E6EA; overflow: hidden;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 2px solid #fff; box-shadow: var(--shadow-1);
}
.mu-avatar img { width: 100%; height: 100%; }
.mu-main { flex: 1; min-width: 0; }
.mu-name { font-size: 20px; font-weight: 800; }
.mu-phone { font-size: 14px; color: var(--text-2); margin-top: 3px; }
.mu-login {
  background: var(--green); color: #fff; font-size: 13px; font-weight: 700;
  border-radius: 18px; padding: 8px 20px; box-shadow: 0 4px 12px rgba(7, 193, 96, .3);
}
.mine-member {
  background: linear-gradient(120deg, #FF5A4D, #F04438 60%, #E03A30); border-radius: 16px;
  padding: 16px 16px 12px; color: #fff; cursor: pointer;
  box-shadow: 0 10px 22px rgba(240, 68, 56, .35);
}
.mm-head { display: flex; align-items: flex-start; justify-content: space-between; }
.mm-title { font-size: 18px; font-weight: 900; color: #FFE9A8; letter-spacing: 1px; }
.mm-title i { font-style: normal; font-size: 14px; }
.mm-sub { font-size: 11px; opacity: .92; margin-top: 4px; }
.mm-head img { width: 64px; margin-top: -4px; }
.mm-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }
.mmb { display: flex; align-items: center; gap: 7px; }
.mmb-ico {
  width: 30px; height: 30px; border-radius: 50%; background: rgba(255, 255, 255, .22);
  display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0;
}
.mmb b { font-size: 12px; display: block; }
.mmb span { font-size: 9px; opacity: .85; display: block; }
.mine-entries {
  background: #fff; border-radius: var(--radius); margin-top: 12px; padding: 16px 8px;
  display: grid; grid-template-columns: repeat(3, 1fr); box-shadow: var(--shadow-1);
}
.me-item {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600; cursor: pointer;
}
.me-item:active { opacity: .7; }
.me-ico {
  width: 44px; height: 44px; border-radius: 14px; display: flex; align-items: center;
  justify-content: center; font-size: 22px; box-shadow: var(--shadow-1);
}
.mine-card { background: #fff; border-radius: var(--radius); margin-top: 12px; padding: 4px 14px 4px; box-shadow: var(--shadow-1); }
.mrow { display: flex; align-items: center; gap: 10px; padding: 14px 0; border-bottom: 1px solid #F5F5F5; cursor: pointer; }
.mrow:last-child { border-bottom: none; }
.mrow:active { opacity: .7; }
.mr-ico { font-size: 18px; width: 26px; text-align: center; flex-shrink: 0; }
.mr-name { flex: 1; font-size: 14.5px; }
.mr-arrow { color: #CCC; font-size: 16px; }
.mr-extra { color: var(--gray); font-size: 12px; }
.toolbox {
  margin-top: 12px; border-radius: var(--radius); padding: 16px; cursor: pointer;
  background: linear-gradient(120deg, #E4F8EC, #D2F2DF 60%, #C6EDD6);
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-1); overflow: hidden; position: relative;
}
.tb-title { font-size: 17px; font-weight: 900; }
.tb-title b { color: var(--green-dark); }
.tb-title i { font-style: normal; color: var(--green-dark); }
.tb-sub { font-size: 11.5px; color: var(--text-2); margin-top: 4px; }
.tb-mascot { font-size: 46px; filter: drop-shadow(0 6px 8px rgba(0, 0, 0, .12)); }

.mine-pop {
  background: #fff; border-radius: var(--radius-l); width: 100%; max-width: 330px;
  padding: 24px 20px 20px; text-align: center; position: relative; box-shadow: var(--shadow-3);
}
.mine-pop .mp-title { font-size: 18px; font-weight: 900; }
.mine-pop .mp-sub { font-size: 12px; color: var(--gray); margin-top: 6px; }
.mp-qr {
  width: 170px; height: 170px; margin: 16px auto 0; border: 1px solid var(--line);
  border-radius: 12px; padding: 10px;
}
.mp-qr img { width: 100%; height: 100%; object-fit: contain; }
.mp-hint { color: #F0312A; font-weight: 800; font-size: 14px; margin-top: 12px; }
.mine-pop .mp-btn {
  margin-top: 16px; width: 100%; height: 44px; border-radius: 22px;
  background: var(--green); color: #fff; font-size: 15px; font-weight: 700;
  box-shadow: 0 6px 14px rgba(7, 193, 96, .3);
}
.cs-phone { font-size: 30px; font-weight: 900; color: var(--green-dark); margin-top: 12px; letter-spacing: 1px; }
.pop-close2 {
  position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; border-radius: 50%;
  background: #F2F3F5; color: var(--gray); font-size: 13px;
}
.tool-pop { text-align: left; }
.tp-tabs { display: flex; gap: 8px; background: #F2F3F5; border-radius: 20px; padding: 4px; margin-bottom: 16px; }
.tp-tabs span {
  flex: 1; text-align: center; padding: 8px 0; border-radius: 16px; font-size: 13px;
  font-weight: 700; color: var(--text-2); cursor: pointer;
}
.tp-tabs span.active { background: #fff; color: var(--green-dark); box-shadow: var(--shadow-1); }
.tp-body { text-align: center; }
.speed-result b { font-size: 44px; font-weight: 900; color: var(--green-dark); }
.speed-result span { font-size: 14px; color: var(--gray); margin-left: 6px; }
.speed-hint { font-size: 13px; color: var(--gray); padding: 18px 0; }
.loan-row {
  display: flex; align-items: center; gap: 10px; background: #F5F6F8; border-radius: 10px;
  padding: 0 12px; height: 44px; margin-bottom: 10px;
}
.loan-row span { font-size: 13px; color: var(--text-2); white-space: nowrap; }
.loan-row input { flex: 1; text-align: right; font-size: 14px; font-weight: 700; min-width: 0; }
.loan-result { margin-top: 14px; background: var(--green-light); border-radius: 12px; padding: 12px; }
.lr-line { font-size: 14px; }
.lr-line b { color: var(--green-dark); font-size: 20px; }
.lr-sub { font-size: 11px; color: var(--text-2); margin-top: 4px; }

/* ============================================================
   订单列表 + 订单详情
   ============================================================ */
.od-tabs {
  display: flex; gap: 4px; overflow-x: auto; background: #fff; padding: 0 10px;
  position: sticky; top: 46px; z-index: 500; border-bottom: 1px solid var(--line); scrollbar-width: none;
}
.od-tabs::-webkit-scrollbar { display: none; }
.od-tabs span {
  flex-shrink: 0; padding: 12px 10px; font-size: 13.5px; color: var(--text-2);
  cursor: pointer; position: relative;
}
.od-tabs span.active { color: var(--green); font-weight: 800; }
.od-tabs span.active::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 22px; height: 3.5px; border-radius: 2px; background: var(--green);
}
@media (min-width: 768px) { .od-tabs { top: calc(var(--header-h) + 46px); } }
.od-list { padding: 12px; display: grid; gap: 12px; }
.od-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-1); padding: 13px 14px; cursor: pointer; transition: transform .15s, box-shadow .15s; }
.od-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.od-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 10px; border-bottom: 1px solid #F5F5F5; }
.od-no { font-size: 11px; color: var(--gray); }
.od-badge { font-size: 11px; font-weight: 700; border-radius: 9px; padding: 3px 10px; }
.od-badge.st-orange { background: #FFF3E8; color: #F07C0A; }
.od-badge.st-blue { background: var(--blue-light); color: var(--blue); }
.od-badge.st-green { background: var(--green-light); color: var(--green-dark); }
.od-badge.st-red { background: var(--red-soft); color: var(--price); }
.od-badge.st-gray { background: #F2F3F5; color: var(--gray); }
.od-body { display: flex; align-items: center; gap: 12px; padding: 12px 0; }
.od-body img, .od-cover { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.od-cover { display: flex; align-items: center; justify-content: center; font-size: 30px; }
.od-main { flex: 1; min-width: 0; }
.od-name { font-size: 15px; font-weight: 800; }
.od-meta { font-size: 11.5px; color: var(--gray); margin-top: 4px; }
.od-meta.green { color: var(--green-dark); font-weight: 600; }
.od-right { flex-shrink: 0; }
.od-price { color: var(--price); font-size: 19px; font-weight: 900; }
.od-price.gray { color: var(--gray); font-size: 12px; font-weight: 400; }
.od-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #F5F5F5; padding-top: 10px; }
.od-time { font-size: 11px; color: var(--gray); }
.od-detail-btn { font-size: 12px; color: var(--green-dark); font-weight: 700; }

.odt-wrap { padding-bottom: 20px; }
.odt-status { padding: 22px 18px; color: #fff; }
.odt-status.st-orange { background: linear-gradient(135deg, #FF9500, #FF7A00); }
.odt-status.st-blue { background: linear-gradient(135deg, #5AA9FF, #2B8CFF); }
.odt-status.st-green { background: linear-gradient(135deg, #34D16B, #07C160); }
.odt-status.st-red { background: linear-gradient(135deg, #FF6B5A, #F0312A); }
.odt-status.st-gray { background: linear-gradient(135deg, #9AA0A6, #6B7078); }
.os-big { font-size: 21px; font-weight: 900; letter-spacing: 1px; }
.os-sub { font-size: 12px; opacity: .92; margin-top: 5px; }
.odt-steps {
  display: flex; background: #fff; padding: 16px 10px; margin: -12px 12px 0;
  border-radius: var(--radius); box-shadow: var(--shadow-1); position: relative; z-index: 2;
}
.odstep { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; position: relative; }
.ods-dot {
  width: 22px; height: 22px; border-radius: 50%; background: #F2F3F5; color: var(--gray);
  font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; z-index: 1;
}
.odstep.done .ods-dot { background: var(--green); color: #fff; }
.odstep.cur .ods-dot { background: var(--green); color: #fff; box-shadow: 0 0 0 4px var(--green-light); }
.ods-name { font-size: 10px; color: var(--gray); white-space: nowrap; }
.odstep.cur .ods-name, .odstep.done .ods-name { color: var(--green-dark); font-weight: 700; }
.ods-line { position: absolute; top: 11px; left: calc(50% + 14px); right: calc(-50% + 14px); height: 2px; background: #EDEFF2; }
.odstep.done .ods-line { background: var(--green); }
.odt-card { background: #fff; border-radius: var(--radius); margin: 12px 12px 0; padding: 14px; box-shadow: var(--shadow-1); }
.oc-title { font-size: 14.5px; font-weight: 800; margin-bottom: 10px; }
.oc-addr { font-size: 14px; }
.oc-addr2 { font-size: 12.5px; color: var(--text-2); margin-top: 4px; }
.oc-line { font-size: 12px; color: var(--gray); margin-top: 8px; }
.oc-svc { display: flex; align-items: center; gap: 12px; cursor: pointer; padding-bottom: 10px; border-bottom: 1px solid #F5F5F5; }
.oc-svc img { width: 58px; height: 58px; border-radius: 10px; object-fit: cover; }
.oc-svc .od-cover { width: 58px; height: 58px; font-size: 26px; }
.oc-svc-main { flex: 1; min-width: 0; }
.oc-name { font-size: 15px; font-weight: 800; }
.oc-mode { font-size: 11px; color: var(--gray); margin-top: 4px; }
.oc-price { color: var(--price); font-size: 18px; font-weight: 900; }
.oc-price.gray { color: var(--gray); font-size: 12px; font-weight: 400; }
.quote-empty { font-size: 12.5px; color: var(--gray); text-align: center; padding: 18px 0 8px; }
.quote-card { border: 1px solid var(--line); border-radius: 12px; padding: 12px; margin-top: 10px; }
.q-head { display: flex; align-items: center; gap: 10px; }
.q-avatar { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; background: var(--blue-light); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.q-avatar img { width: 100%; height: 100%; }
.q-main { flex: 1; min-width: 0; }
.q-name { font-size: 14.5px; font-weight: 800; }
.q-stats { font-size: 11px; color: var(--gray); margin-top: 3px; }
.q-price { color: var(--price); font-size: 20px; font-weight: 900; }
.q-msg { font-size: 12.5px; color: var(--text-2); background: #F7F8FA; border-radius: 9px; padding: 8px 10px; margin-top: 10px; }
.q-btn {
  width: 100%; height: 40px; border-radius: 20px; margin-top: 10px;
  background: var(--green); color: #fff; font-size: 14px; font-weight: 700;
  box-shadow: 0 5px 12px rgba(7, 193, 96, .3);
}
.q-call {
  flex-shrink: 0; border: 1px solid var(--green); color: var(--green-dark);
  font-size: 12px; font-weight: 700; border-radius: 16px; padding: 6px 13px;
}
.sp-bar { height: 8px; border-radius: 4px; background: #F2F3F5; overflow: hidden; }
.sp-bar i { display: block; height: 100%; width: 60%; border-radius: 4px; background: linear-gradient(90deg, #34D16B, #07C160); animation: spMove 1.6s ease-in-out infinite alternate; }
@keyframes spMove { from { width: 45%; } to { width: 75%; } }
.sp-txt { font-size: 12.5px; color: var(--text-2); margin-top: 10px; }
.rv-stars2 { color: #FFC300; font-size: 19px; letter-spacing: 3px; }
.rv-stars2 i { color: #E5E5E5; font-style: normal; }
.rv-text { font-size: 13px; color: var(--text-2); margin-top: 8px; }
.rv-time2 { font-size: 11px; color: var(--gray); margin-top: 8px; }
.rv-stars-pick { display: flex; gap: 8px; justify-content: center; padding: 6px 0 12px; }
.rv-stars-pick span { font-size: 32px; color: #E5E5E5; cursor: pointer; transition: transform .12s; }
.rv-stars-pick span.on { color: #FFC300; text-shadow: 0 2px 6px rgba(255, 195, 0, .4); }
.rv-input {
  width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px;
  font-size: 13px; font-family: inherit; outline: none; resize: none; background: #FAFBFC;
}
.rv-input:focus { border-color: var(--green); }
.odt-actions { display: flex; gap: 10px; padding: 16px 12px 0; }
.oda-btn { flex: 1; height: 46px; border-radius: 23px; font-size: 15px; font-weight: 700; }
.oda-btn.ghost { border: 1.5px solid #DDD; color: var(--text-2); background: #fff; }
.oda-btn.primary { background: var(--green); color: #fff; box-shadow: 0 6px 14px rgba(7, 193, 96, .35); }

/* ============================================================
   购物车
   ============================================================ */
.ck {
  width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid #CCC; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: all .15s;
}
.ck.on { background: var(--green); border-color: var(--green); }
.ck.on::after { content: "✓"; color: #fff; font-size: 11px; font-weight: 700; }
.ck.small { width: 16px; height: 16px; margin-right: 5px; }
.ck.small.on::after { font-size: 9px; }
.cart-list { padding: 12px; display: flex; flex-direction: column; gap: 10px; }
.cart-item {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-1);
  display: flex; align-items: center; gap: 10px; padding: 12px;
}
.cart-item img { width: 66px; height: 66px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.ci-main { flex: 1; min-width: 0; }
.ci-name { font-size: 14.5px; font-weight: 800; }
.ci-spec { font-size: 11.5px; color: var(--gray); margin-top: 3px; }
.ci-price { color: var(--price); font-size: 17px; font-weight: 900; margin-top: 5px; }
.ci-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0; }
.ci-del { font-size: 15px; opacity: .65; }
.stepper { display: flex; align-items: center; gap: 2px; background: #F2F3F5; border-radius: 15px; padding: 2px; }
.stepper button { width: 26px; height: 26px; border-radius: 50%; background: #fff; font-size: 15px; color: var(--text); box-shadow: var(--shadow-1); }
.stepper span { min-width: 26px; text-align: center; font-size: 13px; font-weight: 700; }
.cart-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 800; background: #fff;
  display: flex; align-items: center; gap: 8px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line); box-shadow: 0 -4px 16px rgba(0, 0, 0, .05);
}
.cb-all { font-size: 13px; color: var(--text-2); }
.cb-total { flex: 1; text-align: right; font-size: 13px; }
.cb-total b { color: var(--price); font-size: 19px; font-weight: 900; }
.cb-btn {
  height: 44px; border-radius: 22px; padding: 0 26px; background: var(--green); color: #fff;
  font-size: 15px; font-weight: 700; box-shadow: 0 6px 14px rgba(7, 193, 96, .35);
}
.cb-btn:disabled { background: #CCC; box-shadow: none; }
@media (min-width: 768px) {
  .cart-bar { left: 50%; transform: translateX(-50%); max-width: 1200px; border-radius: 18px 18px 0 0; }
}

/* 地址选择/编辑弹层 */
.addr-sheet {
  background: #fff; border-radius: 20px 20px 0 0; width: 100%; max-width: 520px;
  max-height: 84vh; overflow-y: auto; padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
  align-self: flex-end; box-shadow: var(--shadow-3);
}
.mask:has(.addr-sheet) { align-items: flex-end; padding: 0; }
.as-title { font-size: 16px; font-weight: 800; text-align: center; margin-bottom: 14px; }
.as-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.as-item {
  display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--line);
  border-radius: 12px; padding: 12px; cursor: pointer;
}
.as-item.on { border-color: var(--green); background: var(--green-light); }
.as-main { flex: 1; min-width: 0; font-size: 14px; }
.as-addr { font-size: 12px; color: var(--text-2); margin-top: 3px; }
.as-def { background: var(--green); color: #fff; font-size: 9.5px; border-radius: 8px; padding: 2px 7px; flex-shrink: 0; }
.as-new input {
  width: 100%; background: #F5F6F8; border-radius: 10px; height: 44px;
  padding: 0 12px; font-size: 14px; margin-bottom: 10px; display: block;
}
.as-new-title { color: var(--green-dark); font-size: 13px; font-weight: 700; text-align: center; padding: 4px 0 12px; cursor: pointer; }
.as-default { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-2); padding-bottom: 4px; cursor: pointer; }
.as-note { font-size: 12px; color: var(--text-2); background: #FFF7EC; border-radius: 9px; padding: 8px 10px; margin-top: 6px; }
.as-btn {
  width: 100%; height: 46px; border-radius: 23px; margin-top: 14px;
  background: var(--green); color: #fff; font-size: 15px; font-weight: 700;
  box-shadow: 0 6px 14px rgba(7, 193, 96, .35);
}

/* ============================================================
   地址管理 / 优惠券 / 服务卡 / 钱包 / 子页通用
   ============================================================ */
.sub-page { background: #F5F6F8; min-height: 100vh; }
.addr-list { padding: 12px; display: flex; flex-direction: column; gap: 10px; }
.addr-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-1); padding: 14px; }
.ac-top { cursor: pointer; }
.ac-name { font-size: 14.5px; }
.ac-name .ac-def { margin-left: 8px; }
.ac-addr { font-size: 12.5px; color: var(--text-2); margin-top: 5px; }
.ac-ops { display: flex; align-items: center; gap: 18px; border-top: 1px solid #F5F5F5; margin-top: 12px; padding-top: 10px; }
.ac-op { display: flex; align-items: center; font-size: 12.5px; color: var(--text-2); cursor: pointer; }
.ac-op.on { color: var(--green-dark); }
.ac-op.red { color: var(--price); margin-left: auto; }
.addr-add-wrap { padding: 18px 14px; }
.addr-add {
  width: 100%; height: 46px; border-radius: 23px; background: var(--green); color: #fff;
  font-size: 15px; font-weight: 700; box-shadow: 0 6px 14px rgba(7, 193, 96, .35);
}
.logout-btn {
  width: 100%; height: 46px; border-radius: 23px; background: #fff; color: var(--price);
  font-size: 15px; font-weight: 700; border: 1.5px solid #FFD3D3;
}

.coupon-list { padding: 12px; display: flex; flex-direction: column; gap: 10px; }
.coupon-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-1);
  display: flex; align-items: stretch; overflow: hidden; position: relative;
}
.cc-left {
  flex: 0 0 108px; background: linear-gradient(135deg, #FF6B5A, #F0312A); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 18px 4px;
}
.coupon-card.mine .cc-left { background: linear-gradient(135deg, #9AA0A6, #6B7078); }
.cc-amt { font-size: 30px; font-weight: 900; }
.cc-amt i { font-style: normal; font-size: 14px; }
.cc-cond { font-size: 10px; opacity: .92; margin-top: 2px; }
.cc-div { width: 0; border-left: 1.5px dashed #FFD3D3; margin: 10px 0; position: relative; }
.cc-div::before, .cc-div::after {
  content: ""; position: absolute; left: -7px; width: 13px; height: 13px; border-radius: 50%; background: #F5F6F8;
}
.cc-div::before { top: -17px; }
.cc-div::after { bottom: -17px; }
.cc-main { flex: 1; min-width: 0; padding: 14px 10px 14px 14px; }
.cc-title { font-size: 14px; font-weight: 800; }
.cc-valid { font-size: 11px; color: var(--gray); margin-top: 6px; }
.cc-btn {
  align-self: center; flex-shrink: 0; margin-right: 12px;
  background: linear-gradient(135deg, #FF5147, #F0312A); color: #fff;
  font-size: 12px; font-weight: 700; border-radius: 15px; padding: 7px 16px;
}
.cc-btn.done { background: #F2F3F5; color: var(--gray); }

.card-list { padding: 12px; display: grid; gap: 12px; }
.scard {
  background: linear-gradient(135deg, #2E7CF6, #5AA9FF); border-radius: var(--radius);
  color: #fff; padding: 16px; box-shadow: var(--shadow-2);
}
.scard.mine { background: linear-gradient(135deg, #3A3A3F, #5A5A62); }
.scard .sc-name { font-size: 16px; font-weight: 900; }
.sc-owned { background: rgba(255, 255, 255, .22); font-size: 10px; font-weight: 400; border-radius: 8px; padding: 2px 8px; margin-left: 8px; }
.scard .sc-desc { font-size: 11.5px; opacity: .88; margin-top: 5px; }
.scard .sc-foot { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.scard .sc-price { font-size: 21px; font-weight: 900; }
.scard .sc-price s { font-size: 12px; opacity: .7; margin-left: 5px; font-weight: 400; }
.scard .sc-valid { flex: 1; font-size: 10.5px; opacity: .85; }
.scard .sc-btn {
  background: #fff; color: #2E7CF6; font-size: 12.5px; font-weight: 800;
  border-radius: 15px; padding: 7px 18px;
}
.scard .sc-btn.ghost { background: rgba(255, 255, 255, .18); color: #fff; border: 1px solid rgba(255, 255, 255, .5); }

.wallet-card {
  background: linear-gradient(135deg, #FF9500, #FF7A00); border-radius: var(--radius);
  margin: 12px; padding: 20px 18px; color: #fff; box-shadow: 0 10px 22px rgba(255, 122, 0, .35);
}
.wc-label { font-size: 12px; opacity: .9; }
.wc-balance { font-size: 38px; font-weight: 900; margin-top: 6px; }
.wc-stats { display: flex; gap: 24px; margin-top: 16px; }
.wc-stats b { font-size: 17px; display: block; }
.wc-stats span { font-size: 11px; opacity: .88; }
.sec-title { font-size: 14px; font-weight: 800; padding: 16px 14px 10px; }
.wallet-list { padding: 0 12px; display: flex; flex-direction: column; gap: 10px; }
.wl-item {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-1);
  display: flex; align-items: center; gap: 12px; padding: 13px 14px; cursor: pointer;
}
.wl-main { flex: 1; min-width: 0; }
.wl-name { font-size: 14px; font-weight: 700; }
.wl-time { font-size: 11px; color: var(--gray); margin-top: 3px; }
.wl-right { text-align: right; flex-shrink: 0; }
.wl-amt { color: var(--text); font-size: 15px; font-weight: 800; }
.wl-st { font-size: 10.5px; color: var(--gray); margin-top: 3px; }
.sec-form { padding: 4px 0 10px; }
.sec-form input {
  width: 100%; background: #F5F6F8; border-radius: 10px; height: 44px;
  padding: 0 12px; font-size: 14px; display: block; margin-bottom: 4px;
}
.fb-input {
  width: 100%; border: none; background: #F5F6F8; border-radius: 10px; padding: 12px;
  font-size: 14px; font-family: inherit; outline: none; resize: none;
}
.fb-count { text-align: right; font-size: 11px; color: var(--gray); padding: 4px 2px 0; }

/* ============================================================
   新页面 PC 端适配（≥768px）
   ============================================================ */
@media (min-width: 768px) {
  .mem-wrap, .mail-wrap { max-width: 960px; margin: 0 auto; }
  .mem-hero { border-radius: 0 0 28px 28px; padding: 40px 24px 30px; }
  .flash-scroll { display: grid; grid-template-columns: repeat(4, 1fr); overflow: visible; }
  .flash-item { flex: none; }
  .msvc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .prize-grid { grid-template-columns: repeat(6, 1fr); }
  .mine-wrap { max-width: 860px; margin: 0 auto; }
  .od-list { max-width: 1100px; margin: 0 auto; grid-template-columns: 1fr 1fr; }
  .odt-wrap, .cart-list, .addr-list, .coupon-list, .card-list, .wallet-list { max-width: 860px; margin: 0 auto; }
  .wallet-card { max-width: 836px; margin: 12px auto; }
  .card-list { grid-template-columns: 1fr 1fr; }
  .subnav { max-width: none; }
  .mine-card, .toolbox, .mine-entries { margin-left: auto; margin-right: auto; }
  .sub-page .mine-card { max-width: 832px; }
  .sec-title { max-width: 860px; margin: 0 auto; }
  .addr-add-wrap { max-width: 860px; margin: 0 auto; }
}
