/* =============================================
   黄色仓库 - 主样式文件 v2.0
   品牌色: #FF6B9D (玫瑰粉) / #0D1B2A (深海蓝) / #C44569 (深玫红)
   ============================================= */

/* --- 基础重置 --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand-primary: #FF6B9D;
  --brand-secondary: #C44569;
  --brand-dark: #0D1B2A;
  --brand-darker: #071018;
  --brand-accent: #FF8FAB;
  --brand-gold: #FFD700;
  --text-light: #F8F9FA;
  --text-muted: #A0AEC0;
  --bg-card: #132232;
  --bg-section: #0F1E2D;
  --border-color: rgba(255,107,157,0.2);
  --gradient-main: linear-gradient(135deg, #FF6B9D 0%, #C44569 100%);
  --gradient-dark: linear-gradient(180deg, #0D1B2A 0%, #071018 100%);
  --shadow-pink: 0 4px 24px rgba(255,107,157,0.25);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.4);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'PingFang SC', 'Microsoft YaHei', '微软雅黑', 'Noto Sans SC', sans-serif;
  background: var(--brand-darker);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--brand-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-accent); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; }

/* --- 容器 --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* --- 顶部公告栏 --- */
.pnpoivdy {
  background: var(--gradient-main);
  color: #fff;
  text-align: center;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.pnpoivdy a { color: #fff; text-decoration: underline; }

/* --- 导航栏 --- */
.c2kii {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.s87je0z {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img.logo-img {
  height: 40px;
  width: 40px;
  border-radius: 8px;
  object-fit: contain;
}
.site-logo .logo-text {
  font-size: 20px;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

/* --- 主导航 --- */
.main-nav { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
.main-nav a {
  color: var(--text-light);
  font-size: 14px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  font-weight: 500;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--brand-primary);
  background: rgba(255,107,157,0.1);
}

/* --- 搜索框（导航内） --- */
.id2rhzq {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  transition: border-color var(--transition);
  min-width: 180px;
  max-width: 220px;
}
.id2rhzq:focus-within { border-color: var(--brand-primary); }
.id2rhzq input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-light);
  padding: 7px 12px;
  font-size: 13px;
  width: 100%;
}
.id2rhzq input::placeholder { color: var(--text-muted); }
.id2rhzq button {
  background: var(--gradient-main);
  color: #fff;
  padding: 7px 14px;
  font-size: 13px;
  border-radius: 0 24px 24px 0;
  transition: opacity var(--transition);
  white-space: nowrap;
}
.id2rhzq button:hover { opacity: 0.85; }

/* --- 汉堡菜单 --- */
.etiox {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 4px;
}
.etiox span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all var(--transition);
}

/* --- 搜索栏（导航下方） --- */
.cbqpj2 {
  background: var(--bg-section);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
}
.wwdln {
  display: flex;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-color);
  border-radius: 32px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.wwdln:focus-within { border-color: var(--brand-primary); box-shadow: var(--shadow-pink); }
.wwdln input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-light);
  padding: 12px 20px;
  font-size: 15px;
}
.wwdln input::placeholder { color: var(--text-muted); }
.wwdln button {
  background: var(--gradient-main);
  color: #fff;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 0 32px 32px 0;
  white-space: nowrap;
}
.wwdln button:hover { opacity: 0.9; }

/* --- Hero Banner --- */
.p1hfaqt {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.f7rrl1 {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero_banner.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
  z-index: 0;
}
.t772ld {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.35) 60%, transparent 100%);
  z-index: 1;
}
.cicnob5 {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 60px 0;
}
.x1o6c3 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,157,0.2);
  border: 1px solid var(--brand-primary);
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.gs3qfuuc {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}
.gs3qfuuc span { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.jvz41ez {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
  line-height: 1.75;
}
.s4u2ky {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}
.l0qdil { text-align: center; }
.mp60jh { font-size: 26px; font-weight: 800; color: var(--brand-primary); }
.j2vbt4ct { font-size: 12px; color: var(--text-muted); }
.x7iw0tjo { display: flex; gap: 12px; flex-wrap: wrap; }

/* --- 按钮 --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 32px;
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: none;
}
.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,107,157,0.4); color: #fff; }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* --- 通用区块标题 --- */
.vjtbh2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.o8lyg {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.o8lyg::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 22px;
  background: var(--gradient-main);
  border-radius: 2px;
  flex-shrink: 0;
}
.l20276o {
  font-size: 13px;
  color: var(--brand-primary);
  border: 1px solid var(--border-color);
  padding: 5px 14px;
  border-radius: 20px;
  transition: all var(--transition);
  white-space: nowrap;
}
.l20276o:hover { background: var(--brand-primary); color: #fff; }

/* --- 通用区块 --- */
.section { padding: 60px 0; }
.section-alt { background: var(--bg-section); }
.section-dark { background: var(--brand-darker); }

/* --- 视频卡片 --- */
.rprsju {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.r4c4cb {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all var(--transition);
  cursor: pointer;
}
.r4c4cb:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pink);
  border-color: var(--brand-primary);
}
.sqmp40c {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0a1520;
}
.sqmp40c img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.r4c4cb:hover .sqmp40c img { transform: scale(1.05); }
.kb8pay03 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
}
.r4c4cb:hover .kb8pay03 { background: rgba(0,0,0,0.45); }
.xfldgnaj {
  width: 52px;
  height: 52px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(255,107,157,0.5);
}
.r4c4cb:hover .xfldgnaj { opacity: 1; transform: scale(1); }
.xfldgnaj::after {
  content: '';
  border-left: 18px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.azd1ncu {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--gradient-main);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}
.jjjsr {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
}
.ori2wk { padding: 12px 14px 14px; }
.df1tiir {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}
.fw15n2t {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 4px;
}
.jj9ic { display: flex; align-items: center; gap: 6px; }
.a7r2j {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}
.vqnkoyg { display: flex; gap: 8px; flex-wrap: wrap; }
.vqnkoyg span { display: flex; align-items: center; gap: 2px; }

/* --- 直播卡片 --- */
.rzdv1r3s {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.ylb6rjh {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}
.ylb6rjh:hover { transform: translateY(-3px); box-shadow: var(--shadow-pink); border-color: var(--brand-primary); }
.iemofwm {
  aspect-ratio: 9/16;
  overflow: hidden;
  position: relative;
  background: #0a1520;
}
.iemofwm img { width: 100%; height: 100%; object-fit: cover; }
.vsjk8 {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #E53E3E;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.vsjk8::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1.2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.ppgk8 {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 10px;
}
.wm9g1n3u { padding: 10px 12px; }
.ds5oxuv { font-size: 13px; font-weight: 600; color: var(--text-light); margin-bottom: 4px; }
.rf7ds { font-size: 12px; color: var(--text-muted); }

/* --- 专家卡片 --- */
.bv1xicx {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.bh5n4y {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px 20px 20px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all var(--transition);
}
.bh5n4y:hover { transform: translateY(-4px); box-shadow: var(--shadow-pink); border-color: var(--brand-primary); }
.uhbif {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-main);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  border: 3px solid var(--brand-primary);
}
.bl945uq { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.t6wcbngm { font-size: 13px; color: var(--brand-primary); margin-bottom: 10px; font-weight: 600; }
.uy4bzq { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; text-align: left; }
.yvvugq { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 12px; }
.c4um6vm {
  background: rgba(255,107,157,0.1);
  border: 1px solid var(--border-color);
  color: var(--brand-accent);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 12px;
}
.a2dle33e { display: flex; gap: 8px; justify-content: center; }

/* --- 合作品牌 --- */
.nh4k2c4j {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.r0hwymy {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
  min-width: 110px;
  text-align: center;
}
.r0hwymy:hover { border-color: var(--brand-primary); color: var(--brand-primary); background: rgba(255,107,157,0.05); }

/* --- 用户评价 --- */
.pq6gckr {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.x5v7stss {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border-color);
  transition: all var(--transition);
}
.x5v7stss:hover { border-color: var(--brand-primary); }
.nlv3g { color: var(--brand-gold); font-size: 16px; margin-bottom: 10px; }
.eajpxi { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.xt64gk { display: flex; align-items: center; gap: 10px; }
.xunns3e {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.kwr5ej { font-size: 14px; font-weight: 600; }
.vbr03mha { font-size: 12px; color: var(--text-muted); }

/* --- FAQ --- */
.msnfz9 { max-width: 820px; margin: 0 auto; }
.tidn8rl {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.tidn8rl:hover { border-color: rgba(255,107,157,0.4); }
.alph8xsu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
  user-select: none;
  gap: 12px;
}
.alph8xsu::after {
  content: '+';
  font-size: 22px;
  color: var(--brand-primary);
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.tidn8rl.open .alph8xsu::after { transform: rotate(45deg); }
.el3sq9qy {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 0 20px;
}
.tidn8rl.open .el3sq9qy { max-height: 400px; padding: 0 20px 18px; }

/* --- 联系我们 --- */
.a1seh {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.z94gkn {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  padding: 14px 16px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}
.xg76n {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,107,157,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.rgd0o4w { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.qi8hct { font-size: 14px; font-weight: 600; color: var(--text-light); }
.bo7zs72 { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.uea22ab { text-align: center; }
.uea22ab img { width: 130px; height: 130px; border-radius: var(--radius-md); border: 2px solid var(--border-color); object-fit: cover; }
.uea22ab p { font-size: 12px; color: var(--text-muted); margin-top: 8px; }

/* --- 社交分享 --- */
.c85oy {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}
.rn0wad { font-size: 14px; color: var(--text-muted); font-weight: 600; }
.lbbo9 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: opacity var(--transition);
  border: none;
}
.lbbo9:hover { opacity: 0.85; }
.bh3oh9xw { background: #07C160; }
.bppw6b26 { background: #E6162D; }
.hph51w { background: #010101; border: 1px solid #333; }
.wqqtp { background: #00A1D6; }

/* --- 页脚 --- */
.site-footer {
  background: var(--brand-darker);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 0;
}
.t6hg1vni {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.butbi4t .rfpys { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.butbi4t .rfpys img { height: 36px; width: 36px; object-fit: contain; }
.butbi4t .rfpys span { font-size: 18px; font-weight: 700; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cd3jb7xr { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.mz9z61 { display: flex; gap: 10px; }
.frf05j9s {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,107,157,0.1);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
  transition: all var(--transition);
  text-decoration: none;
}
.frf05j9s:hover { background: var(--brand-primary); border-color: var(--brand-primary); color: #fff; }
.tuttu3r3 h4 { font-size: 15px; font-weight: 700; margin-bottom: 16px; color: var(--text-light); }
.tuttu3r3 ul li { margin-bottom: 10px; }
.tuttu3r3 ul li a { font-size: 13px; color: var(--text-muted); transition: color var(--transition); }
.tuttu3r3 ul li a:hover { color: var(--brand-primary); }
.z411g {
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}
.z411g a { color: var(--text-muted); }
.z411g a:hover { color: var(--brand-primary); }

/* --- AI赋能区块 --- */
.szbmq2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.d1bp8 {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.d1bp8::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-main);
}
.d1bp8:hover { transform: translateY(-4px); box-shadow: var(--shadow-pink); }
.stgywql { font-size: 40px; margin-bottom: 14px; }
.jyp6qnqa { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.py2pk25 { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* --- How-To 加入社区 --- */
.m9jijaw8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.m9jijaw8::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--border-color);
  z-index: 0;
}
.s5ap4fx { text-align: center; position: relative; z-index: 1; }
.d12lag7a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: var(--shadow-pink);
}
.fo2cf5 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.yxaebd2 { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* --- 统计数字 --- */
.jtbntac2 { background: var(--gradient-main); padding: 40px 0; }
.sz3k8f7 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.fcoiulah { font-size: 34px; font-weight: 800; color: #fff; }
.hcvqgu { font-size: 13px; color: rgba(255,255,255,0.85); margin-top: 4px; }

/* --- 面包屑 --- */
.dy6vfg {
  padding: 14px 0;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.dy6vfg a { color: var(--text-muted); }
.dy6vfg a:hover { color: var(--brand-primary); }
.dy6vfg .sep { color: var(--border-color); }
.dy6vfg .current { color: var(--brand-primary); }

/* --- 标签云 --- */
.g0ynet8n { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: rgba(255,107,157,0.1);
  border: 1px solid var(--border-color);
  color: var(--brand-accent);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 16px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.tag:hover { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }

/* --- 分类导航 --- */
.viyso {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.r4szq6m9 {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.r4szq6m9:hover, .r4szq6m9.active {
  background: var(--gradient-main);
  color: #fff;
  border-color: transparent;
}

/* --- 通知条 --- */
.sjaepdmh {
  background: rgba(255,107,157,0.08);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-muted);
}
.rj36v11 { color: var(--brand-primary); font-size: 18px; flex-shrink: 0; }

/* --- 懒加载占位 --- */
img[data-src] { opacity: 0; transition: opacity 0.4s; }
img.loaded { opacity: 1; }

/* --- 内页通用 --- */
.f6tk7 {
  background: var(--bg-section);
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border-color);
}
.f6tk7 h1 { font-size: clamp(24px, 4vw, 40px); font-weight: 800; margin-bottom: 10px; }
.f6tk7 p { font-size: 15px; color: var(--text-muted); }

/* --- 响应式 --- */
@media (max-width: 1100px) {
  .t6hg1vni { grid-template-columns: 1fr 1fr; }
  .szbmq2 { grid-template-columns: 1fr 1fr; }
  .m9jijaw8 { grid-template-columns: 1fr 1fr; }
  .m9jijaw8::before { display: none; }
  .sz3k8f7 { grid-template-columns: repeat(2, 1fr); }
  .a1seh { grid-template-columns: 1fr; }
  .main-nav a { padding: 6px 8px; font-size: 13px; }
}

@media (max-width: 768px) {
  .s87je0z { height: 56px; }
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 56px;
    left: 0; right: 0;
    background: rgba(13,27,42,0.99);
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    gap: 4px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 16px; border-radius: var(--radius-sm); width: 100%; }
  .etiox { display: flex; }
  .id2rhzq { display: none; }
  .p1hfaqt { min-height: 360px; }
  .cicnob5 { padding: 36px 0; }
  .s4u2ky { gap: 16px; }
  .mp60jh { font-size: 20px; }
  .rprsju { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .rzdv1r3s { grid-template-columns: repeat(2, 1fr); }
  .bv1xicx { grid-template-columns: 1fr 1fr; }
  .t6hg1vni { grid-template-columns: 1fr; gap: 24px; }
  .szbmq2 { grid-template-columns: 1fr; }
  .m9jijaw8 { grid-template-columns: 1fr 1fr; }
  .sz3k8f7 { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 40px 0; }
  .pq6gckr { grid-template-columns: 1fr; }
  .a1seh { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .rprsju { grid-template-columns: 1fr; }
  .rzdv1r3s { grid-template-columns: 1fr 1fr; }
  .bv1xicx { grid-template-columns: 1fr; }
  .m9jijaw8 { grid-template-columns: 1fr; }
  .x7iw0tjo { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .z411g { flex-direction: column; text-align: center; }
  .c85oy { flex-direction: column; align-items: flex-start; }
  .sz3k8f7 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .fcoiulah { font-size: 26px; }
}

/* --- 滚动条美化 --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--brand-darker); }
::-webkit-scrollbar-thumb { background: var(--brand-primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-secondary); }

/* --- 选中文字颜色 --- */
::selection { background: rgba(255,107,157,0.3); color: #fff; }

/* --- 动画 --- */
@keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }

/* --- 无障碍：焦点样式 --- */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}
