/* 摘下阳光 · 官方网站 · 阳光甄选配色
   主色：取自 logo 的太阳（橙黄渐变）+ 棕色描边 + 生态绿点缀 + 阳光红
*/
:root {
  /* 阳光橙黄 — 主品牌色 */
  --sun: #F7B500;
  --sun-deep: #E5891B;
  --sun-light: #FFD25A;
  --sun-soft: #FFE8B0;

  /* 棕色 — logo 描边 */
  --brown: #6B3410;
  --brown-deep: #4A2208;
  --brown-soft: #8B5A3C;

  /* 生态绿 — 点缀与产品 */
  --eco: #4A8E3C;
  --eco-light: #6BA85E;

  /* 阳光红 — 强调 */
  --warm-red: #D9482A;
  --warm-red-deep: #B7361C;

  /* 中性 */
  --ink: #2A2522;
  --ink-soft: #6E665D;
  --line: rgba(247, 181, 0, .22);
  --line-soft: rgba(247, 181, 0, .12);

  --cream: #FFFBF1;
  --cream-deep: #FFF4DC;
  --white: #ffffff;

  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 8px 24px rgba(213, 140, 30, .10);
  --shadow-lg: 0 18px 40px rgba(213, 140, 30, .18);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", system-ui, sans-serif;
  color: var(--ink); background: var(--white); line-height: 1.7;
}
.container { max-width: 1120px; margin: 0 auto; padding: 0 22px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== 头部 ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 251, 241, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
/* logo 暖阳徽章（圆润饱满） */
.logo {
  display: flex; align-items: center; gap: 12px;
}
.logo-badge {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  height: 50px; padding: 0 14px;
  background:
    radial-gradient(circle at 30% 30%, #FFF6D5 0%, #FFE49A 60%, #FFC857 100%);
  border-radius: 25px;
  box-shadow:
    /* 立体感（无外光晕） */
    0 4px 12px rgba(107, 52, 16, .18),
    inset 0 1px 0 rgba(255, 255, 255, .75),
    inset 0 -2px 4px rgba(229, 137, 27, .18);
  transition: transform .25s, box-shadow .25s;
}
.logo-badge:hover {
  transform: translateY(-1px) rotate(-2deg) scale(1.03);
  box-shadow:
    0 6px 16px rgba(107, 52, 16, .22),
    inset 0 1px 0 rgba(255, 255, 255, .85),
    inset 0 -2px 4px rgba(229, 137, 27, .22);
}
.logo-img {
  height: 40px; width: auto;
  border-radius: 8px;
  filter: drop-shadow(0 2px 4px rgba(107, 52, 16, .25));
}
.logo-text { font-size: 22px; font-weight: 900; letter-spacing: 3px; line-height: 1.1; color: var(--brown); }
.logo-text small { display: block; font-size: 9.5px; letter-spacing: 3px; color: var(--brown-soft); font-weight: 600; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 15px; font-weight: 600; margin-left: auto; }
.main-nav a {
  position: relative; color: var(--ink); transition: color .2s;
}
.main-nav a:hover { color: var(--sun-deep); }
.main-nav a::after {
  content: ""; position: absolute; left: 50%; right: 50%; bottom: -6px; height: 2px;
  background: linear-gradient(90deg, var(--sun), var(--sun-deep));
  border-radius: 2px; transition: .2s; opacity: 0;
}
.main-nav a:hover::after { left: 0; right: 0; opacity: 1; }
.nav-cta {
  padding: 9px 20px; border-radius: 999px; color: #fff !important;
  background: linear-gradient(135deg, var(--sun) 0%, var(--sun-deep) 100%);
  box-shadow: 0 6px 18px rgba(247, 181, 0, .35);
  letter-spacing: 1px;
}
.nav-cta::after { display: none; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(247, 181, 0, .45); }
.nav-toggle { display: none; border: 0; background: none; font-size: 26px; cursor: pointer; color: var(--brown); }
/* 右上角「我的」入口 */
.header-user {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: 999px;
  font-size: 14px; font-weight: 700; color: var(--brown);
  background: rgba(247,181,0,.12); text-decoration: none; white-space: nowrap;
  transition: background .2s, transform .2s;
  margin-left: 16px;
}
.header-user:hover { background: rgba(247,181,0,.22); transform: translateY(-1px); }
.header-user .user-ico { flex-shrink: 0; }
/* 移动端汉堡菜单内显示的「我的」链接 */
.nav-link-user { display: none; }

/* ===== 按钮 ===== */
.btn {
  display: inline-block; padding: 13px 32px; border-radius: 999px;
  font-size: 16px; font-weight: 700; transition: .25s; cursor: pointer; text-align: center;
  letter-spacing: 1px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--sun) 0%, var(--sun-deep) 60%, var(--warm-red) 110%);
  color: #fff; box-shadow: 0 10px 24px rgba(247, 181, 0, .42);
  border: 0;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(247, 181, 0, .55); }
.btn-ghost {
  border: 2px solid rgba(247, 181, 0, .55); color: var(--brown); background: rgba(255, 251, 241, .6);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: var(--sun); border-color: var(--sun); color: #fff; }
.btn-light { background: #fff; color: var(--brown); border: 2px solid transparent; }
.btn-light:hover { border-color: var(--sun); color: var(--sun-deep); transform: translateY(-2px); }
.btn-lg { padding: 15px 40px; font-size: 17px; }
.btn-buy {
  display: block; width: 100%; padding: 11px; border-radius: 12px;
  background: linear-gradient(135deg, var(--sun-soft), var(--sun-light));
  color: var(--brown); font-size: 14px; font-weight: 700;
  border: 0; margin-top: 14px; letter-spacing: 2px;
  transition: .2s;
}
.btn-buy:hover {
  background: linear-gradient(135deg, var(--sun), var(--sun-deep));
  color: #fff; transform: translateY(-1px);
}
.btn-buy:disabled {
  background: #e8e2d6; color: #a89f8d; cursor: not-allowed; transform: none;
}
/* 余量状态：低库存 / 售罄（与小程序展示规则一致） */
.p-sales.low { color: #D9482A; }
.p-sales.soldout { color: #b0432f; background: #fdeeea; padding: 2px 8px; border-radius: 999px; }

/* ===== 首页轮播图 ===== */
.banner-section {
  position: relative; overflow: hidden;
  background: var(--cream);
}
/* 作为 hero 一部分时的样式：圆角、阴影、限定高度 */
.banner-section.hero-banner {
  border-radius: 26px;
  border: none;
  height: auto;
  aspect-ratio: 4 / 3;
  max-height: 540px;
  min-height: 420px;
  background: linear-gradient(135deg, #FFF4DC 0%, #FFE0AA 100%);
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, .7),
    0 22px 44px -14px rgba(122, 63, 12, .28),
    0 8px 16px -6px rgba(122, 63, 12, .18);
  transition: box-shadow .35s ease, transform .35s ease;
}
.banner-section.hero-banner:hover {
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, .8),
    0 28px 56px -14px rgba(122, 63, 12, .34),
    0 10px 22px -6px rgba(122, 63, 12, .22);
}
/* 覆盖右下角图片水印（AI生成 等），保持视觉干净 */
.banner-section.hero-banner::after {
  content: "";
  position: absolute; right: 0; bottom: 0;
  width: 200px; height: 56px;
  background:
    linear-gradient(135deg,
      transparent 0%,
      transparent 22%,
      var(--cream-deep) 60%,
      var(--cream-deep) 100%);
  border-bottom-right-radius: 26px;
  pointer-events: none;
  z-index: 9;
}
.banner-track {
  display: flex; transition: transform .6s cubic-bezier(.25, .8, .35, 1);
  will-change: transform;
  height: 100%;
}
.banner-slide {
  flex: 0 0 100%; position: relative; overflow: hidden;
  height: 100%;
}
.banner-slide a { display: block; width: 100%; height: 100%; }
.banner-slide img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.25, .8, .35, 1);
}
.banner-section.hero-banner:hover .banner-slide.active img {
  transform: scale(1.04);
}
/* 默认独立 banner 的高度 */
.banner-section:not(.hero-banner) .banner-slide img { height: 380px; }
.banner-title {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 22px 12px; margin: 0;
  font-size: 17px; font-weight: 700; color: #fff;
  letter-spacing: 1.5px; line-height: 1.4;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .55) 100%);
  text-shadow: 0 1px 4px rgba(0, 0, 0, .3);
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
}
.banner-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 11;
}
.banner-dot {
  width: 9px; height: 9px; border-radius: 50%; cursor: pointer;
  background: rgba(255, 255, 255, .6); transition: .3s ease;
  border: 1.5px solid rgba(255, 255, 255, .85); padding: 0;
  box-shadow: 0 2px 6px rgba(74, 34, 8, .15);
}
.banner-dot:hover { background: rgba(255, 255, 255, .85); }
.banner-dot.active {
  background: var(--sun); width: 26px; border-radius: 5px;
  border-color: var(--sun);
  box-shadow: 0 2px 8px rgba(247, 181, 0, .5);
}
.banner-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 11; cursor: pointer;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .85); color: var(--brown);
  font-size: 16px; line-height: 1; transition: .3s ease;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 16px rgba(74, 34, 8, .18);
  opacity: 0;
}
.banner-arrow:hover {
  background: var(--sun); color: #fff; border-color: var(--sun);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 20px rgba(247, 181, 0, .45);
}
.banner-section.hero-banner:hover .banner-arrow { opacity: 1; }
.banner-prev { left: 14px; }
.banner-next { right: 14px; }

/* ===== 首屏（左右布局：左文 + 右轮播图） ===== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, #FFF1C4 0%, transparent 50%),
    radial-gradient(circle at 15% 90%, #FFE0AA 0%, transparent 55%),
    linear-gradient(160deg, #FFFBF1 0%, #FFEFC7 50%, #FFD982 100%);
  padding: 64px 0 80px;
}
.hero::before {
  content: ""; position: absolute; top: -80px; right: -80px; width: 320px; height: 320px;
  background: radial-gradient(circle, #FFE38A 0%, #FFC247 40%, transparent 70%);
  border-radius: 50%; opacity: .55;
  filter: blur(20px);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px;
  align-items: center; position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-block; font-size: 13px; letter-spacing: 2px; color: var(--brown);
  background: rgba(255, 255, 255, .65); border: 1.5px solid var(--sun);
  padding: 6px 16px; border-radius: 999px; margin-bottom: 20px;
  font-weight: 700;
  backdrop-filter: blur(6px);
}
.hero h1 {
  font-size: 50px; line-height: 1.22; font-weight: 900; letter-spacing: 4px;
  color: var(--brown);
}
.hero h1::after {
  content: ""; display: block; width: 80px; height: 5px; border-radius: 3px;
  background: linear-gradient(90deg, var(--sun), var(--sun-deep), var(--warm-red));
  margin-top: 22px;
}
.hero-sub { margin-top: 22px; font-size: 17px; color: var(--ink-soft); }
.hero-actions { display: flex; gap: 18px; margin-top: 30px; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  list-style: none; margin: 32px 0 0; padding: 0;
  max-width: 460px;
}
.hero-stat {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, .7);
  padding: 14px 16px; border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: 0 4px 14px rgba(122, 63, 12, .08);
  backdrop-filter: blur(8px);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(122, 63, 12, .14);
}
.hs-ico {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #FFE9B0, #FFD982);
  border-radius: 10px;
  font-size: 20px;
  box-shadow: inset 0 0 0 1.5px rgba(122, 63, 12, .08);
}
.hs-body { display: flex; flex-direction: column; min-width: 0; }
.hs-body b {
  font-size: 22px; font-weight: 900; color: var(--sun-deep);
  line-height: 1; letter-spacing: -.3px;
  display: flex; align-items: baseline; gap: 1px;
}
.hs-body b i {
  font-style: normal; font-size: 12px;
  color: var(--brown-soft); margin-left: 1px; font-weight: 600;
}
.hs-body span {
  display: block;
  font-size: 12px; color: var(--ink-soft);
  margin-top: 4px; line-height: 1.3;
}

/* ===== 通用区块 ===== */
.section { padding: 88px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, var(--cream) 0%, #FFF8E5 100%); }
.section-eyebrow {
  font-size: 13px; letter-spacing: 5px; color: var(--sun-deep);
  font-weight: 800; text-transform: uppercase;
}
.section-title {
  font-size: 36px; font-weight: 900; margin: 10px 0 12px;
  letter-spacing: 2px; color: var(--brown);
  position: relative; display: inline-block;
}
.section-title::before {
  content: "✦"; color: var(--sun); margin-right: 10px; font-size: 22px;
  vertical-align: middle; font-weight: 400;
}
.section-sub {
  color: var(--ink-soft); max-width: 680px; margin-bottom: 38px; font-size: 15.5px;
}
.title-link {
  font-size: 15px; color: var(--sun-deep); font-weight: 700;
  margin-left: 16px; letter-spacing: 1px;
}
.title-link:hover { color: var(--warm-red); text-decoration: none; }

/* 品牌故事 */
.brand-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: start; }
.brand-text p { margin-bottom: 18px; color: var(--ink-soft); font-size: 16px; line-height: 1.85; }
.brand-text b { color: var(--brown); font-weight: 700; }
.brand-values { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.value-card {
  background: var(--white); border-radius: var(--radius); padding: 24px 22px;
  box-shadow: var(--shadow); position: relative;
  border-top: 4px solid transparent;
  background-clip: padding-box;
  transition: .25s;
  overflow: hidden;
}
.value-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--sun), var(--sun-deep));
}
.value-card:nth-child(2)::before { background: linear-gradient(90deg, var(--eco), var(--eco-light)); }
.value-card:nth-child(3)::before { background: linear-gradient(90deg, var(--warm-red), #E97B4F); }
.value-card:nth-child(4)::before { background: linear-gradient(90deg, var(--brown), var(--brown-soft)); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.v-ico {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--sun-soft), var(--sun-light));
  font-size: 24px; margin-bottom: 12px;
}
.value-card:nth-child(2) .v-ico { background: linear-gradient(135deg, #E0F2D5, #B7E097); }
.value-card:nth-child(3) .v-ico { background: linear-gradient(135deg, #FBE0D5, #F5B59A); }
.value-card:nth-child(4) .v-ico { background: linear-gradient(135deg, #E9DCC9, #D4B89A); }
.value-card h3 { font-size: 17px; margin: 0 0 8px; color: var(--brown); }
.value-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.7; }

/* 产品 */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 30px; }
.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 26px 24px; box-shadow: var(--shadow); position: relative;
  transition: .3s; border: 1.5px solid var(--line-soft);
  overflow: hidden;
}
.product-card::after {
  content: "✦"; position: absolute; top: 18px; right: 18px;
  color: var(--sun); opacity: .25; font-size: 18px;
}
.product-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-lg);
  border-color: var(--sun);
}
.p-badge {
  display: inline-block; font-size: 12px; font-weight: 800;
  color: var(--brown); background: linear-gradient(135deg, var(--sun-soft), var(--sun-light));
  padding: 4px 12px; border-radius: 999px; letter-spacing: 1px;
}
.p-art {
  height: 116px; border-radius: 14px; margin: 14px 0 16px;
  display: grid; place-items: center; font-size: 56px;
  position: relative; overflow: hidden;
}
/* ===== 商品照片轮播 ===== */
.p-carousel {
  position: relative; height: 190px; border-radius: 14px;
  margin: 14px 0 16px; overflow: hidden; background: #f6f0e2;
  user-select: none; touch-action: pan-y;
}
.p-car-track {
  display: flex; height: 100%; width: 100%;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}
.p-car-track img {
  flex: 0 0 100%; width: 100%; height: 100%;
  object-fit: cover; display: block; pointer-events: none;
}
.p-car-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border: 0; border-radius: 50%;
  background: rgba(255, 255, 255, .82); color: #6b5722;
  font-size: 18px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(90, 70, 30, .18);
  transition: background .2s, transform .2s; z-index: 2; padding: 0;
}
.p-car-btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.p-car-prev { left: 8px; }
.p-car-next { right: 8px; }
.p-car-dots {
  position: absolute; bottom: 9px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px; z-index: 2;
}
.p-car-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: rgba(255, 255, 255, .65); transition: all .25s;
}
.p-car-dot.active { background: #fff; width: 18px; }
.art-1 { background: linear-gradient(135deg, #FFE9B0, #F7C672); }
.art-2 { background: linear-gradient(135deg, #FFDFA8, #F4B870); }
.art-3 { background: linear-gradient(135deg, #FFE6C8, #E9A562); }
.art-4 { background: linear-gradient(135deg, #FFF5C2, #FFD66B); }
.art-5 { background: linear-gradient(135deg, #FFEED8, #E7CA9B); }
.art-6 { background: linear-gradient(135deg, #FFD8B0, #E59861); }
.product-card h3 { font-size: 18.5px; color: var(--brown); letter-spacing: 1px; }
.product-card h3 small { font-size: 13px; color: var(--ink-soft); font-weight: 500; margin-left: 4px; letter-spacing: 0; }
.p-desc { font-size: 13.5px; color: var(--ink-soft); margin-top: 8px; min-height: 46px; line-height: 1.65; }
.p-foot { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 4px; }
.p-price b { font-size: 26px; color: var(--warm-red-deep); font-weight: 900; }
.p-price s { font-size: 13px; color: #b5ada0; margin-left: 6px; }
.p-sales { font-size: 12px; color: var(--sun-deep); font-weight: 700; }

/* 会员等级 */
.level-track {
  display: flex; align-items: stretch; justify-content: space-between; gap: 8px;
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow); margin-bottom: 32px; flex-wrap: wrap;
  border: 1.5px solid var(--line);
}
.level-node {
  text-align: center; flex: 1; min-width: 130px; padding: 12px 6px;
  border-radius: 12px; transition: .2s;
}
.level-node:hover {
  background: linear-gradient(135deg, var(--sun-soft), transparent);
  transform: translateY(-4px);
}
.lv-ico { font-size: 36px; display: block; }
.level-node b { display: block; font-size: 17px; margin: 8px 0 4px; color: var(--brown); letter-spacing: 2px; }
.level-node i { font-style: normal; font-size: 12px; color: var(--ink-soft); line-height: 1.55; display: block; }
.level-arrow { align-self: center; color: var(--sun); font-size: 22px; font-weight: 800; }
.lv-top {
  background: linear-gradient(160deg, #FFEFC8, #FFD982); border: 1.5px solid var(--sun);
}
.lv-top b { color: var(--brown-deep); }

.member-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px 26px;
  box-shadow: var(--shadow); border-left: 5px solid var(--sun);
  position: relative; transition: .25s;
}
.plan-card:nth-child(2) { border-left-color: var(--eco); }
.plan-card:nth-child(3) { border-left-color: var(--warm-red); }
.plan-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.plan-card h3 { font-size: 18px; margin-bottom: 14px; color: var(--brown); letter-spacing: 1px; }
.plan-card p { font-size: 14.5px; color: var(--ink); line-height: 1.9; }
.plan-card small { display: block; margin-top: 14px; color: var(--ink-soft); font-size: 12.5px; }

/* 认养（兼容保留）— 深色区 */
.section-dark {
  background: linear-gradient(160deg, #4A2208 0%, #6B3410 60%, #8B5A3C 100%);
  color: #f3efe2;
}
.section-dark .section-eyebrow { color: var(--sun-light); }
.section-dark .section-title { color: #fff; }
.section-dark .section-title::before { color: var(--sun-light); }
.section-dark .section-sub { color: #e8d9bf; }
.adopt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 10px; }
.adopt-card {
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 220, 130, .25);
  border-radius: var(--radius-lg); padding: 30px 26px; position: relative; text-align: left;
}
.adopt-card h3 { font-size: 20px; color: #fff; }
.adopt-card h3 small { font-size: 13px; color: #e6c89a; margin-left: 6px; font-weight: 400; }
.adopt-price { font-size: 36px; font-weight: 900; color: var(--sun-light); margin: 12px 0; }
.adopt-price span { font-size: 14px; color: #e6c89a; font-weight: 400; }
.adopt-card ul { list-style: none; margin-bottom: 22px; }
.adopt-card li { font-size: 14px; padding: 7px 0; border-bottom: 1px dashed rgba(255, 220, 130, .2); }
.adopt-card li::before { content: "✦ "; color: var(--sun-light); }
.adopt-hot { background: rgba(247, 181, 0, .12); border-color: var(--sun-light); }
.hot-tag {
  position: absolute; top: -13px; right: 20px; font-size: 12px; font-weight: 700;
  background: linear-gradient(135deg, var(--sun), var(--warm-red)); color: #fff;
  padding: 5px 16px; border-radius: 999px; letter-spacing: 1px;
}

/* 土鸡产品介绍 */
.intro-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 30px; }
.intro-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 26px 22px;
  box-shadow: var(--shadow); transition: .3s;
  border: 1.5px solid var(--line-soft);
  position: relative;
}
.intro-card::before {
  content: ""; position: absolute; top: 0; left: 24px; right: 24px;
  height: 3px; background: linear-gradient(90deg, var(--sun), var(--sun-deep));
  border-radius: 0 0 4px 4px; opacity: .6;
}
.intro-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sun); }
.i-ico {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--sun-soft), var(--sun-light));
  font-size: 30px; margin-bottom: 14px;
  box-shadow: 0 6px 14px rgba(247, 181, 0, .25);
}
.intro-card h3 { font-size: 17px; margin: 0 0 8px; color: var(--brown); letter-spacing: 1px; }
.intro-card h3 small { font-size: 12.5px; color: var(--ink-soft); font-weight: 500; margin-left: 4px; letter-spacing: 0; }
.intro-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.75; }

/* 联系我们 */
.contact-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 46px; align-items: center; }
.contact-list { list-style: none; margin-top: 18px; }
.contact-list li {
  padding: 14px 0; border-bottom: 1px dashed var(--line);
  font-size: 15px; display: flex; align-items: baseline; gap: 14px;
}
.contact-list b {
  flex-shrink: 0; min-width: 100px;
  color: var(--sun-deep); font-weight: 800; font-size: 14px;
  letter-spacing: 1px;
}
.contact-cta {
  background:
    radial-gradient(circle at 100% 0%, #FFE38A 0%, transparent 50%),
    linear-gradient(150deg, #FFF9E3 0%, #FFE0A8 100%);
  border-radius: var(--radius-lg); padding: 40px 36px;
  text-align: center; box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--sun-soft);
}
.contact-cta h3 { font-size: 24px; margin-bottom: 18px; color: var(--brown); letter-spacing: 2px; }

/* 现在就开始：横向双列（左两步 + 右二维码），去大空白卡片 */
.cta-row {
  display: flex; align-items: center; gap: 22px;
  text-align: left;
}
.contact-mini-steps { list-style: none; padding: 0; margin: 0; flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 14px; }
.contact-mini-steps li { display: flex; gap: 12px; align-items: flex-start; }
.cms-no {
  flex: 0 0 28px; width: 28px; height: 28px; line-height: 28px;
  border-radius: 50%; background: linear-gradient(135deg, #FFB347 0%, #F4791F 100%);
  color: #fff; font-weight: 800; font-size: 14px; text-align: center;
  box-shadow: 0 2px 6px rgba(244,121,31,.35);
}
.cms-body { flex: 1; min-width: 0; }
.cms-title { color: var(--ink); font-size: 14.5px; line-height: 1.7; }

/* 紧凑二维码：圆角白卡 + 内描边阴影，无多余留白 */
.cta-qr {
  flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.cta-qr-frame {
  position: relative; width: 124px; height: 124px; padding: 8px;
  background: #fff; border-radius: 14px;
  box-shadow: 0 6px 18px rgba(122,63,10,.18), inset 0 0 0 2px #FFF3D6;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cta-qr-frame:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(122,63,10,.22), inset 0 0 0 2px #FFE38A;
}
/* 「到小程序下单」点击触发的二维码闪烁高亮 */
.cta-qr-frame.cta-qr-flash {
  animation: ctaQrFlash 2.6s ease-in-out;
}
@keyframes ctaQrFlash {
  0%, 100% {
    box-shadow: 0 6px 18px rgba(122,63,10,.18), inset 0 0 0 2px #FFF3D6;
    transform: scale(1);
  }
  15% {
    box-shadow: 0 0 0 8px rgba(244,121,31,.18), 0 0 0 16px rgba(244,121,31,.10), inset 0 0 0 2px #FFB347;
    transform: scale(1.08);
  }
  40% {
    box-shadow: 0 0 0 6px rgba(244,121,31,.12), inset 0 0 0 2px #FFB347;
    transform: scale(1);
  }
  60% {
    box-shadow: 0 0 0 8px rgba(244,121,31,.20), inset 0 0 0 2px #FFB347;
    transform: scale(1.04);
  }
}
.cta-qr-frame img, .cta-qr-frame .cta-qr-fallback {
  display: block; width: 108px; height: 108px; border-radius: 6px;
}
.cta-qr-fallback { background: #faf7ef; }
.cta-qr-cap { font-size: 12px; color: var(--ink-soft); letter-spacing: 1px; }

/* 窄屏堆叠 */
@media (max-width: 520px) {
  .cta-row { flex-direction: column; gap: 16px; }
  .contact-mini-steps { width: 100%; }
  .cta-qr { align-self: center; }
}



/* 页脚（深棕 + logo） */
.site-footer {
  background:
    radial-gradient(circle at 15% 0%, rgba(247, 181, 0, .15) 0%, transparent 60%),
    linear-gradient(180deg, #4A2208 0%, #2A1404 100%);
  color: #d6c5a3; padding: 56px 0 32px;
}
.footer-inner { text-align: center; }
.footer-brand {
  font-size: 20px; font-weight: 800;
  color: #FFE9B0; letter-spacing: 3px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.footer-logo {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  height: 110px; padding: 0 28px;
  background:
    radial-gradient(circle at 35% 35%, #FFF6D5 0%, #FFD982 55%, #F7B500 100%);
  border-radius: 55px;
  box-shadow:
    /* 立体感（无外光晕） */
    0 6px 22px rgba(107, 52, 16, .25),
    inset 0 2px 0 rgba(255, 255, 255, .7),
    inset 0 -3px 6px rgba(229, 137, 27, .28);
}
.footer-logo img {
  height: 92px; width: auto; border-radius: 14px;
  filter: drop-shadow(0 4px 6px rgba(107, 52, 16, .35));
}
.footer-brand p { font-size: 13px; font-weight: 400; margin-top: 4px; letter-spacing: 3px; color: #c9b78a; }
.footer-links { display: flex; justify-content: center; gap: 28px; margin: 26px 0; flex-wrap: wrap; font-size: 14px; }
.footer-links a { color: #c9b78a; transition: color .2s; }
.footer-links a:hover { color: var(--sun-light); }
.footer-copy { font-size: 12.5px; color: #8a7d60; letter-spacing: 1px; margin-top: 6px; }

/* ===== 下单 / 支付弹窗 ===== */
.modal-mask {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 200;
  background: rgba(42, 20, 8, .55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-card {
  background: #fff; border-radius: var(--radius-lg); width: 92%; max-width: 460px;
  max-height: 88vh; overflow-y: auto; position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
  animation: slideUp .25s cubic-bezier(.25, .8, .35, 1);
  padding: 28px 26px;
}
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close {
  position: absolute; top: 12px; right: 16px; border: 0; background: none;
  font-size: 26px; color: #b5ada0; cursor: pointer; line-height: 1;
  width: 36px; height: 36px; border-radius: 50%; transition: .2s;
}
.modal-close:hover { background: var(--cream-deep); color: var(--brown); }
.modal-title { font-size: 22px; font-weight: 900; color: var(--brown); letter-spacing: 2px; margin-bottom: 16px; }
.modal-sub { color: var(--ink-soft); font-size: 14px; margin-bottom: 20px; }

.order-prod {
  background: var(--cream); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 16px;
}
.order-prod-name { font-size: 16px; font-weight: 700; color: var(--brown); }
.order-prod-price { font-size: 20px; font-weight: 900; color: var(--warm-red-deep); margin-top: 4px; }

.form-row { margin-bottom: 14px; }
.form-row > label { display: block; font-size: 13px; font-weight: 700; color: var(--brown-soft); margin-bottom: 6px; letter-spacing: 1px; }
.form-input {
  width: 100%; border: 2px solid #f0e8d6; border-radius: 10px; padding: 11px 14px;
  font-size: 15px; color: var(--ink); transition: .2s; background: #fffdf8;
}
.form-input:focus { outline: 0; border-color: var(--sun); box-shadow: 0 0 0 3px rgba(247, 181, 0, .15); }
.form-inline { display: flex; gap: 10px; }
.form-inline .form-input { flex: 1; }
.form-select {
  width: 100%; border: 2px solid #f0e8d6; border-radius: 10px; padding: 11px 14px;
  font-size: 15px; color: var(--ink); background: #fffdf8; cursor: pointer;
}

.qty-box { display: flex; align-items: center; gap: 0; }
.qty-btn {
  width: 38px; height: 38px; border: 2px solid #f0e8d6; background: #fffdf8;
  font-size: 18px; font-weight: 700; cursor: pointer; color: var(--brown); transition: .2s;
}
.qty-btn:first-child { border-radius: 10px 0 0 10px; border-right: 0; }
.qty-btn:last-child { border-radius: 0 10px 10px 0; border-left: 0; }
.qty-btn:hover { background: var(--sun-soft); }
.qty-input {
  width: 56px; height: 38px; border: 2px solid #f0e8d6; text-align: center;
  font-size: 16px; font-weight: 700; color: var(--ink); border-left: 0; border-right: 0;
}
.qty-input:focus { outline: 0; }

.radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-item {
  flex: 1; min-width: 120px; border: 2px solid #f0e8d6; border-radius: 10px;
  padding: 10px 14px; cursor: pointer; transition: .2s; font-size: 14px; font-weight: 600;
  text-align: center; background: #fffdf8; color: var(--ink-soft);
}
.radio-item:hover { border-color: var(--sun-light); }
.radio-item.active { border-color: var(--sun); background: var(--sun-soft); color: var(--brown); }
.radio-item small { display: block; font-size: 11px; font-weight: 400; margin-top: 2px; }

.order-summary {
  background: var(--cream); border-radius: 10px; padding: 14px 16px; margin-bottom: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.order-summary .os-label { font-size: 14px; color: var(--ink-soft); }
.order-summary .os-total { font-size: 26px; font-weight: 900; color: var(--warm-red-deep); }

.btn-block { display: block; width: 100%; }

/* 支付弹窗 */
.modal-pay { text-align: center; }
.pay-qr {
  display: flex; justify-content: center; align-items: center;
  margin: 10px auto 16px; width: 240px; height: 240px;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 12px;
  background: #fff;
}
.pay-qr img, .pay-qr canvas { width: 216px !important; height: 216px !important; }
.pay-tip { font-size: 14px; color: var(--ink-soft); margin-bottom: 4px; }
.pay-amount { font-size: 28px; font-weight: 900; color: var(--warm-red-deep); margin: 6px 0; }
.pay-status {
  font-size: 14px; padding: 10px; border-radius: 10px; margin-top: 12px; display: none;
}
.pay-status.show { display: block; }
.pay-status.success { background: #e8f5e9; color: #2e7d32; }
.pay-status.error { background: #fce4ec; color: #c62828; }

/* ===== 响应式 ===== */
@media (max-width: 960px) {
  .banner-section:not(.hero-banner) .banner-slide img { height: 300px; }
  .banner-section.hero-banner { height: 380px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .brand-grid, .contact-wrap { grid-template-columns: 1fr; }
  .product-grid, .member-plans, .adopt-grid { grid-template-columns: 1fr 1fr; }
  .intro-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .banner-section:not(.hero-banner) .banner-slide img { height: 200px; }
  .banner-section.hero-banner { height: 240px; }
  .banner-title { font-size: 14px; padding: 10px 16px 8px; letter-spacing: 1px; }
  .banner-arrow { width: 32px; height: 32px; font-size: 14px; }
  .banner-prev { left: 10px; }
  .banner-next { right: 10px; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(255, 251, 241, .98); flex-direction: column; align-items: stretch;
    padding: 14px 22px 20px; gap: 4px; border-bottom: 2px solid var(--sun);
    box-shadow: 0 16px 28px rgba(74, 34, 8, .14);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 4px; border-bottom: 1px solid var(--line-soft); }
  .main-nav a:last-child { border-bottom: 0; }
  .nav-link-user { display: block; }
  .header-user { padding: 7px 10px; margin-left: 8px; }
  .header-user span { display: none; }
  .hero h1 { font-size: 36px; letter-spacing: 2px; }
  .hero { padding: 52px 0 64px; }
  .hero-stats { max-width: 100%; grid-template-columns: 1fr 1fr; }
  .hero-stat { padding: 11px 12px; }
  .hs-ico { width: 32px; height: 32px; font-size: 17px; }
  .hs-body b { font-size: 19px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 26px; letter-spacing: 1px; }
  .product-grid, .member-plans, .adopt-grid, .brand-values { grid-template-columns: 1fr; }
  .intro-grid { grid-template-columns: 1fr; }
  .level-track { flex-direction: column; }
  .level-arrow { transform: rotate(90deg); }
  .header-inner { height: 64px; }
  .logo-badge { height: 44px; padding: 0 10px; border-radius: 22px; }
  .logo-img { height: 34px; }
  .footer-logo { height: 88px; padding: 0 20px; border-radius: 44px; }
  .footer-logo img { height: 74px; }
  .modal-card { width: 96%; padding: 22px 18px; max-height: 92vh; }
  .modal-title { font-size: 19px; }
  .pay-qr { width: 200px; height: 200px; padding: 10px; }
  .pay-qr img, .pay-qr canvas { width: 180px !important; height: 180px !important; }
  .form-inline { flex-direction: column; }
  .radio-item { min-width: 100%; }
}

/* ===== 会员中心 · 登录页 ===== */
.uc-login-section {
  min-height: 72vh; display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 80% 20%, #FFF1C4 0%, transparent 50%),
    radial-gradient(circle at 15% 90%, #FFE0AA 0%, transparent 55%),
    linear-gradient(160deg, #FFFBF1 0%, #FFEFC7 50%, #FFD982 100%);
  padding: 60px 22px;
}
.uc-login-card {
  background: rgba(255,255,255,.92); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 48px 40px; text-align: center;
  max-width: 400px; width: 100%; border: 1.5px solid var(--sun-soft);
}
.uc-login-ico { font-size: 56px; margin-bottom: 12px; }
.uc-login-card h1 { font-size: 28px; font-weight: 900; color: var(--brown); letter-spacing: 3px; }
.uc-login-sub { color: var(--ink-soft); font-size: 14px; margin: 10px 0 28px; }
.uc-login-input { margin-bottom: 16px; font-size: 16px; }
.uc-login-tip { color: var(--ink-soft); font-size: 12.5px; margin-top: 18px; line-height: 1.7; }

/* ---- 登录 Tab（短信 / 密码） ---- */
.uc-login-tabs {
  display: flex; border-bottom: 2px solid #FFE9BD; margin-bottom: 24px;
}
.uc-lt {
  flex: 1; padding: 10px 0 12px; background: none; border: 0; cursor: pointer;
  font-size: 15px; font-weight: 700; color: var(--ink-soft);
  border-bottom: 2.5px solid transparent; margin-bottom: -2px; transition: .2s;
  font-family: inherit;
}
.uc-lt.active { color: var(--sun-deep); border-bottom-color: var(--sun); }
.uc-lt:not(.active):hover { color: var(--brown); }

/* ---- 图形验证码 / 短信验证码行 ---- */
.uc-vcode-row { display: flex; gap: 10px; margin-bottom: 16px; }
.uc-vcode-row .form-input { flex: 1; min-width: 0; }
.uc-captcha-img {
  width: 120px; height: 46px; flex: 0 0 120px; border-radius: 10px; cursor: pointer;
  border: 1.5px solid #FFE3AE; background: #FFF8EC; overflow: hidden;
  display: flex; align-items: center; justify-content: center; transition: .2s;
}
.uc-captcha-img:hover { border-color: var(--sun); }
.uc-captcha-img svg { display: block; width: 100%; height: 100%; }
.uc-send-btn {
  flex: 0 0 118px; border-radius: 10px; cursor: pointer;
  border: 1.5px solid var(--sun); background: #FFF6E3; color: var(--sun-deep);
  font-size: 13.5px; font-weight: 700; font-family: inherit; transition: .2s;
  padding: 0 8px;
}
.uc-send-btn:not(:disabled):hover { background: var(--sun); color: #fff; }
.uc-send-btn:disabled { opacity: .55; cursor: not-allowed; }

/* ---- 注册协议勾选 ---- */
.uc-agree {
  display: flex; align-items: flex-start; gap: 8px; text-align: left;
  font-size: 12.5px; color: var(--ink-soft); margin: -4px 0 16px; cursor: pointer;
  line-height: 1.6; user-select: none;
}
.uc-agree input { margin-top: 2px; accent-color: var(--sun); width: 15px; height: 15px; flex: 0 0 15px; }
.uc-agree a { color: var(--sun-deep); font-weight: 700; text-decoration: none; }
.uc-agree a:hover { text-decoration: underline; }

/* ---- 密码登录 Tab 辅助 ---- */
.uc-forgot { margin-top: 14px; font-size: 13px; }
.uc-forgot a { color: var(--sun-deep); text-decoration: none; font-weight: 600; }
.uc-forgot a:hover { text-decoration: underline; }

/* ---- 会员服务协议弹窗 ---- */
.uc-proto-body { text-align: left; font-size: 13.5px; line-height: 1.8; color: var(--ink-soft); max-height: 52vh; overflow-y: auto; padding-right: 6px; }
.uc-proto-body p { margin: 0 0 14px; }
.uc-proto-body b { color: var(--brown); }
.uc-proto-contact { color: var(--sun-deep); font-weight: 700; }

/* ===== 会员中心 · 主界面 ===== */
.uc-main { padding: 32px 0 64px; min-height: 70vh; background: linear-gradient(180deg, #FFFBF1 0%, #fff 200px); }

/* VIP 卡片 */
.uc-vip-card {
  background: linear-gradient(135deg, #4A2208 0%, #6B3410 50%, #8B5A3C 100%);
  border-radius: var(--radius-lg); padding: 28px 30px; color: #f3efe2;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
  margin-bottom: 20px;
}
.uc-vip-card::before {
  content: ""; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(247,181,0,.3) 0%, transparent 70%);
  border-radius: 50%;
}
.uc-vip-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; position: relative; }
.uc-vip-level { font-size: 20px; font-weight: 900; color: var(--sun-light); letter-spacing: 2px; }
.uc-vip-off { font-size: 13px; color: #e6c89a; }
.uc-signin-btn {
  margin-left: auto; border: 2px solid var(--sun-light); background: rgba(247,181,0,.15);
  color: var(--sun-light); padding: 6px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 700; cursor: pointer; transition: .2s;
}
.uc-signin-btn:hover { background: var(--sun); color: #fff; }
.uc-vip-signed { margin-left: auto; font-size: 13px; color: var(--sun-light); }
.uc-vip-name { font-size: 22px; font-weight: 800; letter-spacing: 2px; }
.uc-vip-phone { font-size: 14px; color: #c9b78a; margin-top: 2px; }
.uc-vip-stats { display: flex; gap: 20px; margin-top: 18px; position: relative; }
.uc-vs { text-align: center; flex: 1; }
.uc-vs-num { font-size: 24px; font-weight: 900; color: #fff; }
.uc-vs-label { font-size: 12px; color: #c9b78a; margin-top: 2px; }

/* 等级进度 */
.uc-level-track {
  display: flex; align-items: stretch; justify-content: space-between; gap: 6px;
  background: #fff; border-radius: var(--radius-lg); padding: 22px 18px;
  box-shadow: var(--shadow); margin-bottom: 24px; flex-wrap: wrap;
  border: 1.5px solid var(--line);
}
.uc-lv-node { text-align: center; flex: 1; min-width: 100px; padding: 8px 4px; border-radius: 10px; transition: .2s; opacity: .5; }
.uc-lv-node.on { opacity: 1; background: linear-gradient(135deg, var(--sun-soft), transparent); }
.uc-lv-ico { font-size: 28px; display: block; }
.uc-lv-node b { display: block; font-size: 14px; margin: 4px 0 2px; color: var(--brown); letter-spacing: 1px; }
.uc-lv-node i { font-style: normal; font-size: 11px; color: var(--ink-soft); display: block; line-height: 1.4; }
.uc-lv-arrow { align-self: center; color: var(--sun); font-size: 18px; font-weight: 800; }

/* Tab 导航 */
.uc-tabs { display: flex; gap: 0; margin-bottom: 24px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--line-soft); }
.uc-tab {
  flex: 1; padding: 14px 8px; border: 0; background: none; cursor: pointer;
  font-size: 14px; font-weight: 700; color: var(--ink-soft);
  transition: .2s; border-bottom: 3px solid transparent; letter-spacing: 1px;
}
.uc-tab:hover { color: var(--sun-deep); }
.uc-tab.active { color: var(--sun-deep); border-bottom-color: var(--sun); background: var(--sun-soft); }

/* Tab 内容 */
.uc-tab-pane { display: none; }
.uc-tab-pane.active { display: block; animation: fadeIn .2s ease; }
.uc-tab-sub { color: var(--ink-soft); font-size: 13.5px; margin-bottom: 18px; }

/* 空状态 */
.uc-empty { text-align: center; padding: 60px 22px; }
.uc-empty-ico { font-size: 48px; display: block; margin-bottom: 12px; }
.uc-empty p { color: var(--ink-soft); font-size: 15px; margin-bottom: 16px; }
.uc-empty-tip { display: block; font-size: 13px; color: var(--ink-soft); margin-top: 6px; }

/* 订单卡片 */
.uc-card {
  background: #fff; border-radius: var(--radius); padding: 18px 20px;
  box-shadow: var(--shadow); margin-bottom: 14px; cursor: pointer;
  border: 1.5px solid var(--line-soft); transition: .2s;
}
.uc-card:hover { border-color: var(--sun); box-shadow: var(--shadow-lg); }
.uc-o-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.uc-o-id { font-size: 13px; font-weight: 700; color: var(--brown-soft); }
.uc-o-status-wrap { display: flex; align-items: center; gap: 6px; }
.uc-o-tag {
  font-size: 11px; padding: 2px 8px; border-radius: 999px; font-weight: 700; letter-spacing: .5px;
}
.uc-tag-refund { background: #FFEBEE; color: #C62828; }
.uc-tag-points { background: #E3F2FD; color: #1565C0; }
.uc-tag-subs { background: #F3E5F5; color: #7B1FA2; }
.uc-tag-recharge { background: #E8F5E9; color: #2E7D32; }
.uc-o-status { font-size: 13px; font-weight: 700; }
.uc-o-status.s-created { color: var(--sun-deep); }
.uc-o-status.s-paid { color: var(--eco); }
.uc-o-status.s-delivering { color: #1565C0; }
.uc-o-status.s-done { color: var(--ink-soft); }
.uc-o-status.s-canceled { color: #999; }
.uc-o-status.s-refunded { color: #C62828; }

.uc-o-item { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; font-size: 14px; border-bottom: 1px dashed var(--line-soft); }
.uc-o-name { flex: 1; color: var(--ink); }
.uc-o-qty { color: var(--ink-soft); margin: 0 12px; }
.uc-o-price { font-weight: 700; color: var(--brown); }
.uc-o-foot { display: flex; justify-content: space-between; align-items: baseline; margin-top: 10px; }
.uc-o-date { font-size: 12px; color: var(--ink-soft); }
.uc-o-total { font-size: 18px; font-weight: 900; color: var(--warm-red-deep); }

.uc-o-actions { display: flex; gap: 10px; margin-top: 12px; }
.uc-action-btn {
  flex: 1; padding: 9px 14px; border-radius: 10px; font-size: 13px; font-weight: 700;
  border: 0; cursor: pointer; transition: .2s; letter-spacing: 1px;
}
.uc-btn-pay { background: linear-gradient(135deg, var(--sun), var(--sun-deep)); color: #fff; }
.uc-btn-pay:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(247,181,0,.35); }
.uc-btn-points { background: #E3F2FD; color: #1565C0; }
.uc-btn-points:hover { background: #BBDEFB; }
.uc-points-tip { margin-top: 10px; font-size: 12px; color: #9a938a; line-height: 1.6; text-align: left; width: 100%; }
.uc-btn-cancel, .uc-btn-ghost { background: #f5f0e4; color: var(--ink-soft); }
.uc-btn-cancel:hover, .uc-btn-ghost:hover { background: var(--sun-soft); color: var(--brown); }

/* 月订套餐卡片 */
.uc-plan-card {
  background: #fff; border-radius: var(--radius-lg); padding: 22px 24px;
  box-shadow: var(--shadow); margin-bottom: 14px; border-left: 5px solid var(--sun);
  transition: .2s;
}
.uc-plan-card:hover { box-shadow: var(--shadow-lg); }
.uc-plan-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.uc-plan-name { font-size: 17px; font-weight: 800; color: var(--brown); letter-spacing: 1px; }
.uc-plan-months { font-size: 13px; color: var(--sun-deep); font-weight: 700; }
.uc-plan-desc { font-size: 13.5px; line-height: 1.7; margin-bottom: 14px; }
.uc-plan-foot { display: flex; justify-content: space-between; align-items: center; }
.uc-plan-price b { font-size: 24px; font-weight: 900; color: var(--warm-red-deep); }
.uc-plan-price s { font-size: 13px; color: #b5ada0; margin-left: 6px; }
.uc-plan-save { font-size: 12px; color: var(--eco); margin-left: 8px; font-weight: 700; }

/* 储值充值卡片 */
.uc-rc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 20px; }
.uc-rc-card {
  background: #fff; border-radius: var(--radius); padding: 24px 16px; text-align: center;
  border: 2px solid var(--line-soft); cursor: pointer; transition: .2s;
}
.uc-rc-card:hover { border-color: var(--sun-light); }
.uc-rc-card.on { border-color: var(--sun); background: var(--sun-soft); }
.uc-rc-amount { font-size: 26px; font-weight: 900; color: var(--warm-red-deep); }
.uc-rc-bonus { font-size: 13px; color: var(--eco); font-weight: 700; margin-top: 4px; }
.uc-rc-submit { margin-bottom: 14px; }
.uc-rc-tip { font-size: 12.5px; color: var(--ink-soft); line-height: 1.8; }

/* 充值记录（储值页内管理充值单与退款入口） */
.uc-rc-hd {
  font-size: 16px; font-weight: 800; color: var(--warm-red-deep);
  margin: 26px 0 12px; padding-top: 18px; border-top: 1.5px dashed var(--line-soft);
}
.uc-rc-rec { cursor: default; }
.uc-rc-rec .uc-o-foot { flex-wrap: wrap; gap: 8px; }
.rc-in-foot { margin-left: auto; }

/* 售后卡片 */
.uc-as-card {
  background: #fff; border-radius: var(--radius); padding: 18px 20px;
  box-shadow: var(--shadow); margin-bottom: 14px; border: 1.5px solid var(--line-soft);
}
.uc-as-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.uc-as-id { font-size: 13px; font-weight: 700; color: var(--brown-soft); }
.uc-as-badge { font-size: 12px; padding: 3px 10px; border-radius: 999px; font-weight: 700; }
.uc-as-badge.b-pending { background: #FFF3E0; color: #E65100; }
.uc-as-badge.b-agreed { background: #E3F2FD; color: #1565C0; }
.uc-as-badge.b-refunded { background: #FFEBEE; color: #C62828; }
.uc-as-badge.b-exchanged { background: #E8F5E9; color: #2E7D32; }
.uc-as-badge.b-rejected { background: #ECEFF1; color: #546E7A; }
.uc-as-line { display: flex; gap: 12px; padding: 4px 0; font-size: 14px; border-bottom: 1px dashed var(--line-soft); }
.uc-as-k { flex-shrink: 0; min-width: 70px; color: var(--ink-soft); font-weight: 600; }
.uc-as-foot { margin-top: 8px; font-size: 12px; }

/* 订单详情弹窗 */
.modal-detail { max-width: 520px; }
.uc-od-status { text-align: center; margin-bottom: 18px; }
.uc-od-big { font-size: 22px; font-weight: 900; display: block; }
.uc-od-big.s-created { color: var(--sun-deep); }
.uc-od-big.s-paid { color: var(--eco); }
.uc-od-big.s-delivering { color: #1565C0; }
.uc-od-big.s-done { color: var(--ink-soft); }
.uc-od-big.s-canceled { color: #999; }
.uc-od-big.s-refunded { color: #C62828; }
.uc-od-status .muted { display: block; font-size: 13px; margin-top: 4px; }

.uc-od-card { background: var(--cream); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 14px; }
.uc-od-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: 14.5px; border-bottom: 1px dashed var(--line-soft); }
.uc-od-name { flex: 1; color: var(--ink); font-weight: 600; }
.uc-od-price { font-weight: 700; color: var(--brown); }
.uc-od-line { display: flex; justify-content: space-between; align-items: baseline; padding: 6px 0; font-size: 14px; }
.uc-od-k { color: var(--ink-soft); font-weight: 600; min-width: 70px; }
.uc-od-total { border-top: 1.5px solid var(--line); margin-top: 6px; padding-top: 10px; }
.uc-price { font-size: 20px; font-weight: 900; color: var(--warm-red-deep); }

.uc-od-actions { display: flex; gap: 10px; margin-top: 18px; }
.uc-od-actions .btn { flex: 1; font-size: 15px; padding: 12px 20px; }

/* 售后申请表单 */
#asOrderSummary { background: var(--cream); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 16px; }

/* 错误提示 */
.uc-error { text-align: center; padding: 40px 20px; color: var(--warm-red); font-size: 14px; }

/* ===== 响应式 · 会员中心 ===== */
@media (max-width: 960px) {
  .uc-rc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .uc-login-card { padding: 36px 24px; }
  .uc-login-card h1 { font-size: 24px; }
  .uc-vip-card { padding: 22px 20px; }
  .uc-vip-stats { gap: 12px; }
  .uc-vs-num { font-size: 20px; }
  .uc-level-track { flex-direction: column; gap: 4px; }
  .uc-lv-arrow { transform: rotate(90deg); }
  .uc-lv-node { min-width: 100%; }
  .uc-tabs { flex-wrap: wrap; border-radius: var(--radius); }
  .uc-tab { flex: 1 1 50%; font-size: 13px; }
  .uc-card { padding: 14px 16px; }
  .uc-o-total { font-size: 16px; }
  .uc-rc-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .uc-rc-card { padding: 18px 12px; }
  .uc-rc-amount { font-size: 22px; }
  .uc-plan-card { padding: 18px 16px; }
  .uc-plan-foot { flex-direction: column; gap: 12px; align-items: flex-start; }
  .uc-od-actions { flex-direction: column; }
  .modal-detail { width: 96%; }
}

/* ===== 资产变动记录（积分/成长值/储值余额流水） ===== */
.uc-log-filters { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.uc-log-filter { padding: 6px 14px; border-radius: 999px; border: 1px solid #e8ddc4; background: #fdfaf1; color: #8a6d3b; font-size: 13px; cursor: pointer; transition: all .15s; }
.uc-log-filter:hover { border-color: #d4b95a; }
.uc-log-filter.active { background: var(--primary, #f7b500); border-color: var(--primary, #f7b500); color: #fff; font-weight: 600; }
.uc-log-item { display: flex; align-items: center; gap: 12px; padding: 13px 14px; background: #fff; border: 1px solid #f0ead9; border-radius: 14px; margin-bottom: 10px; }
.uc-log-ico { width: 38px; height: 38px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex: none; }
.uc-log-ico.up { background: #fdeeee; }
.uc-log-ico.down { background: #eef7ee; }
.uc-log-main { flex: 1; min-width: 0; }
.uc-log-reason { font-size: 14px; font-weight: 600; color: #3d3421; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.uc-log-meta { font-size: 12px; color: #a89f8a; margin-top: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.uc-log-delta { font-size: 16px; font-weight: 700; flex: none; font-variant-numeric: tabular-nums; }
.uc-log-delta.up { color: #d84a3a; }
.uc-log-delta.down { color: #3a9a4e; }
@media (max-width: 680px) {
  .uc-log-item { padding: 11px 12px; gap: 10px; }
  .uc-log-ico { width: 32px; height: 32px; font-size: 15px; border-radius: 10px; }
  .uc-log-delta { font-size: 14px; }
  .uc-log-reason { font-size: 13px; }
}

/* ===== 顶部三个数字卡片（可点击进入变动记录） ===== */
.uc-vs-link { cursor: pointer; transition: transform .15s ease, opacity .15s ease; position: relative; }
.uc-vs-link:hover { transform: translateY(-2px); opacity: .92; }
.uc-vs-link:active { transform: translateY(0); opacity: .8; }
.uc-vs-link .uc-vs-label { display: inline-flex; align-items: center; gap: 4px; }
.uc-vs-arrow { font-size: 14px; color: rgba(255,255,255,.55); font-weight: 400; transition: transform .2s, color .2s; }
.uc-vs-link:hover .uc-vs-arrow { transform: translateX(2px); color: rgba(255,255,255,.9); }
