/* ====================================================
   每日吃瓜 - 完整样式文件
   原创配色：粉红#FF6B9D / 紫色#6B5B95 / 金黄#FFD700 / 青色#00D4FF
   ==================================================== */

/* ---- CSS变量 ---- */
:root {
  --primary: #FF6B9D;
  --primary-dark: #e0507f;
  --secondary: #6B5B95;
  --accent: #FFD700;
  --cyan: #00D4FF;
  --bg-light: #FFF5F8;
  --bg-card: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-muted: #6B7280;
  --border: #F0E6EE;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(255,107,157,0.1);
  --shadow-lg: 0 12px 40px rgba(107,91,149,0.15);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- 重置 ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select {
  font-family: inherit;
  font-size: 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  width: 100%;
  outline: none;
  transition: var(--transition);
  background: #fff;
  color: var(--text-dark);
}
input:focus, textarea:focus, select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,107,157,0.15); }
textarea { resize: vertical; min-height: 120px; }

/* ---- 布局 ---- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 70px 0; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.text-center { text-align: center; }

/* ---- 按钮 ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 4px 15px rgba(255,107,157,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,157,0.5); }
.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), var(--cyan));
  color: #fff;
  box-shadow: 0 4px 15px rgba(107,91,149,0.35);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(107,91,149,0.5); }
.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-sm { padding: 7px 16px; font-size: 13px; }

/* ---- 顶部公告栏 ---- */
.top-bar { background: linear-gradient(90deg, var(--secondary), var(--primary)); color: #fff; padding: 8px 0; font-size: 13px; }
.ej8wys { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; }
.top-bar a { color: rgba(255,255,255,0.9); font-weight: 600; }
.top-bar a:hover { color: var(--accent); }

/* ---- 导航栏 ---- */
.header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.akc2x { display: flex; align-items: center; gap: 20px; height: 68px; }
.npnbif2 { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.iok8d2 { width: 44px; height: 44px; border-radius: 10px; object-fit: contain; }
.sneyqvpb {
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}
.q2igavom { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.q2igavom a {
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
  white-space: nowrap;
}
.q2igavom a:hover, .q2igavom a.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}
.aj26qc2 { display: flex; align-items: center; background: var(--bg-light); border-radius: 50px; padding: 6px 6px 6px 16px; gap: 6px; min-width: 220px; }
.aj26qc2 input { background: transparent; border: none; box-shadow: none; padding: 0; font-size: 13px; width: 100%; }
.aj26qc2 input:focus { box-shadow: none; }
.cjscw6m8 { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.cjscw6m8:hover { transform: scale(1.1); }
.qpnlv { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.qpnlv span { display: block; width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ---- 面包屑 ---- */
.breadcrumb { background: var(--bg-light); border-bottom: 1px solid var(--border); padding: 10px 0; }
.v9tlf { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); }
.v9tlf li::after { content: '›'; margin-left: 8px; }
.v9tlf li:last-child::after { display: none; }
.v9tlf a { color: var(--primary); }
.v9tlf a:hover { text-decoration: underline; }

/* ---- Hero Banner ---- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('/assets/images/hero_banner.jpg') center/cover no-repeat;
  opacity: 0.35;
}
.40gg7jr {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(107,91,149,0.7) 0%, rgba(255,107,157,0.5) 100%);
}
.27slr { position: relative; z-index: 2; color: #fff; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff; padding: 6px 18px; border-radius: 50px; font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { font-size: 16px; opacity: 0.9; margin-bottom: 30px; max-width: 560px; line-height: 1.8; }
.hglygg0 { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.unuf7tr { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .num { display: block; font-size: 26px; font-weight: 900; color: var(--accent); }
.hero-stat .label { font-size: 12px; opacity: 0.8; }

/* ---- 通知栏 ---- */
.notice-bar {
  background: linear-gradient(135deg, #fff5f8, #f0e6ff);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  flex-wrap: wrap;
}

/* ---- 统计栏 ---- */
.stats-bar { background: linear-gradient(135deg, var(--secondary), var(--primary)); padding: 30px 0; color: #fff; }
.n6bfc { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mkfvk { text-align: center; }
.mkfvk .num { display: block; font-size: clamp(22px, 3vw, 34px); font-weight: 900; color: var(--accent); }
.mkfvk .label { font-size: 13px; opacity: 0.85; margin-top: 4px; }

/* ---- Section Header ---- */
.section-header { text-align: center; margin-bottom: 40px; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255,107,157,0.12), rgba(107,91,149,0.12));
  color: var(--primary);
  border: 1px solid rgba(255,107,157,0.3);
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}
.2pctzoy1 {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.2pctzoy1 span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.7fith { font-size: 15px; color: var(--text-muted); max-width: 680px; margin: 0 auto; line-height: 1.8; }

/* ---- 视频网格 ---- */
.zex2xg4q { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.67cgo6 {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--border);
}
.67cgo6:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.mh5gg { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #1a1a2e; }
.mh5gg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.67cgo6:hover .mh5gg img { transform: scale(1.05); }
.play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3);
  color: #fff; font-size: 36px;
  opacity: 0; transition: var(--transition);
}
.67cgo6:hover .play-btn { opacity: 1; }
.h0zbsgj {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.75); color: #fff;
  padding: 2px 8px; border-radius: 4px; font-size: 12px; font-weight: 600;
}
.video-tag {
  position: absolute; top: 10px; right: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; padding: 3px 10px; border-radius: 50px; font-size: 11px; font-weight: 700;
}
.d6bw1abo { padding: 16px; }
.hyll46 { font-size: 14px; font-weight: 700; color: var(--text-dark); line-height: 1.5; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.oybo2r { display: flex; gap: 12px; font-size: 12px; color: var(--text-muted); margin-bottom: 8px; flex-wrap: wrap; }
.video-stats { display: flex; gap: 10px; font-size: 12px; color: var(--text-muted); flex-wrap: wrap; }

/* ---- 功能卡片网格 ---- */
.f87ts98 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.raaab {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.raaab:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.5n9u37 {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 16px;
}
.raaab h3 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.raaab p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ---- 专家卡片 ---- */
.ilrmp9lf { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.7uzf0c {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.7uzf0c:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.expert-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #f0e6ff; }
.expert-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.7uzf0c:hover .expert-img-wrap img { transform: scale(1.05); }
.expert-badge {
  position: absolute; top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 700;
}
.expert-info { padding: 20px; }
.6og81e { font-size: 18px; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.8tn7qu { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.6epc8g { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.expert-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.expert-tag { background: rgba(255,107,157,0.1); color: var(--primary); padding: 3px 10px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.expert-actions { display: flex; gap: 8px; }

/* ---- 合作伙伴 ---- */
.2d48ak { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.9eofq2b6 {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}
.9eofq2b6:hover { border-color: var(--primary); color: var(--primary); background: var(--bg-light); transform: translateY(-2px); }

/* ---- 步骤卡片 ---- */
.nhm6fo3l { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.fdnhmy0p {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.fdnhmy0p:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hhey4c {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; font-size: 22px; font-weight: 900;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.fdnhmy0p h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.fdnhmy0p p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ---- 联系卡片 ---- */
.ogt0k { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; }
.2i4n4c {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.2i4n4c:hover { transform: translateY(-4px); border-color: var(--primary); }
.z1p27n { font-size: 32px; display: block; margin-bottom: 12px; }
.2i4n4c h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.2i4n4c p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.bcoumn5 { display: flex; gap: 30px; justify-content: center; margin-top: 20px; }
.el0mj { text-align: center; }
.el0mj img { border-radius: var(--radius-sm); border: 2px solid var(--border); margin-bottom: 8px; }
.el0mj p { font-size: 13px; color: var(--text-muted); font-weight: 600; }

/* ---- 评价卡片 ---- */
.9n8n36dh { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.4xefemf8 {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.4xefemf8:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.roaht { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.jpxvp {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.qj2ahdt { font-weight: 700; font-size: 15px; color: var(--text-dark); }
.0op8t5s { font-size: 12px; color: var(--text-muted); }
.w73qw6 { color: var(--accent); font-size: 16px; margin-bottom: 10px; letter-spacing: 2px; }
.bvxq71 { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
.nb4tglc { font-size: 12px; color: var(--text-muted); }

/* ---- FAQ ---- */
.h1am33x { max-width: 800px; margin: 0 auto; }
.b4l5dta1 { border: 1.5px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.n5uq3la {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--text-dark);
  transition: var(--transition);
}
.n5uq3la:hover { background: var(--bg-light); color: var(--primary); }
.faq-question.active { background: linear-gradient(135deg, rgba(255,107,157,0.08), rgba(107,91,149,0.08)); color: var(--primary); }
.gc8f7pcu { font-size: 20px; font-weight: 300; color: var(--primary); transition: var(--transition); }
.faq-question.active .gc8f7pcu { transform: rotate(45deg); }
.vxiknplt { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer.open { max-height: 300px; }
.vxiknplt p { padding: 0 20px 18px; font-size: 14px; color: var(--text-muted); line-height: 1.8; }

/* ---- 标签云 ---- */
.3w48kiks { display: flex; flex-wrap: wrap; gap: 8px; }
.de804lh9 {
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--text-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.de804lh9:hover, .tag-item.active { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; border-color: transparent; }

/* ---- 页面Hero ---- */
.doh06 {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.0gdf97qw h1 { font-size: clamp(26px, 4vw, 42px); font-weight: 900; margin-bottom: 12px; }
.0gdf97qw p { font-size: 16px; opacity: 0.9; max-width: 600px; margin: 0 auto; }

/* ---- 视频详情页 ---- */
.44uggnk { display: grid; grid-template-columns: 1fr 340px; gap: 30px; align-items: start; }
.c1mrr3 {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.c1mrr3 iframe { width: 100%; height: 100%; border: none; }
.adtdc { font-size: 20px; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; line-height: 1.4; }
.5hfpls6 { display: flex; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.i96x5j8 { background: var(--bg-light); border-radius: var(--radius-sm); padding: 16px; font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.mw6ep { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.qcbl1k { display: flex; flex-direction: column; gap: 12px; }
.kj215swb { display: flex; gap: 10px; padding: 10px; border-radius: var(--radius-sm); transition: var(--transition); }
.kj215swb:hover { background: var(--bg-light); }
.g45jswy { width: 100px; height: 60px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.i5uhw { flex: 1; }
.dtxcjfgi { font-size: 13px; font-weight: 600; color: var(--text-dark); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 4px; }
.umuo2fii { font-size: 12px; color: var(--text-muted); }

/* ---- 联系表单 ---- */
.1qmdl { background: var(--bg-card); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.fg56itvs { margin-bottom: 18px; }
.fg56itvs label { display: block; font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }

/* ---- 页脚 ---- */
.footer { background: linear-gradient(135deg, #1a1a2e, #16213e); color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.ec3noko { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.bdq518 p { font-size: 14px; line-height: 1.8; margin-top: 14px; color: rgba(255,255,255,0.6); }
.ogwuig h5 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.ogwuig ul li { margin-bottom: 8px; }
.ogwuig ul li a { font-size: 13px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.ogwuig ul li a:hover { color: var(--primary); padding-left: 4px; }
.4wgoq { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.tvw1uaky {
  padding: 5px 14px; border-radius: 50px; font-size: 12px; font-weight: 600;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}
.tvw1uaky:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.idgre9 {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.idgre9 a { color: rgba(255,255,255,0.5); }
.idgre9 a:hover { color: var(--primary); }

/* ---- 动画 ---- */
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.xa9kmx { animation: fadeUp 0.6s ease forwards; }

/* ---- 懒加载图片 ---- */
img[data-src] { opacity: 0; transition: opacity 0.4s ease; }
img.loaded { opacity: 1; }

/* ---- 响应式 ---- */
@media (max-width: 1024px) {
  .zex2xg4q { grid-template-columns: repeat(2, 1fr); }
  .f87ts98 { grid-template-columns: repeat(2, 1fr); }
  .ilrmp9lf { grid-template-columns: repeat(2, 1fr); }
  .2d48ak { grid-template-columns: repeat(4, 1fr); }
  .nhm6fo3l { grid-template-columns: repeat(2, 1fr); }
  .ogt0k { grid-template-columns: repeat(2, 1fr); }
  .9n8n36dh { grid-template-columns: repeat(2, 1fr); }
  .ec3noko { grid-template-columns: 1fr 1fr; }
  .n6bfc { grid-template-columns: repeat(2, 1fr); }
  .44uggnk { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .akc2x { gap: 12px; }
  .q2igavom {
    display: none;
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
    flex-direction: column; padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .q2igavom a { padding: 12px 20px; border-radius: var(--radius-sm); width: 100%; }
  .qpnlv { display: flex; }
  .aj26qc2 { display: none; }
  .zex2xg4q { grid-template-columns: 1fr; }
  .f87ts98 { grid-template-columns: 1fr; }
  .ilrmp9lf { grid-template-columns: 1fr; }
  .2d48ak { grid-template-columns: repeat(2, 1fr); }
  .nhm6fo3l { grid-template-columns: 1fr; }
  .ogt0k { grid-template-columns: 1fr; }
  .9n8n36dh { grid-template-columns: 1fr; }
  .ec3noko { grid-template-columns: 1fr; }
  .n6bfc { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 500px; }
  .unuf7tr { gap: 16px; }
  .ej8wys { flex-direction: column; gap: 6px; font-size: 12px; }
  .ioh45 { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .section-padding { padding: 50px 0; }
  .hero { min-height: 420px; }
  .hglygg0 { flex-direction: column; }
  .n6bfc { grid-template-columns: repeat(2, 1fr); }
  .2d48ak { grid-template-columns: repeat(2, 1fr); }
  .idgre9 { flex-direction: column; text-align: center; }
}

/* ====================================================
   每日吃瓜 - 新增模块样式（修复版）
   ==================================================== */

/* ---- 标签云栏 ---- */
.w61mw {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.kd73nq14 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
}

/* ---- 直播创作者展示区 ---- */
.live-creator-section {
  background: linear-gradient(135deg, #fff5f8 0%, #f0ebff 100%);
}
.0papqm {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.3r7f9bei {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.3r7f9bei:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.j6041 {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.j6041 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.3r7f9bei:hover .j6041 img {
  transform: scale(1.05);
}
.lvgtu {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.1x3qwl6 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,50,50,0.85);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(4px);
}
.35vf8mqo {
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
.osietv0o {
  padding: 16px;
}
.1le6n {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.ns0r1e {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}
.6ow050fp {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.6ow050fp span {
  background: var(--bg-light);
  color: var(--secondary);
  border: 1px solid var(--border);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
}

/* ---- 步骤卡片 ---- */
.nhm6fo3l {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fdnhmy0p {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.fdnhmy0p:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.hhey4c {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 15px rgba(255,107,157,0.35);
}
.fdnhmy0p h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.fdnhmy0p p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- 联系卡片 ---- */
.ogt0k {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.2i4n4c {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.2i4n4c:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.z1p27n {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
}
.2i4n4c h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.2i4n4c p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.bcoumn5 {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 20px;
}
.el0mj {
  text-align: center;
}
.el0mj img {
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  margin: 0 auto;
}
.el0mj p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 600;
}

/* ---- 合作伙伴 ---- */
.2d48ak {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.9eofq2b6 {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  cursor: default;
}
.9eofq2b6:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--bg-light);
  transform: translateY(-2px);
}

/* ---- 页脚大Logo ---- */
.93m6ok3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.ki3r7f0 {
  border-radius: 16px;
  object-fit: contain;
  background: rgba(255,255,255,0.1);
  padding: 4px;
}
.3paqf {
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- 响应式补充 ---- */
@media (max-width: 1024px) {
  .0papqm { grid-template-columns: repeat(2, 1fr); }
  .nhm6fo3l { grid-template-columns: repeat(2, 1fr); }
  .ogt0k { grid-template-columns: repeat(2, 1fr); }
  .2d48ak { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .0papqm { grid-template-columns: 1fr; }
  .nhm6fo3l { grid-template-columns: 1fr; }
  .ogt0k { grid-template-columns: 1fr; }
  .2d48ak { grid-template-columns: repeat(2, 1fr); }
  .w61mw { flex-direction: column; align-items: flex-start; }
  .bcoumn5 { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .0papqm { grid-template-columns: 1fr; }
  .2d48ak { grid-template-columns: repeat(2, 1fr); }
  .ki3r7f0 { width: 80px; height: 80px; }
}
