/* ============================================
   糖心vlog - 原创样式表
   品牌色系：甜心粉红 + 暖橙 + 梦幻紫
   ============================================ */

/* CSS变量定义 */
:root {
  --primary: #E8456B;
  --primary-light: #FF6B8A;
  --secondary: #FF7E5F;
  --accent: #6C5CE7;
  --accent-light: #A29BFE;
  --dark-bg: #1A1A2E;
  --darker-bg: #12121F;
  --light-bg: #FFF5F7;
  --card-bg: #FFFFFF;
  --text-dark: #2D2D3A;
  --text-light: #8E8EA0;
  --text-white: #FFFFFF;
  --border-color: #F0E6E8;
  --shadow: 0 4px 20px rgba(232,69,107,0.1);
  --shadow-hover: 0 8px 30px rgba(232,69,107,0.2);
  --gradient-primary: linear-gradient(135deg, #E8456B, #FF7E5F);
  --gradient-accent: linear-gradient(135deg, #6C5CE7, #A29BFE);
  --gradient-dark: linear-gradient(135deg, #1A1A2E, #2D1B3D);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

/* 重置样式 */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  background: var(--light-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ 头部导航 ============ */
.dwa45x5o {
  background: var(--dark-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.gtw32e {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 70px;
}

.upgau {
  display: flex;
  align-items: center;
  gap: 10px;
}

.upgau img {
  height: 42px;
  width: auto;
}

.upgau span {
  color: var(--text-white);
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ot4mlt2m {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ot4mlt2m a {
  color: #CCC;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.ot4mlt2m a:hover,
.ot4mlt2m a.active {
  color: var(--text-white);
  background: rgba(232,69,107,0.2);
}

.tp7p7dl {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* 搜索栏 */
.hyh7hnd {
  background: linear-gradient(135deg, rgba(232,69,107,0.08), rgba(108,92,231,0.08));
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.hyh7hnd .container {
  display: flex;
  justify-content: center;
}

.f7lhhn {
  display: flex;
  max-width: 600px;
  width: 100%;
  position: relative;
}

.f7lhhn input {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid var(--border-color);
  border-radius: 50px 0 0 50px;
  font-size: 0.95rem;
  outline: none;
  background: var(--card-bg);
  transition: var(--transition);
}

.f7lhhn input:focus {
  border-color: var(--primary);
}

.f7lhhn button {
  padding: 12px 28px;
  background: var(--gradient-primary);
  color: var(--text-white);
  border: none;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.f7lhhn button:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

/* ============ Hero Banner ============ */
.y65p2 {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.u8if4g {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.etflgb3 {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-white);
  padding: 0 20px;
}

.etflgb3 h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  line-height: 1.3;
}

.etflgb3 h1 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.etflgb3 p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 650px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

.g29l9ppg {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gradient-primary);
  color: var(--text-white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(232,69,107,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(232,69,107,0.5);
  color: var(--text-white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--text-white);
  color: var(--text-white);
}

/* ============ 通用区块标题 ============ */
.j70zd {
  text-align: center;
  margin-bottom: 48px;
}

.j70zd h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.j70zd h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
}

.j70zd p {
  color: var(--text-light);
  font-size: 1rem;
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ 视频卡片 ============ */
.nns1og1 {
  padding: 70px 0;
  background: var(--card-bg);
}

.rzfkl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.c85qtet6 {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.c85qtet6:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.xq2eq {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}

.xq2eq img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.c85qtet6:hover .xq2eq img {
  transform: scale(1.08);
}

.ci7g9 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 56px;
  height: 56px;
  background: rgba(232,69,107,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.ci7g9::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent white;
  margin-left: 3px;
}

.c85qtet6:hover .ci7g9 {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.wfkj373e {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.75);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  z-index: 2;
}

.uqbxu64o {
  padding: 14px;
}

.uqbxu64o h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

.pfhtia {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.82rem;
}

.pfhtia span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.a95waz {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(232,69,107,0.1);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.75rem;
  margin-top: 8px;
}

/* ============ 影视传媒板块 ============ */
.owkf7o {
  padding: 70px 0;
  background: var(--light-bg);
}

.heeww17m {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dch9h4x {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.dch9h4x:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.hnud37 {
  height: 200px;
  overflow: hidden;
}

.hnud37 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dch9h4x:hover .hnud37 img {
  transform: scale(1.06);
}

.u76sxhvn {
  padding: 22px;
}

.u76sxhvn h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.u76sxhvn p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============ AI赋能板块 ============ */
.vxxdykx {
  padding: 70px 0;
  background: var(--gradient-dark);
  color: var(--text-white);
}

.vxxdykx .j70zd h2 {
  color: var(--text-white);
}

.vxxdykx .j70zd p {
  color: rgba(255,255,255,0.7);
}

.amrdz {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.l183kns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lk7n04 {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.lk7n04:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--primary);
}

.rjmda1e1 {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.lk7n04 h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.lk7n04 p {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  line-height: 1.6;
}

.it8rxm {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.it8rxm img {
  width: 100%;
  height: auto;
}

/* ============ 社区功能 ============ */
.x7guhb7m {
  padding: 70px 0;
  background: var(--card-bg);
}

.c0t52v0 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.o5rltc {
  text-align: center;
  padding: 32px 20px;
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid transparent;
}

.o5rltc:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.qxv1bt9 {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.o5rltc h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.o5rltc p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ============ 专家展示 ============ */
.glmre {
  padding: 70px 0;
  background: var(--light-bg);
}

.daqu7eyl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.p55hh {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.p55hh:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.d8bb3qv {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 24px auto 16px;
  border: 3px solid var(--primary);
}

.p55hh h4 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.w6gqs1p {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.mqvemw {
  color: var(--text-light);
  font-size: 0.85rem;
  padding: 0 20px;
  line-height: 1.6;
}

.bh8b3l {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 16px 20px 24px;
}

.bh8b3l a {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.btn-sm-primary {
  background: var(--gradient-primary);
  color: var(--text-white);
}

.btn-sm-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-sm-outline:hover {
  background: var(--primary);
  color: var(--text-white);
}

/* ============ 合作品牌 ============ */
.pvlubcj {
  padding: 60px 0;
  background: var(--card-bg);
}

.a218uu3r {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.a218uu3r img {
  max-height: 60px;
  opacity: 0.6;
  transition: var(--transition);
  filter: grayscale(100%);
}

.a218uu3r img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ============ How-To指南 ============ */
.lu89obdu {
  padding: 70px 0;
  background: var(--light-bg);
}

.ckli77x4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}

.ukvxrpu8 {
  text-align: center;
  padding: 32px 20px;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.ukvxrpu8:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.w8n1tm {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.ukvxrpu8 h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.ukvxrpu8 p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ============ 用户评价 ============ */
.fww2rg {
  padding: 70px 0;
  background: var(--card-bg);
}

.zm4x7ekv {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.y7p0btl {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.y7p0btl:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.evxgtsg {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.r60oc {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-weight: 700;
  font-size: 1.1rem;
}

.dg7v63 {
  font-weight: 600;
  color: var(--text-dark);
}

.zodokbrz {
  color: var(--text-light);
  font-size: 0.82rem;
}

.x4jdnl0 {
  color: #FFB800;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.q1gxo {
  color: var(--text-dark);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============ FAQ ============ */
.fi9puar5 {
  padding: 70px 0;
  background: var(--light-bg);
}

.c68acii {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tgi3fd {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.tgi3fd:hover {
  border-color: var(--primary);
}

.fngg9g {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  user-select: none;
}

.fngg9g::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 300;
  transition: var(--transition);
}

.tgi3fd.active .fngg9g::after {
  content: '-';
}

.ihbux25 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.az0du {
  padding: 0 24px 18px;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

.tgi3fd.active .ihbux25 {
  max-height: 300px;
}

/* ============ 联系我们 ============ */
.s1e075bh {
  padding: 70px 0;
  background: var(--card-bg);
}

.bcp7inz {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.epnlp {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.l6cpjc7 {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.t86grfdo {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.1rem;
}

.l6cpjc7 h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.l6cpjc7 p {
  color: var(--text-light);
  font-size: 0.88rem;
}

.pu43ths {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.x55yz4h {
  text-align: center;
}

.x55yz4h img {
  width: 160px;
  height: 160px;
  border-radius: var(--radius);
  margin-bottom: 8px;
}

.x55yz4h p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============ 社交分享 ============ */
.share-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 24px 0;
}

.svyu37d {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}

.svyu37d:hover {
  transform: scale(1.15);
}

.share-wechat { background: #07C160; }
.share-weibo { background: #E6162D; }
.share-douyin { background: #161823; }
.share-bilibili { background: #00A1D6; }

/* ============ 页脚 ============ */
.ogqrvd {
  background: var(--darker-bg);
  color: rgba(255,255,255,0.7);
  padding: 50px 0 0;
}

.wveixg {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.qgz1v8sn img {
  height: 40px;
  margin-bottom: 14px;
}

.qgz1v8sn p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.vla9rv5 h5 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.vla9rv5 a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  padding: 4px 0;
  transition: var(--transition);
}

.vla9rv5 a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.s7r4n {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.s7r4n a {
  color: var(--primary-light);
}

/* ============ 面包屑 ============ */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.88rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--text-light);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  margin: 0 8px;
  color: var(--border-color);
}

/* ============ 内页通用 ============ */
.rffz3tq {
  background: var(--gradient-dark);
  padding: 60px 0;
  text-align: center;
  color: var(--text-white);
}

.rffz3tq h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.rffz3tq p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.e2g44io {
  padding: 60px 0;
}

/* ============ 懒加载 ============ */
.lazy {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lazy.loaded {
  opacity: 1;
}

/* ============ 响应式 ============ */
@media (max-width: 1024px) {
  .rzfkl {
    grid-template-columns: repeat(3, 1fr);
  }
  .daqu7eyl {
    grid-template-columns: repeat(2, 1fr);
  }
  .c0t52v0 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wveixg {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .gtw32e {
    height: 60px;
  }

  .ot4mlt2m {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    flex-direction: column;
    padding: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .ot4mlt2m.active {
    display: flex;
  }

  .tp7p7dl {
    display: block;
  }

  .y65p2 {
    height: 380px;
  }

  .etflgb3 h1 {
    font-size: 1.8rem;
  }

  .rzfkl {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .heeww17m {
    grid-template-columns: 1fr;
  }

  .amrdz {
    grid-template-columns: 1fr;
  }

  .c0t52v0 {
    grid-template-columns: 1fr 1fr;
  }

  .daqu7eyl {
    grid-template-columns: 1fr 1fr;
  }

  .ckli77x4 {
    grid-template-columns: 1fr 1fr;
  }

  .zm4x7ekv {
    grid-template-columns: 1fr;
  }

  .bcp7inz {
    grid-template-columns: 1fr;
  }

  .wveixg {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .j70zd h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .rzfkl {
    grid-template-columns: 1fr;
  }

  .c0t52v0 {
    grid-template-columns: 1fr;
  }

  .daqu7eyl {
    grid-template-columns: 1fr;
  }

  .ckli77x4 {
    grid-template-columns: 1fr;
  }

  .y65p2 {
    height: 320px;
  }

  .etflgb3 h1 {
    font-size: 1.5rem;
  }

  .pu43ths {
    flex-direction: column;
  }
}

/* ============ 动画 ============ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* ============ 内页视频列表 ============ */
.video-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 768px) {
  .video-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .video-list-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ 内页文章样式 ============ */
.vay7je {
  max-width: 800px;
  margin: 0 auto;
}

.vay7je h2 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin: 32px 0 16px;
  padding-left: 14px;
  border-left: 4px solid var(--primary);
}

.vay7je h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin: 24px 0 12px;
}

.vay7je p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--text-dark);
}

.vay7je img {
  border-radius: var(--radius);
  margin: 20px 0;
}

/* ============ 标签云 ============ */
.wy2d9dj {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.wy2d9dj a {
  padding: 6px 16px;
  background: rgba(232,69,107,0.08);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.85rem;
  transition: var(--transition);
}

.wy2d9dj a:hover {
  background: var(--primary);
  color: var(--text-white);
}

/* ============ H5视频预览 ============ */
.sr30nl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.c85qtet6:hover .sr30nl {
  opacity: 1;
}

/* ============ 视频徽章 ============ */
.q4uf28 {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  z-index: 3;
  letter-spacing: 0.5px;
}

/* ============ 社区6列网格 ============ */
.w5r2an {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .w5r2an {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .w5r2an {
    grid-template-columns: 1fr;
  }
}

/* ============ 最新动态 ============ */
.ixmowp {
  padding: 70px 0;
  background: var(--card-bg);
}

.vif3l68a {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.oy5vn {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.oy5vn:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.jriphn {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.oy5vn h4 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.5;
}

.oy5vn p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.ftsc8 {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
}

.ftsc8:hover {
  color: var(--secondary);
}

@media (max-width: 768px) {
  .vif3l68a {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ============ 娱乐专区 ============ */
.juqo650 {
  padding: 70px 0;
  background: var(--light-bg);
}

/* ============ Hero数据统计 ============ */
.loudtcxl {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 28px;
}

.vi0chhr {
  text-align: center;
}

.vi0chhr strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.vi0chhr span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 480px) {
  .loudtcxl {
    gap: 20px;
    flex-wrap: wrap;
  }
  .vi0chhr strong {
    font-size: 1.2rem;
  }
}

/* ============ 专家资质标签 ============ */
.c7wgef {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  padding: 0 16px 20px;
}

.c7wgef span {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(232,69,107,0.08);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 500;
}

/* ============ 社交分享固定栏 ============ */
.w1rn7ars {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 30px 0;
  background: var(--light-bg);
}
