/* =============================================
   暗网 - 主样式文件
   Brand: 暗网 | Domain: ztfnio.cn
   ============================================= */

/* ---- CSS变量 ---- */
:root {
  --primary: #3a0d6b;
  --primary-dark: #22064a;
  --primary-light: #7B61FF;
  --secondary: #FF6B35;
  --accent: #9B59B6;
  --accent2: #3498DB;
  --dark: #0d0618;
  --dark2: #1a0a2e;
  --dark3: #2d1b4e;
  --card-bg: #1e1030;
  --text-main: #f0e8ff;
  --text-muted: #a89bc4;
  --text-light: #d4c8ee;
  --border: rgba(232,51,109,0.25);
  --gradient-main: linear-gradient(135deg, #E8336D 0%, #9B59B6 50%, #3498DB 100%);
  --gradient-card: linear-gradient(145deg, #1e1030 0%, #2d1b4e 100%);
  --shadow: 0 8px 32px rgba(232,51,109,0.18);
  --shadow-lg: 0 16px 48px rgba(232,51,109,0.28);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- 重置与基础 ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
  background: var(--dark);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--primary-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; outline: none; }

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

/* ---- 头部导航 ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,6,24,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}
.ettdxgb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.e9s6scb {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}
.o1skd {
  font-size: 22px;
  font-weight: 800;
  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: 4px; }
.main-nav a {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  color: #fff;
  background: rgba(232,51,109,0.15);
}
.main-nav a.active { color: var(--primary-light); }

/* ---- 搜索框 ---- */
.j5x75ube {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 6px 14px;
  gap: 8px;
  min-width: 200px;
  transition: var(--transition);
}
.j5x75ube:focus-within {
  border-color: var(--primary);
  background: rgba(232,51,109,0.08);
  box-shadow: 0 0 0 3px rgba(232,51,109,0.12);
}
.j5x75ube input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-main);
  font-size: 14px;
  width: 100%;
}
.j5x75ube input::placeholder { color: var(--text-muted); }
.j5x75ube button {
  background: transparent;
  color: var(--text-muted);
  font-size: 16px;
  padding: 0;
  transition: var(--transition);
}
.j5x75ube button:hover { color: var(--primary); }

/* ---- 导航下方搜索栏 ---- */
.onq87 {
  background: rgba(26,10,46,0.95);
  border-bottom: 1px solid rgba(232,51,109,0.1);
  padding: 10px 20px;
}
.onq87 .inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.onq87 .ohv7z {
  flex: 1;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--border);
  border-radius: 28px;
  padding: 8px 20px;
  gap: 10px;
  max-width: 600px;
}
.onq87 .ohv7z input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-main);
  font-size: 15px;
  width: 100%;
}
.onq87 .ohv7z input::placeholder { color: var(--text-muted); }
.onq87 .ohv7z button {
  background: var(--gradient-main);
  color: #fff;
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.onq87 .o4ivi7b { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.onq87 .o4ivi7b span { color: var(--text-muted); font-size: 13px; }
.onq87 .o4ivi7b a {
  color: var(--text-muted);
  font-size: 13px;
  padding: 3px 10px;
  border: 1px solid rgba(232,51,109,0.2);
  border-radius: 12px;
  transition: var(--transition);
}
.onq87 .o4ivi7b a:hover {
  color: var(--primary-light);
  border-color: var(--primary);
  background: rgba(232,51,109,0.08);
}

/* ---- 面包屑 ---- */
.wpics {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.wpics a { color: var(--text-muted); }
.wpics a:hover { color: var(--primary-light); }
.wpics .ivz4h9q { color: rgba(255,255,255,0.2); }
.wpics .current { color: var(--primary-light); }

/* ---- 英雄区 ---- */
.bypqex {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark2);
}
.t16tv8 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  z-index: 0;
}
.w4vot1b {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,6,24,0.92) 0%, rgba(13,6,24,0.6) 60%, rgba(13,6,24,0.2) 100%);
  z-index: 1;
}
.plnx4d {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
  max-width: 640px;
  padding-left: 40px;
}
.yf4q6jc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,51,109,0.15);
  border: 1px solid rgba(232,51,109,0.4);
  color: var(--primary-light);
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  font-weight: 600;
}
.bypqex h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}
.bypqex h1 em {
  font-style: normal;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bypqex p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.8;
}
.f0mhr3 { display: flex; gap: 14px; flex-wrap: wrap; }
.mui67 {
  background: var(--gradient-main);
  color: #fff;
  padding: 12px 28px;
  border-radius: 28px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mui67:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: #fff;
}
.yckxl {
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  border-radius: 28px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.3);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.yckxl:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  background: rgba(232,51,109,0.08);
}
.eyqyl {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-size: 26px;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat .label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ---- 通用区块 ---- */
.sqooe1b { padding: 64px 20px; }
.e517szb { max-width: 1280px; margin: 0 auto; }
.gufx1wc { text-align: center; margin-bottom: 48px; }
.vj37jucd {
  display: inline-block;
  background: rgba(232,51,109,0.12);
  color: var(--primary-light);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(232,51,109,0.3);
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.fk9n1c {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}
.fk9n1c em {
  font-style: normal;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cdh55 { font-size: 15px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ---- 视频卡片 ---- */
.ygtiz {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.video-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,51,109,0.5);
}
.sxj9p {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dark3);
}
.sxj9p img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-card:hover .sxj9p img { transform: scale(1.06); }
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: var(--transition);
}
.video-card:hover .play-btn { opacity: 1; }
.play-btn-icon {
  width: 56px;
  height: 56px;
  background: rgba(232,51,109,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 20px rgba(232,51,109,0.5);
  transform: scale(0.8);
  transition: var(--transition);
}
.video-card:hover .play-btn-icon { transform: scale(1); }
.play-btn-icon svg { width: 22px; height: 22px; fill: #fff; margin-left: 3px; }
.vuqauw {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 12px;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 600;
}
.tvuixd {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}
.prhztg { padding: 14px; }
.video-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.g83vpwc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}
.p3y1lo { display: flex; align-items: center; gap: 6px; }
.p3y1lo img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }
.s334c { display: flex; gap: 10px; }
.s334c span { display: flex; align-items: center; gap: 3px; }

/* ---- 功能模块卡片 ---- */
.e1emptc {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.xc6c40gt {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.xc6c40gt:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(232,51,109,0.4);
}
.hfuuuq {
  width: 60px;
  height: 60px;
  background: rgba(232,51,109,0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  border: 1px solid rgba(232,51,109,0.2);
}
.xc6c40gt h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.xc6c40gt p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ---- 专家卡片 ---- */
.a0y40 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.dpot6m {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.dpot6m:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vsty3n {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}
.o5wzx { padding: 18px; }
.bhsklguw { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.gn57r {
  font-size: 13px;
  color: var(--primary-light);
  margin-bottom: 10px;
  font-weight: 600;
}
.hkb8lgb2 { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.y24ib { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.vtdcunji {
  background: rgba(232,51,109,0.1);
  color: var(--primary-light);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 12px;
  border: 1px solid rgba(232,51,109,0.2);
}
.q1hvocm { display: flex; gap: 8px; }
.eu5od {
  flex: 1;
  text-align: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}
.yz8kgac {
  background: var(--gradient-main);
  color: #fff;
}
.deqkkgaw {
  border: 1px solid var(--border);
  color: var(--text-light);
}
.deqkkgaw:hover { border-color: var(--primary); color: var(--primary-light); }

/* ---- 用户评价 ---- */
.lq5hsc8m {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.ehkj0ki {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: var(--transition);
}
.ehkj0ki:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.to078jbh { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.ru80cm {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}
.euktd .name { font-size: 15px; font-weight: 700; color: #fff; }
.euktd .date { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.hdo7sa { color: #FFD700; font-size: 14px; margin-bottom: 10px; }
.tjkron { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.yrtvovc { margin-top: 12px; font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }

/* ---- FAQ ---- */
.cc6pxdb { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(232,51,109,0.4); }
.faq-q {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: var(--gradient-card);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  gap: 12px;
  user-select: none;
}
.faq-q:hover { color: var(--primary-light); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(232,51,109,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--primary-light);
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(232,51,109,0.3); }
.faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  background: rgba(26,10,46,0.5);
}
.faq-item.open .faq-a { max-height: 300px; padding: 16px 22px 20px; }

/* ---- 合作品牌 ---- */
.y3m646b {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.fqo6st {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
  white-space: nowrap;
}
.fqo6st:hover {
  color: var(--primary-light);
  border-color: rgba(232,51,109,0.4);
  background: rgba(232,51,109,0.06);
}

/* ---- 联系区 ---- */
.d8vv6wct {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.pdo871 {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.pdo871 .icon { font-size: 40px; margin-bottom: 14px; }
.pdo871 h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.pdo871 p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.y76pzfc { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.nmoyqh { text-align: center; }
.nmoyqh img { width: 130px; height: 130px; border-radius: 12px; border: 2px solid var(--border); object-fit: cover; }
.nmoyqh p { font-size: 13px; color: var(--text-muted); margin-top: 8px; }

/* ---- 社交分享 ---- */
.rm8l3b {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 24px 20px;
}
.u73zoic { font-size: 14px; color: var(--text-muted); font-weight: 600; }
.mp5e4wc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid transparent;
}
.ich96 { background: rgba(7,193,96,0.12); color: #07c160; border-color: rgba(7,193,96,0.25); }
.ich96:hover { background: rgba(7,193,96,0.2); color: #07c160; }
.akifc { background: rgba(230,22,45,0.12); color: #e6162d; border-color: rgba(230,22,45,0.25); }
.akifc:hover { background: rgba(230,22,45,0.2); color: #e6162d; }
.siesdmh { background: rgba(0,0,0,0.3); color: #fff; border-color: rgba(255,255,255,0.15); }
.siesdmh:hover { background: rgba(255,255,255,0.1); }
.n7le4wbq { background: rgba(0,161,214,0.12); color: #00a1d6; border-color: rgba(0,161,214,0.25); }
.n7le4wbq:hover { background: rgba(0,161,214,0.2); color: #00a1d6; }

/* ---- 底部 ---- */
.site-footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 48px 20px 24px;
}
.fqfwdr {
  max-width: 1280px;
  margin: 0 auto;
}
.yprlj3b {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.swn4191 .o1skd { font-size: 24px; margin-bottom: 12px; display: block; }
.swn4191 p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.yzwvmwb h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.yzwvmwb ul li { margin-bottom: 8px; }
.yzwvmwb ul li a { font-size: 13px; color: var(--text-muted); transition: var(--transition); }
.yzwvmwb ul li a:hover { color: var(--primary-light); padding-left: 4px; }
.hh1wgh {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.hh1wgh a { color: var(--text-muted); }
.hh1wgh a:hover { color: var(--primary-light); }
.rkmaw2 { color: var(--primary-light); font-weight: 600; }

/* ---- 标签页 ---- */
.tab-bar {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-bar::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  white-space: nowrap;
  transition: var(--transition);
}
.tab-btn:hover { color: var(--text-main); }
.tab-btn.active { color: var(--primary-light); border-bottom-color: var(--primary); }

/* ---- 直播区 ---- */
.um9m7 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.to53v6de {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.to53v6de:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.e6uzk {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.e6uzk img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.to53v6de:hover .e6uzk img { transform: scale(1.05); }
.ndhrqabj {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ff4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ndhrqabj::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.t8ysphko {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 4px;
}
.zo9h9n { padding: 10px 12px; }
.sdiic { font-size: 13px; font-weight: 600; color: var(--text-main); margin-bottom: 4px; }
.hp9wkr { font-size: 11px; color: var(--primary-light); }

/* ---- 加入社区步骤 ---- */
.yo9cx {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.p16frv {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  counter-increment: step;
}
.p16frv::before {
  content: counter(step);
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  line-height: 28px;
}
.t55try { font-size: 36px; margin-bottom: 12px; }
.p16frv h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.p16frv p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ---- 统计数字 ---- */
.dmdx9ycv {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
  text-align: center;
}
.n0hp3r {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
}
.stat-num {
  font-size: 32px;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.lzs3fl { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ---- 分隔线 ---- */
.wcilbtb {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 auto;
  max-width: 1280px;
}

/* ---- 标签云 ---- */
.raud3i { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.t528yw {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 20px;
  transition: var(--transition);
  cursor: pointer;
}
.t528yw:hover {
  background: rgba(232,51,109,0.1);
  border-color: var(--primary);
  color: var(--primary-light);
}

/* ---- 通知条 ---- */
.kl4su {
  background: rgba(232,51,109,0.08);
  border: 1px solid rgba(232,51,109,0.2);
  border-radius: var(--radius);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-light);
}
.kl4su .icon { color: var(--primary-light); font-size: 18px; flex-shrink: 0; }

/* ---- 内页横幅 ---- */
.zpc5qvb2 {
  background: var(--dark2);
  padding: 48px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.zpc5qvb2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,51,109,0.15) 0%, transparent 70%);
}
.zpc5qvb2 h1 {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}
.zpc5qvb2 p {
  font-size: 15px;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- 响应式 ---- */
@media (max-width: 1024px) {
  .yprlj3b { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header-inner { height: 58px; }
  .main-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .bypqex { min-height: 380px; }
  .plnx4d { padding: 40px 20px; }
  .yprlj3b { grid-template-columns: 1fr 1fr; gap: 24px; }
  .ygtiz { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .sqooe1b { padding: 40px 16px; }
}
@media (max-width: 480px) {
  .yprlj3b { grid-template-columns: 1fr; }
  .eyqyl { gap: 20px; }
  .j5x75ube { min-width: 140px; }
  .onq87 .o4ivi7b { display: none; }
}

/* ---- 移动菜单按钮 ---- */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- 移动导航 ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(13,6,24,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-light);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  transition: var(--transition);
}
.mobile-nav a:hover { background: rgba(232,51,109,0.1); color: var(--primary-light); }

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

/* ---- 滚动条 ---- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: rgba(232,51,109,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ---- 加载动画 ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.6s ease both; }
.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }

/* ---- 渐变分隔 ---- */
.xs5oa4b1 { background: rgba(26,10,46,0.5); }
.lc2e69jb { background: var(--dark2); }

/* ---- 分页 ---- */
.lxm8ec {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.gfvbo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}
.gfvbo:hover,
.gfvbo.active {
  background: var(--gradient-main);
  border-color: var(--primary);
  color: #fff;
}
.umzf5 { color: var(--text-muted); padding: 0 4px; }
.bobgcg { padding: 0 16px; }

/* ---- 弹幕演示 ---- */
.z230oo { max-width: 720px; margin: 0 auto; }
.xbd4n3 { position: relative; border-radius: 12px; overflow: hidden; }
.ejl42oc {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.gj807 {
  position: absolute;
  left: 100%;
  white-space: nowrap;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 20px;
  animation: danmuScroll 8s linear infinite;
}
@keyframes danmuScroll {
  from { left: 100%; }
  to { left: -300px; }
}

/* ---- 资质卡片 ---- */
.zz41akbt {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.mtgi8kc {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.mtgi8kc:hover { border-color: var(--primary); transform: translateY(-4px); }
.mtgi8kc .am68o { font-size: 36px; margin-bottom: 12px; }
.mtgi8kc h3 { font-size: 15px; font-weight: 700; color: var(--text-main); margin-bottom: 10px; }
.mtgi8kc p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ---- 联系卡片 ---- */
.d8vv6wct {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.pdo871 {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--transition);
}
.pdo871:hover { border-color: var(--primary); }
.pdo871 .icon { font-size: 28px; margin-bottom: 12px; }
.pdo871 h3 { font-size: 15px; font-weight: 700; color: var(--text-main); margin-bottom: 10px; }
.pdo871 p { font-size: 13px; color: var(--text-muted); line-height: 2; }
.pdo871 a { color: var(--primary-light); }
.pdo871 a:hover { color: var(--primary); }

/* ---- 关于页面统计 ---- */
.wn2zo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.nw5qal {
  background: rgba(232,51,109,0.06);
  border: 1px solid rgba(232,51,109,0.15);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
}
.nw5qal .num {
  display: block;
  font-size: 22px;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nw5qal .label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
@media (max-width: 600px) {
  .wn2zo { grid-template-columns: repeat(2, 1fr); }
}

/* ---- 关于页面内容布局 ---- */
.gdyxc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
.qo1o9 h3 { font-size: 22px; font-weight: 800; color: var(--text-main); margin-bottom: 16px; }
.qo1o9 p { color: var(--text-light); line-height: 1.9; margin-bottom: 14px; }
@media (max-width: 768px) {
  .gdyxc { grid-template-columns: 1fr; }
}

/* ---- 分类导航栏 ---- */
.vws46h {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.y508bzb {
  padding: 8px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}
.y508bzb:hover,
.y508bzb.active {
  background: var(--gradient-main);
  border-color: var(--primary);
  color: #fff;
}

/* ---- 图片画廊 ---- */
.cchptec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 600px) {
  .cchptec { grid-template-columns: 1fr; }
}

/* ---- 面包屑内部容器 ---- */
.wpics .e517szb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ---- zpc5qvb2 em渐变文字 ---- */
.zpc5qvb2 em {
  font-style: normal;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- 二维码区 ---- */
.y76pzfc {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.nmoyqh { text-align: center; }
.nmoyqh p { font-size: 12px; color: var(--text-muted); margin-top: 8px; }

/* ---- 底部更新时间 ---- */
.rkmaw2 {
  color: var(--primary-light);
  font-size: 13px;
  font-weight: 600;
}

/* ---- 底部底栏 ---- */
.hh1wgh {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  padding-top: 20px;
}
.hh1wgh a { color: var(--text-muted); transition: var(--transition); }
.hh1wgh a:hover { color: var(--primary-light); }
@media (max-width: 600px) {
  .hh1wgh { flex-direction: column; text-align: center; }
}

/* ---- 按钮小型 ---- */
.eu5od {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  margin-top: 8px;
  margin-right: 6px;
}
.yz8kgac {
  background: var(--gradient-main);
  color: #fff;
  border: none;
}
.deqkkgaw {
  background: transparent;
  color: var(--primary-light);
  border: 1px solid rgba(232,51,109,0.4);
}
.deqkkgaw:hover { background: rgba(232,51,109,0.1); }

/* ---- 专家按钮组 ---- */
.q1hvocm { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
