/* @import url(gouwucun_meiqinggen.css); */
/* ─── Reset & Base ─────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --navy:   #0d1b2e;
      --navy2:  #112240;
      --navy3:  #0a1628;
      --gold:   #c9a84c;
      --gold2:  #e8c96a;
      --gold3:  #f5dfa0;
      --white:  #ffffff;
      --gray:   #a8b2c0;
      --light:  #f5f6f8;
      --border: rgba(201,168,76,0.25);
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
      background: var(--navy);
      color: var(--white);
      line-height: 1.6;
    }
    a { text-decoration: none; color: inherit; }

    /* ─── NAV ───────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px;
      height: 64px;
      background: rgba(10,22,40,0.88);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }
    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      font-size: 20px; font-weight: 700; letter-spacing: 0.04em;
      color: var(--white);
    }
    .nav-logo span { color: var(--gold); }
    .nav-links { display: flex; gap: 36px; }
    .nav-links a {
      font-size: 14px; color: rgba(255,255,255,0.75);
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      background: var(--gold);
      color: var(--navy3) !important;
      font-weight: 600;
      padding: 6px 20px;
      border-radius: 4px;
      transition: background .2s !important;
    }
    .nav-cta:hover { background: var(--gold2) !important; }

    /* ─── HERO ──────────────────────────────────────── */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: flex-end;
      padding-bottom: 110px;
      text-align: center;
      overflow: hidden;
    
        background-position: 
         center; background-size: cover; background-repeat:  no-repeat;
    }   #hero *:not(.scroll-hint){ position: relative; z-index: 3;}
    #hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 70%);
      pointer-events: none;
    }  #hero::after {
      content: '';
      position: absolute; inset: 0;
       background:
        linear-gradient(180deg, rgba(10,22,40,0.25) 0%, rgba(10,22,40,0.70) 55%, var(--navy3) 100%);
      pointer-events: none;
    }
    .hero-badge {
      display: inline-block;
      padding: 6px 20px;
      border: 1px solid var(--gold);
      border-radius: 20px;
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--gold2);
      margin-bottom: 20px;
    }
    #hero h1 {
      font-size: clamp(38px, 6vw, 68px);
      font-weight: 800;
      letter-spacing: .03em;
      color: var(--white);
      text-shadow: 0 2px 24px rgba(0,0,0,0.4);
      margin-bottom: 10px;
    }
    #hero h2 {
      font-size: clamp(17px, 2.4vw, 24px);
      font-style: italic;
      font-weight: 400;
      color: var(--gold2);
      margin-bottom: 18px;
      letter-spacing: .04em;
    }
    .hero-sub {
      font-size: 15px;
      color: rgba(255,255,255,0.70);
      margin-bottom: 38px;
      letter-spacing: .02em;
      max-width: 560px;
      line-height: 1.8;
    }
    .hero-btns {
      display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--gold);
      color: var(--navy3);
      font-size: 15px; font-weight: 700;
      padding: 14px 34px;
      border-radius: 6px;
      border: none; cursor: pointer;
      transition: background .2s, transform .2s;
    }
    .btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent;
      color: var(--white);
      font-size: 15px; font-weight: 500;
      padding: 14px 34px;
      border-radius: 6px;
      border: 1.5px solid rgba(255,255,255,0.45);
      cursor: pointer;
      transition: border-color .2s, color .2s, transform .2s;
    }
    .btn-outline:hover { border-color: var(--gold2); color: var(--gold2); transform: translateY(-2px); }
    .scroll-hint { z-index: 10;
      position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 5px;
      color: rgba(255,255,255,0.35); font-size: 10px; letter-spacing: .08em;
    }
    .scroll-arrow {
      width: 22px; height: 22px;
      border-right: 2px solid rgba(255,255,255,0.35);
      border-bottom: 2px solid rgba(255,255,255,0.35);
      transform: rotate(45deg);
      animation: bounce 1.6s infinite;
    }
    @keyframes bounce {
      0%,100% { transform: rotate(45deg) translateY(0); }
      50%      { transform: rotate(45deg) translateY(5px); }
    }

    /* ─── PARTICIPATING VILLAGES STRIP ──────────────── */
    #villages-strip {
      background: var(--navy2);
      padding: 36px 48px;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .strip-label {
      text-align: center;
      font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 8px;
    }
    .strip-sub {
      text-align: center;
      font-size: 12px; color: rgba(255,255,255,0.35);
      margin-bottom: 22px;
    }
    .villages-grid {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
    }
    .village-chip {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 24px;
      padding: 8px 18px;
      font-size: 13px; color: rgba(255,255,255,0.78);
      display: flex; align-items: center; gap: 6px;
      transition: background .2s, border-color .2s, color .2s;
    }
    .village-chip:hover {
      background: rgba(201,168,76,0.10);
      border-color: var(--gold);
      color: var(--gold2);
    }
    .flag { font-size: 15px; }
    .chip-city { font-size: 11px; color: rgba(255,255,255,0.35); margin-left: 2px; }

    /* ─── SECTION COMMON ────────────────────────────── */
    section { padding: 92px 24px; }
    .section-tag {
      text-align: center;
      font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 12px;
    }
    .section-title {
      text-align: center;
      font-size: clamp(24px, 4vw, 36px);
      font-weight: 700; color: var(--white);
      margin-bottom: 14px;
    }
    .section-line {
      width: 48px; height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold2));
      border-radius: 2px;
      margin: 0 auto 16px;
    }
    .section-desc {
      text-align: center;
      font-size: 15px; color: var(--gray);
      max-width: 620px; margin: 0 auto 56px;
      line-height: 1.85;
    }

    /* ─── INFO CARDS ────────────────────────────────── */
    #info { background: var(--light); }
    #info .section-tag  { color: #b08730; }
    #info .section-title{ color: #1a2332; }
    #info .section-desc { color: #5c6777; }
    .info-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      max-width: 1100px; margin: 0 auto;
    }
    .info-card {
      background: var(--white);
      border-radius: 12px;
      padding: 36px 24px 30px;
      text-align: center;
      box-shadow: 0 4px 24px rgba(0,0,0,0.07);
      transition: transform .25s, box-shadow .25s;
    }
    .info-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.13); }
    .ic-icon {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: var(--navy2);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      font-size: 26px;
    }
    .ic-label { font-size: 15px; font-weight: 600; color: #1a2332; margin-bottom: 10px; }
    .ic-value {
      font-size: 28px; font-weight: 800;
      color: #b08730; line-height: 1.2;
    }
    .ic-value small { font-size: 15px; font-weight: 600; color: #b08730; }
    .ic-note { font-size: 13px; color: #888; margin-top: 8px; line-height: 1.55; }

    /* ─── BENEFITS ──────────────────────────────────── */
    #benefits { background: var(--navy3); }
    .benefit-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      max-width: 1100px; margin: 0 auto;
    }
    .benefit-card {
      background: var(--navy2);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 14px;
      padding: 38px 28px 34px;
      text-align: center;
      position: relative;
      transition: border-color .25s, transform .25s;
    }
    .benefit-card:hover { border-color: var(--gold); transform: translateY(-5px); }
    .benefit-card.featured {
      border-color: var(--gold);
      background: linear-gradient(145deg, #122040, #1a2e50);
    }
    .best-badge {
      position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
      background: var(--gold);
      color: var(--navy3);
      font-size: 11px; font-weight: 700;
      padding: 4px 14px; border-radius: 12px;
      letter-spacing: .06em;
      white-space: nowrap;
    }
    .bc-icon {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: rgba(201,168,76,0.12);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      font-size: 30px;
    }
    .bc-title { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
    .bc-value {
      font-size: 44px; font-weight: 800;
      color: var(--gold2);
      line-height: 1;
      margin-bottom: 6px;
    }
    .bc-value sup { font-size: 18px; vertical-align: super; }
    .bc-value span { font-size: 18px; }
    .bc-desc { font-size: 13px; color: var(--gray); margin-bottom: 20px; line-height: 1.7; }
    .bc-list {
      list-style: none;
      text-align: left;
      display: inline-block;
    }
    .bc-list li {
      font-size: 13px; color: rgba(255,255,255,0.65);
      padding: 4px 0;
      display: flex; align-items: center; gap: 8px;
    }
    .bc-list li::before { content: '✓'; color: var(--gold); font-weight: 700; }
    .tag-btn {
      display: inline-block;
      background: rgba(201,168,76,0.18);
      color: var(--gold2);
      font-size: 12px; font-weight: 600;
      padding: 5px 14px; border-radius: 4px;
      margin-top: 4px;
    }
    .teal-btn {
      background: rgba(0,176,167,0.18);
      color: #4dd9d4;
    }

    /* ─── FORM ──────────────────────────────────────── */
    #register {
      background: linear-gradient(160deg, var(--navy2) 0%, var(--navy3) 100%);
      border-top: 1px solid var(--border);
    }
    .form-wrap {
      max-width: 600px; margin: 0 auto;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 16px;
      padding: 48px 44px 44px;
    }
    .form-row { margin-bottom: 20px; }
    .form-row label {
      display: block;
      font-size: 13px; color: var(--gray);
      margin-bottom: 7px;
      letter-spacing: .02em;
    }
    .form-row label .req { color: var(--gold); margin-left: 2px; }
    .form-control {
      width: 100%;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 8px;
      color: var(--white);
      font-size: 14px;
      padding: 12px 16px;
      outline: none;
      transition: border-color .2s, background .2s;
      -webkit-appearance: none;
      appearance: none;
    }
    .form-control::placeholder { color: rgba(255,255,255,0.28); }
    .form-control:focus {
      border-color: var(--gold);
      background: rgba(201,168,76,0.06);
    }
    select.form-control {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 38px;
      cursor: pointer;
    }
    select.form-control option { background: #1a2e50; color: var(--white); }
    .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .checkbox-row {
      display: flex; align-items: flex-start; gap: 10px;
      margin: 22px 0 26px;
    }
    .checkbox-row input[type="checkbox"] {
      margin-top: 3px; width: 16px; height: 16px;
      accent-color: var(--gold);
      flex-shrink: 0; cursor: pointer;
    }
    .checkbox-row label {
      font-size: 13px; color: var(--gray); line-height: 1.6;
    }
    .checkbox-row a { color: var(--gold2); text-decoration: underline; }
    .btn-submit {
      width: 100%;
      background: linear-gradient(90deg, var(--gold), var(--gold2));
      color: var(--navy3);
      font-size: 16px; font-weight: 700;
      padding: 16px;
      border-radius: 8px;
      border: none; cursor: pointer;
      letter-spacing: .04em;
      transition: opacity .2s, transform .2s;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .btn-submit:hover { opacity: .9; transform: translateY(-2px); }

    /* ─── NOTES ─────────────────────────────────────── */
    #notes {
      background: var(--navy3);
      padding: 36px 24px 56px;
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .notes-inner {
      max-width: 760px; margin: 0 auto;
      color: rgba(255,255,255,0.32);
      font-size: 12px; line-height: 1.95;
    }
    .notes-inner p { margin-bottom: 5px; }

    /* ─── FOOTER ─────────────────────────────────────── */
    footer {
      background: rgba(0,0,0,0.28);
      text-align: center;
      padding: 22px;
      font-size: 12px;
      color: rgba(255,255,255,0.22);
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    footer a { color: var(--gold); }

    /* ─── RESPONSIVE ────────────────────────────────── */
    @media (max-width: 768px) {
      nav { padding: 0 20px; }
      .nav-links { gap: 18px; }
      #hero { padding-bottom: 76px; }
      #villages-strip { padding: 30px 20px; }
      section { padding: 60px 20px; }
      .form-wrap { padding: 32px 22px 28px; }
      .form-row-2 { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .nav-links .hide-sm { display: none; }
    }
    /* .discount-section { background: #fff;}
    .how-to-use,.voucher-info, .partner-badge {background: rgba(0,0,0,0.02);}
.how-to-use h3{ color: #000;}
.step-content h4{ color: #000;}
.step-content p{ color: #000;}
.voucher-info, .partner-badge{ color: #000;} */


/* 基础重置与通用样式 */
.discount-section {
  padding: 40px 0;
  background-color: #f9f9f9;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 标题样式 */
.how-to-use h3 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  display: flex;
  align-items: center; justify-content: center;
  gap: 10px;
}

 

/* 步骤容器 */
.steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* 单个步骤 */
.step {
  display: flex;
  align-items: center; 
  flex-direction: column; text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  min-width: 220px;
  max-width: 260px;
}

.step-number {
  background: var(--navy2);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
 
  flex-shrink: 0;
}

.step-content h4 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #333;
}

.step-content p {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* 箭头图标 */
.step-arrow {
  color: #ccc;
  font-size: 20px;
  display: none; /* 默认隐藏，在桌面端显示 */
}

/* 凭证信息提示 */
.voucher-info {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  color: #777;
}

.voucher-info i {
  color: #4dd9d4;
  margin-right: 6px;
}

/* ===== 响应式：桌面端 ===== */
@media (min-width: 768px) {
  .steps {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .step-arrow {
    display: block; /* 桌面显示箭头 */
  }
}

/* ===== 响应式：手机端（<768px） ===== */
@media (max-width: 767px) {
  .discount-section {
    padding: 24px 0;
  }

  .how-to-use h3 {
    font-size: 20px;
    text-align: center;
  }

  .steps {
    flex-direction: column;
    gap: 16px;
  }

  .step {
    width: 100%;
    max-width: none;
    flex-direction: row;
  }

  /* 手机端不显示箭头 */
  .step-arrow {
    display: none !important;
  }

  .voucher-info {
    margin-top: 20px;
    font-size: 13px;
  }
}