/* =============================================
   鉴黄师 - 主样式表 v2.0
   品牌色：深海蓝 #1a3a5c / 爱琴海蓝 #0e7fc0 / 金橙 #f5a623
   ============================================= */

/* ---- 基础重置 ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
  background: #f4f7fb;
  color: #222;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ---- CSS 变量 ---- */
:root {
  --brand-dark:  #1a3a5c;
  --brand-blue:  #0e7fc0;
  --brand-light: #3ab4f2;
  --brand-gold:  #f5a623;
  --brand-pink:  #e8557a;
  --brand-purple:#9b59b6;
  --bg-light:    #f4f7fb;
  --bg-white:    #ffffff;
  --text-main:   #1e2d3d;
  --text-sub:    #5a6e82;
  --border:      #dde4ee;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(14,127,192,.12);
  --shadow-lg:   0 8px 40px rgba(14,127,192,.18);
  --transition:  .3s ease;
}

/* ---- 滚动条 ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #eef2f7; }
::-webkit-scrollbar-thumb { background: var(--brand-blue); border-radius: 3px; }

/* ============================================
   顶部公告条
   ============================================ */
.aaf0fjt {
  background: linear-gradient(90deg, var(--brand-dark) 0%, var(--brand-blue) 100%);
  color: #fff;
  text-align: center;
  font-size: .82rem;
  padding: 7px 20px;
  letter-spacing: .04em;
}
.aaf0fjt a { color: var(--brand-gold); text-decoration: underline; }

/* ============================================
   导航栏
   ============================================ */
.vnkdvt {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(14,127,192,.08);
}
.g9tdxb6m {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 66px;
  gap: 32px;
}
.qyvm7ib { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.fhxx4 {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-blue) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #fff; font-weight: 900;
  box-shadow: 0 3px 12px rgba(14,127,192,.3);
}
.cbesc6mv { font-size: 1.3rem; font-weight: 800; color: var(--brand-dark); letter-spacing: -.02em; }
.cbesc6mv span { color: var(--brand-blue); }

.main-nav { display: flex; align-items: center; gap: 4px; flex: 1; }
.main-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  background: linear-gradient(135deg, #e8f4fd, #d0eaf9);
  color: var(--brand-blue);
}

/* 搜索框 */
.nav-search {
  display: flex; align-items: center;
  background: #f0f5fb;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 0 14px;
  height: 38px;
  gap: 8px;
  transition: var(--transition);
  min-width: 200px;
}
.nav-search:focus-within {
  border-color: var(--brand-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(14,127,192,.12);
}
.nav-search input {
  border: none; background: transparent; outline: none;
  font-size: .88rem; color: var(--text-main); width: 100%;
}
.nav-search button {
  background: none; border: none; cursor: pointer;
  color: var(--brand-blue); font-size: 1rem; padding: 0;
  display: flex; align-items: center;
}

.rx1os { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.v6pqszy1 {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 8px 20px;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.v6pqszy1:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(14,127,192,.35); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--brand-dark); border-radius: 2px; transition: var(--transition); }

.mobile-nav {
  display: none;
  position: fixed; inset: 0; top: 66px;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  z-index: 999;
  padding: 24px;
  flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 1rem; font-weight: 700;
  color: var(--text-main);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { background: #e8f4fd; color: var(--brand-blue); }

/* ============================================
   Hero Banner
   ============================================ */
.ezjekoa {
  position: relative;
  min-height: 560px;
  display: flex; align-items: center;
  overflow: hidden;
}
.ncbn90e {
  position: absolute; inset: 0;
  background-image: url('../images/hero-banner.jpg');
  background-size: cover; background-position: center;
  filter: brightness(.55);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.ezjekoa:hover .ncbn90e { transform: scale(1); }
.z05pve {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,58,92,.72) 0%, rgba(14,127,192,.35) 100%);
}
.sm6luwp {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 80px 24px;
  color: #fff;
}
.vt3yaplk {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,166,35,.2); border: 1px solid rgba(245,166,35,.5);
  color: var(--brand-gold); border-radius: 20px;
  padding: 4px 14px; font-size: .82rem; font-weight: 600;
  margin-bottom: 18px;
}
.ezjekoa h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.ezjekoa h1 .highlight { color: var(--brand-gold); }
.ezjekoa p {
  font-size: 1.1rem; max-width: 560px;
  opacity: .9; margin-bottom: 32px;
  line-height: 1.8;
}
.puyww1 { display: flex; gap: 14px; flex-wrap: wrap; }
.vq35d {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, var(--brand-gold) 0%, #e8901a 100%);
  color: #fff; border: none; border-radius: 28px;
  padding: 13px 32px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(245,166,35,.4);
}
.vq35d:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,166,35,.5); }
.iahpg4 {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.15);
  color: #fff; border: 2px solid rgba(255,255,255,.6);
  border-radius: 28px; padding: 11px 28px;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: var(--transition); backdrop-filter: blur(4px);
}
.iahpg4:hover { background: rgba(255,255,255,.25); border-color: #fff; }

.s8h2g5j2 { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.s3rwo1 { text-align: center; }
.s3rwo1 .num { font-size: 1.8rem; font-weight: 900; color: var(--brand-gold); }
.s3rwo1 .label { font-size: .8rem; opacity: .8; margin-top: 2px; }

/* ============================================
   通用容器
   ============================================ */
.v27om4y { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.zbsgg { background: #fff; }

.t7yoi3b { text-align: center; margin-bottom: 48px; }
.f6jtib { margin-bottom: 32px; }
.k5zvlu {
  display: inline-block;
  background: linear-gradient(135deg, #e8f4fd, #d0eaf9);
  color: var(--brand-blue);
  border-radius: 20px; padding: 4px 16px;
  font-size: .8rem; font-weight: 700; letter-spacing: .06em;
  margin-bottom: 12px;
}
.ucr2z { background: rgba(245,166,35,.15); color: var(--brand-gold); }
.t7yoi3b h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900; color: var(--brand-dark);
  margin-bottom: 12px;
}
.t7yoi3b p { color: var(--text-sub); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ============================================
   动漫视频卡片
   ============================================ */
.v7j46 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.oou94 { margin-bottom: 28px; }
.anime-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}
.anime-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.a6t6tz {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #1a2a3a;
}
.a6t6tz img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.anime-card:hover .a6t6tz img { transform: scale(1.08); }
.play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0);
  transition: background .3s ease;
  opacity: 0;
}
.anime-card:hover .play-btn { opacity: 1; background: rgba(0,0,0,.38); }
.media-card:hover .play-btn { opacity: 1; background: rgba(0,0,0,.38); }
.play-btn-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: scale(.7);
  transition: transform .3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.anime-card:hover .play-btn-icon,
.media-card:hover .play-btn-icon { transform: scale(1); }
.play-btn-icon::after {
  content: '';
  display: block;
  width: 0; height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid var(--brand-blue);
  margin-left: 4px;
}
.gf49oq {
  position: absolute; top: 10px; left: 10px;
  border-radius: 6px; padding: 2px 8px;
  font-size: .72rem; font-weight: 700;
  color: #fff;
}
.j8wf2f      { background: #e84040; }
.rmlpazx4      { background: var(--brand-pink); }
.sb3pei9p   { background: var(--brand-purple); }
.zwk8pc{ background: var(--brand-pink); }
.gt1sq1     { background: var(--brand-blue); }
.r63ks1 { padding: 14px 16px; }
.r63ks1 h3 { font-size: .95rem; font-weight: 700; color: var(--text-main); margin-bottom: 6px; line-height: 1.4; }
.ueub2 { display: flex; align-items: center; gap: 12px; font-size: .78rem; color: var(--text-sub); }
.ueub2 span { display: flex; align-items: center; gap: 3px; }

/* ============================================
   影视传媒内容模块
   ============================================ */
.dqxux {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.media-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}
.media-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.l372kf {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #1a2a3a;
}
.l372kf img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.media-card:hover .l372kf img { transform: scale(1.06); }
.wvpo571u {
  position: absolute; top: 10px; left: 10px;
  background: var(--brand-blue); color: #fff;
  border-radius: 6px; padding: 3px 10px;
  font-size: .75rem; font-weight: 700;
}
.cifi3j   { background: var(--brand-pink); }
.aguoe  { background: var(--brand-purple); }
.etc42uh{ background: var(--brand-gold); }
.ia2l5ge { padding: 16px 18px; }
.ia2l5ge h3 { font-size: .95rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 6px; line-height: 1.4; }
.ia2l5ge p  { font-size: .84rem; color: var(--text-sub); line-height: 1.6; margin-bottom: 10px; }
.duqj075 { display: flex; align-items: center; gap: 10px; font-size: .78rem; }
.thpbg3e9 {
  background: #e8f4fd; color: var(--brand-blue);
  border-radius: 20px; padding: 2px 10px; font-size: .75rem; font-weight: 600;
}
.tpm3yi   { background: #fde8ef; color: var(--brand-pink); }
.ojqw6  { background: #f0e8f8; color: var(--brand-purple); }
.lqlxbee9{ background: #fef3e2; color: var(--brand-gold); }

/* ============================================
   娱乐专区
   ============================================ */
.fait8wkq {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.bg8v1w {
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 2px solid var(--border);
  transition: var(--transition);
  background: #fff;
  cursor: pointer;
}
.bg8v1w:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.y1j9q2ji:hover  { background: linear-gradient(135deg,#010101,#333); color:#fff; }
.ex7sapp:hover { background: linear-gradient(135deg,var(--brand-pink),#f5a623); color:#fff; }
.mj75a0us:hover { background: linear-gradient(135deg,var(--brand-dark),var(--brand-blue)); color:#fff; }
.yy1h2:hover { background: linear-gradient(135deg,var(--brand-purple),#c0392b); color:#fff; }
.zrbgeaxd { font-size: 2.4rem; margin-bottom: 14px; }
.bg8v1w h3 { font-size: 1.05rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 8px; }
.bg8v1w:hover h3 { color: #fff; }
.bg8v1w p { font-size: .86rem; color: var(--text-sub); line-height: 1.6; margin-bottom: 14px; }
.bg8v1w:hover p { color: rgba(255,255,255,.85); }
.i25d0ci8 { display: flex; gap: 12px; font-size: .78rem; color: var(--text-sub); margin-bottom: 16px; flex-wrap: wrap; }
.bg8v1w:hover .i25d0ci8 { color: rgba(255,255,255,.75); }
.plo7d8 {
  display: inline-block;
  background: var(--brand-blue); color: #fff;
  border-radius: 20px; padding: 7px 18px;
  font-size: .82rem; font-weight: 700;
  transition: var(--transition);
}
.bg8v1w:hover .plo7d8 { background: rgba(255,255,255,.25); border: 1px solid rgba(255,255,255,.5); }

/* ============================================
   特色模块卡片
   ============================================ */
.z5b85tud {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.jifn46y {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.jifn46y::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.jifn46y:hover::before { transform: scaleX(1); }
.jifn46y:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.rr2cpe1z {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 16px;
}
.m4oo62e   { background: linear-gradient(135deg, #e8f4fd, #c2e0f5); }
.wuh5od   { background: linear-gradient(135deg, #fef3e2, #fde0a8); }
.jhvtl   { background: linear-gradient(135deg, #fde8ef, #f9c0d0); }
.fxbi99  { background: linear-gradient(135deg, #e4f7ed, #b8edcc); }
/* 兼容旧类名 */
.rr2cpe1z.blue  { background: linear-gradient(135deg, #e8f4fd, #c2e0f5); }
.rr2cpe1z.gold  { background: linear-gradient(135deg, #fef3e2, #fde0a8); }
.rr2cpe1z.pink  { background: linear-gradient(135deg, #fde8ef, #f9c0d0); }
.rr2cpe1z.green { background: linear-gradient(135deg, #e4f7ed, #b8edcc); }
.jifn46y h3 { font-size: 1.05rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 8px; }
.jifn46y p { font-size: .88rem; color: var(--text-sub); line-height: 1.7; }

/* ============================================
   专家展示（含社交账号）
   ============================================ */
.usnyij {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.aa98l {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}
.aa98l:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.dlr4vcp { width: 100%; aspect-ratio: 1; overflow: hidden; background: #e8f0f8; }
.dlr4vcp img { width: 100%; height: 100%; object-fit: cover; }
.umjho2v { padding: 20px 18px; }
.wjqid { font-size: 1.1rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 4px; }
.rvt0e1h { font-size: .82rem; color: var(--brand-blue); font-weight: 600; margin-bottom: 10px; }
.sk5wxxoo { font-size: .84rem; color: var(--text-sub); line-height: 1.6; margin-bottom: 12px; }
.q3a2uj { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.atysf3lo {
  font-size: .76rem; color: var(--brand-gold);
  background: #fef8ec; border-radius: 6px;
  padding: 3px 8px; text-align: left;
}
.gvrw82o1 { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 12px; }
.z4nk7i {
  background: #e8f4fd; color: var(--brand-blue);
  border-radius: 20px; padding: 3px 10px; font-size: .75rem; font-weight: 600;
}
.x4nrw { display: flex; gap: 8px; justify-content: center; margin-bottom: 14px; }
.u5mwhrbs {
  padding: 4px 12px; border-radius: 14px;
  font-size: .75rem; font-weight: 700;
  transition: var(--transition);
}
.w19zjkpu  { background: #fde8ea; color: #e6162d; }
.uaiqgms   { background: #e0f4fd; color: #00a1d6; }
.gx3yq { background: #e8e8e8; color: #010101; }
.p15f532 { background: #e8f8ed; color: #07c160; }
.u5mwhrbs:hover { opacity: .8; transform: translateY(-1px); }
.expert-btns { display: flex; gap: 8px; justify-content: center; }
.btn-sm {
  padding: 6px 14px; border-radius: 20px;
  font-size: .8rem; font-weight: 600; cursor: pointer;
  transition: var(--transition); border: none;
}
.jhgw9c { background: var(--brand-blue); color: #fff; }
.ebm5f { background: transparent; color: var(--brand-blue); border: 1.5px solid var(--brand-blue); }
.btn-sm:hover { opacity: .85; transform: translateY(-1px); }
/* 兼容旧类名 */
.btn-sm.primary { background: var(--brand-blue); color: #fff; }
.btn-sm.outline { background: transparent; color: var(--brand-blue); border: 1.5px solid var(--brand-blue); }

/* ============================================
   AI赋能区
   ============================================ */
.d32j2 {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #0d2a45 50%, #0a1e32 100%);
  color: #fff;
  position: relative; overflow: hidden;
}
.d32j2::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/anime-hero.jpg') center/cover no-repeat;
  opacity: .08;
}
.fq9au7 {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
}
.l7cix h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 16px; }
.l7cix h2 span { color: var(--brand-gold); }
.l7cix p { opacity: .85; line-height: 1.8; margin-bottom: 24px; font-size: 1rem; }
.n461nnjq { display: flex; flex-direction: column; gap: 14px; }
.k32eyb {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,.07);
  border-radius: 10px; padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.1);
  transition: var(--transition);
}
.k32eyb:hover { background: rgba(255,255,255,.12); }
.jey55u { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.e62ib3bq h3 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.e62ib3bq p { font-size: .82rem; opacity: .75; line-height: 1.6; }
.dyf73i { border-radius: 16px; overflow: hidden; box-shadow: 0 12px 48px rgba(0,0,0,.4); }
.dyf73i img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   社区功能
   ============================================ */
.eng7d0 { background: linear-gradient(180deg, #f4f7fb 0%, #e8f0f8 100%); }
.zabe278g {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.u23851 {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.u23851:hover {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-blue));
  color: #fff; border-color: transparent;
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.u23851:hover .g0l3tvm1 { color: rgba(255,255,255,.8); }
.dzmuzny { font-size: 2.4rem; margin-bottom: 12px; }
.u23851 h3 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.g0l3tvm1 { font-size: .82rem; color: var(--text-sub); line-height: 1.6; }

/* ============================================
   合作品牌 Logo 墙
   ============================================ */
.r5vos2 { background: #fff; padding: 48px 0; }
.zhg6g {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 24px 40px;
}
.qlbf5c {
  background: #f0f5fb;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 24px;
  font-size: .9rem; font-weight: 700;
  color: var(--text-sub);
  transition: var(--transition);
  cursor: pointer;
}
.qlbf5c:hover { background: var(--brand-blue); color: #fff; border-color: var(--brand-blue); }

/* ============================================
   用户评价
   ============================================ */
.c69y0ca {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.js7xho {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.js7xho:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.db0i0kq { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.l8ec7 {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
}
.ubea27a { background: linear-gradient(135deg,#e8557a,#f5a623); }
.mhqsg67  { background: linear-gradient(135deg,#27ae60,#2ecc71); }
.fnkt1jwq { background: linear-gradient(135deg,#9b59b6,#8e44ad); }
.pk7z5uy9  { background: linear-gradient(135deg,#e67e22,#f39c12); }
.dcqa45   { background: linear-gradient(135deg,#1abc9c,#16a085); }
.q776r   { background: linear-gradient(135deg,#2980b9,#3498db); }
.tkizui   { background: linear-gradient(135deg,#e8557a,#c0392b); }
.h5m6nnkl h3 { font-size: .92rem; font-weight: 700; color: var(--brand-dark); margin: 0; }
.h5m6nnkl span { font-size: .76rem; color: var(--text-sub); }
.i3gony3f { color: var(--brand-gold); font-size: .9rem; margin-bottom: 10px; }
.vzsf7x { font-size: .88rem; color: var(--text-sub); line-height: 1.7; }
.gxpnnv3 {
  display: inline-block; margin-top: 10px;
  background: #e8f4fd; color: var(--brand-blue);
  border-radius: 20px; padding: 2px 10px; font-size: .75rem; font-weight: 600;
}

/* ============================================
   FAQ
   ============================================ */
.ixj4i7t { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--brand-blue); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer;
  font-size: .95rem; font-weight: 700; color: var(--brand-dark);
  user-select: none;
}
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--brand-blue); transition: transform .3s ease; flex-shrink: 0; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  font-size: .88rem; color: var(--text-sub); line-height: 1.8;
  padding: 0 22px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 22px 18px; }

/* ============================================
   联系我们
   ============================================ */
.flmbl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start;
}
.lpq1160 h3 { font-size: 1.3rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 20px; }
.wc1ut { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.m2tjmakl {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, #e8f4fd, #c2e0f5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.wc1ut h4 { font-size: .88rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 3px; }
.wc1ut p { font-size: .84rem; color: var(--text-sub); }
.azo929 { font-size: 1.1rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 20px; }
.gkp72mu9 { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.pg08bdjh { text-align: center; }
.pg08bdjh img { width: 110px; height: 110px; border-radius: 10px; border: 3px solid var(--border); }
.pg08bdjh p { font-size: .78rem; color: var(--text-sub); margin-top: 8px; font-weight: 600; }
.fx4d1j {
  background: #f0f5fb;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}
.fx4d1j h4 { font-weight: 800; color: var(--brand-dark); margin-bottom: 12px; font-size: .95rem; }
.e9ygdk3 { display: flex; flex-wrap: wrap; gap: 10px; }
.bnsguy {
  padding: 8px 16px; border-radius: 20px;
  font-size: .84rem; font-weight: 600;
  transition: var(--transition);
}
.nxmxzb  { background: var(--brand-blue); color: #fff; }
.j1fi2pv  { background: var(--brand-pink); color: #fff; }
.m93q7s  { background: var(--brand-gold); color: #fff; }
.bnsguy:hover  { opacity: .85; transform: translateY(-1px); }

/* ============================================
   加入社区 How-To
   ============================================ */
.hk9ol {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.rszw9 {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.rszw9:hover { border-color: var(--brand-blue); box-shadow: var(--shadow); }
.a1y1wh {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-dark));
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem;
  margin-bottom: 14px;
}
.rszw9 h3 { font-size: .95rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 8px; }
.rszw9 p { font-size: .84rem; color: var(--text-sub); line-height: 1.6; }

/* ============================================
   社交分享
   ============================================ */
.no4xx9qy {
  background: linear-gradient(135deg, #f0f5fb, #e4edf8);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.no4xx9qy p { font-weight: 700; color: var(--brand-dark); margin-right: 8px; }
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 22px;
  font-size: .84rem; font-weight: 600; cursor: pointer;
  border: none; transition: var(--transition);
}
.share-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.15); }
.b03unyg, .al25owe { background: #07c160; color: #fff; }
.o1zxdct,  .gcpjoumq  { background: #e6162d; color: #fff; }
.n5j7k, .xpzmdeqp { background: #010101; color: #fff; }
.eyd400w,   .od7nu   { background: #00a1d6; color: #fff; }

/* ============================================
   MCP 智能助手浮窗
   ============================================ */
.mcp-widget {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9000;
}
.mcp-widget__fab {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-blue));
  color: #fff; border: none; border-radius: 50px;
  padding: 12px 18px; cursor: pointer;
  box-shadow: 0 4px 20px rgba(14,127,192,.4);
  transition: var(--transition);
  font-size: .8rem; font-weight: 700;
}
.mcp-widget__fab:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(14,127,192,.5); }
.mcp-widget__fab span:first-child { font-size: 1.4rem; }
.mcp-widget__inner {
  display: none;
  position: absolute; bottom: 70px; right: 0;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  overflow: hidden;
  border: 1px solid var(--border);
}
.mcp-widget.open .mcp-widget__inner { display: block; }
.mcp-widget.open .mcp-widget__fab { background: #e84040; }
.mcp-widget__header {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-blue));
  color: #fff; padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
}
.mcp-widget__logo {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .9rem;
}
.mcp-widget__title { flex: 1; font-weight: 700; font-size: .9rem; }
.mcp-widget__close {
  background: none; border: none; color: rgba(255,255,255,.7);
  font-size: 1.4rem; cursor: pointer; padding: 0; line-height: 1;
}
.mcp-widget__close:hover { color: #fff; }
.mcp-widget__body {
  padding: 14px;
  max-height: 200px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 10px;
}
.mcp-widget__msg { display: flex; }
.mcp-widget__msg--bot span {
  background: #f0f5fb;
  border-radius: 12px 12px 12px 2px;
  padding: 10px 14px;
  font-size: .84rem; color: var(--text-main);
  line-height: 1.6; max-width: 90%;
}
.mcp-widget__msg--user { justify-content: flex-end; }
.mcp-widget__msg--user span {
  background: var(--brand-blue); color: #fff;
  border-radius: 12px 12px 2px 12px;
  padding: 10px 14px;
  font-size: .84rem; line-height: 1.6; max-width: 90%;
}
.mcp-widget__input-row {
  display: flex; gap: 8px; padding: 12px 14px;
  border-top: 1px solid var(--border);
}
.mcp-widget__input {
  flex: 1; border: 1.5px solid var(--border);
  border-radius: 20px; padding: 8px 14px;
  font-size: .84rem; outline: none;
}
.mcp-widget__input:focus { border-color: var(--brand-blue); }
.mcp-widget__send {
  background: var(--brand-blue); color: #fff;
  border: none; border-radius: 20px;
  padding: 8px 16px; font-size: .82rem;
  font-weight: 700; cursor: pointer;
  transition: var(--transition);
}
.mcp-widget__send:hover { background: var(--brand-dark); }

/* ============================================
   统计数字条
   ============================================ */
.jpl3p7po {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-blue));
  color: #fff; padding: 36px 0;
}
.ld02i {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.q3mylui .num { font-size: 2.2rem; font-weight: 900; color: var(--brand-gold); }
.q3mylui .label { font-size: .82rem; opacity: .8; margin-top: 4px; }

/* ============================================
   页脚
   ============================================ */
.xfyet2 {
  background: linear-gradient(180deg, #0f2236 0%, #071524 100%);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.bbmpp {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.e30pmln .cbesc6mv { color: #fff; font-size: 1.4rem; margin-bottom: 12px; }
.fot0c { margin-bottom: 14px; display: inline-flex; }
.ran0grlu { background: linear-gradient(135deg,#3ab4f2,#0e7fc0); }
.ubys15 { font-size: .72rem; padding: 2px 8px; }
.e30pmln p { font-size: .85rem; line-height: 1.8; opacity: .7; max-width: 280px; }
.o1e3xwnn { margin-top: 10px; font-size: .8rem; opacity: .5; }
.o1e3xwnn a { color: #3ab4f2; }
.x172gfq7 { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.yfmdo2 {
  padding: 4px 12px; border-radius: 14px;
  font-size: .75rem; font-weight: 700;
  transition: var(--transition);
}
.abp8dn  { background: rgba(230,22,45,.2);  color: #e6162d; }
.z6salsy9   { background: rgba(0,161,214,.2);  color: #00a1d6; }
.eefq0rog { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.dssti6 { background: rgba(7,193,96,.2);   color: #07c160; }
.yfmdo2:hover { opacity: .8; transform: translateY(-1px); }
.g5y6ki3s h4 { color: #fff; font-size: .95rem; font-weight: 800; margin-bottom: 16px; }
.g5y6ki3s ul li { margin-bottom: 10px; }
.g5y6ki3s ul li a { font-size: .85rem; opacity: .7; transition: var(--transition); }
.g5y6ki3s ul li a:hover { opacity: 1; color: var(--brand-gold); }
.p4cw5g { display: flex; gap: 16px; margin-top: 16px; }
.rq68xwz4 { text-align: center; }
.rq68xwz4 img { width: 80px; height: 80px; border-radius: 8px; border: 2px solid rgba(255,255,255,.2); }
.rq68xwz4 p { font-size: .72rem; opacity: .6; margin-top: 4px; }
.tk60e {
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .8rem; opacity: .6; flex-wrap: wrap; gap: 10px;
}
.eecjo8c { display: flex; gap: 20px; }
.eecjo8c a { transition: var(--transition); }
.eecjo8c a:hover { opacity: 1; color: var(--brand-gold); }

/* ============================================
   面包屑
   ============================================ */
.iw5lhjc { background: #fff; border-bottom: 1px solid var(--border); padding: 12px 0; }
.mwriqd8a {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: var(--text-sub);
}
.mwriqd8a a { color: var(--brand-blue); }
.mwriqd8a span { opacity: .5; }

/* ============================================
   内页 Hero
   ============================================ */
.zj7304sb { padding: 60px 0; text-align: center; }
.ox78i43q { background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-blue) 100%); color: #fff; }
.dpcsru   { background: linear-gradient(135deg, #1a3a5c 0%, #9b59b6 100%); color: #fff; }
.nwn5dnz     { background: linear-gradient(135deg, #e8557a 0%, #f5a623 100%); color: #fff; }
.ltqk8i    { background: linear-gradient(135deg, #1a3a5c 0%, #27ae60 100%); color: #fff; }
.hl8sa2v{ background: linear-gradient(135deg, #0a1e32 0%, #0e7fc0 100%); color: #fff; }
.nx6gi  { background: linear-gradient(135deg, #1a3a5c 0%, #e8557a 100%); color: #fff; }
.zj7304sb h1 { font-size: 2.4rem; font-weight: 900; margin-bottom: 12px; }
.zj7304sb p { font-size: 1rem; opacity: .85; max-width: 560px; margin: 0 auto; }

/* ============================================
   通用按钮
   ============================================ */
.ro3os {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: 2px solid var(--brand-blue);
  color: var(--brand-blue); border-radius: 24px;
  padding: 9px 24px; font-size: .9rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.ro3os:hover { background: var(--brand-blue); color: #fff; }
.i5rk1a { text-align: center; }
.ikaj31qn { margin-top: 40px; }

/* ============================================
   标签云
   ============================================ */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: #e8f4fd; color: var(--brand-blue);
  border-radius: 20px; padding: 5px 14px;
  font-size: .8rem; font-weight: 600; cursor: pointer;
  transition: var(--transition); border: 1px solid transparent;
}
.tag:hover { background: var(--brand-blue); color: #fff; }
.tag.active { background: var(--brand-blue); color: #fff; }

/* ============================================
   关于我们 - 双栏布局
   ============================================ */
.ma4aj {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.p336kjt .k5zvlu { margin-bottom: 12px; display: inline-block; }
.p336kjt h2 { font-size: 1.8rem; font-weight: 900; color: var(--brand-dark); margin: 12px 0 16px; }
.p336kjt p { color: var(--text-sub); line-height: 1.9; margin-bottom: 14px; }
.rxpp8o { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.rxpp8o img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   社区热帖列表
   ============================================ */
.ehkw756 { display: flex; flex-direction: column; gap: 14px; max-width: 800px; margin: 0 auto; }
.itmbth {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  border: 1px solid var(--border);
  display: flex; align-items: center; gap: 16px;
  transition: var(--transition);
}
.itmbth:hover { border-color: var(--brand-blue); }
.i7zcy {
  background: #e8f4fd; color: var(--brand-blue);
  border-radius: 6px; padding: 3px 10px;
  font-size: .76rem; font-weight: 700; white-space: nowrap;
}
.n2q031 { flex: 1; font-size: .92rem; font-weight: 700; color: var(--brand-dark); }
.y5kq63i9 { display: flex; gap: 14px; font-size: .78rem; color: var(--text-sub); white-space: nowrap; }

/* ============================================
   联系表单
   ============================================ */
.f80nz51m { background: #f0f5fb; border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); }
.f80nz51m h4 { font-weight: 800; color: var(--brand-dark); margin-bottom: 16px; font-size: .95rem; }
.qf8g0 { display: flex; flex-direction: column; gap: 12px; }
.yu6do9u,
.ekqclxpl,
.rjtu9aoz {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .9rem;
  outline: none;
  background: #fff;
  transition: var(--transition);
  font-family: inherit;
  color: var(--text-main);
}
.ekqclxpl { color: var(--text-sub); }
.rjtu9aoz { resize: vertical; }
.yu6do9u:focus,
.ekqclxpl:focus,
.rjtu9aoz:focus { border-color: var(--brand-blue); }

/* ============================================
   动画
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp .6s ease both; }
.fade-in-delay-1 { animation-delay: .1s; }
.fade-in-delay-2 { animation-delay: .2s; }
.fade-in-delay-3 { animation-delay: .3s; }
img[data-src] { background: linear-gradient(90deg, #e8f0f8 25%, #d4e4f0 50%, #e8f0f8 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ============================================
   响应式
   ============================================ */
@media (max-width: 1024px) {
  .fq9au7 { grid-template-columns: 1fr; }
  .dyf73i { display: none; }
  .bbmpp { grid-template-columns: 1fr 1fr; }
  .ld02i { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-search { display: none; }
  .hamburger { display: flex; }
  .flmbl { grid-template-columns: 1fr; }
  .ma4aj { grid-template-columns: 1fr; }
  .bbmpp { grid-template-columns: 1fr; }
  .ezjekoa { min-height: 420px; }
  .ezjekoa h1 { font-size: 1.8rem; }
  .s8h2g5j2 { gap: 20px; }
  .section { padding: 48px 0; }
  .v7j46 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .dqxux { grid-template-columns: repeat(2, 1fr); }
  .fait8wkq { grid-template-columns: repeat(2, 1fr); }
  .z5b85tud { grid-template-columns: 1fr; }
  .usnyij { grid-template-columns: repeat(2, 1fr); }
  .c69y0ca { grid-template-columns: 1fr; }
  .no4xx9qy { flex-direction: column; align-items: flex-start; }
  .tk60e { flex-direction: column; text-align: center; }
  .g9tdxb6m { gap: 16px; }
  .mcp-widget__inner { width: 280px; }
}
/* ============================================
   工具卡片徽章
   ============================================ */
.w25i8 {
  display: inline-block; margin-top: 12px;
  border-radius: 20px; padding: 4px 14px;
  font-size: .78rem; font-weight: 700;
}
.qwiqxl { background: var(--brand-blue); color: #fff; }
.k3m8gx  { background: var(--brand-gold); color: #fff; }
.ewj3up2  { background: var(--brand-pink); color: #fff; }
.ew2tc  { background: var(--brand-purple); color: #fff; }
.tool-card { cursor: pointer; }

/* ============================================
   内页通用标题
   ============================================ */
.w3ps5osm {
  font-size: 1.1rem; font-weight: 800;
  color: var(--brand-dark); margin-bottom: 16px;
}
.etlczi { text-align: left; margin-bottom: 28px; }
.etlczi h2 { font-size: 1.4rem; }
.etlczi p  { margin: 0; }
.jwr32 { margin-top: 6px; }

/* ============================================
   联系页面
   ============================================ */
.nr97k { font-size: 1.3rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 20px; }
.ngl61yhl { color: var(--brand-blue); }
.ngl61yhl:hover { text-decoration: underline; }
.f2jyfrn { width: 100%; justify-content: center; }

/* ============================================
   社区封面图
   ============================================ */
.lolnky {
  height: 300px; overflow: hidden; position: relative;
}
.lolnky img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.7); }
.leihr {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; color: #fff; text-align: center;
  padding: 20px;
}
.leihr h2 { font-size: 2rem; font-weight: 900; text-shadow: 0 2px 12px rgba(0,0,0,.4); margin-bottom: 10px; }
.leihr p  { opacity: .9; margin-bottom: 20px; }

/* ============================================
   文章内容排版
   ============================================ */
.adc516 { max-width: 800px; margin: 0 auto; }
.adc516 h2 { font-size: 1.2rem; font-weight: 800; color: var(--brand-dark); margin: 28px 0 12px; }
.adc516 p  { font-size: .92rem; color: var(--text-sub); line-height: 1.9; margin-bottom: 14px; }
.qjt6r1sx { font-size: .82rem; color: var(--text-sub); opacity: .7; margin-top: 32px; }

@media (max-width: 480px) {
  .v7j46 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .dqxux { grid-template-columns: 1fr; }
  .fait8wkq { grid-template-columns: 1fr; }
  .usnyij { grid-template-columns: 1fr; }
  .puyww1 { flex-direction: column; }
  .ld02i { grid-template-columns: repeat(2, 1fr); }
  .hk9ol { grid-template-columns: 1fr; }
  .gkp72mu9 { justify-content: center; }
  .mcp-widget { bottom: 12px; right: 12px; }
  .mcp-widget__inner { width: 260px; right: -12px; }
}
