/* =====================================================
   蜜芽 - 主样式文件
   品牌色系：玫瑰红 #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; }

/* ---- 通用标题 ---- */
.v5zxc782 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  position: relative;
}
.v5zxc782 span { color: var(--brand-primary); }
.z3q19r {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}
.o4cwr2 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.o4cwr2 .more-link {
  color: var(--brand-primary);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.o4cwr2 .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; }

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

/* ============================================================
   导航栏
   ============================================================ */
.z6tqiwf {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.pmzg6 {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.vlsbvba {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.d2ce38p2 { height: 44px; width: auto; }
.bvkti { height: 32px; width: 32px; display: none; }
.zza6xn {
  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;
}
.r1ywd5 {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.r1ywd5 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);
}
.r1ywd5 a:hover,
.r1ywd5 a.active {
  background: var(--brand-light);
  color: var(--brand-primary);
}
.fou1g {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.fou1g .btn { padding: 8px 18px; font-size: 0.88rem; }

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

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

/* ============================================================
   Hero 轮播区
   ============================================================ */
.llyvw {
  position: relative;
  overflow: hidden;
  background: var(--gradient-dark);
}
.yx259ye { position: relative; height: 520px; }
.fntdy4l {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; }
.fntdy4l img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.eourzwu {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,26,46,0.85) 40%, transparent 100%);
  display: flex;
  align-items: center;
}
.tn250v {
  max-width: 600px;
  padding: 0 60px;
  color: #fff;
}
.tn250v .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;
}
.tn250v h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.tn250v p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 1.8rem;
  line-height: 1.7;
}
.pgz38m { display: flex; gap: 12px; flex-wrap: wrap; }
.veffcm {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.igqjdcg {
  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; }

/* ============================================================
   统计数据区
   ============================================================ */
.n6vw12m {
  background: var(--gradient-dark);
  padding: 40px 0;
}
.gw1zwcz {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.ifwbpeok {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}
.ifwbpeok:last-child { border-right: none; }
.o3h9z {
  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;
}
.hjskml { font-size: 0.9rem; color: rgba(255,255,255,0.65); }

/* ============================================================
   视频卡片
   ============================================================ */
.murt7 { padding: 60px 0; }
.mc3oq {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.el8opmf {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}
.el8opmf:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.xyize {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #111;
}
.xyize img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.el8opmf:hover .xyize img { transform: scale(1.08); }
.b2v6vka {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  transition: var(--transition);
}
.el8opmf:hover .b2v6vka { opacity: 1; }
.ozexo9z0 {
  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;
}
.yvobdr5 {
  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;
}
.p3psd {
  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;
}
.kczyoc21 { padding: 14px; }
.fm4mlp {
  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;
}
.nn0zt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-light);
}
.a3w39b { display: flex; gap: 10px; }
.a3w39b span { display: flex; align-items: center; gap: 3px; }

/* ============================================================
   分类导航标签
   ============================================================ */
.xteaq7z {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.ttw3q7 {
  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;
}
.ttw3q7:hover,
.cat-tab.active {
  background: var(--brand-light);
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

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

/* ============================================================
   社区功能区
   ============================================================ */
.tyvnx55h { padding: 60px 0; }
.z4z62 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hdghsa {
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid transparent;
}
.hdghsa:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--brand-primary);
}
.ey6m2u {
  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;
}
.hdghsa h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.hdghsa p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================================================
   AI赋能区
   ============================================================ */
.g0b22 {
  padding: 60px 0;
  background: var(--gradient-dark);
  color: #fff;
}
.g0b22 .v5zxc782 { color: #fff; }
.g0b22 .z3q19r { color: rgba(255,255,255,0.6); }
.phzeb {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bt0yafl {
  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);
}
.bt0yafl:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--brand-primary);
  transform: translateY(-4px);
}
.ung0i4b { font-size: 2rem; margin-bottom: 14px; }
.bt0yafl h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.bt0yafl p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ============================================================
   合作品牌Logo墙
   ============================================================ */
.r4npsxuq { padding: 50px 0; background: #f9f9fb; }
.ecnub7m7 {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.p4d6h3e4 {
  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;
}
.p4d6h3e4:hover { color: var(--brand-primary); border-color: var(--brand-primary); transform: translateY(-2px); }

/* ============================================================
   FAQ
   ============================================================ */
.ehoj5m9 { padding: 60px 0; }
.t6kt2nd6 { max-width: 800px; margin: 0 auto; }
.spn4yd {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ztergf74 {
  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);
}
.ztergf74:hover { color: var(--brand-primary); }
.bd92ke0z {
  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 .bd92ke0z { background: var(--brand-primary); color: #fff; transform: rotate(45deg); }
.bws3jf0 {
  display: none;
  padding: 0 0 18px 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.faq-item.open .bws3jf0 { display: block; }

/* ============================================================
   用户评价
   ============================================================ */
.umf6qq { padding: 60px 0; background: #f9f9fb; }
.bds2zc9h {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.qxd6951h {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.qxd6951h:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.g5dwf7zi {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.wg643mh {
  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;
}
.r8qk2cl { font-weight: 600; font-size: 0.95rem; }
.jwjyxvo { font-size: 0.78rem; color: var(--text-light); }
.pn9ayw2 { color: #FFB800; font-size: 0.9rem; margin-bottom: 10px; }
.ieyr3uh { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   联系我们
   ============================================================ */
.ff83x2r { padding: 60px 0; }
.vrembs7x {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.kl0fqzrb h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; }
.okb02 {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.ftj530 {
  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;
}
.dz204 .label { font-size: 0.8rem; color: var(--text-light); }
.dz204 .value { font-size: 0.95rem; font-weight: 500; color: var(--text-primary); }
.a4eyc5cq { display: flex; gap: 20px; margin-top: 20px; }
.vceg64g { text-align: center; }
.uqdbk51s {
  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;
}
.uqdbk51s img { width: 100%; height: 100%; object-fit: cover; }
.bpr84d4 { font-size: 0.78rem; color: var(--text-light); margin-top: 6px; }
.z1dlra {
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  background: #eee;
  position: relative;
}
.z1dlra img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   社交分享
   ============================================================ */
.m51uq { padding: 40px 0; background: var(--brand-light); }
.whn5l { text-align: center; }
.whn5l h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; }
.mzpghh { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.idume9l {
  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);
}
.idume9l:hover { transform: translateY(-2px); opacity: 0.9; color: #fff; }
.kjve8iyi { background: #07C160; }
.rsbbm { background: #E6162D; }
.bhdvj { background: #000; }
.fopgi { background: #00A1D6; }
.sbe174 { background: #12B7F5; }

/* ============================================================
   How-To加入社区指南
   ============================================================ */
.znrrw { padding: 60px 0; background: #f9f9fb; }
.pl7hx {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.baeib2 {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
.xl51tb {
  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;
}
.baeib2 h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.baeib2 p { font-size: 0.85rem; color: var(--text-secondary); }

/* ============================================================
   页脚
   ============================================================ */
.xa5ir5km {
  background: var(--gradient-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.umlrea7z {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.a1j51w .zza6xn { color: #fff; -webkit-text-fill-color: #fff; font-size: 1.4rem; margin-bottom: 12px; display: block; }
.a1j51w p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 16px; }
.po5ckz h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.po5ckz ul li { margin-bottom: 10px; }
.po5ckz ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.po5ckz ul li a:hover { color: var(--brand-primary); }
.tebzqz {
  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;
}
.tebzqz a { color: rgba(255,255,255,0.5); }
.tebzqz a:hover { color: var(--brand-primary); }
.ospk6c5 { height: 36px; opacity: 0.8; }

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

/* ============================================================
   面包屑
   ============================================================ */
.c754j {
  padding: 14px 0;
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.c754j a { color: var(--text-light); }
.c754j a:hover { color: var(--brand-primary); }
.c754j .sep { color: #ccc; }
.c754j .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) {
  .mc3oq { grid-template-columns: repeat(3, 1fr); }
  .umlrea7z { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
  .tn250v h1 { font-size: 2rem; }
  .yx259ye { height: 400px; }
  .tn250v { padding: 0 40px; }
  .gw1zwcz { grid-template-columns: repeat(2, 1fr); }
  .peb0g { grid-template-columns: repeat(2, 1fr); }
  .z4z62 { grid-template-columns: repeat(2, 1fr); }
  .phzeb { grid-template-columns: repeat(2, 1fr); }
  .pl7hx { grid-template-columns: repeat(2, 1fr); }
  .vrembs7x { grid-template-columns: 1fr; }
  .oqpkuna2 { grid-template-columns: 1fr; }
  .bds2zc9h { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .r1ywd5 { 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;
  }
  .au89m { display: flex; }
  .pmzg6 { flex-wrap: wrap; position: relative; }
  .fou1g .btn:not(.btn-primary) { display: none; }
  .yx259ye { height: 320px; }
  .tn250v { padding: 0 24px; }
  .tn250v h1 { font-size: 1.6rem; }
  .tn250v p { font-size: 0.9rem; }
  .mc3oq { grid-template-columns: repeat(2, 1fr); }
  .peb0g { grid-template-columns: 1fr; }
  .z4z62 { grid-template-columns: 1fr; }
  .phzeb { grid-template-columns: 1fr; }
  .pl7hx { grid-template-columns: 1fr 1fr; }
  .bds2zc9h { grid-template-columns: 1fr; }
  .umlrea7z { grid-template-columns: 1fr; }
  .v5zxc782 { font-size: 1.6rem; }
  .gw3u4uhe { display: none; }
  .gw1zwcz { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .mc3oq { grid-template-columns: 1fr; }
  .pl7hx { grid-template-columns: 1fr; }
  .pgz38m .btn:nth-child(2) { display: none; }
  .o3h9z { 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; }

/* 直播标签 */
.ud0t1o {
  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可见区
   ============================================================ */
.aluhahy {
  background: linear-gradient(135deg, #fff0f3 0%, #fff 100%);
  padding: 28px 0 18px;
  border-bottom: 1px solid #ffd6e0;
}
.pym0sig3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.ed4j3mdn {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

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

/* ============================================================
   子导航标签（内页分类）
   ============================================================ */
.jk9evf {
  background: #fff;
  border-bottom: 2px solid #f0f0f0;
  padding: 0;
  position: sticky;
  top: 70px;
  z-index: 90;
}
.ozevl {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.ozevl::-webkit-scrollbar { display: none; }
.we3ft {
  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);
}
.we3ft:hover { color: var(--brand-primary); }
.sub-tab.active {
  color: var(--brand-primary);
  border-bottom-color: var(--brand-primary);
  font-weight: 700;
}

/* ============================================================
   直播专区
   ============================================================ */
.yh7o2qym { padding: 60px 0; background: #fff; }
.l4ntxtip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.iy14o0r {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.iy14o0r:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.ltab3w19 {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.ltab3w19 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.iy14o0r:hover .ltab3w19 img { transform: scale(1.05); }
.ud0t1o {
  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; }
}
.maynt7 {
  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;
}
.ldqg2z1p { padding: 16px; }
.ldqg2z1p h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; line-height: 1.4; }
.dydjshm6 { font-size: 0.82rem; color: var(--text-light); }

/* 直播页全宽卡片 */
.kka7v3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.ovp8p {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.ovp8p:hover { box-shadow: var(--shadow-hover); }
.ovp8p .ltab3w19 { aspect-ratio: 16/9; }
.ovp8p .ldqg2z1p {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ovp8p .ldqg2z1p h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.ovp8p .w2ngmdtx { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin: 10px 0; }
.ycqmpw90 { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.rhz5r8un {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rhz5r8un 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;
}

/* ============================================================
   弹幕墙
   ============================================================ */
.wt0gf3 {
  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);
}
.wn0qjb {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}
.bpvax {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  min-height: 80px;
  align-items: center;
}
.ij3pvh2 {
  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; }
}
.smy70u6 .ij3pvh2 {
  background: rgba(232,67,106,0.2);
  border-color: rgba(232,67,106,0.4);
}

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

/* ============================================================
   娱乐专区
   ============================================================ */
.g6jj85ln { padding: 60px 0; }
.rfzx1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.htciw85l { border-radius: var(--radius); overflow: hidden; position: relative; }
.qa653 {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.qa653 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.htciw85l:hover .qa653 img { transform: scale(1.08); }
.avs9i {
  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;
}
.avs9i h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.avs9i p { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 14px; line-height: 1.6; }

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

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

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

/* ============================================================
   响应式补充
   ============================================================ */
@media (max-width: 1100px) {
  .i5y9r36e { grid-template-columns: repeat(3, 1fr); }
  .ovp8p { grid-template-columns: 300px 1fr; }
}
@media (max-width: 900px) {
  .n2wntw { grid-template-columns: repeat(2, 1fr); }
  .l4ntxtip { grid-template-columns: repeat(2, 1fr); }
  .i5y9r36e { grid-template-columns: repeat(2, 1fr); }
  .ovp8p { grid-template-columns: 1fr; }
  .ovp8p .ltab3w19 { aspect-ratio: 16/9; }
  .rfzx1 { grid-template-columns: 1fr; }
  .pym0sig3 { font-size: 1.3rem; }
  .b0a18 h1 { font-size: 1.5rem; }
}
@media (max-width: 640px) {
  .n2wntw { grid-template-columns: 1fr; }
  .l4ntxtip { grid-template-columns: 1fr; }
  .i5y9r36e { grid-template-columns: 1fr 1fr; }
  .z4z62 { grid-template-columns: 1fr; }
  .phzeb { grid-template-columns: 1fr; }
  .b0a18 { padding: 40px 0 30px; }
  .b0a18 h1 { font-size: 1.25rem; }
  .we3ft { padding: 12px 14px; font-size: 0.85rem; }
}
