/* ============================================================
   退役军人综合服务平台 — 官网样式
   配色: 军绿 #3A5A2A | 深蓝 #1A2B4A | 荣誉红 #C0392B | 金色 #D4A017
============================================================ */

/* ===== 1. CSS 变量 & 重置 ===== */
:root {
  --army-green:  #3A5A2A;
  --army-green-light: #4E7A3A;
  --army-green-dark:  #2A4020;
  --navy-blue:   #1A2B4A;
  --navy-blue-light: #253C63;
  --navy-blue-dark:  #0E1A2E;
  --honor-red:   #C0392B;
  --honor-red-light: #D44;
  --gold:        #D4A017;
  --gold-light:  #E8B824;
  --white:       #FFFFFF;
  --gray-100:    #F5F5F2;
  --gray-200:    #EBEBEB;
  --gray-400:    #AAAAAA;
  --gray-600:    #666666;
  --gray-800:    #333333;
  --text-dark:   #1A1A1A;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.18);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --transition:  0.3s ease;
  --font-main:   'Microsoft YaHei', '微软雅黑', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
  --max-width:   1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== 2. 通用区块标题 ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  padding: 4px 16px;
  border: 1.5px solid var(--army-green);
  color: var(--army-green);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  color: var(--navy-blue-dark);
  line-height: 1.3;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== 3. 按钮 ===== */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--honor-red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(192,57,43,0.4);
}
.btn-primary:hover {
  background: #a93226;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(192,57,43,0.5);
}
.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.28);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ===== 4. 顶部导航 ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 43, 74, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gold);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(14, 26, 46, 0.98);
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  height: 44px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--honor-red), #8B0000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
}
.logo-icon .star {
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}
.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-main {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.logo-sub {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 16px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%; height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: transform 0.25s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
}
.nav-link:hover::after, .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}
.btn-download-header {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: var(--honor-red);
  color: var(--white);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}
.btn-download-header:hover {
  background: #a93226;
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== 5. Hero Banner ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  max-height: 920px;
  overflow: hidden;
}
.hero-slides { width: 100%; height: 100%; position: relative; }
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.slide-1 .slide-bg {
  background: linear-gradient(135deg,
    var(--navy-blue-dark) 0%,
    var(--navy-blue) 40%,
    #152840 100%);
}
.slide-2 .slide-bg {
  background: linear-gradient(135deg,
    #0A1A0A 0%,
    var(--army-green-dark) 40%,
    #1A3020 100%);
}
.slide-3 .slide-bg {
  background: linear-gradient(135deg,
    #1A0A0A 0%,
    #3D1515 40%,
    var(--honor-red-dark, #8B0000) 100%);
}
.slide-4 .slide-bg {
  background: linear-gradient(135deg,
    #0A0A1A 0%,
    var(--navy-blue-dark) 40%,
    #0E1840 100%);
}
.slide-5 .slide-bg {
  background: linear-gradient(135deg,
    #0A1505 0%,
    var(--army-green-dark) 30%,
    var(--navy-blue-dark) 70%,
    #1A0A2E 100%);
}
/* 几何纹理叠加 */
.slide-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(255,255,255,0.012) 20px,
      rgba(255,255,255,0.012) 21px
    );
}
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-top: 70px;
}
.slide-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(212, 160, 23, 0.18);
  border: 1px solid rgba(212,160,23,0.5);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 20px;
  margin-right: 8px;
  margin-bottom: 8px;
}
.badge-gold { background: rgba(212,160,23,0.2); border-color: var(--gold); color: var(--gold); }
.badge-red  { background: rgba(192,57,43,0.18); border-color: rgba(192,57,43,0.5); color: #FF6B6B; }
.badge-green { background: rgba(58,90,42,0.18); border-color: rgba(58,90,42,0.5); color: #7BC67E; }

.slide-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 18px;
}
.slide-title {
  font-size: clamp(32px, 6vw, 62px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.slide-title .highlight {
  color: var(--gold);
  display: block;
}
.slide-desc {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
  line-height: 1.85;
}
.slide-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 20px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  transition: var(--transition);
}
.btn-ghost:hover { color: #fff; border-bottom-color: #fff; }

/* 迷你数据条 */
.slide-mini-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
  width: fit-content;
}
.sms-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
  padding: 0 12px;
}
.sms-item strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.sms-item strong span { font-size: 13px; }
.sms-item > span {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.sms-div { width: 1px; height: 30px; background: rgba(255,255,255,0.12); }

/* 服务图标网格 */
.slide-service-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.ssi-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 30px;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.ssi-item:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(212,160,23,0.4);
  transform: translateY(-2px);
}
.ssi-icon { font-size: 16px; }
.ssi-label { font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 500; white-space: nowrap; }

/* 商城福利标签 */
.slide-benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.sbtag {
  padding: 8px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
}

/* 职位类型 */
.slide-job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.sjt-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}
.sjt-item:nth-child(odd) { background: rgba(58,90,42,0.2); color: #7BC67E; border: 1px solid rgba(58,90,42,0.3); }
.sjt-item:nth-child(even) { background: rgba(26,43,74,0.4); color: rgba(255,255,255,0.85); border: 1px solid rgba(26,43,74,0.5); }
.sjt-item:hover { transform: translateY(-2px); }
.sjt-item span { font-size: 14px; }

/* 招募类型 */
.slide-recruit-types {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.srt-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  font-size: 28px;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.srt-item span { font-size: 12px; color: rgba(255,255,255,0.75); font-weight: 600; letter-spacing: 1px; }
.srt-item:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }

/* ===== Slide 装饰元素 ===== */

/* 粒子场 */
.particle-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.p {
  position: absolute;
  color: rgba(212,160,23,0.2);
  animation: particleFloat var(--dur, 8s) ease-in-out infinite;
}
.p1  { left: 5%;  top: 15%; font-size: 14px; --dur: 6s;  animation-delay: 0s; }
.p2  { left: 15%; top: 70%; font-size: 10px; --dur: 7s;  animation-delay: 1s; }
.p3  { left: 25%; top: 30%; font-size: 18px; --dur: 9s;  animation-delay: 0.5s; }
.p4  { left: 45%; top: 80%; font-size: 12px; --dur: 8s;  animation-delay: 2s; }
.p5  { left: 60%; top: 20%; font-size: 16px; --dur: 10s; animation-delay: 1.5s; }
.p6  { left: 75%; top: 60%; font-size: 8px;  --dur: 7s;  animation-delay: 3s; }
.p7  { left: 85%; top: 35%; font-size: 14px; --dur: 9s;  animation-delay: 0.8s; }
.p8  { left: 90%; top: 75%; font-size: 10px; --dur: 6s;  animation-delay: 2.5s; }
.p9  { left: 35%; top: 50%; font-size: 12px; --dur: 8s;  animation-delay: 4s; }
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
  50%       { transform: translateY(-20px) rotate(180deg); opacity: 0.35; }
}

/* 装饰-奖牌 */
.deco-medal {
  position: relative;
  width: 180px; height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.medal-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(212,160,23,0.3);
  animation: rotateSlow 12s linear infinite;
}
.medal-ring::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 2px dashed rgba(212,160,23,0.2);
  animation: rotateSlow 8s linear infinite reverse;
}
.medal-inner {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,160,23,0.2), rgba(192,57,43,0.15));
  border: 2px solid rgba(212,160,23,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  backdrop-filter: blur(8px);
}
.medal-star { font-size: 36px; color: var(--gold); margin-bottom: 4px; }
.medal-text { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); line-height: 1.4; }
.medal-text small { font-size: 10px; letter-spacing: 2px; color: rgba(255,255,255,0.5); }

.deco-star-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}
.dsr { color: var(--gold); opacity: 0.25; font-size: 14px; animation: twinkle var(--d, 3s) ease-in-out infinite; }
.dsr.s1 { font-size: 18px; --d: 2s; animation-delay: 0s; }
.dsr.s2 { font-size: 10px; --d: 3s; animation-delay: 0.5s; }
.dsr.s3 { font-size: 14px; --d: 4s; animation-delay: 1s; }
.dsr.s4 { font-size: 8px;  --d: 2.5s; animation-delay: 1.5s; }
.dsr.s5 { font-size: 12px; --d: 3.5s; animation-delay: 2s; }
@keyframes twinkle {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

/* 装饰-盾牌 */
.deco-shield {
  width: 190px; height: 230px;
  background: linear-gradient(180deg, rgba(212,160,23,0.15) 0%, rgba(192,57,43,0.1) 100%);
  border: 2px solid rgba(212,160,23,0.4);
  clip-path: polygon(50% 0%, 100% 20%, 100% 70%, 50% 100%, 0% 70%, 0% 20%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 20px;
}
.shield-inner { text-align: center; color: rgba(255,255,255,0.9); }
.shield-star { font-size: 18px; color: var(--gold); letter-spacing: 2px; margin-bottom: 8px; }
.shield-text { font-size: 14px; font-weight: 700; letter-spacing: 3px; color: rgba(255,255,255,0.7); }

.deco-badge-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.dbr-item {
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 30px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  text-align: center;
}

/* 装饰-商品卡 */
.deco-product-card {
  width: 140px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  backdrop-filter: blur(8px);
  margin-bottom: 12px;
  transition: var(--transition);
}
.deco-product-card:hover { transform: translateY(-5px) scale(1.05); background: rgba(255,255,255,0.15); }
.dpc-img { font-size: 40px; margin-bottom: 8px; }
.dpc-title { font-size: 13px; color: rgba(255,255,255,0.85); margin-bottom: 6px; font-weight: 500; }
.dpc-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}
.dpc-price span { font-size: 12px; font-weight: 600; }
.dpc-tag {
  display: inline-block;
  padding: 2px 10px;
  background: var(--honor-red);
  color: #fff;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}
.deco-coupon {
  width: 130px;
  background: linear-gradient(135deg, var(--honor-red), #8B0000);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(192,57,43,0.4);
}
.dc-amount { font-size: 16px; color: rgba(255,255,255,0.8); }
.dc-amount strong { font-size: 32px; color: #fff; }
.dc-label { font-size: 12px; color: rgba(255,255,255,0.8); margin: 4px 0; font-weight: 600; }
.dc-exp { font-size: 10px; color: rgba(255,255,255,0.6); }

/* 装饰-简历卡 */
.deco-resume-card {
  width: 200px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 20px;
  backdrop-filter: blur(8px);
  margin-bottom: 14px;
}
.drc-top { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 12px; font-weight: 600; }
.drc-bar {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}
.drc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--army-green), var(--gold));
  border-radius: 3px;
  animation: fillBar 2s ease forwards;
}
@keyframes fillBar {
  from { width: 0 !important; }
  to   { width: 78%; }
}
.drc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.drc-tags span {
  padding: 2px 8px;
  background: rgba(58,90,42,0.3);
  color: #7BC67E;
  border-radius: 10px;
  font-size: 11px;
}
.drc-stat { font-size: 11px; color: rgba(255,255,255,0.55); }
.drc-stat strong { color: var(--gold); font-size: 14px; }

.deco-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dtb-item {
  padding: 7px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 30px;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  text-align: center;
}

/* 装饰-握手 */
.deco-handshake {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.dhh-circle {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,160,23,0.2), rgba(192,57,43,0.15));
  border: 2px solid rgba(212,160,23,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseCircle 3s ease-in-out infinite;
}
.dhh-star { font-size: 48px; }
@keyframes pulseCircle {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212,160,23,0.3); }
  50%       { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(212,160,23,0); }
}
.dhh-text { font-size: 16px; font-weight: 800; color: rgba(255,255,255,0.8); text-align: center; line-height: 1.4; }

.deco-city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 16px;
  max-width: 200px;
}
.deco-city-tags span {
  padding: 4px 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

/* 轮播进度条 */
.hero-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.1);
  z-index: 10;
}
.hp-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--army-green), var(--gold), var(--honor-red));
  border-radius: 0 2px 2px 0;
}

/* ===== 左侧装饰区域 ===== */
.slide-left-deco {
  position: absolute;
  left: 3%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 160px;
}
.sld-line {
  width: 3px;
  height: 100px;
  background: linear-gradient(180deg, var(--gold), transparent);
  border-radius: 2px;
  margin-bottom: 8px;
}
/* Slide 1: 大数字 */
.sld-big-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 30px rgba(212,160,23,0.5);
}
.sld-big-num span { font-size: 20px; font-weight: 600; }
.sld-label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  text-align: left;
}
.sld-icon-list { display: flex; flex-direction: column; gap: 6px; }
.sil-item {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  padding-left: 8px;
  border-left: 2px solid var(--gold);
}
/* Slide 2: 服务进度 */
.sld-section-title {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.sld-progress-list { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.spl-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spl-item span { font-size: 11px; color: rgba(255,255,255,0.7); }
.spl-bar {
  width: 130px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.spl-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--honor-red));
  border-radius: 2px;
  animation: fillBar 2s ease-out forwards;
}
/* Slide 3: 价格对比 */
.sld-discount-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--honor-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 2px;
}
.sld-price-compare { display: flex; flex-direction: column; gap: 8px; }
.spc-item { display: flex; flex-direction: column; gap: 2px; }
.spc-old { font-size: 10px; color: rgba(255,255,255,0.4); text-decoration: line-through; }
.spc-new { font-size: 14px; color: var(--gold); font-weight: 700; }
.spc-new strong { font-size: 18px; }
.sld-seal {
  margin-top: 8px;
  width: 60px;
  height: 60px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1.3;
  background: rgba(212,160,23,0.1);
}
.sld-seal small { font-size: 9px; font-weight: 400; display: block; }
/* Slide 4: 薪资统计 */
.sld-salary {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}
.ss-avg { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 2px; }
.ss-num { font-size: 32px; font-weight: 900; color: var(--gold); line-height: 1.2; }
.ss-num span { font-size: 14px; font-weight: 600; }
.ss-unit { font-size: 10px; color: rgba(255,255,255,0.5); }
.sld-stat-list { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.ssl-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  border-left: 2px solid var(--gold);
}
.ssl-item strong { font-size: 14px; color: var(--gold); font-weight: 700; }
.ssl-item span { font-size: 10px; color: rgba(255,255,255,0.5); }
/* Slide 5: 合作伙伴 */
.sld-partner-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.spi-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 22px;
}
.spi-item span { font-size: 9px; color: rgba(255,255,255,0.6); }
.sld-benefit-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 10px;
}
.sbb-row { font-size: 11px; color: var(--gold); letter-spacing: 0.5px; }
/* 响应式 */
@media (max-width: 1100px) {
  .slide-left-deco { display: none; }
}
@media (max-width: 768px) {
  .slide-left-deco { display: none; }
}

/* Slide 装饰 */
.slide-deco {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
@media (max-width: 1024px) {
  .slide-deco { right: 2%; }
}
@media (max-width: 768px) {
  .slide-deco { display: none; }
}
.deco-star {
  position: absolute;
  color: var(--gold);
  opacity: 0.15;
  font-size: 80px;
  animation: floatStar 6s ease-in-out infinite;
}
.deco-star-1 { top: -60px; left: 20px; animation-delay: 0s; font-size: 50px; opacity: 0.3; }
.deco-star-2 { top: 40px; right: -20px; animation-delay: 2s; font-size: 30px; opacity: 0.2; }
.deco-star-3 { bottom: -30px; left: 60px; animation-delay: 4s; font-size: 40px; opacity: 0.25; }

.deco-shield {
  width: 200px; height: 240px;
  background: linear-gradient(180deg, rgba(212,160,23,0.15) 0%, rgba(192,57,43,0.1) 100%);
  border: 2px solid rgba(212,160,23,0.4);
  clip-path: polygon(50% 0%, 100% 20%, 100% 70%, 50% 100%, 0% 70%, 0% 20%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.shield-inner { text-align: center; color: rgba(255,255,255,0.9); }
.shield-star { font-size: 18px; color: var(--gold); letter-spacing: 2px; margin-bottom: 8px; }
.shield-text { font-size: 14px; font-weight: 700; letter-spacing: 3px; color: rgba(255,255,255,0.7); }

.service-icons-float { position: relative; width: 200px; height: 200px; }
.float-icon {
  position: absolute;
  font-size: 40px;
  animation: floatIcon 4s ease-in-out infinite;
}
.fi-1 { top: 0; left: 40px; animation-delay: 0s; }
.fi-2 { top: 30px; right: 0; animation-delay: 1s; }
.fi-3 { bottom: 30px; left: 0; animation-delay: 2s; }
.fi-4 { bottom: 0; right: 30px; animation-delay: 3s; }

.deco-card {
  width: 220px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(10px);
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.card-top {
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.card-mid {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 4px;
}
.card-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}
.card-badge {
  display: inline-block;
  padding: 4px 16px;
  background: var(--army-green);
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* 轮播控制 */
.hero-controls {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}
.hero-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  backdrop-filter: blur(4px);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-btn:hover {
  background: rgba(255,255,255,0.3);
  border-color: #fff;
}
.hero-dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ===== 6. 统计栏 ===== */
.stats-bar {
  background: var(--navy-blue);
  padding: 0;
  position: relative;
  z-index: 5;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px;
  position: relative;
}
.stat-num {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: inline-block;
}
.stat-unit {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  display: inline-block;
  margin-left: 2px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  letter-spacing: 1px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ===== 7. 平台简介 ===== */
.about {
  padding: 96px 0;
  background: var(--gray-100);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
}
.about-emblem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.emblem-outer {
  width: 240px; height: 240px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.emblem-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--army-green);
  opacity: 0.3;
  animation: rotateSlow 20s linear infinite;
}
.emblem-ring::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 2px dashed var(--gold);
  opacity: 0.4;
}
.emblem-core {
  width: 170px; height: 170px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-blue-dark), var(--navy-blue));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 40px rgba(26,43,74,0.35);
  border: 3px solid rgba(212,160,23,0.3);
}
.emblem-star {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 8px;
}
.emblem-text {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.emblem-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.etag {
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}
.etag:nth-child(1) { background: rgba(58,90,42,0.12); color: var(--army-green); border: 1px solid var(--army-green); }
.etag:nth-child(2) { background: rgba(26,43,74,0.08); color: var(--navy-blue); border: 1px solid var(--navy-blue); }
.etag:nth-child(3) { background: rgba(192,57,43,0.08); color: var(--honor-red); border: 1px solid var(--honor-red); }
.etag:nth-child(4) { background: rgba(212,160,23,0.1); color: #9B7210; border: 1px solid var(--gold); }

.about-intro p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 16px;
}
.about-intro strong { color: var(--navy-blue-dark); }
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.pillar:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pillar-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.pillar-info { display: flex; flex-direction: column; gap: 2px; }
.pillar-info strong { font-size: 14px; color: var(--text-dark); }
.pillar-info span { font-size: 12px; color: var(--gray-600); }

/* ===== 8. 七大服务 ===== */
.services {
  padding: 96px 0;
  background: linear-gradient(180deg, #fff 0%, var(--gray-100) 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-inner {
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.service-card-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.card-honor .service-card-inner::before { background: linear-gradient(90deg, var(--gold), var(--honor-red)); }
.card-shop  .service-card-inner::before { background: linear-gradient(90deg, var(--honor-red), #E74C3C); }
.card-job   .service-card-inner::before { background: linear-gradient(90deg, var(--navy-blue), var(--army-green)); }
.card-food  .service-card-inner::before { background: linear-gradient(90deg, #E67E22, #F39C12); }
.card-errand .service-card-inner::before { background: linear-gradient(90deg, var(--army-green), #27AE60); }
.card-car   .service-card-inner::before { background: linear-gradient(90deg, #2980B9, #3498DB); }
.card-video .service-card-inner::before { background: linear-gradient(90deg, #8E44AD, #9B59B6); }
.card-cta   .service-card-inner::before { background: linear-gradient(90deg, var(--honor-red), var(--gold)); }

.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon { font-size: 28px; line-height: 1; }
.service-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 2px;
}
.service-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-blue-dark);
  line-height: 1.3;
}
.service-desc {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
}
.service-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.service-tags span {
  padding: 2px 10px;
  background: var(--gray-100);
  border-radius: 20px;
  font-size: 11px;
  color: var(--gray-600);
  font-weight: 500;
}
.service-scene {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 10px;
  background: rgba(58,90,42,0.05);
  border-left: 3px solid var(--army-green);
  border-radius: 0 6px 6px 0;
  font-size: 12px;
  color: var(--army-green-dark);
  line-height: 1.5;
}
.scene-icon { flex-shrink: 0; }

/* CTA 卡片 */
.card-cta { grid-column: span 1; }
.cta-inner {
  background: linear-gradient(135deg, var(--navy-blue-dark), var(--navy-blue)) !important;
  border-color: rgba(212,160,23,0.3) !important;
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.cta-star-row {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
}
.cta-inner h3 { color: #fff; font-size: 18px; font-weight: 700; }
.cta-inner p { color: rgba(255,255,255,0.75); font-size: 13px; }
.btn-cta-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--honor-red);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  margin-top: 4px;
  transition: var(--transition);
}
.btn-cta-download:hover { background: #a93226; transform: scale(1.04); }

/* ===== 9. 平台特色 ===== */
.features {
  padding: 96px 0;
  background: var(--navy-blue-dark);
  position: relative;
  overflow: hidden;
}
.features::before {
  content: '★';
  position: absolute;
  font-size: 400px;
  color: rgba(255,255,255,0.02);
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
}
.features .section-tag {
  border-color: rgba(212,160,23,0.5);
  color: var(--gold);
}
.features .section-title { color: #fff; }
.features .section-desc { color: rgba(255,255,255,0.6); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

.feature-item {
  padding: 32px 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}
.feature-item:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(212,160,23,0.3);
  transform: translateY(-4px);
}
.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.feature-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ===== 10. APP 下载区 ===== */
.download {
  padding: 100px 0;
  background: linear-gradient(135deg,
    var(--army-green-dark) 0%,
    var(--army-green) 50%,
    var(--navy-blue) 100%);
  position: relative;
  overflow: hidden;
}
.download::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,160,23,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(192,57,43,0.08) 0%, transparent 50%);
}
.download-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.download-title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin: 16px 0 20px;
}
.download-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 32px;
}
.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.dl-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  max-width: 260px;
}
.dl-ios {
  background: var(--white);
  color: var(--navy-blue-dark);
}
.dl-ios:hover { background: #f0f0f0; transform: translateX(4px); }
.dl-android {
  background: var(--honor-red);
  color: var(--white);
}
.dl-android:hover { background: #a93226; transform: translateX(4px); }
.download-tips {
  display: flex;
  gap: 20px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}
.download-tips span::before { margin-right: 2px; }

/* QR 码区 */
.download-qr-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.qr-box {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(6px);
  width: 160px;
}
.qr-img { margin-bottom: 10px; }
.qr-placeholder {
  width: 120px; height: 120px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-grid { position: relative; width: 100%; height: 100%; }
.qr-corner {
  position: absolute;
  width: 20px; height: 20px;
  border: 4px solid var(--navy-blue-dark);
}
.qr-tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.qr-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.qr-bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.qr-dots {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
}
.qd-row {
  display: flex;
  gap: 4px;
  align-items: center;
}
.qd-row span {
  width: 6px; height: 6px;
  border-radius: 1px;
  background: var(--navy-blue-dark);
  opacity: 0.7;
  display: inline-block;
}
.qd-row span:nth-child(even) { opacity: 0.2; }
.qd-star {
  background: none !important;
  color: var(--honor-red) !important;
  font-size: 12px !important;
  width: auto !important;
  height: auto !important;
  opacity: 1 !important;
}
.qr-alt .qd-row span { background: var(--army-green-dark); }
.qr-label {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.qr-sub { font-size: 11px; color: rgba(255,255,255,0.6); }

/* 手机模型 */
.phone-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.phone-frame {
  width: 220px;
  background: #0A0A0A;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
  position: relative;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 22px;
  background: #0A0A0A;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}
.phone-screen {
  background: var(--navy-blue-dark);
  border-radius: 26px;
  overflow: hidden;
  height: 400px;
  display: flex;
  flex-direction: column;
}
.phone-status-bar {
  display: flex;
  justify-content: space-between;
  padding: 28px 16px 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  flex-shrink: 0;
}
.phone-app-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--navy-blue);
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  flex-shrink: 0;
}
.ph-star { color: var(--gold); }
.phone-banner-mini {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px;
  padding: 10px 14px;
  background: linear-gradient(90deg, var(--honor-red), var(--army-green-dark));
  border-radius: 10px;
  font-size: 11px;
  color: #fff;
  flex-shrink: 0;
}
.ph-tag {
  padding: 2px 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  font-size: 10px;
}
.phone-grid-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 8px 12px;
  flex: 1;
}
.ph-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  font-size: 20px;
  cursor: default;
}
.ph-icon small { font-size: 8px; color: rgba(255,255,255,0.7); white-space: nowrap; }
.phone-bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}
.ph-center-btn {
  width: 30px; height: 30px;
  background: var(--honor-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  margin-top: -14px;
  box-shadow: 0 4px 12px rgba(192,57,43,0.5);
}
.phone-shadow {
  width: 160px; height: 16px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.3) 0%, transparent 70%);
  margin-top: -4px;
}

/* ===== 11. 荣誉墙 ===== */
.honor-section {
  padding: 80px 0;
  background: var(--gray-100);
}
.honor-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
@media (max-width: 900px)  { .honor-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px)  { .honor-grid { grid-template-columns: repeat(2, 1fr); } }

.honor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: #fff;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.honor-item:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.honor-icon { font-size: 36px; }
.honor-name {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.5;
  font-weight: 500;
}

/* ===== 12. 用户评价 ===== */
.testimonials {
  padding: 96px 0;
  background: #fff;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px)  { .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.testi-card {
  padding: 32px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 80px;
  color: var(--army-green);
  opacity: 0.08;
  font-family: Georgia, serif;
  line-height: 1;
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--army-green);
}
.testi-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-user { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-blue), var(--army-green));
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-info { display: flex; flex-direction: column; gap: 2px; }
.testi-info strong { font-size: 14px; color: var(--text-dark); }
.testi-info span { font-size: 12px; color: var(--gray-400); }

/* ===== 13. 页脚 ===== */
.footer {
  background: var(--navy-blue-dark);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 960px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-star {
  font-size: 32px;
  color: var(--gold);
}
.footer-logo-main {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.footer-logo-sub {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1px;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--army-green);
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a::before {
  content: '›';
  color: var(--army-green);
  font-weight: bold;
}
.footer-col ul a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}
.ci-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.ci-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 2px; }
.ci-val { font-size: 13px; color: rgba(255,255,255,0.75); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.footer-copy a {
  color: rgba(255,255,255,0.5);
  margin: 0 6px;
  text-decoration: underline;
}
.footer-copy a:hover { color: var(--gold); }
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

/* ===== 14. 回到顶部 ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px; height: 48px;
  background: var(--navy-blue);
  color: var(--gold);
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(212,160,23,0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 500;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--honor-red);
  border-color: var(--honor-red);
  transform: translateY(-3px);
}

/* ===== 15. 动画 ===== */
@keyframes floatStar {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(8deg); }
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes rotateSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes countUp {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* 进场动画 */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.fade-in-up:nth-child(3) { transition-delay: 0.2s; }
.fade-in-up:nth-child(4) { transition-delay: 0.3s; }
.fade-in-up:nth-child(5) { transition-delay: 0.4s; }
.fade-in-up:nth-child(6) { transition-delay: 0.5s; }
.fade-in-up:nth-child(7) { transition-delay: 0.6s; }
.fade-in-up:nth-child(8) { transition-delay: 0.7s; }

/* ===== 16. 响应式 ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .download-wrap { grid-template-columns: 1fr 1fr; }
  .phone-mockup { display: none; }
}

@media (max-width: 768px) {
  .header-inner { height: 60px; }
  .nav {
    display: none;
    position: absolute;
    top: 60px; left: 0; right: 0;
    flex-direction: column;
    background: var(--navy-blue-dark);
    padding: 16px;
    gap: 4px;
    border-bottom: 2px solid var(--gold);
  }
  .nav.open { display: flex; }
  .nav-link { padding: 12px 16px; border-radius: 6px; font-size: 15px; }
  .hamburger { display: flex; }
  .btn-download-header { display: none; }
  .slide-deco { display: none; }
  .about-pillars { grid-template-columns: 1fr; }
  .download-wrap { grid-template-columns: 1fr; text-align: center; }
  .download-qr-area { flex-direction: row; justify-content: center; }
  .download-buttons { align-items: center; }
  .dl-btn { max-width: 100%; width: 260px; }
  .hero-controls { bottom: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 45%; }
  .stat-divider { display: none; }
  .slide-title { font-size: 28px; }
  .slide-actions { flex-direction: column; }
  .download-qr-area { flex-direction: column; }
}

/* ===== 17. 招商合作模块 ===== */
.recruit {
  padding: 96px 0 80px;
  background: linear-gradient(180deg, #F7F8FA 0%, #EEF0F4 100%);
  position: relative;
  overflow: hidden;
}
.recruit::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--army-green), var(--navy-blue), var(--honor-red), var(--gold));
}

/* 招商数据亮点 */
.recruit-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--navy-blue-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 56px;
  box-shadow: var(--shadow-lg);
}
.rs-item {
  flex: 1;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
  transition: var(--transition);
}
.rs-item:last-child { border-right: none; }
.rs-item:hover { background: rgba(255,255,255,0.05); }
.rs-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.rs-num span {
  font-size: 20px;
  font-weight: 700;
}
.rs-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
}

/* 四大招募卡片 */
.recruit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
@media (max-width: 1100px) { .recruit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .recruit-grid { grid-template-columns: 1fr; } }

.recruit-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.recruit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.rc-supplier:hover { border-color: var(--army-green); }
.rc-shop:hover     { border-color: var(--honor-red); }
.rc-rider:hover    { border-color: var(--gold); }
.rc-driver:hover   { border-color: var(--navy-blue); }

.rc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 24px 0;
  margin-bottom: 4px;
}
.rc-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.rc-supplier .rc-icon { background: rgba(58,90,42,0.1); }
.rc-shop     .rc-icon { background: rgba(192,57,43,0.1); }
.rc-rider    .rc-icon { background: rgba(212,160,23,0.1); }
.rc-driver   .rc-icon { background: rgba(26,43,74,0.1); }

.rc-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: rgba(58,90,42,0.1);
  color: var(--army-green);
  border: 1px solid rgba(58,90,42,0.25);
}
.rc-badge-hot {
  background: rgba(192,57,43,0.1);
  color: var(--honor-red);
  border-color: rgba(192,57,43,0.25);
  animation: pulseBadge 2s ease-in-out infinite;
}
.rc-badge-new {
  background: rgba(212,160,23,0.12);
  color: #9B7210;
  border-color: rgba(212,160,23,0.3);
}
@keyframes pulseBadge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

.rc-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-blue-dark);
  padding: 14px 24px 4px;
}
.rc-sub {
  font-size: 12.5px;
  color: var(--gray-400);
  padding: 0 24px 16px;
  line-height: 1.5;
}

/* 顶部颜色条 */
.recruit-card::before {
  content: '';
  display: block;
  height: 4px;
  width: 100%;
}
.rc-supplier::before { background: linear-gradient(90deg, var(--army-green), var(--army-green-light)); }
.rc-shop::before     { background: linear-gradient(90deg, var(--honor-red), #E74C3C); }
.rc-rider::before    { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.rc-driver::before   { background: linear-gradient(90deg, var(--navy-blue), var(--navy-blue-light)); }

.rc-benefits {
  padding: 0 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.rc-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}
.rcb-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.rc-supplier .rcb-icon { background: rgba(58,90,42,0.12); color: var(--army-green); }
.rc-shop     .rcb-icon { background: rgba(192,57,43,0.1); color: var(--honor-red); }
.rc-rider    .rcb-icon { background: rgba(212,160,23,0.12); color: #9B7210; }
.rc-driver   .rcb-icon { background: rgba(26,43,74,0.1); color: var(--navy-blue); }

.rc-requirement {
  margin: 0 24px 16px;
  padding: 12px 14px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
}
.rcr-title {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.rcr-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.rcr-tags span {
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  background: #fff;
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
}

.rc-btn {
  display: block;
  margin: 0 24px 24px;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
}
.rc-btn-supplier {
  background: var(--army-green);
  color: #fff;
}
.rc-btn-supplier:hover { background: var(--army-green-dark); transform: scale(1.02); }

.rc-btn-shop {
  background: var(--honor-red);
  color: #fff;
}
.rc-btn-shop:hover { background: #a93226; transform: scale(1.02); }

.rc-btn-rider {
  background: var(--gold);
  color: #fff;
}
.rc-btn-rider:hover { background: #b8890f; transform: scale(1.02); }

.rc-btn-driver {
  background: var(--navy-blue);
  color: #fff;
}
.rc-btn-driver:hover { background: var(--navy-blue-dark); transform: scale(1.02); }

/* 合作流程 */
.recruit-process {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-200);
}
.rp-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-blue-dark);
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}
.rp-title::after {
  content: '';
  position: absolute;
  bottom: -10px; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.rp-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.rp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 100px;
  max-width: 160px;
  text-align: center;
}
.rps-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--gray-400);
  letter-spacing: 2px;
}
.rps-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-blue), var(--army-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(26,43,74,0.2);
  transition: var(--transition);
}
.rp-step:hover .rps-icon { transform: scale(1.1); }
.rps-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-blue-dark);
}
.rps-desc {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.6;
}
.rp-arrow {
  font-size: 24px;
  color: var(--gray-200);
  font-weight: 300;
  flex-shrink: 0;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .rp-steps { flex-direction: column; gap: 16px; }
  .rp-arrow { transform: rotate(90deg); margin: 0; }
  .recruit-process { padding: 28px 20px; }
}

/* 招商联系栏 */
.recruit-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: linear-gradient(135deg, var(--navy-blue-dark), var(--navy-blue));
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 760px) {
  .recruit-contact { flex-direction: column; gap: 24px; padding: 28px 24px; }
  .rct-divider { width: 80px; height: 1px; }
}
.rct-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rct-icon { font-size: 32px; }
.rct-title {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.rct-val {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.rct-time {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
}
.rct-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* 招商申请弹窗 */
.recruit-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.recruit-modal.active { display: flex; }

.rm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
}
.rm-dialog {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.35);
  animation: modalIn 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.rm-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.rm-close:hover { background: var(--honor-red); color: #fff; }
.rm-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-blue-dark);
  margin-bottom: 6px;
}
.rm-subtitle {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 28px;
}
.rm-form { display: flex; flex-direction: column; gap: 18px; }
.rm-field { display: flex; flex-direction: column; gap: 6px; }
.rm-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
}
.rm-field label span { color: var(--honor-red); }
.rm-field input,
.rm-field textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.rm-field input:focus,
.rm-field textarea:focus {
  border-color: var(--navy-blue);
  box-shadow: 0 0 0 3px rgba(26,43,74,0.08);
}
.rm-veteran-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(58,90,42,0.06);
  border: 1px solid rgba(58,90,42,0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.rm-veteran-check input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--army-green);
  cursor: pointer;
  flex-shrink: 0;
}
.rm-veteran-check label {
  font-size: 13px;
  color: var(--army-green-dark);
  font-weight: 600;
  cursor: pointer;
}
.rm-submit {
  padding: 14px;
  background: linear-gradient(135deg, var(--navy-blue), var(--army-green));
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: var(--transition);
  margin-top: 4px;
}
.rm-submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,43,74,0.3);
}

/* 招商模块响应式 */
@media (max-width: 768px) {
  .recruit-stats { flex-wrap: wrap; border-radius: var(--radius-md); }
  .rs-item { flex: 1 1 45%; border-bottom: 1px solid rgba(255,255,255,0.08); }
}
