/* =====================================================
   黑料专区 - 主样式文件
   品牌色系：玫瑰红 #E8436A / 珊瑚橙 #FF7B54 / 深紫 #1A1A2E
   ===================================================== */

/* ---- CSS变量 ---- */
:root {
  --brand-primary: #E8436A;
  --brand-secondary: #FF7B54;
  --brand-dark: #1A1A2E;
  --brand-mid: #16213E;
  --brand-accent: #0F3460;
  --brand-light: #FFF0F3;
  --brand-pink: #FFB3C6;
  --text-primary: #1A1A2E;
  --text-secondary: #555;
  --text-light: #888;
  --white: #fff;
  --border: #eee;
  --shadow: 0 4px 20px rgba(232,67,106,0.12);
  --shadow-hover: 0 8px 32px rgba(232,67,106,0.22);
  --radius: 12px;
  --radius-sm: 6px;
  --transition: all 0.3s ease;
  --gradient: linear-gradient(135deg, #E8436A 0%, #FF7B54 100%);
  --gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
}

/* ---- 重置与基础 ---- */
*, *::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;
  color: var(--text-primary);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; outline: none; }
input, textarea { outline: none; border: none; }

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

/* ---- 通用标题 ---- */
.ervnqd {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  position: relative;
}
.ervnqd span { color: var(--brand-primary); }
.v7mkjmq {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}
.lx2lld4 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.lx2lld4 .more-link {
  color: var(--brand-primary);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.lx2lld4 .more-link:hover { text-decoration: underline; }

/* ---- 按钮 ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 15px rgba(232,67,106,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232,67,106,0.45);
  color: #fff;
}
.btn-outline {
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--brand-primary);
  color: #fff;
}
.btn-dark {
  background: var(--brand-dark);
  color: #fff;
}
.btn-dark:hover { background: var(--brand-accent); color: #fff; }

/* ---- 标签 ---- */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--brand-light);
  color: var(--brand-primary);
}
.tag-hot { background: #fff0f0; color: #e00; }
.tag-new { background: #f0fff4; color: #0a0; }

/* ============================================================
   顶部公告栏
   ============================================================ */
.qvy5f {
  background: var(--gradient);
  color: #fff;
  text-align: center;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.qvy5f a { color: #ffe; text-decoration: underline; }

/* ============================================================
   导航栏
   ============================================================ */
.rn9wgobc {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.vryn2 {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.y6vldif {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.kop9ea4 { height: 44px; width: auto; }
.rqrksl { height: 32px; width: 32px; display: none; }
.zt2tnrfn {
  font-size: 1.35rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
.hem8r {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.hem8r a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  transition: var(--transition);
}
.hem8r a:hover,
.hem8r a.active {
  background: var(--brand-light);
  color: var(--brand-primary);
}
.ch990ien {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.ch990ien .btn { padding: 8px 18px; font-size: 0.88rem; }

/* ---- 搜索框 ---- */
.gks9c {
  background: #f7f8fa;
  border-bottom: 1px solid #eee;
  padding: 10px 20px;
}
.gj05d8mp {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.s03r25 {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid #eee;
  border-radius: 50px;
  overflow: hidden;
  flex: 1;
  max-width: 600px;
  transition: var(--transition);
}
.s03r25:focus-within { border-color: var(--brand-primary); }
.n58v1 {
  flex: 1;
  padding: 9px 18px;
  font-size: 0.95rem;
  background: transparent;
  color: var(--text-primary);
}
.n58v1::placeholder { color: #aaa; }
.yl2a2jo {
  padding: 9px 20px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0 50px 50px 0;
  transition: var(--transition);
}
.yl2a2jo:hover { opacity: 0.9; }
.le6n0 {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.le6n0 span { font-size: 0.82rem; color: var(--text-light); }
.le6n0 a {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 3px 10px;
  border-radius: 50px;
  background: #eee;
  transition: var(--transition);
}
.le6n0 a:hover { background: var(--brand-light); color: var(--brand-primary); }

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

/* ============================================================
   Hero 轮播区
   ============================================================ */
.ankb8o {
  position: relative;
  overflow: hidden;
  background: var(--gradient-dark);
}
.z3lbg { position: relative; height: 520px; }
.esj8hl2 {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; }
.esj8hl2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.nbr2s {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,26,46,0.85) 40%, transparent 100%);
  display: flex;
  align-items: center;
}
.psr7guj {
  max-width: 600px;
  padding: 0 60px;
  color: #fff;
}
.psr7guj .badge {
  display: inline-block;
  background: var(--brand-primary);
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.psr7guj h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.psr7guj p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 1.8rem;
  line-height: 1.7;
}
.r6stb1e { display: flex; gap: 12px; flex-wrap: wrap; }
.sblob36 {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.g8be7h {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--brand-primary); width: 24px; border-radius: 4px; }

/* ============================================================
   统计数据区
   ============================================================ */
.jklbz1k6 {
  background: var(--gradient-dark);
  padding: 40px 0;
}
.xmwes6 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.jgeqe59 {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}
.jgeqe59:last-child { border-right: none; }
.tt30s {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.drnmm { font-size: 0.9rem; color: rgba(255,255,255,0.65); }

/* ============================================================
   视频卡片
   ============================================================ */
.rbgfe { padding: 60px 0; }
.nvlm34zf {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.uii4mnfs {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}
.uii4mnfs:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.dlj8u0 {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #111;
}
.dlj8u0 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.uii4mnfs:hover .dlj8u0 img { transform: scale(1.08); }
.i0wowk2m {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  transition: var(--transition);
}
.uii4mnfs:hover .i0wowk2m { opacity: 1; }
.zs0jliq {
  width: 52px;
  height: 52px;
  background: rgba(232,67,106,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
}
.hcyid6tx {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 7px;
  border-radius: 4px;
}
.se00y {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--brand-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}
.t28j09r { padding: 14px; }
.jyyjeh {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.qd87w {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-light);
}
.wzkvm5l { display: flex; gap: 10px; }
.wzkvm5l span { display: flex; align-items: center; gap: 3px; }

/* ============================================================
   分类导航标签
   ============================================================ */
.hfgccyob {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.zu7rzc36 {
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  background: #f5f5f5;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.zu7rzc36:hover,
.cat-tab.active {
  background: var(--brand-light);
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

/* ============================================================
   专家展示区
   ============================================================ */
.hgbcouo1 {
  padding: 60px 0;
  background: #f9f9fb;
}
.fwxstn {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.r7um7xs {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.r7um7xs:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.oavdz0 {
  background: var(--gradient-dark);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.isxdh6a {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--brand-primary);
}
.ktzx9m h3 { color: #fff; font-size: 1.1rem; font-weight: 700; }
.ktzx9m .title { color: var(--brand-pink); font-size: 0.85rem; margin-top: 2px; }
.t2pwhs { padding: 20px; }
.t2pwhs p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }
.l4lu09 { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.ms0285m { display: flex; gap: 10px; }
.ms0285m .btn { padding: 7px 16px; font-size: 0.82rem; }

/* ============================================================
   社区功能区
   ============================================================ */
.j44kwrp { padding: 60px 0; }
.v5ouz1sm {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lgumvrf {
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid transparent;
}
.lgumvrf:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--brand-primary);
}
.gjspisgm {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.lgumvrf h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.lgumvrf p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================================================
   AI赋能区
   ============================================================ */
.ghhy3zh3 {
  padding: 60px 0;
  background: var(--gradient-dark);
  color: #fff;
}
.ghhy3zh3 .ervnqd { color: #fff; }
.ghhy3zh3 .v7mkjmq { color: rgba(255,255,255,0.6); }
.hfeq6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.t756s {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.t756s:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--brand-primary);
  transform: translateY(-4px);
}
.lezzrc { font-size: 2rem; margin-bottom: 14px; }
.t756s h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.t756s p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ============================================================
   合作品牌Logo墙
   ============================================================ */
.ch823u8 { padding: 50px 0; background: #f9f9fb; }
.rbeyh {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.kwtffl4 {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: var(--transition);
  border: 1px solid #eee;
}
.kwtffl4:hover { color: var(--brand-primary); border-color: var(--brand-primary); transform: translateY(-2px); }

/* ============================================================
   FAQ
   ============================================================ */
.jetxzc { padding: 60px 0; }
.sexeg09 { max-width: 800px; margin: 0 auto; }
.i21k8c8h {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.jo5ypc2h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  gap: 12px;
  transition: var(--transition);
}
.jo5ypc2h:hover { color: var(--brand-primary); }
.eonii {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
  font-weight: 700;
}
.faq-item.open .eonii { background: var(--brand-primary); color: #fff; transform: rotate(45deg); }
.pqqbc {
  display: none;
  padding: 0 0 18px 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.faq-item.open .pqqbc { display: block; }

/* ============================================================
   用户评价
   ============================================================ */
.aps3f { padding: 60px 0; background: #f9f9fb; }
.w0eh4efx {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lb28smh5 {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.lb28smh5:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.lbzzij2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.nalcf {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.regbeq { font-weight: 600; font-size: 0.95rem; }
.p98c0u4 { font-size: 0.78rem; color: var(--text-light); }
.tpifljy { color: #FFB800; font-size: 0.9rem; margin-bottom: 10px; }
.agtzv { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   联系我们
   ============================================================ */
.g0zmb1f { padding: 60px 0; }
.ano3k {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.dd6jy76u h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; }
.wpxt0vb1 {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.nuwnq {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.ed751pq .label { font-size: 0.8rem; color: var(--text-light); }
.ed751pq .value { font-size: 0.95rem; font-weight: 500; color: var(--text-primary); }
.v0kpjbt { display: flex; gap: 20px; margin-top: 20px; }
.r33jund { text-align: center; }
.a3thq8h {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #aaa;
  overflow: hidden;
}
.a3thq8h img { width: 100%; height: 100%; object-fit: cover; }
.zenzb { font-size: 0.78rem; color: var(--text-light); margin-top: 6px; }
.hzs3wn {
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  background: #eee;
  position: relative;
}
.hzs3wn img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   社交分享
   ============================================================ */
.c8yhzi { padding: 40px 0; background: var(--brand-light); }
.qkkh7 { text-align: center; }
.qkkh7 h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; }
.rzg1513 { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.l4zjw {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  transition: var(--transition);
}
.l4zjw:hover { transform: translateY(-2px); opacity: 0.9; color: #fff; }
.ljtw9v { background: #07C160; }
.mfrqdva { background: #E6162D; }
.y0cj7bk { background: #000; }
.ksfjmu { background: #00A1D6; }
.l4j38l { background: #12B7F5; }

/* ============================================================
   How-To加入社区指南
   ============================================================ */
.ywutovzh { padding: 60px 0; background: #f9f9fb; }
.vec58gvo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.s2miu {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
.c3fexzyo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.s2miu h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.s2miu p { font-size: 0.85rem; color: var(--text-secondary); }

/* ============================================================
   页脚
   ============================================================ */
.rpw2oldm {
  background: var(--gradient-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.czm2pfe {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.oejyeu .zt2tnrfn { color: #fff; -webkit-text-fill-color: #fff; font-size: 1.4rem; margin-bottom: 12px; display: block; }
.oejyeu p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 16px; }
.ont4dgu h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.ont4dgu ul li { margin-bottom: 10px; }
.ont4dgu ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.ont4dgu ul li a:hover { color: var(--brand-primary); }
.lg6oz {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.lg6oz a { color: rgba(255,255,255,0.5); }
.lg6oz a:hover { color: var(--brand-primary); }
.ynl5x { height: 36px; opacity: 0.8; }

/* ============================================================
   视频播放页
   ============================================================ */
.twzuhq {
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}
.twzuhq video,
.twzuhq iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}
.n49ylhr {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}
.mkviv1kf { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; }
.aj3zz0if { display: flex; gap: 16px; font-size: 0.85rem; color: var(--text-light); margin-bottom: 16px; flex-wrap: wrap; }
.cl68c { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.8; }
.hcn27fn { font-size: 1rem; font-weight: 700; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--brand-primary); }
.g3gcupvd { display: flex; flex-direction: column; gap: 14px; }
.fszeb02y { display: flex; gap: 12px; cursor: pointer; }
.fszeb02y:hover .zrzuxy3 { color: var(--brand-primary); }
.ge4un { width: 110px; height: 62px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.ge4un img { width: 100%; height: 100%; object-fit: cover; }
.zrzuxy3 { font-size: 0.85rem; font-weight: 500; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tv0zf9 { font-size: 0.75rem; color: var(--text-light); margin-top: 4px; }

/* ============================================================
   面包屑
   ============================================================ */
.o84lapro {
  padding: 14px 0;
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.o84lapro a { color: var(--text-light); }
.o84lapro a:hover { color: var(--brand-primary); }
.o84lapro .sep { color: #ccc; }
.o84lapro .current { color: var(--text-primary); font-weight: 500; }

/* ============================================================
   分页
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.page-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
  background: #f5f5f5;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid #eee;
}
.page-btn:hover,
.page-btn.active {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 1200px) {
  .nvlm34zf { grid-template-columns: repeat(3, 1fr); }
  .czm2pfe { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
  .psr7guj h1 { font-size: 2rem; }
  .z3lbg { height: 400px; }
  .psr7guj { padding: 0 40px; }
  .xmwes6 { grid-template-columns: repeat(2, 1fr); }
  .fwxstn { grid-template-columns: repeat(2, 1fr); }
  .v5ouz1sm { grid-template-columns: repeat(2, 1fr); }
  .hfeq6 { grid-template-columns: repeat(2, 1fr); }
  .vec58gvo { grid-template-columns: repeat(2, 1fr); }
  .ano3k { grid-template-columns: 1fr; }
  .n49ylhr { grid-template-columns: 1fr; }
  .w0eh4efx { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hem8r { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 16px;
    z-index: 999;
    gap: 4px;
  }
  .c0c3x { display: flex; }
  .vryn2 { flex-wrap: wrap; position: relative; }
  .ch990ien .btn:not(.btn-primary) { display: none; }
  .z3lbg { height: 320px; }
  .psr7guj { padding: 0 24px; }
  .psr7guj h1 { font-size: 1.6rem; }
  .psr7guj p { font-size: 0.9rem; }
  .nvlm34zf { grid-template-columns: repeat(2, 1fr); }
  .fwxstn { grid-template-columns: 1fr; }
  .v5ouz1sm { grid-template-columns: 1fr; }
  .hfeq6 { grid-template-columns: 1fr; }
  .vec58gvo { grid-template-columns: 1fr 1fr; }
  .w0eh4efx { grid-template-columns: 1fr; }
  .czm2pfe { grid-template-columns: 1fr; }
  .ervnqd { font-size: 1.6rem; }
  .le6n0 { display: none; }
  .xmwes6 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .nvlm34zf { grid-template-columns: 1fr; }
  .vec58gvo { grid-template-columns: 1fr; }
  .r6stb1e .btn:nth-child(2) { display: none; }
  .tt30s { font-size: 1.8rem; }
}

/* ============================================================
   工具类
   ============================================================ */
.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.py-section { padding: 60px 0; }
.bg-light { background: #f9f9fb; }
.bg-dark { background: var(--gradient-dark); }
.hidden { display: none; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 16px; }

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.pulse { animation: pulse 2s infinite; }

/* 直播标签 */
.fkzgog3 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #e00;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1s infinite;
}

/* ============================================================
   H1可见区
   ============================================================ */
.srhhmfd {
  background: linear-gradient(135deg, #fff0f3 0%, #fff 100%);
  padding: 28px 0 18px;
  border-bottom: 1px solid #ffd6e0;
}
.qpck8p8l {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.ypaf6o {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   页面Hero（内页顶部大标题区）
   ============================================================ */
.zbmeq2w7 {
  padding: 60px 0 50px;
  color: #fff;
}
.zbmeq2w7 h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}
.zbmeq2w7 p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  line-height: 1.8;
}

/* ============================================================
   面包屑导航
   ============================================================ */
.wn8oex3m {
  background: #f9f9fb;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}
.o84lapro {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.o84lapro a { color: var(--brand-primary); }
.o84lapro a:hover { text-decoration: underline; }
.o84lapro span { color: var(--text-secondary); font-weight: 600; }

/* ============================================================
   子导航标签（内页分类）
   ============================================================ */
.rtzsefzr {
  background: #fff;
  border-bottom: 2px solid #f0f0f0;
  padding: 0;
  position: sticky;
  top: 70px;
  z-index: 90;
}
.bf25kk8 {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.bf25kk8::-webkit-scrollbar { display: none; }
.mp76i {
  padding: 14px 22px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}
.mp76i:hover { color: var(--brand-primary); }
.sub-tab.active {
  color: var(--brand-primary);
  border-bottom-color: var(--brand-primary);
  font-weight: 700;
}

/* ============================================================
   直播专区
   ============================================================ */
.at7ardvd { padding: 60px 0; background: #fff; }
.xv6xx {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ywsrp8 {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.ywsrp8:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.bibq4h {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.bibq4h img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ywsrp8:hover .bibq4h img { transform: scale(1.05); }
.fkzgog3 {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #FF4500;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.oeslwh {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
}
.uladndom { padding: 16px; }
.uladndom h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; line-height: 1.4; }
.rgpvl { font-size: 0.82rem; color: var(--text-light); }

/* 直播页全宽卡片 */
.lpu460 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.hlzfknp4 {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.hlzfknp4:hover { box-shadow: var(--shadow-hover); }
.hlzfknp4 .bibq4h { aspect-ratio: 16/9; }
.hlzfknp4 .uladndom {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hlzfknp4 .uladndom h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.hlzfknp4 .hkowb2 { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin: 10px 0; }
.rmqyoauw { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.mlj2hye2 {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mlj2hye2 span {
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 12px;
  display: inline-block;
  width: fit-content;
}

/* ============================================================
   弹幕墙
   ============================================================ */
.sbg4gfx {
  margin-top: 40px;
  padding: 30px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}
.obwhu {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}
.qidsop6 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  min-height: 80px;
  align-items: center;
}
.d8vjx {
  background: rgba(232,67,106,0.15);
  border: 1px solid rgba(232,67,106,0.3);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  animation: danmuFloat 3s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes danmuFloat {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(-4px); opacity: 1; }
}
.dldn0374 .d8vjx {
  background: rgba(232,67,106,0.2);
  border-color: rgba(232,67,106,0.4);
}

/* ============================================================
   影视传媒专区
   ============================================================ */
.hcv3r7 { padding: 60px 0; background: #f9f9fb; }
.jfjs9n7 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.f8y6amr {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid transparent;
}
.f8y6amr:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-left-color: var(--brand-primary);
}
.cyfsmt2 { font-size: 2rem; margin-bottom: 14px; }
.f8y6amr h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.f8y6amr p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }
.souhbsdb { color: var(--brand-primary); font-size: 0.88rem; font-weight: 600; }
.souhbsdb:hover { text-decoration: underline; }

/* ============================================================
   娱乐专区
   ============================================================ */
.go1y23z { padding: 60px 0; }
.qrdnw {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.eqsgztw6 { border-radius: var(--radius); overflow: hidden; position: relative; }
.bkhxs5 {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.bkhxs5 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.eqsgztw6:hover .bkhxs5 img { transform: scale(1.08); }
.h5tphz79 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.95) 0%, rgba(26,26,46,0.3) 60%, transparent 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.h5tphz79 h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.h5tphz79 p { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 14px; line-height: 1.6; }

/* ============================================================
   专家团队（5列）
   ============================================================ */
.hgbcouo1 { padding: 60px 0; background: #f9f9fb; }
.ha43j25 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* ============================================================
   SEO文章区
   ============================================================ */
.k2qgo1n { padding: 50px 0; background: #fff; }
.sfnouf9 {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.9;
}
.sfnouf9 h3 { font-size: 1.3rem; font-weight: 700; color: var(--brand-dark); margin: 24px 0 12px; }
.sfnouf9 h4 { font-size: 1.1rem; font-weight: 700; color: var(--brand-dark); margin: 20px 0 10px; }
.sfnouf9 h5 { font-size: 1rem; font-weight: 700; color: var(--brand-primary); margin: 16px 0 8px; }
.sfnouf9 h6 { font-size: 0.95rem; font-weight: 700; color: var(--text-secondary); margin: 14px 0 8px; }
.sfnouf9 p { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 14px; }
.sfnouf9 strong { color: var(--brand-dark); }

/* ============================================================
   社区链接
   ============================================================ */
.tz5u4v {
  display: inline-block;
  margin-top: 12px;
  color: var(--brand-primary);
  font-size: 0.88rem;
  font-weight: 600;
}
.tz5u4v:hover { text-decoration: underline; }

/* ============================================================
   响应式补充
   ============================================================ */
@media (max-width: 1100px) {
  .ha43j25 { grid-template-columns: repeat(3, 1fr); }
  .hlzfknp4 { grid-template-columns: 300px 1fr; }
}
@media (max-width: 900px) {
  .jfjs9n7 { grid-template-columns: repeat(2, 1fr); }
  .xv6xx { grid-template-columns: repeat(2, 1fr); }
  .ha43j25 { grid-template-columns: repeat(2, 1fr); }
  .hlzfknp4 { grid-template-columns: 1fr; }
  .hlzfknp4 .bibq4h { aspect-ratio: 16/9; }
  .qrdnw { grid-template-columns: 1fr; }
  .qpck8p8l { font-size: 1.3rem; }
  .zbmeq2w7 h1 { font-size: 1.5rem; }
}
@media (max-width: 640px) {
  .jfjs9n7 { grid-template-columns: 1fr; }
  .xv6xx { grid-template-columns: 1fr; }
  .ha43j25 { grid-template-columns: 1fr 1fr; }
  .v5ouz1sm { grid-template-columns: 1fr; }
  .hfeq6 { grid-template-columns: 1fr; }
  .zbmeq2w7 { padding: 40px 0 30px; }
  .zbmeq2w7 h1 { font-size: 1.25rem; }
  .mp76i { padding: 12px 14px; font-size: 0.85rem; }
}
