/* 文件: themes/default/style.css */
/* 浅色主题样式 - 适用于中文新闻/资讯网站 */

/* =============================================
   CSS 变量与设计系统
   ============================================= */
:root {
  /* 主色调 - 优雅蓝色系 */
  --primary:        #0284c7;
  --primary-dark:   #075985;
  --primary-light:  #38bdf8;
  --accent:         #e11d48;
  
  /* 背景色 - 浅色系 */
  --bg-dark:        #f8fafc;
  --bg-card:        #ffffff;
  --bg-card2:       #f1f5f9;
  --bg-header:      #ffffff;
  
  /* 边框颜色 */
  --border:         #e2e8f0;
  --border-gold:    rgba(2,132,199,0.28);
  
  /* 文字颜色 */
  --text-primary:   #0f172a;
  --text-secondary: #475569;
  --text-muted:     #64748b;
  
  /* 圆角与阴影 */
  --radius:         2px;
  --radius-lg:      0px;
  --shadow:         0 4px 18px rgba(15,23,42,0.06);
  --shadow-gold:    0 14px 34px rgba(2,132,199,0.14);
  
  /* 过渡与字体 */
  --transition:     0.35s cubic-bezier(.22,.61,.36,1);
  --font-main:      'PingFang SC','Microsoft YaHei','Hiragino Sans GB',sans-serif;
  --header-h:       78px;
  --container:      1320px;
}

/* =============================================
   重置样式
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 15px; }
body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.82;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color var(--transition), opacity var(--transition); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* =============================================
   排版样式
   ============================================= */
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 900; line-height: 1.02; letter-spacing: -0.05em; text-transform: uppercase; color: var(--text-primary); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); font-weight: 900; line-height: 1.08; letter-spacing: -0.035em; text-transform: uppercase; color: var(--text-primary); }
h3 { font-size: clamp(1.2rem, 2.3vw, 1.8rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; color: var(--text-primary); }
h4 { font-size: 1rem; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase; color: var(--text-primary); }
p  { font-size: 1.02rem; color: var(--text-secondary); font-weight: 400; }

.gold { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* 标题区块样式 */
.section-title {
  text-align: left;
  margin-bottom: 60px;
}
.section-title h2 {
  color: var(--text-primary);
  margin-bottom: 14px;
}
.section-title h2 span { color: var(--primary); }
.section-title p { color: var(--text-secondary); max-width: 720px; margin: 0; }
.section-title .divider {
  width: 92px; height: 4px;
  background: linear-gradient(90deg, var(--primary), rgba(2,132,199,0));
  margin: 22px 0 0;
  border-radius: 0;
}

/* =============================================
   布局
   ============================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 104px 0; }
.section-dark  { background: var(--bg-dark); }
.section-card  { background: var(--bg-card); }
.section-card2 { background: var(--bg-card2); }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 34px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-main-sidebar {
  display: grid;
  grid-template-columns: minmax(0,1fr) 360px;
  gap: 42px;
}
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: 12px; }
.gap-4 { gap: 22px; }

/* =============================================
   按钮
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
}
.btn-accent {
  background: var(--accent);
  color: #ffffff;
}
.btn-accent:hover {
  background: #be123c;
  color: #ffffff;
  transform: translateY(-3px);
}
.btn-lg { padding: 18px 46px; font-size: 0.9rem; }
.btn-sm { padding: 10px 20px; font-size: 0.72rem; }

/* =============================================
   卡片
   ============================================= */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  background: #ffffff;
}
.card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.card-body { padding: 24px; }
.card-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.24;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-title a:hover { color: var(--primary); }
.card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.card-excerpt {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.78;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-footer {
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 文章列表项 */
.post-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.post-item:last-child { border-bottom: none; }
.post-item-thumb {
  width: 116px;
  height: 78px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.post-item-body { flex: 1; min-width: 0; }
.post-item-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  letter-spacing: -0.015em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}
.post-item-title a:hover { color: var(--primary); }
.post-item-meta { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* =============================================
   页头
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  box-shadow: 0 2px 14px rgba(15,23,42,0.06);
  backdrop-filter: blur(14px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.site-logo img { height: 46px; width: auto; }
.site-logo-text {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* 主导航 */
.main-nav { display: flex; align-items: center; }
.main-nav ul { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  display: block;
  padding: 10px 12px;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--text-secondary);
  border-radius: var(--radius);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  background: rgba(2,132,199,0.08);
}
.main-nav .nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff !important;
  padding: 11px 22px;
  font-weight: 900;
  border-radius: var(--radius);
  margin-left: 16px;
}
.main-nav .nav-cta:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #ffffff !important;
}

/* 页头搜索 */
.header-search { position: relative; }
.header-search input {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 10px 44px 10px 16px;
  border-radius: 0;
  font-size: 0.8rem;
  width: 214px;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.header-search input:focus {
  outline: none;
  border-color: var(--primary);
  width: 268px;
  background: #ffffff;
}
.header-search input::placeholder { color: var(--text-muted); }
.header-search button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
}
.header-search button:hover { color: var(--primary); }

/* 汉堡菜单 */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 0;
  transition: all var(--transition);
}

/* 移动端导航遮罩 */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  z-index: 
999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
  padding: 14px 36px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2.1rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* =============================================
   首页 Hero 区域
   ============================================= */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 48%, #f8fafc 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.72) 0%, rgba(240,249,255,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(2,132,199,0.08);
  border: 1px solid var(--border-gold);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero h1 { color: var(--text-primary); margin-bottom: 24px; }
.hero h1 span { color: var(--primary); }
.hero p {
  color: var(--text-secondary);
  font-size: 1.16rem;
  margin-bottom: 42px;
  max-width: 620px;
}
.hero-btns { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 52px;
  margin-top: 58px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary);
  display: block;
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero-stat-label {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* 装饰性光晕 */
.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -140px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(2,132,199,0.12) 0%, rgba(2,132,199,0) 72%);
  pointer-events: none;
}

/* =============================================
   面包屑
   ============================================= */
.breadcrumb {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.breadcrumb-list a { color: var(--text-muted); }
.breadcrumb-list a:hover { color: var(--primary); }
.breadcrumb-list .sep { color: #cbd5e1; }
.breadcrumb-list .current { color: var(--text-primary); }

/* =============================================
   首页精选文章
   ============================================= */
.featured-grid {
  display: grid;
  grid-template-columns: minmax(0,1.35fr) minmax(0,0.95fr);
  grid-template-rows: auto auto;
  gap: 28px;
}
.featured-main {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}
.featured-main .card-img { aspect-ratio: 5/4; }
.featured-main .card-title { font-size: 1.5rem; }
.featured-main .card-excerpt { -webkit-line-clamp: 4; }

/* 分类标签 */
.cat-label {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 900;
  padding: 5px 12px;
  border-radius: 0;
  text-transform: uppercase
;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.cat-label-accent { background: var(--accent); color: #ffffff; }

/* =============================================
   滚动条 / 突发新闻
   ============================================= */
.ticker-bar {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 0;
  overflow: hidden;
}
.ticker-inner { display: flex; align-items: center; gap: 24px; }
.ticker-label {
  font-size: 0.72rem;
  font-weight: 900;
  background: rgba(255,255,255,0.22);
  padding: 5px 12px;
  border-radius: 0;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.ticker-track {
  display: flex;
  gap: 56px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}
.ticker-track a { color: #ffffff; }
.ticker-track a:hover { text-decoration: underline; }
@keyframes ticker {
  from { transform: translateX(0); }


  to   { transform: translateX(-50%); }
}

/* =============================================
   APP 下载卡片
   ============================================= */
.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.app-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 22px 30px;
  text-align: left;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.app-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), rgba(2,132,199,0));
}
.app-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.app-card img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin: 0 0 20px;
  border-radius: 8px;
}
.app-card h4 { color: var(--text-primary); font-size: 1.06rem; margin-bottom: 12px; }
.app-card p { font-size: 0.86rem; color: var(--text-secondary); }

/* =============================================
   关于我们
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 76px;
  align-items: center;
}
.about-content h2 { margin-bottom: 24px; }
.about-content p { color: var(--text-secondary); margin-bottom: 18px; }
.about-features { margin: 34px 0; display: flex; flex-direction: column; gap: 16px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(2,132,199,0.10);
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 6px;
  color: var(--primary);
}
.about-feature-text h4 { color: var(--primary); font-size: 1.08rem; margin-bottom: 6px; }
.about-feature-text p { font-size: 0.92rem; margin: 0; }
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  border-radius: 0;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.about-img-badge {
  position: absolute;
  bottom: -28px;
  right: -12px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 900;
  font-size: 1.35rem;
  width: 112px;
  height: 112px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 18px 40px rgba(2,132,199,0.28);
}

/* =============================================
   常见问题
   ============================================= */
.faq-list { display: flex; flex-direction: column; gap: 18px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--text-primary);
  user-select: none;
  transition: color var(--transition), background var(--transition), letter-spacing var(--transition);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.faq-question:hover { color: var(--primary); background: rgba(2,132,199,0.04); }
.faq-question .faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-gold);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 2;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-answer { display: block; }

/* 合作伙伴 */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 52px;
}
.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 0;
  padding: 30px 18px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .28s, box-shadow .28s, border-color .28s;
}
.partner-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(2,132,199,0.16); }
.partner-icon { font-size: 2.4rem; margin-bottom: 14px; color: var(--primary); }
.partner-name { font-weight: 800; font-size: 1.18rem; color: var(--primary); margin-bottom: 8px; letter-spacing: 0.03em; text-transform: uppercase; }
.partner-desc { font-size: .88rem; color: var(--text-secondary); line-height: 1.75; }

/* 信任徽章 */
.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid var(--border-gold);
  padding-top: 34px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 0;
  padding: 10px 22px;
  font-size: .94rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   侧边栏
   ============================================= */
.sidebar { display: flex; flex-direction: column; gap: 30px; }
.widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.widget-header {
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.widget-header h4 {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.widget-header::before {
  content: '';
  display: block;
  width: 4px;
  height: 20px;
  background: var(--primary);
  border-radius: 0;
}
.widget-body { padding: 20px 22px; }

/* 侧边栏搜索 */
.widget-search { display: flex; gap: 10px; }
.widget-search input {
  flex: 1;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 11px 16px;
  border-radius: 0;
  font-size: 0.92rem;
}
.widget-search input:focus { outline: none; border-color: var(--primary); background: #ffffff; }
.widget-search button {
  background: var(--primary);
  color: #ffffff;
  padding: 11px 16px;
  border-radius: 0;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* 分类列表 */
.cat-list { display: flex; flex-direction: column; }

.cat-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.cat-list-item:last-child { border-bottom: none; }
.cat-list-item a { color: var(--text-secondary); }
.cat-list-item a:hover { color: var(--primary); }
.cat-count {
  background: var(--bg-card2);
  color: var(--text-muted);
  font-size: 0.74rem;
  padding: 3px 9px;
  border-radius: 0;
}

/* 热门文章组件 */
.popular-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.popular-item:last-child { border-bottom: none; }
.popular-rank {
  font-size: 1.45rem;
  font-weight: 900;
  color: #cbd5e1;
  width: 28px;
  flex-shrink: 0;
  line-height: 0.95;
  padding-top: 1px;
}
.popular-item:nth-child(1) .popular-rank { color: var(--primary); }
.popular-item:nth-child(2) .popular-rank { color: var(--primary-light); }
.popular-item:nth-child(3) .popular-rank { color: #94a3b8; }
.popular-img {
  width: 72px;
  height: 50px;
  object-fit: cover;
  border-radius: 0;
  flex-shrink: 0;
}
.popular-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.55;
}
.popular-title a:hover { color: var(--primary); }

/* 标签云 */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-item {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.75rem;
  padding: 6px 13px;
  border-radius: 0;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tag-item:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(2,132,199,0.06);
}

/* =============================================
   单篇文章
   ============================================= */
.post-hero {
  position: relative;
  height: 460px;
  overflow: hidden;
}
.post-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.78) 0%, rgba(15,23,42,0.18) 58%, rgba(15,23,42,0) 100%);
}
.post-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 52px 44px;
  color: #ffffff;
}
.post-hero-content h1 { color: #ffffff; }
.post-header { padding: 48px 0 0; }
.post-title { font-size: clamp(1.9rem, 3.4vw, 3rem); margin-bottom: 20px; line-height: 1.05; letter-spacing: -0.03em; }
.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.post-meta span { display: flex; align-items: center; gap: 8px; }
.post-content {
  color: var(--text-secondary);
  font-size: 1.04rem;
  line-height: 2.05;
}
.post-content h2, .post-content h3, .post-content h4 {
  color: var(--text-primary);
  margin: 34px 0 14px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.post-content p { margin-bottom: 20px; }
.post-content img {
  max-width: 100%;
  border-radius: 0;
  margin: 24px 0;
  border: 1px solid var(--border);
}
.post-content a { color: var(--primary); text-decoration: underline; }
.post-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  background: var(--bg-card2);
  border-radius: 0;
  margin: 28px 0;
  font-style: italic;
  color: var(--text-secondary);
}
.post-content ul, .post-content ol {
  padding-left: 28px;
  margin: 20px 0;
  list-style: disc;
}
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: 10px; color: var(--text-secondary); }
.post-content table {

  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.94rem;
}
.post-content th {
  background: var(--bg-card2);
  color: var(--primary);
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.post-content td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

/* 文章标签 */
.post-tags { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 34px; }
.post-tags-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }

/* 分享栏 */
.share-bar {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 34px 0;
  flex-wrap: wrap;
}
.share-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 800; margin-right: 6px; text-transform: uppercase; letter-spacing: 0.08em; }
.share-btn {
  padding: 8px 18px;
  border-radius: 0;
  font-size: 0.76rem;
  font-weight: 800;
  color: #ffffff;
  display: inline-block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.share-wechat  { background: #07c160; }
.share-weibo   { background: #e6162d; }
.share-twitter { background: #1da1f2; }
.share-copy    { background: var(--bg-card); border: 1px solid var(--border); color: var(--text-secondary); cursor: pointer; }

/* 相关文章 */
.related-posts { margin-top: 58px; }
.related-posts h3 { margin-bottom: 24px; font-size: 1.22rem; border-left: 4px solid var(--primary); padding-left: 14px; text-transform: uppercase; letter-spacing: 0.06em; }

/* =============================================
   分页
   ============================================= */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 56px;
}
.page-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 800;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  background: var(--bg-card);
  transition: all var(--transition);
}
.page-item:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.page-item.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}
.page-item.disabled { opacity: 0.4; pointer-events: none; }

/* =============================================
   搜索页
   ============================================= */
.search-header { padding: 52px 0; border-bottom: 1px solid var(--border); margin-bottom: 42px; }
.search-form-large { display: flex; gap: 14px; max-width: 680px; }
.search-form-large input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 16px 22px;
  border-radius: 0;
  font-size: 1.04rem;
}
.search-form-large input:focus { outline: none; border-color: var(--primary); }
.search-results-count { font-size: 0.9rem; color: var(--text-muted); margin-top: 14px; }
.search-highlight { color: var(--primary); font-weight: 800; }

/* =============================================
   页脚
   ============================================= */
.site-footer {
  background: #f1f5f9;
  border-top: 1px solid var(--border);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand-text { color: var(--text-secondary); font-size: 0.94rem; margin: 18px 0 24px; line-height: 1.95; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.02rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-btn:hover { border-color
: var(--primary); color: var(--primary); transform: translateY(-2px); background: #ffffff; }
.footer-col h5 {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--primary);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a {
  font-size: 0.94rem;
  color: var(--text-muted);
  transition: color var(--transition), padding-left var(--transition), transform var(--transition);
  letter-spacing: 0.01em;
}
.footer-links a:hover { color: var(--primary); padding-left: 10px; transform: translateX(2px); }
.footer-bottom {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-bottom p { font-size: 0.88rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 30px; }
.footer-legal a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--transition), opacity var(--transition); }
.footer-legal a:hover { color: var(--primary); opacity: 0.9; }
.footer-beian { margin-top: 10px; font-size: 14px;}
.footer-beian a { color: var(--text-muted); text-decoration: none; transition: color 0.35s, text-decoration-color 0.35s;}
.footer-beian a:hover { color: var(--primary); text-decoration: underline;}

 /* 免责声明栏 */
.disclaimer-bar {
  background: rgba(176, 78, 44, 0.08);
  border-top: 1px solid var(--border-gold);
  padding: 18px 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =============================================
   404 页面
   ============================================= */
.page-404 {
  min-height: 84vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.error-code {
  font-size: 10rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 0.88;
  opacity: 0.18;
}
.error-title { font-size: 2.4rem; margin-bottom: 18px; letter-spacing: -0.04em; }
.error-msg { color: var(--text-muted); margin-bottom: 40px; font-size: 1.06rem; }

 /* =============================================
   静态页面 (关于、联系、隐私、条款)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--bg-card2) 0%, var(--bg-dark) 100%);
  padding: 92px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 { margin-bottom: 18px; }
.page-hero p { color: var(--text-muted); font-size: 1.14rem; }

.content-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 56px;
  box-shadow: 0 22px 44px rgba(104, 54, 34, 0.10), 0 6px 18px rgba(148, 84, 52, 0.08);
}
.content-box h2 {
  font-size: 1.68rem;
  color: var(--primary);
  margin: 40px 0 18px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  line-height: 1.22;
  letter-spacing: -0.03em;
}
.content-box h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.content-box p { color: var(--text-secondary); margin-bottom: 22px; line-height: 2.02; }
.content-box ul { padding-left: 28px; list-style: disc; }
.content-box li { color: var(--text-secondary); margin-bottom: 12px; }

 /* 联系表单 */
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 10px; }

.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--text-secondary); letter-spacing: 0.12em; text-transform: uppercase; }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1rem;
  line-height: 1.6;
  transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 20px rgba(123, 72, 42, 0.05);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff7f0;
  box-shadow: 0 0 0 4px rgba(201, 95, 52, 0.14);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { min-height: 196px; resize: vertical; }
.form-notice { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }

 /* 联系信息块 */
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-info-item {
  display: flex;
  gap: 20px;
  padding: 28px 24px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 34px rgba(118, 67, 39, 0.08);
}
.contact-icon {
  width: 56px;
  height: 56px;
  background: rgba(217, 131, 73, 0.14);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.12rem;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-info-item h5 { font-size: 0.82rem; color: var(--primary); margin-bottom: 8px; letter-spacing: 0.14em; text-transform: uppercase; }
.contact-info-item p { font-size: 0.98rem; color: var(--text-muted); margin: 0; line-height: 1.78; }

 /* =============================================
   分类页
   ============================================= */
.category-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 52px 0 34px;
  margin-bottom: 52px;
}
.category-header h1 { font-size: 2.5rem; line-height: 0.98; letter-spacing: -0.04em; }
.category-header p { color: var(--text-muted); font-size: 1.04rem; margin-top: 14px; max-width: 640px; line-height: 1.82; }

.sort-bar {
  display: flex;
  align-items: center;
  gap: 14px 18px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.sort-bar-label { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.16em; text-transform: uppercase; }
.sort-btn {
  font-size: 0.8rem;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-muted);
  background: var(--bg-card);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  box-shadow: 0 10px 22px rgba(120, 71, 42, 0.05);
}
.sort-btn:hover, .sort-btn.active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(197, 112, 61, 0.10);
  transform: translateY(-2px);
}

 /* =============================================
   加载 / 动画
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards; }

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(198, 98, 56, 0.28); }
  50%       { box-shadow: 0 0 0 12px rgba(198, 98, 56, 0); }
}
.pulse { animation: pulse-gold 2.6s infinite; }

 /* =============================================
   通知 / 提示
   ============================================= */
.notice {
  padding: 18px 22px;
  border-radius: 12px;
  font-size: 0.9rem;
  border-left: 4px solid;
  margin-bottom: 28px;
  line-height: 1.75;
  box-shadow: 0 14px 28px rgba(117, 66, 39, 0.07);
}
.notice-warning {
  background: rgba(226, 146, 54, 0.14);
  border-color: #d9851e;
  color: #9b4e12;
}
.notice-info {
  background: rgba(192, 96, 57, 0.12);
  border-color: var(--primary);
  color: var(--primary-dark);
}

 /* =============================================
   响应式
   ============================================= */
@media (max-width: 1024px) {
  .grid-4     { grid-template-columns: repeat(2, 1fr); }
  .app-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .grid-main-sidebar { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .about-img-wrap { max-width: 600px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section { padding: 60px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-main { grid-row: auto; grid-column: auto; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-search { display: none; }
  .hero { min-height: 520px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .post-hero { height: 260px; }
  .post-hero-content { padding: 24px; }
  .sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .hero-btns { flex-direction: column; }
  .share-bar { flex-direction: column; align-items: flex-start; }
  .content-box { padding: 34px 24px; }
  .about-img-badge { width: 90px; height: 90px; font-size: 1.08rem; bottom: -18px; right: -18px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  h1 { font-size: 2.05rem; }
  .app-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .app-card { padding: 22px 16px; }
  .error-code { font-size: 6.1rem; }
  .search-form-large { flex-direction: column; }
}

 /* =============================================
   滚动条
   ============================================= */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-card2); }
::-webkit-scrollbar-thumb { background: #d1a07f; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

 /* =============================================
   选中文字
   ============================================= */
::selection { background: rgba(199, 109, 57, 0.24); color: var(--text-primary); }

 /* =============================================
   返回顶部
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: var(--primary);
  color: #fff7f0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.12rem;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(169, 83, 44, 0.28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), background var(--transition), box-shadow var(--transition);
  z-index: 500;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-6px); box-shadow: 0 24px 42px rgba(139, 67, 36, 0.36); background: var(--primary-dark); }

 /* =============================================
   style-supplement.css
   补充样式 — app.php / login.php / signup.php
   ============================================= */


 /* =============================================
   APP 页面 — app.php
   ============================================= */

.app-hero {
  position: relative;
  padding: 118px 0 86px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff3e8 0%, #f7d9bf 52%, #f9efe6 100%);
  text-align: center;
}
.app-hero::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: 820px;
  height: 820px;
  background: radial-gradient(circle,
 rgba(205, 110, 54, 0.14) 0%, transparent 67%);
  pointer-events: none;
}
.app-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(190, 103, 56, 0.10);
  border: 1px solid rgba(155, 81, 43, 0.34);
  color: var(--primary);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 30px;
  box-shadow: 0 12px 24px rgba(138, 74, 40, 0.08);
}
.app-hero h1 { color: var(--text-primary); margin-bottom: 24px; }
.app-hero h1 span { color: var(--primary); }
.app-hero-sub {
  color: var(--text-secondary);
  font-size: 1.2rem;
  max-width: 680px;
  margin: 0 auto 54px;
  line-height: 1.92;
}

 /* 下载按钮 */
.dl-btns {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 62px;
}
.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 38px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.35s ease;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(132, 71, 39, 0.10);
}
.dl-btn-android {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff4ea;
  border: none;
}
.dl-btn-android:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff4ea;
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 18px 38px rgba(166, 82, 40, 0.28);
}
.dl-btn-ios {
  background: #fff9f3;
  border: 1px solid rgba(165, 87, 44, 0.42);
  color: var(--primary);
}
.dl-btn-ios:hover {
  background: rgba(216, 145, 85, 0.10);
  border-color: var(--primary-dark);
  color: var(--primary-dark);
  transform: translateY(-5px);
}
.dl-btn-icon { font-size: 1.72rem; line-height: 1; }
.dl-btn-text-wrap { text-align: left; }
.dl-btn-sub { font-size: 0.68rem; font-weight: 600; opacity: 0.82; display: block; letter-spacing: 0.1em; }
.dl-btn-main { font-size: 1.1rem; font-weight: 900; display: block; }

 /* Hero 统计 */
.app-hero-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding-top: 42px;
  border-top: 1px solid rgba(172, 93, 49, 0.20);
  flex-wrap: wrap;
}
.app-hero-stat { text-align: center; }
.app-hero-stat-num {
  font-size: 2.35rem;
  font-weight: 900;
  color: var(--primary);
  display: block;
  letter-spacing: -0.04em;
}
.app-hero-stat-label { font-size: 0.76rem; color: var(--text-muted); letter-spacing: 0.14em; text-transform: uppercase; }

 /* APP 模型展示区 */
.app-mockup-section {
  padding: 88px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.app-mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: center;
}
.app-mockup-text h2 { margin-bottom: 24px; }
.app-mockup-text h2 span { color: var(--primary); }
.app-mockup-text p { color: var(--text-secondary); margin-bottom: 32px; font-size: 1.06rem; line-height: 1.92; }
.app-features-list { display: flex; flex-direction: column; gap: 20px; }
.app-feature-row { display: flex; align-items: flex-start; gap: 16px; }
.app-feature-check {
  width: 28px;
  height: 28px;
  background: rgba(214, 135, 75, 0.14);
  border: 1px solid rgba(175, 93, 48, 0.40);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 10px 18px rgba(143, 78, 43, 0.08);
}
.app-feature-row p { font-size: 0.96rem; color: var(--text-secondary); margin: 0; line-height: 1.82; }
.app-feature-row strong { color: var(--text-primary); font-weight: 800; }

 /* 手机预览 */
.phone-visual { display: flex; justify-content: center; gap: 34px; }
.phone-frame {
  width: 182px;
  background: #fffaf5;
  border: 2px solid #ead6c7;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 28px 56px rgba(92, 51, 32, 0.18), 0 0 0 1px rgba(190, 112, 63, 0.10);
  position: relative;
}
.phone-frame.large { width: 216px; }
.phone-notch {
  height: 30px;
  background: #f3e5da;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-notch::after {
  content: '';
  width: 68px;
  height: 10px;
  background: #cfb09b;
  border-radius: 999px;
}
.phone-screen {
  background: linear-gradient(160deg, #fff8f1 0%, #f7e6d7 100%);
  padding: 16px;
  min-height: 328px;
}

.phone-screen-header {
  background: var(--primary);
  border-radius: 12px 12px 0 0;
  height: 36px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  padding: 0 14px;
}
.phone-screen-header span { font-size: 0.62rem; font-weight: 800; color: #fff7ef; letter-spacing: 0.14em; text-transform: uppercase; }
.phone-screen-card {
  background: #fff8f1;
  border: 1px solid var(--border);
  border-radius: 14px;
  height: 72px;
  margin-bottom: 14px;
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 10px 24px rgba(120, 58, 24, 0.08);
}
.phone-screen-img {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #f6d7ba, #d99a6c);
  border-radius: 12px;
  flex-shrink: 0;
}
.phone-screen-lines { flex: 1; }
.phone-screen-line { height: 6px; border-radius: 999px; margin-bottom: 8px; }
.phone-screen-line.gold { background: rgba(199, 97, 32, 0.78); width: 74%; }
.phone-screen-line.gray { background: #d7b39a; width: 56%; }
.phone-bottom {
  height: 28px;
  background: #f4e4d4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-home-bar { width: 60px; height: 5px; background: #a96d4b; border-radius: 999px; }

/* 二维码区 */
.qr-section { padding: 92px 0; background: var(--bg-dark); }
.qr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.qr-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 46px 28px 34px;
  text-align: center;
  box-shadow: 0 20px 38px rgba(92, 44, 18, 0.14);
  transition: transform 0.34s ease, box-shadow 0.34s ease, border-color 0.34s ease;
  position: relative;
  overflow: hidden;
}
.qr-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), rgba(255, 214, 170, 0));
}
.qr-card:hover {
  border-color: rgba(184, 88, 38, 0.48);
  transform: translateY(-8px);
  box-shadow: 0 28px 48px rgba(126, 58, 24, 0.2);
}
.qr-icon { font-size: 3rem; margin-bottom: 18px; color: var(--primary); }
.qr-card h4 { color: var(--primary); font-size: 1.16rem; margin-bottom: 12px; letter-spacing: -0.03em; }
.qr-card p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 26px; line-height: 1.85; }
.qr-box {
  width: 132px;
  height: 132px;
  background: #fffaf4;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(173, 101, 56, 0.05);
}
.qr-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff7ef;
  font-weight: 800;
  font-size: 0.8rem;
  border-radius: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(152, 72, 29, 0.2);
}
.qr-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff7ef;
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(152, 72, 29, 0.28);
}

/* 安装步骤 */
.install-section {
  padding: 90px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.install-tabs {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 54px;
}
.install-tab {
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 800;
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  background: var(--bg-card);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(92, 44, 18, 0.06);
}
.install-tab.active,
.install-tab:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff7ef;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(152, 72, 29, 0.2);
}
.install-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.install-step {
  text-align: center;
  position: relative;
  background: #fff8f1;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px 24px;
  box-shadow: 0 18px 34px rgba(98, 46, 20, 0.1);
}
.install-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -18px;
  top: 34px;
  color: #d5a37f;
  font-size: 1.4rem;
}
.step-num {
  width: 72px;
  height: 72px;
  background: rgba(199, 97, 32, 0.1);
  border: 1px solid rgba(199, 97, 32, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 20px;
  box-shadow: inset 0 -6px 12px rgba(255, 236, 216, 0.5);
}
.install-step h4 { font-size: 1.04rem; color: var(--text-primary); margin-bottom: 10px; letter-spacing: -0.02em; }
.install-step p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.8; }

/* APP FAQ */
.app-faq { padding: 94px 0 78px; background: var(--bg-dark); }


/* =============================================
   认证共享 — login.php + signup.php
   ============================================= */

.auth-page { min-height: 100vh; display: flex; flex-direction: column; }

/* 左侧品牌面板 */
.auth-left {
  background: linear-gradient(160deg, #fff8f0 0%, #f7e2cf 44%, #efc39d 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px 80px 104px;
}
.auth-left::before {
  content: '';
  position: absolute;
  left: -100px;
  top: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(194, 91, 37, 0.16) 0%, transparent 68%);
  pointer-events: none;
}
.auth-left::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(234, 154, 70, 0.14) 0%, transparent 68%);
  pointer-events: none;
}
.auth-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(95, 52, 28, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 52, 28, 0.05) 1px, transparent 1px);
  background-size: 88px 88px;
  pointer-events: none;
}
.auth-left-content { position: relative; z-index: 2; }
.auth-brand { display: flex; align-items: center; gap: 18px; margin-bottom: 64px; }
.auth-brand-logo {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff7ef;
  box-shadow: 0 16px 30px rgba(138, 63, 26, 0.22);
}
.auth-brand-name {
  font-size: 1.62rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.auth-headline {
  font-size: clamp(2.7rem, 4.5vw, 4.2rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.02;
  margin-bottom: 26px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  max-width: 11ch;
}
.auth-headline span { color: var(--primary); }
.auth-sub {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 62px;
  max-width: 540px;
  font-weight: 400;
}

/* 左面板特性列表 (登录) */
.auth-features { display: flex; flex-direction: column; gap: 26px; }
.auth-feature {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--text-secondary);
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.auth-feature-dot {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 999px;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(217, 136, 74, 0.18);
}

/* 左面板权益
列表 (注册) */
.auth-benefits { display: flex; flex-direction: column; gap: 22px; }
.auth-benefit { display: flex; align-items: flex-start; gap: 18px; }
.auth-benefit-icon {
  width: 42px;
  height: 42px;
  background: rgba(199, 97, 32, 0.1);
  border: 1px solid rgba(199, 97, 32, 0.28);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--primary);
  box-shadow: 0 10px 20px rgba(120, 58, 24, 0.08);
}
.auth-benefit-text h5 {
  font-size: 0.96rem;
  color: var(--primary);
  margin-bottom: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.auth-benefit-text p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.9;
  font-weight: 400;
}

/* 左面板底部装饰 */
.auth-left-deco { position: absolute; bottom: 42px; left: 80px; right: 80px; z-index: 2; }
.auth-deco-bar { height: 3px; background: linear-gradient(90deg, var(--primary), rgba(255, 240, 228, 0)); margin-bottom: 16px; border-radius: 999px; }
.auth-deco-text {
  font-size: 0.74rem;
  color: var(--text-muted);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* 右侧表单面板 */
.auth-right {
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 56px;
  overflow-y: auto;
}
.auth-form-wrap { width: 100%; max-width: 420px; }
.auth-form-header { margin-bottom: 44px; }
.auth-form-header h2 {
  font-size: 2.18rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.auth-form-header p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.9;
  font-weight: 400;
}

/* 表单字段 */
.auth-form { display: flex; flex-direction: column; gap: 24px; }
.auth-field { display: flex; flex-direction: column; gap: 10px; }
.auth-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-secondary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.auth-input-wrap { position: relative; }
.auth-input {
  width: 100%;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 18px 50px 18px 18px;
  border-radius: 14px;
  font-size: 0.98rem;
  transition: border-color 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
  font-family: var(--font-main);
  line-height: 1.5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.auth-input:focus {
  outline: none;
  border-color: var(--primary);
  background: #fffaf4;
  box-shadow: 0 0 0 4px rgba(199, 97, 32, 0.14);
}
.auth-input.valid  { border-color: #b86a2c; }
.auth-input.invalid { border-color: #a63f2d; }
.auth-input::placeholder { color: var(--text-muted); }
.auth-input-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.04rem;
  color: var(--text-muted);
  pointer-events: none;
}
.auth-input-toggle {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 0;
  transition: color 0.22s ease, transform 0.22s ease;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.auth-input-toggle:hover { color: var(--primary); transform: translateY(-50%) translateX(-2px); }
.auth-field-hint  { font-size: 0.74rem; color: var(--text-muted); letter-spacing: 0.02em; }
.auth-field-error { font-size: 0.74rem; color: #a63f2d; display: none; letter-spacing: 0.02em; }

/* 记住 / 忘记密码 行 */
.auth-row { display: flex; align-items: center; justify-content: space-between; }
.auth-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.auth-checkbox-label input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--primary); cursor: pointer; }
.auth-forgot {
  font-size: 0.8rem;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.22s ease, opacity 0.22s ease;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.auth-forgot:hover { opacity: 0.92; color: var(--primary-dark); }

/* 提交按钮 */
.auth-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff7ef;
  font-weight: 800;
  font-size: 0.98rem;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
  font-family: var(--font-main);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 18px 34px rgba(152, 72, 29, 0.22);
}
.auth-submit:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-3px);
  box-shadow: 0 24px 40px rgba(152, 72, 29, 0.28);
  filter: brightness(1.03);
}
.auth-submit:active { transform: translateY(0); }

/* 分隔线 */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.auth-divider::before,
.auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* 社交登录按钮 */
.auth-social { display: flex; gap: 14px; }
.auth-social-btn {
  flex: 1;
  padding: 15px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color 0.24s ease, color 0.24s ease, transform 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
  font-family: var(--font-main);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(92, 44, 18, 0.06);
}
.auth-social-btn:hover {
  border-color: var(--border-gold);
  color: var(--primary);
  background: rgba(199, 97, 32, 0.07);
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(120, 58, 24, 0.12);
}

/* 切换链接 */
.auth-switch {
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.auth-switch a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.auth-switch a:hover { text-decoration: underline; }

/* 通知 / 提示 */
.auth-notice { padding: 14px 18px; border-radius: 12px; font-size: 0.82rem; display: none; line-height: 1.8; }
.auth-notice.error  { background: rgba(166, 63, 45, 0.09);  border: 1px solid rgba(166, 63, 45, 0.26);  color: #8f3526; display: block; }
.auth-notice.success { background: rgba(184, 106, 44, 0.1); border: 1px solid rgba(184, 106, 44, 0.28); color: #9b541f; display: block; }


/* =============================================
   注册专属 — signup.php
   ============================================= */

/* 注册布局右面板更宽 */
.auth-main-signup { grid-template-columns: 1fr 560px; }
.auth-form-wrap-wide { max-width: 460px; }

/* 进度步骤 */
.reg-steps { display: flex; align-items: center; gap: 0; margin-bottom: 40px; }
.reg-step { flex: 1; text-align: center; position: relative; }
.reg-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.reg-step.done:not(:last-child)::after,
.reg-step.active:not(:last-child)::after { background: var(--primary); }
.reg-step-circle {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  margin: 0 auto 10px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(92, 44, 18, 0.08);
}
.reg-step.active .reg-step-circle { background: var(--primary); border-color: var(--primary); color: #fff7ef; }
.reg-step.done  .reg-step-circle { background: rgba(199, 97, 32, 0.12); border-color: var(--primary); color: var(--primary); }

.reg-step-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.reg-step.active .reg-step-label { color: var(--primary); font-weight: 900; }

/* 手机号前缀 */
.phone-row { display: flex; gap: 14px; }
.phone-prefix {
  width: 96px;
  flex-shrink: 0;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 18px 14px;
  border-radius: 12px;
  font-size: 0.94rem;
  font-family: var(--font-main);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, transform 0.28s ease;
  box-shadow: 0 8px 20px rgba(96, 52, 31, 0.08);
}
.phone-prefix:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(196, 95, 53, 0.16), 0 12px 26px rgba(96, 52, 31, 0.12);
  background: #fff8f1;
  transform: translateY(-1px);
}
.phone-row .auth-input-wrap { flex: 1; }

/* 验证码行 */
.verify-row { display: flex; gap: 14px; }
.verify-row .auth-input-wrap { flex: 1; }
.verify-btn {
  white-space: nowrap;
  padding: 0 22px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.28s ease;
  font-family: var(--font-main);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(110, 62, 38, 0.08);
}
.verify-btn:hover:not(:disabled) {
  border-color: var(--primary);
  background: rgba(201, 104, 43, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(110, 62, 38, 0.16);
}
.verify-btn:disabled { opacity: 0.5; cursor: not-allowed; color: var(--text-muted); }

/* 密码强度 */
.pwd-strength { margin-top: 12px; }
.pwd-strength-bar { display: flex; gap: 8px; margin-bottom: 8px; }
.pwd-strength-seg { flex: 1; height: 6px; background: var(--border); border-radius: 999px; transition: background 0.3s ease, transform 0.3s ease; }
.pwd-strength-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* 协议复选框 */
.auth-agree {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.95;
}
.auth-agree input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 4px;
}
.auth-agree a {
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.auth-agree a:hover { text-decoration: underline; }


/* =============================================
   认证响应式
   ============================================= */

/* 登录: 双列布局 */
.auth-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1.08fr 480px;
  min-height: calc(100vh - 84px);
}

@media (max-width: 900px) {
  .auth-main { grid-template-columns: 1fr; }
  .auth-left  { display: none; }
  .auth-right { border-left: none; min-height: calc(100vh - 64px); }
}

/* APP 页响应式 */
@media (max-width: 768px) {
  .app-mockup-grid    { grid-template-columns: 1fr; gap: 48px; }
  .qr-grid            { grid-template-columns: 1fr; }
  .install-steps      { grid-template-columns: repeat(2, 1fr); }
  .install-step:nth-child(2)::after { display: none; }
  .app-hero-stats     { gap: 24px; }
  .phone-visual       { gap: 20px; }
  .phone-frame        { width: 144px; }
  .phone-frame.large
  { width: 170px; }
  .auth-right         { padding: 38px 26px; }
}

@media (max-width: 480px) {
  .install-steps             { grid-template-columns: 1fr; }
  .install-step::after       { display: none !important; }
}

/* =============================================
   行动号召横幅
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, #fff1e4 0%, #ffe0c8 44%, #fff8ef 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 86px 0 80px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(214, 110, 64, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner > .container { position: relative; z-index: 2; }
.cta-badge { margin-bottom: 28px; }
.cta-title { margin-bottom: 20px; }
.cta-desc {
  color: var(--text-secondary);
  margin: 0 auto 40px;
  max-width: 680px;
  line-height: 2;
  font-size: 1.06rem;
  font-weight: 500;
}
.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .cta-banner { padding: 60px 0; }
  .cta-btns { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }
}

/* 特性卡片网格 */
.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.feature-mini-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(91, 52, 33, 0.12);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, background-color .35s ease;
}
.feature-mini-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 20px 42px rgba(121, 67, 40, 0.18);
  background: var(--bg-card2);
}
.feature-mini-card .feature-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  color: var(--primary);
}

/* 体育项目 */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.sport-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 36px rgba(95, 58, 38, 0.12);
}
.sport-icon { font-size: 2.8rem; color: var(--primary); }
.sport-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}

/* 步骤卡片 */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.step-card {
  position: relative;
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 16px 38px rgba(96, 56, 37, 0.12);
}
.step-number {
  position: absolute;
  top: -18px; right: 18px;
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.18;
}
.lead-text {
  font-size: 1.16rem;
  line-height: 1.95;
  margin-bottom: 28px;
  color: var(--text-secondary);
}

/* 页脚联系信息 */
.footer-contact-inline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  border: none;
  margin: 0;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: color var(--transition), padding-left var(--transition), transform var(--transition);

}

.footer-contact-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-item:hover,
.footer-contact-item a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-contact-icon {
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  color: var(--primary);
}

.footer-contact-sep {
  display: none;
}

/* ===== 用户评价 ===== */
.testimonials-intro{max-width:960px;margin:0 auto 42px;text-align:center;color:var(--text-secondary);font-size:1.12rem;line-height:1.95;}

.rating-overview{display:grid;grid-template-columns:260px 1fr;gap:46px;background:var(--bg-card);border:1px solid var(--border);border-radius:16px;padding:36px;margin-bottom:44px;align-items:center;box-shadow:0 18px 44px rgba(97,58,39,.12);}
.rating-score{text-align:center;border-right:1px solid var(--border);padding-right:36px;}
.rating-num{font-size:4.4rem;font-weight:900;color:#c96c2f;line-height:1;}
.rating-stars{font-size:1.6rem;color:#c96c2f;margin:10px 0;letter-spacing:4px;}
.rating-total{font-size:.96rem;color:var(--text-muted);}
.rating-bars{display:flex;flex-direction:column;gap:12px;}
.rating-bar-row{display:grid;grid-template-columns:56px 1fr 56px;align-items:center;gap:14px;font-size:.94rem;color:var(--text-secondary);}
.rating-bar{height:12px;background:var(--bg-card2);border-radius:999px;overflow:hidden;}
.rating-fill{height:100%;background:linear-gradient(90deg,#f2b24c,#c96c2f);border-radius:999px;transition:width .8s ease;}
.rating-percent{text-align:right;font-weight:700;color:var(--text-primary);}

.testimonials-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:28px;}
.testimonial-card{background:var(--bg-card);border:1px solid var(--border);border-radius:16px;padding:28px;box-shadow:0 18px 40px rgba(94,57,39,.11);transition:all .32s ease;}
.testimonial-card:hover{transform:translateY(-6px);border-color:rgba(201,108,47,.42);box-shadow:0 24px 52px rgba(94,57,39,.18);}
.testimonial-header{display:flex;align-items:center;gap:14px;margin-bottom:18px;}
.testimonial-avatar{width:52px;height:52px;border-radius:50%;background:linear-gradient(135deg,#f0b35a,#c96c2f);display:flex;align-items:center;justify-content:center;font-size:1.55rem;color:#fff7ef;flex-shrink:0;}
.testimonial-user{flex:1;}
.testimonial-name{font-weight:800;color:var(--text-primary);font-size:1.04rem;}
.testimonial-region{font-size:.86rem;color:var(--text-muted);margin-top:3px;}
.testimonial-rating{color:#c96c2f;font-size:1.02rem;letter-spacing:2px;}
.testimonial-title{font-size:1.16rem;color:var(--primary);margin:0 0 12px;font-weight:700;}
.testimonial-content{font-size:.98rem;line-height:1.85;color:var(--text-secondary);margin:0 0 18px;}
.testimonial-footer{display:flex;justify-content:space-between;align-items:center;padding-top:14px;border-top:1px dashed var(--border);}
.testimonial-tag{background:rgba(201,108,47,.14);color:#8e4723;padding:6px 14px;border-radius:999px;font-size:.78rem;font-weight:700;}
.testimonial-date{font-size:.84rem;color:var(--text-muted);}

@media(max-width:768px){
  .rating-overview{grid-template-columns:1fr;gap:26px;padding:26px;}
  .rating-score{border-right:none;border-bottom:1px solid var(--border);padding:0 0 26px;}
  .testimonials-grid{grid-template-columns:1fr;}
}