/* =============================================
   网爆网 - 主样式表 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; }

/* ============================================
   顶部公告条
   ============================================ */
.nhja19 {
  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;
}
.nhja19 a { color: var(--brand-gold); text-decoration: underline; }

/* ============================================
   导航栏
   ============================================ */
.c12hbd {
  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);
}
.lmbmnd {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 66px;
  gap: 32px;
}
.decd8n { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.q0zt0 {
  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);
}
.jxjynu0 { font-size: 1.3rem; font-weight: 800; color: var(--brand-dark); letter-spacing: -.02em; }
.jxjynu0 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;
}

.r7mj0y { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.zh8aedqr {
  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;
}
.zh8aedqr: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
   ============================================ */
.e1t8on {
  position: relative;
  min-height: 560px;
  display: flex; align-items: center;
  overflow: hidden;
}
.mjil4 {
  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;
}
.e1t8on:hover .mjil4 { transform: scale(1); }
.p0mfl8d {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,58,92,.72) 0%, rgba(14,127,192,.35) 100%);
}
.j14r0qm5 {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 80px 24px;
  color: #fff;
}
.gbjjks {
  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;
}
.e1t8on 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);
}
.e1t8on h1 .highlight { color: var(--brand-gold); }
.e1t8on p {
  font-size: 1.1rem; max-width: 560px;
  opacity: .9; margin-bottom: 32px;
  line-height: 1.8;
}
.hnwq7jxi { display: flex; gap: 14px; flex-wrap: wrap; }
.s07i0 {
  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);
}
.s07i0:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,166,35,.5); }
.wu0zd2ex {
  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);
}
.wu0zd2ex:hover { background: rgba(255,255,255,.25); border-color: #fff; }

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

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

.l6nln6 { text-align: center; margin-bottom: 48px; }
.dj37e951 { margin-bottom: 32px; }
.y1f5vvv {
  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;
}
.x6ysysb { background: rgba(245,166,35,.15); color: var(--brand-gold); }
.l6nln6 h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900; color: var(--brand-dark);
  margin-bottom: 12px;
}
.l6nln6 p { color: var(--text-sub); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ============================================
   动漫视频卡片
   ============================================ */
.m44vql {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.epr4v01 { 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); }
.v2z2rjfs {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #1a2a3a;
}
.v2z2rjfs img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.anime-card:hover .v2z2rjfs 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;
}
.wmqo4z {
  position: absolute; top: 10px; left: 10px;
  border-radius: 6px; padding: 2px 8px;
  font-size: .72rem; font-weight: 700;
  color: #fff;
}
.tt1koq0      { background: #e84040; }
.e8rtufdc      { background: var(--brand-pink); }
.p90wdql   { background: var(--brand-purple); }
.i6bye{ background: var(--brand-pink); }
.c39tzd     { background: var(--brand-blue); }
.u61aam4 { padding: 14px 16px; }
.u61aam4 h3 { font-size: .95rem; font-weight: 700; color: var(--text-main); margin-bottom: 6px; line-height: 1.4; }
.gx0yw { display: flex; align-items: center; gap: 12px; font-size: .78rem; color: var(--text-sub); }
.gx0yw span { display: flex; align-items: center; gap: 3px; }

/* ============================================
   影视传媒内容模块
   ============================================ */
.c7xs89 {
  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); }
.kngsec {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #1a2a3a;
}
.kngsec img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.media-card:hover .kngsec img { transform: scale(1.06); }
.malndt {
  position: absolute; top: 10px; left: 10px;
  background: var(--brand-blue); color: #fff;
  border-radius: 6px; padding: 3px 10px;
  font-size: .75rem; font-weight: 700;
}
.q472zqm   { background: var(--brand-pink); }
.ofvqlt5t  { background: var(--brand-purple); }
.d62z5{ background: var(--brand-gold); }
.cgjsdzhb { padding: 16px 18px; }
.cgjsdzhb h3 { font-size: .95rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 6px; line-height: 1.4; }
.cgjsdzhb p  { font-size: .84rem; color: var(--text-sub); line-height: 1.6; margin-bottom: 10px; }
.a9gg69p { display: flex; align-items: center; gap: 10px; font-size: .78rem; }
.p1nszxe {
  background: #e8f4fd; color: var(--brand-blue);
  border-radius: 20px; padding: 2px 10px; font-size: .75rem; font-weight: 600;
}
.g37u923   { background: #fde8ef; color: var(--brand-pink); }
.xa7zbxv  { background: #f0e8f8; color: var(--brand-purple); }
.ptvwk{ background: #fef3e2; color: var(--brand-gold); }

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

/* ============================================
   特色模块卡片
   ============================================ */
.w9byck {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.rt8cv {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.rt8cv::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;
}
.rt8cv:hover::before { transform: scaleX(1); }
.rt8cv:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fk7an {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 16px;
}
.gqg4ndr   { background: linear-gradient(135deg, #e8f4fd, #c2e0f5); }
.or2kqo   { background: linear-gradient(135deg, #fef3e2, #fde0a8); }
.bleew   { background: linear-gradient(135deg, #fde8ef, #f9c0d0); }
.jp8nw  { background: linear-gradient(135deg, #e4f7ed, #b8edcc); }
/* 兼容旧类名 */
.fk7an.blue  { background: linear-gradient(135deg, #e8f4fd, #c2e0f5); }
.fk7an.gold  { background: linear-gradient(135deg, #fef3e2, #fde0a8); }
.fk7an.pink  { background: linear-gradient(135deg, #fde8ef, #f9c0d0); }
.fk7an.green { background: linear-gradient(135deg, #e4f7ed, #b8edcc); }
.rt8cv h3 { font-size: 1.05rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 8px; }
.rt8cv p { font-size: .88rem; color: var(--text-sub); line-height: 1.7; }

/* ============================================
   专家展示（含社交账号）
   ============================================ */
.sqvhyz {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.d8knky {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}
.d8knky:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tz2lw { width: 100%; aspect-ratio: 1; overflow: hidden; background: #e8f0f8; }
.tz2lw img { width: 100%; height: 100%; object-fit: cover; }
.b6vt5 { padding: 20px 18px; }
.k4f84ydc { font-size: 1.1rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 4px; }
.zu5i22 { font-size: .82rem; color: var(--brand-blue); font-weight: 600; margin-bottom: 10px; }
.po1aw { font-size: .84rem; color: var(--text-sub); line-height: 1.6; margin-bottom: 12px; }
.v7v9z { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.d1f82 {
  font-size: .76rem; color: var(--brand-gold);
  background: #fef8ec; border-radius: 6px;
  padding: 3px 8px; text-align: left;
}
.ugxczuht { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 12px; }
.tlpb08 {
  background: #e8f4fd; color: var(--brand-blue);
  border-radius: 20px; padding: 3px 10px; font-size: .75rem; font-weight: 600;
}
.l6cdjzz4 { display: flex; gap: 8px; justify-content: center; margin-bottom: 14px; }
.iw1c3v0 {
  padding: 4px 12px; border-radius: 14px;
  font-size: .75rem; font-weight: 700;
  transition: var(--transition);
}
.o6aizi25  { background: #fde8ea; color: #e6162d; }
.ztdfkiq   { background: #e0f4fd; color: #00a1d6; }
.djrr5d { background: #e8e8e8; color: #010101; }
.zm9cf { background: #e8f8ed; color: #07c160; }
.iw1c3v0: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;
}
.vva8sxfp { background: var(--brand-blue); color: #fff; }
.qrluhv4o { 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赋能区
   ============================================ */
.jcjd0k {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #0d2a45 50%, #0a1e32 100%);
  color: #fff;
  position: relative; overflow: hidden;
}
.jcjd0k::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/anime-hero.jpg') center/cover no-repeat;
  opacity: .08;
}
.wryo7y {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
}
.shqekc h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 16px; }
.shqekc h2 span { color: var(--brand-gold); }
.shqekc p { opacity: .85; line-height: 1.8; margin-bottom: 24px; font-size: 1rem; }
.e38cu { display: flex; flex-direction: column; gap: 14px; }
.yif28y {
  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);
}
.yif28y:hover { background: rgba(255,255,255,.12); }
.k2owk { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.h488d h3 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.h488d p { font-size: .82rem; opacity: .75; line-height: 1.6; }
.fpor7nxd { border-radius: 16px; overflow: hidden; box-shadow: 0 12px 48px rgba(0,0,0,.4); }
.fpor7nxd img { width: 100%; height: 100%; object-fit: cover; }

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

/* ============================================
   合作品牌 Logo 墙
   ============================================ */
.v4gwb29w { background: #fff; padding: 48px 0; }
.zj4zp {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 24px 40px;
}
.h9hamv1m {
  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;
}
.h9hamv1m:hover { background: var(--brand-blue); color: #fff; border-color: var(--brand-blue); }

/* ============================================
   用户评价
   ============================================ */
.lthvf3fk {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.bnxfyg {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.bnxfyg:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.de80h7 { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.wvmlep {
  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;
}
.rf2tlso { background: linear-gradient(135deg,#e8557a,#f5a623); }
.er0zwt  { background: linear-gradient(135deg,#27ae60,#2ecc71); }
.lnjqv7q { background: linear-gradient(135deg,#9b59b6,#8e44ad); }
.x91m08v  { background: linear-gradient(135deg,#e67e22,#f39c12); }
.xhs4p   { background: linear-gradient(135deg,#1abc9c,#16a085); }
.wcmqlp   { background: linear-gradient(135deg,#2980b9,#3498db); }
.pr4kb00t   { background: linear-gradient(135deg,#e8557a,#c0392b); }
.nw6vqg h3 { font-size: .92rem; font-weight: 700; color: var(--brand-dark); margin: 0; }
.nw6vqg span { font-size: .76rem; color: var(--text-sub); }
.rwp8druw { color: var(--brand-gold); font-size: .9rem; margin-bottom: 10px; }
.pzmvbm { font-size: .88rem; color: var(--text-sub); line-height: 1.7; }
.c2txxaup {
  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
   ============================================ */
.kcc3j { 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; }

/* ============================================
   联系我们
   ============================================ */
.n9bofit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start;
}
.gy6d889 h3 { font-size: 1.3rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 20px; }
.t0fleglm { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.ptesn2sr {
  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;
}
.t0fleglm h4 { font-size: .88rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 3px; }
.t0fleglm p { font-size: .84rem; color: var(--text-sub); }
.bn8x3ob { font-size: 1.1rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 20px; }
.uge9ryd { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.tsb1h { text-align: center; }
.tsb1h img { width: 110px; height: 110px; border-radius: 10px; border: 3px solid var(--border); }
.tsb1h p { font-size: .78rem; color: var(--text-sub); margin-top: 8px; font-weight: 600; }
.m74czj {
  background: #f0f5fb;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}
.m74czj h4 { font-weight: 800; color: var(--brand-dark); margin-bottom: 12px; font-size: .95rem; }
.kcotwnz { display: flex; flex-wrap: wrap; gap: 10px; }
.lxr7gg {
  padding: 8px 16px; border-radius: 20px;
  font-size: .84rem; font-weight: 600;
  transition: var(--transition);
}
.om6bd5o  { background: var(--brand-blue); color: #fff; }
.gkigrqou  { background: var(--brand-pink); color: #fff; }
.iriiny  { background: var(--brand-gold); color: #fff; }
.lxr7gg:hover  { opacity: .85; transform: translateY(-1px); }

/* ============================================
   加入社区 How-To
   ============================================ */
.njvvpw {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.tqj79qx7 {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.tqj79qx7:hover { border-color: var(--brand-blue); box-shadow: var(--shadow); }
.vkmz16 {
  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;
}
.tqj79qx7 h3 { font-size: .95rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 8px; }
.tqj79qx7 p { font-size: .84rem; color: var(--text-sub); line-height: 1.6; }

/* ============================================
   社交分享
   ============================================ */
.qg59m {
  background: linear-gradient(135deg, #f0f5fb, #e4edf8);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.qg59m 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); }
.dgalk, .xe0kh11a { background: #07c160; color: #fff; }
.jb6priqc,  .ubqt3e  { background: #e6162d; color: #fff; }
.vk5zsl5, .o7s0w4ft { background: #010101; color: #fff; }
.xl24ue,   .mysds   { 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); }

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

/* ============================================
   页脚
   ============================================ */
.cz01ps5q {
  background: linear-gradient(180deg, #0f2236 0%, #071524 100%);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.prpbm97 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hsg1o .jxjynu0 { color: #fff; font-size: 1.4rem; margin-bottom: 12px; }
.yszy5 { margin-bottom: 14px; display: inline-flex; }
.y4qx9u7r { background: linear-gradient(135deg,#3ab4f2,#0e7fc0); }
.umwvt5 { font-size: .72rem; padding: 2px 8px; }
.hsg1o p { font-size: .85rem; line-height: 1.8; opacity: .7; max-width: 280px; }
.o7m80 { margin-top: 10px; font-size: .8rem; opacity: .5; }
.o7m80 a { color: #3ab4f2; }
.siaqc3 { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.widye2r {
  padding: 4px 12px; border-radius: 14px;
  font-size: .75rem; font-weight: 700;
  transition: var(--transition);
}
.xh9nwp2  { background: rgba(230,22,45,.2);  color: #e6162d; }
.gg9a73zs   { background: rgba(0,161,214,.2);  color: #00a1d6; }
.cajvgv { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.vn1oh { background: rgba(7,193,96,.2);   color: #07c160; }
.widye2r:hover { opacity: .8; transform: translateY(-1px); }
.zg1je6e h4 { color: #fff; font-size: .95rem; font-weight: 800; margin-bottom: 16px; }
.zg1je6e ul li { margin-bottom: 10px; }
.zg1je6e ul li a { font-size: .85rem; opacity: .7; transition: var(--transition); }
.zg1je6e ul li a:hover { opacity: 1; color: var(--brand-gold); }
.mypkuuz7 { display: flex; gap: 16px; margin-top: 16px; }
.fd8cvgto { text-align: center; }
.fd8cvgto img { width: 80px; height: 80px; border-radius: 8px; border: 2px solid rgba(255,255,255,.2); }
.fd8cvgto p { font-size: .72rem; opacity: .6; margin-top: 4px; }
.t3i3cf0f {
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .8rem; opacity: .6; flex-wrap: wrap; gap: 10px;
}
.k9vsp596 { display: flex; gap: 20px; }
.k9vsp596 a { transition: var(--transition); }
.k9vsp596 a:hover { opacity: 1; color: var(--brand-gold); }

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

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

/* ============================================
   通用按钮
   ============================================ */
.p02v6i0z {
  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);
}
.p02v6i0z:hover { background: var(--brand-blue); color: #fff; }
.nsnec0b { text-align: center; }
.mpcxvz { 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; }

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

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

/* ============================================
   联系表单
   ============================================ */
.zsdmhtk { background: #f0f5fb; border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); }
.zsdmhtk h4 { font-weight: 800; color: var(--brand-dark); margin-bottom: 16px; font-size: .95rem; }
.xsfftqmd { display: flex; flex-direction: column; gap: 12px; }
.udlh6,
.x3tdlta,
.rbqgf1 {
  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);
}
.x3tdlta { color: var(--text-sub); }
.rbqgf1 { resize: vertical; }
.udlh6:focus,
.x3tdlta:focus,
.rbqgf1: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) {
  .wryo7y { grid-template-columns: 1fr; }
  .fpor7nxd { display: none; }
  .prpbm97 { grid-template-columns: 1fr 1fr; }
  .zc18b { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-search { display: none; }
  .hamburger { display: flex; }
  .n9bofit { grid-template-columns: 1fr; }
  .stfoyjoh { grid-template-columns: 1fr; }
  .prpbm97 { grid-template-columns: 1fr; }
  .e1t8on { min-height: 420px; }
  .e1t8on h1 { font-size: 1.8rem; }
  .fcfbseiv { gap: 20px; }
  .section { padding: 48px 0; }
  .m44vql { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .c7xs89 { grid-template-columns: repeat(2, 1fr); }
  .p6p8dg { grid-template-columns: repeat(2, 1fr); }
  .w9byck { grid-template-columns: 1fr; }
  .sqvhyz { grid-template-columns: repeat(2, 1fr); }
  .lthvf3fk { grid-template-columns: 1fr; }
  .qg59m { flex-direction: column; align-items: flex-start; }
  .t3i3cf0f { flex-direction: column; text-align: center; }
  .lmbmnd { gap: 16px; }
  .mcp-widget__inner { width: 280px; }
}
/* ============================================
   工具卡片徽章
   ============================================ */
.p2q4t {
  display: inline-block; margin-top: 12px;
  border-radius: 20px; padding: 4px 14px;
  font-size: .78rem; font-weight: 700;
}
.axo5b9 { background: var(--brand-blue); color: #fff; }
.im9rg25  { background: var(--brand-gold); color: #fff; }
.jtn92w  { background: var(--brand-pink); color: #fff; }
.f3wfx0  { background: var(--brand-purple); color: #fff; }
.tool-card { cursor: pointer; }

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

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

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

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

@media (max-width: 480px) {
  .m44vql { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .c7xs89 { grid-template-columns: 1fr; }
  .p6p8dg { grid-template-columns: 1fr; }
  .sqvhyz { grid-template-columns: 1fr; }
  .hnwq7jxi { flex-direction: column; }
  .zc18b { grid-template-columns: repeat(2, 1fr); }
  .njvvpw { grid-template-columns: 1fr; }
  .uge9ryd { justify-content: center; }
  .mcp-widget { bottom: 12px; right: 12px; }
  .mcp-widget__inner { width: 260px; right: -12px; }
}
