/* ============================================
   漾诗岚官网 · 共享样式表
   基于视觉系统 V4.0 / 官网视觉规范 V1.0
   ============================================ */
:root {
  /* 主色 */
  --lanqing: #5B8C8A;
  --shenlan: #2F4E4C;
  --qianlan: #9CC0BC;
  --xibi: #6AAB95;
  /* 辅助色 */
  --mujin: #C2A055;
  --chenyan: #B5C2BF;
  /* 文字色 */
  --shandai: #1F2D2C;
  --mist-600: #45706D;
  --mist-400: #7BA8A4;
  /* 背景色 */
  --wubai: #F3F6F5;
  --mist-50: #F0F5F4;
  --white: #FFFFFF;
  /* 岚青十级梯度 */
  --mist-100: #D9E5E3;
  --mist-200: #B8CFCB;
  --mist-300: #9CC0BC;
  --mist-500: #5B8C8A;
  --mist-700: #3A5C5A;
  --mist-800: #2F4E4C;
  --mist-900: #1F2D2C;
  /* 语义色 */
  --error: #C75450;
  /* 阴影 */
  --shadow-soft: 0 2px 12px rgba(31,45,44,0.06);
  --shadow-medium: 0 8px 28px rgba(31,45,44,0.10);
  --shadow-mist: 0 2px 12px rgba(91,140,138,0.08);
  /* 字体 */
  --font-display: 'Noto Serif SC', serif;
  --font-body: 'Noto Sans SC', sans-serif;
  --font-latin: 'Cormorant Garamond', serif;
  /* 间距 */
  --space-xl: 64px;
  --space-2xl: 80px;
  --space-3xl: 96px;
  /* 圆角 */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  /* 容器 */
  --container: 1200px;
  /* 过渡 */
  --transition: 0.3s ease;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-display);
  background: var(--wubai);
  color: var(--shandai);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* 容器 */
.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }

/* 区块 */
.section { padding: var(--space-3xl) 0; }
.section--alt { background: var(--mist-50); }
.section-label {
  font-family: var(--font-latin);
  font-size: 12px;
  color: var(--lanqing);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

/* 导航栏 */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(243,246,245,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--mist-100);
  box-shadow: var(--shadow-soft);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 40px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  letter-spacing: 0.08em; color: var(--shenlan);
}
.nav-menu { display: flex; gap: 36px; align-items: center; }
.nav-link {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500;
  color: var(--mist-600);
  position: relative; padding: 4px 0;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; border-radius: 2px;
  background: var(--lanqing);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--lanqing); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--lanqing); }

/* 按钮 */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 28px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--lanqing); color: var(--white); }
.btn-primary:hover { background: var(--mist-600); box-shadow: var(--shadow-mist); }
.btn-primary:active { transform: scale(0.98); }
.btn-secondary {
  background: var(--mist-50); color: var(--lanqing);
  border: 1px solid var(--mist-200);
}
.btn-secondary:hover { background: var(--mist-100); border-color: var(--lanqing); }
.btn-ghost { background: transparent; color: var(--lanqing); }
.btn-ghost:hover { background: var(--mist-50); }
.btn:focus-visible { outline: 2px solid var(--lanqing); outline-offset: 2px; }
.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(4px); }

/* Hero 通用 */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--wubai) 0%, var(--mist-50) 60%, var(--mist-100) 100%);
  padding-top: 64px;
}
.hero-mist {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(156,192,188,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 720px; padding: 0 40px; }
.hero-tag {
  display: inline-block;
  font-family: var(--font-latin);
  font-size: 14px; letter-spacing: 0.3em;
  color: var(--lanqing);
  padding: 6px 20px;
  border: 1px solid var(--mist-200);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 96px);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--shenlan);
  line-height: 1.3;
  margin-bottom: 24px;
}
.hero-subtitle {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400;
  color: var(--shandai);
  margin-bottom: 12px;
}
.hero-tagline {
  font-family: var(--font-latin);
  font-style: italic;
  font-size: 18px;
  color: var(--mist-400);
  margin-bottom: 24px;
}
.hero-desc {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--mist-600);
  line-height: 1.9;
  max-width: 520px;
  margin: 0 auto 40px;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* 山峦 SVG */
.hero-mountain { position: absolute; bottom: 0; left: 0; right: 0; z-index: 1; pointer-events: none; }
.hero-mountain svg { width: 100%; height: auto; display: block; }
.mountain-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(to top, var(--wubai) 0%, transparent 100%);
}

/* 产品卡片 */
.products-section { padding: var(--space-3xl) 0; background: var(--mist-50); }
.products-header { text-align: center; margin-bottom: var(--space-2xl); }
.products-title {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 400;
  color: var(--shenlan);
  margin-bottom: 12px;
}
.products-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--mist-600);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--mist-50);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.product-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}
.product-img {
  aspect-ratio: 4/3;
  background: var(--mist-50);
  border: 1px solid var(--mist-100);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}
.product-img-text {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--chenyan);
}
.product-series {
  font-family: var(--font-latin);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--lanqing);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  color: var(--shenlan);
  margin-bottom: 8px;
}
.product-tagline {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--mist-600);
  line-height: 1.7;
  flex: 1;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--mist-50);
}
.product-price {
  font-family: var(--font-latin);
  font-size: 22px; font-weight: 700;
  color: var(--lanqing);
}
.product-status {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--mist-400);
}

/* 入岚 CTA */
.rula-section {
  text-align: center;
  padding: var(--space-3xl) 40px;
  background: var(--wubai);
  position: relative;
}
.rula-inner { max-width: 640px; margin: 0 auto; }
.rula-title {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--shenlan);
  margin-bottom: 20px;
}
.rula-desc {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--mist-600);
  line-height: 1.9;
  margin-bottom: 32px;
}
.rula-small {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--mist-400);
  line-height: 1.8;
  margin-top: 20px;
}

/* 三支柱 */
.pillars-section { padding: var(--space-3xl) 0; background: var(--mist-50); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.pillar { text-align: center; padding: 32px 24px; }
.pillar-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1px solid var(--mist-200);
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
}
.pillar-icon svg { width: 28px; height: 28px; }
.pillar-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  color: var(--shenlan);
  margin-bottom: 12px;
}
.pillar-text {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--mist-600);
  line-height: 1.8;
}

/* 品牌金句条 */
.quote-bar {
  text-align: center;
  padding: var(--space-3xl) 40px;
  background: var(--wubai);
}
.quote-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--shandai);
  line-height: 1.9;
  max-width: 680px;
  margin: 0 auto;
}

/* 故事/理念/联系页通用 */
.page-hero {
  min-height: 60vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, var(--wubai) 0%, var(--mist-50) 100%);
  padding: 120px 40px 60px;
}
.page-hero-label {
  font-family: var(--font-latin);
  font-size: 14px; letter-spacing: 0.3em;
  color: var(--lanqing);
  margin-bottom: 20px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--shenlan);
  margin-bottom: 16px;
}
.page-hero-sub {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--mist-600);
  margin-bottom: 32px;
}
.page-hero-quote {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--mist-400);
  font-style: italic;
}
.page-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px var(--space-3xl);
}

/* 品牌故事正文 */
.story-paragraph {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 2;
  color: var(--shandai);
  margin-bottom: 28px;
}
.story-paragraph--time { font-weight: 500; color: var(--shenlan); }
.story-paragraph--first { font-size: 18px; color: var(--mist-600); }
.story-divider {
  text-align: center;
  margin: 40px 0;
  color: var(--mist-200);
  font-family: var(--font-latin);
  font-size: 20px;
  letter-spacing: 1em;
}
.story-ending {
  text-align: center;
  margin-top: 48px;
  padding: 40px;
  background: var(--mist-50);
  border-radius: var(--radius-lg);
}
.story-ending p {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--shenlan);
  line-height: 2;
}

/* 入岚页 · 时辰测试 */
.quiz-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 40px var(--space-3xl);
}
.quiz-intro {
  text-align: center;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--mist-600);
  line-height: 1.9;
  margin-bottom: 40px;
}
.quiz-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--mist-50);
}
.quiz-progress { display: flex; gap: 8px; margin-bottom: 32px; }
.quiz-dot {
  flex: 1; height: 4px;
  border-radius: 2px;
  background: var(--mist-100);
  transition: background var(--transition);
}
.quiz-dot.active { background: var(--lanqing); }
.quiz-dot.done { background: var(--mist-300); }
.quiz-question {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--shenlan);
  margin-bottom: 28px;
  line-height: 1.6;
}
.quiz-options { display: flex; flex-direction: column; gap: 12px; }
.quiz-option {
  padding: 16px 24px;
  border: 1px solid var(--mist-200);
  border-radius: var(--radius-md);
  background: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--shandai);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1.7;
}
.quiz-option:hover { border-color: var(--lanqing); background: var(--mist-50); }
.quiz-option.selected {
  border-color: var(--lanqing);
  background: var(--mist-50);
  color: var(--shenlan);
}
.quiz-nav { display: flex; justify-content: space-between; margin-top: 32px; }
.quiz-step-indicator {
  font-family: var(--font-latin);
  font-size: 14px;
  color: var(--mist-400);
  align-self: center;
}

/* 雅契结果 */
.yaqi-result { display: none; text-align: center; padding: 40px 0; }
.yaqi-result.show { display: block; }
.yaqi-paper {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--mist-200);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-medium);
  position: relative;
}
.yaqi-paper::before {
  content: '';
  position: absolute;
  top: 16px; left: 16px; right: 16px; bottom: 16px;
  border: 1px solid var(--mist-100);
  border-radius: var(--radius-md);
  pointer-events: none;
}
.yaqi-brand {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--shenlan);
  margin-bottom: 32px;
}
.yaqi-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--shenlan);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--mist-100);
}
.yaqi-name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--shandai);
  margin-bottom: 20px;
}
.yaqi-meta {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--mist-600);
  line-height: 2;
  margin-bottom: 24px;
}
.yaqi-quote {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--mist-600);
  line-height: 2;
  font-style: italic;
  margin-bottom: 16px;
}
.yaqi-sign {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--mist-400);
}
.yaqi-seal {
  display: inline-block;
  width: 48px; height: 48px;
  border: 2px solid #B5462B;
  border-radius: 6px;
  color: #B5462B;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 44px;
  text-align: center;
  margin: 16px 0;
  transform: rotate(-5deg);
}
.rula-next {
  margin-top: 40px;
  padding: 32px;
  background: var(--mist-50);
  border-radius: var(--radius-lg);
}
.rula-next-text {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--mist-600);
  line-height: 1.9;
  margin-bottom: 24px;
}
.rula-next-small {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--mist-400);
  margin-top: 16px;
}

/* 产品详情页 */
.product-detail { padding-top: 64px; }
.product-detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 80vh;
}
.product-detail-img {
  background: var(--mist-50);
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--mist-100);
}
.product-detail-img-text {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 300;
  color: var(--chenyan);
}
.product-detail-info {
  padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.product-detail-series {
  font-family: var(--font-latin);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--lanqing);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.product-detail-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--shenlan);
  margin-bottom: 12px;
  line-height: 1.4;
}
.product-detail-sub {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--mist-600);
  margin-bottom: 32px;
}
.product-detail-main {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--shandai);
  line-height: 2;
  margin-bottom: 32px;
}
.product-detail-points { list-style: none; margin-bottom: 32px; }
.product-detail-points li {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--mist-600);
  line-height: 1.8;
  padding: 12px 0;
  border-bottom: 1px solid var(--mist-50);
  position: relative;
  padding-left: 20px;
}
.product-detail-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 22px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--qianlan);
}
.product-detail-ending {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--shenlan);
  font-style: italic;
  margin-bottom: 32px;
  padding: 16px 24px;
  background: var(--mist-50);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--lanqing);
}
.product-detail-params {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--mist-400);
  line-height: 2;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--mist-50);
  border-radius: var(--radius-sm);
}
.product-detail-warning {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--mist-600);
  line-height: 1.8;
  margin-bottom: 32px;
  padding: 16px;
  border: 1px solid var(--mist-100);
  border-radius: var(--radius-sm);
}
.product-detail-actions { display: flex; align-items: center; gap: 20px; }
.product-detail-price {
  font-family: var(--font-latin);
  font-size: 32px;
  font-weight: 700;
  color: var(--lanqing);
}

/* 品牌理念 */
.philosophy-heading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--shenlan);
  margin-bottom: 20px;
}
.philosophy-body {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--shandai);
  line-height: 2;
}
.philosophy-ending {
  text-align: center;
  padding: 48px 40px;
  background: var(--mist-50);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
}
.philosophy-ending p {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--shenlan);
  line-height: 2;
}

/* 联系页 */
.contact-block {
  margin-bottom: 48px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--mist-50);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.contact-heading {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--shenlan);
  margin-bottom: 16px;
}
.contact-text {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--mist-600);
  line-height: 2.2;
}

/* 页脚 */
.footer {
  background: var(--shenlan);
  color: var(--mist-200);
  padding: var(--space-2xl) 40px 40px;
}
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--mist-400);
  margin-bottom: 4px;
}
.footer-tagline-en {
  font-family: var(--font-latin);
  font-style: italic;
  font-size: 14px;
  color: var(--mist-600);
  margin-bottom: 40px;
}
.footer-compliance {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--mist-600);
  line-height: 2;
  border-top: 1px solid var(--mist-800);
  padding-top: 24px;
}
.footer-compliance p { margin-bottom: 8px; }
.footer-copyright {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--mist-800);
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--mist-600);
}

/* 响应式 */
@media (max-width: 960px) {
  .products-grid, .pillars-grid { grid-template-columns: 1fr; }
  .product-detail-hero { grid-template-columns: 1fr; }
  .product-detail-img { min-height: 300px; border-right: none; border-bottom: 1px solid var(--mist-100); }
  .product-detail-info { padding: 40px 30px; }
  .nav-menu { gap: 20px; }
  .nav-menu .nav-link { font-size: 13px; }
  .container { padding: 0 24px; }
  .hero-title { font-size: clamp(36px, 10vw, 56px); }
  .section { padding: var(--space-xl) 0; }
  .quote-bar { padding: var(--space-xl) 24px; }
  .rula-section { padding: var(--space-xl) 24px; }
}
@media (max-width: 640px) {
  .nav-menu { display: none; }
  .nav-inner { padding: 0 20px; }
  .hero-content { padding: 0 24px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; }
  .quiz-card { padding: 24px 20px; }
  .yaqi-paper { padding: 32px 24px; }
  .products-grid, .pillars-grid { padding: 0 20px; }
  .page-body { padding: 0 20px var(--space-xl); }
  .footer { padding: var(--space-xl) 20px 24px; }
}

/* 动效 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* 滚动条 */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--mist-50); }
::-webkit-scrollbar-thumb { background: var(--mist-200); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--mist-300); }

.footer-beian {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-beian a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-beian img {
  display: block;
  max-height: 20px;
  width: auto;
}
