/* ===== 糖心vlog 公共样式 ===== */
:root {
  --coral:     #ff5f7e;
  --coral-lt:  #ff8fab;
  --rose:      #c44569;
  --blush:     #ffe0ec;
  --cream:     #fff7f9;
  --petal:     #ffeef4;
  --dusk:      #1a1220;
  --plum:      #3d2535;
  --muted:     #7a6070;
  --card-bg:   #ffffff;
  --shadow-sm: 0 4px 14px rgba(255,100,140,.10);
  --shadow-md: 0 10px 30px rgba(255,100,140,.15);
  --radius-sm: 20px;
  --radius-md: 32px;
  --radius-lg: 48px;
  --font-body: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
  --font-disp: "STKaiti", "KaiTi", "FangSong", serif;
  --transition: .18s cubic-bezier(.4,0,.2,1);
  --content-max: 1200px;
  --gutter: 18px;
  --header-h: 62px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--plum);
  line-height: 1.5;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}
body::before {
  content:'';
  position:fixed; inset:0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(255,140,170,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(255,200,220,.10) 0%, transparent 60%);
  pointer-events:none; z-index:0;
}

/* ===== 顶栏导航 ===== */
.site-header {
  width: 100%;
  position: relative;
  z-index: 100;
}

.navbar {
  background: rgba(255,251,253,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,180,210,.25);
  box-shadow: 0 2px 16px rgba(255,120,160,.08);
}

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

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg,#ffd6e7,#ffb3cc);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 2px 8px rgba(255,100,140,.18);
}

.logo-text {
  font-family: var(--font-body);
  font-size: 1.22rem;
  font-weight: 800;
  background: linear-gradient(130deg,var(--rose),var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: .3px;
}

.nav-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.nav-btn {
  width: 38px;
  height: 38px;
  background: var(--petal);
  border: 1px solid rgba(255,150,180,.35);
  border-radius: 12px;
  color: var(--coral);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.nav-btn:hover { background: var(--blush); transform: translateY(-1px); }
.nav-btn:active { transform: scale(.95); }

.nav-pills {
  display: flex;
  gap: 4px;
  padding: 10px var(--gutter);
  overflow-x: auto;
  flex-wrap: nowrap;
  scrollbar-width: none;
  max-width: var(--content-max);
  margin: 0 auto;
}

.nav-pills::-webkit-scrollbar { display: none; }

.pill {
  flex-shrink: 0;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 600;
  color: var(--muted);
  padding: 7px 13px;
  border-radius: 50px;
  background: white;
  border: 1px solid rgba(255,160,185,.22);
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1.2;
}

.pill:hover { border-color: var(--coral-lt); color: var(--coral); background: #fffafb; }

.pill.active {
  background: linear-gradient(135deg,var(--coral),var(--rose));
  color: white;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(255,90,126,.2);
}

.search-bar {
  display: flex;
  align-items: center;
  background: white;
  border: 1px solid rgba(255,160,185,.28);
  border-radius: 50px;
  padding: 2px 2px 2px 14px;
  margin: 6px auto 14px;
  max-width: calc(var(--content-max) - var(--gutter) * 2);
  transition: var(--transition);
}

.search-bar:focus-within {
  border-color: var(--coral-lt);
  box-shadow: 0 0 0 3px rgba(255,100,140,.1);
}

.search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: .86rem;
  font-family: var(--font-body);
  color: var(--plum);
  padding: 8px 0;
  min-width: 0;
}

.search-bar input::placeholder { color: #c0a8b4; }

.search-btn {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg,var(--coral),var(--rose));
  border: none;
  border-radius: 50px;
  color: white;
  font-size: .82rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.search-btn:hover { transform: scale(1.04); }

/* 404 等极简顶栏 */
.site-header--minimal .navbar {
  border-bottom: none;
  box-shadow: none;
}

.site-header--minimal .navbar-inner,
.site-header--minimal .navbar {
  display: flex;
  align-items: center;
  height: var(--header-h);
  padding: 0 var(--gutter);
  max-width: var(--content-max);
  margin: 0 auto;
}

/* 主容器 */
main { max-width:var(--content-max); margin:0 auto; padding:0 0 40px; position:relative; z-index:1; }

/* 页面 hero */
.page-hero {
  padding:28px var(--gutter) 20px;
  background:linear-gradient(135deg,rgba(255,200,220,.15),rgba(255,240,248,.1));
}
.page-hero .eyebrow {
  display:inline-flex; align-items:center; gap:6px;
  background:var(--petal); border:1px solid rgba(255,150,180,.3);
  border-radius:50px; padding:5px 14px;
  font-size:.78rem; color:var(--rose); font-weight:600; margin-bottom:12px;
}
.page-hero h1 {
  font-family:var(--font-disp); font-size:2.4rem; line-height:1.2;
  background:linear-gradient(135deg,var(--rose),var(--coral));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text; margin-bottom:8px;
}
.page-hero p { font-size:.95rem; color:var(--muted); line-height:1.7; }

/* 区块标题 */
.sec-head { display:flex; justify-content:space-between; align-items:center; padding:0 var(--gutter); margin:28px 0 14px; }
.sec-head h2 {
  font-family:var(--font-disp); font-size:1.7rem; color:var(--plum); position:relative;
}
.sec-head h2::after {
  content:''; position:absolute; bottom:-3px; left:0;
  width:40px; height:3px;
  background:linear-gradient(90deg,var(--coral),transparent); border-radius:2px;
}
.sec-more {
  text-decoration:none; font-size:.85rem; color:var(--coral); font-weight:600;
  display:flex; align-items:center; gap:4px; transition:var(--transition);
}
.sec-more:hover { gap:8px; }

/* 视频卡片 */
.vcard {
  background:var(--card-bg); border-radius:var(--radius-md); overflow:hidden;
  border:1px solid rgba(255,160,190,.2); box-shadow:var(--shadow-sm);
  transition:var(--transition); cursor:pointer;
}
.vcard:hover { transform:translateY(-3px); box-shadow:var(--shadow-md); }
.vcard-thumb {
  position:relative; height:210px;
  background-size:cover; background-position:center; overflow:hidden;
}
.vcard-thumb::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to top,rgba(30,10,22,.45) 0%,transparent 50%);
}
.vcard-play {
  position:absolute; top:14px; right:14px;
  width:46px; height:46px; background:rgba(255,255,255,.88);
  backdrop-filter:blur(6px); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; color:var(--coral); z-index:2;
  border:1.5px solid white; transition:var(--transition);
}
.vcard:hover .vcard-play { background:white; transform:scale(1.08); }
.vcard-dur {
  position:absolute; bottom:14px; right:14px;
  background:rgba(0,0,0,.55); backdrop-filter:blur(4px);
  color:white; font-size:.75rem; font-weight:600;
  padding:3px 10px; border-radius:50px; z-index:2;
}
.vcard-cat {
  position:absolute; bottom:14px; left:14px;
  background:var(--coral); color:white; font-size:.7rem; font-weight:700;
  padding:3px 10px; border-radius:50px; z-index:2;
}
.vcard-body { padding:18px 18px 20px; }
.vcard-title { font-size:1.15rem; font-weight:700; margin-bottom:6px; color:var(--plum); line-height:1.4; }
.vcard-desc {
  font-size:.875rem; color:var(--muted); margin-bottom:14px;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; line-height:1.55;
}
.vcard-meta { display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.vcard-avatar { width:36px; height:36px; border-radius:50%; object-fit:cover; border:2px solid var(--blush); }
.vcard-author { font-weight:600; font-size:.9rem; color:var(--plum); }
.vcard-stats { display:flex; gap:14px; font-size:.78rem; color:var(--muted); margin-bottom:12px; }
.vcard-stats span { display:flex; align-items:center; gap:4px; }
.vcard-stats .fa-heart { color:var(--coral-lt); }

.videos-list { display:flex; flex-direction:column; gap:18px; padding:0 var(--gutter); }
.creators-scroll, .reviews-scroll {
  display:flex; gap:14px; overflow-x:auto; padding:4px var(--gutter) 20px; scrollbar-width:none;
}
.creators-scroll::-webkit-scrollbar, .reviews-scroll::-webkit-scrollbar { display:none; }
.features-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; padding:0 var(--gutter); }
.stories-list { display:flex; flex-direction:column; gap:18px; padding:0 var(--gutter); }
.stats-row { display:flex; gap:10px; overflow-x:auto; padding:0 var(--gutter) 20px; scrollbar-width:none; }
.stats-row::-webkit-scrollbar { display:none; }

/* 标签 */
.tags { display:flex; gap:8px; flex-wrap:wrap; }
.tag {
  background:var(--petal); color:var(--rose); font-size:.72rem; font-weight:600;
  padding:5px 14px; border-radius:50px; border:1px solid rgba(255,120,160,.2);
}

/* 按钮 */
.btn-primary {
  background:linear-gradient(135deg,var(--coral),var(--rose));
  color:white; border:none; padding:14px 28px; border-radius:50px;
  font-size:.95rem; font-weight:600; font-family:var(--font-body); cursor:pointer;
  box-shadow:0 6px 18px rgba(255,90,126,.4); transition:var(--transition);
  display:inline-flex; align-items:center; gap:8px;
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 10px 24px rgba(255,90,126,.45); }
.btn-ghost {
  background:white; color:var(--rose);
  border:1.5px solid rgba(255,100,140,.4); padding:13px 24px;
  border-radius:50px; font-size:.95rem; font-weight:600;
  font-family:var(--font-body); cursor:pointer; transition:var(--transition);
}
.btn-ghost:hover { background:var(--petal); transform:translateY(-2px); }

/* 卡片通用 */
.card {
  background:white; border-radius:var(--radius-md);
  border:1px solid rgba(255,160,190,.2); box-shadow:var(--shadow-sm);
  transition:var(--transition);
}
.card:hover { transform:translateY(-3px); box-shadow:var(--shadow-md); }

/* 页脚 */
footer {
  background: var(--dusk);
  color: #9e8a96;
  padding: 40px var(--gutter) calc(28px + env(safe-area-inset-bottom, 0px));
}
.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  padding-bottom: 28px;
}
.footer-brand-col { flex-shrink: 0; }
.footer-brand {
  font-family: var(--font-disp);
  font-size: 1.65rem;
  color: #e8c4d4;
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.footer-tagline {
  font-size: .84rem;
  color: #9a8490;
  line-height: 1.6;
  margin: 0;
}
.footer-nav-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
  width: 100%;
  max-width: 340px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-col a,
.footer-links a {
  color: #b5a3ad;
  text-decoration: none;
  font-size: .84rem;
  transition: var(--transition);
  padding: 2px 0;
  white-space: nowrap;
}
.footer-col a:hover,
.footer-links a:hover { color: var(--coral-lt); }
/* 兼容旧结构 */
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  width: 100%;
  max-width: 360px;
  justify-items: center;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 28px;
  padding-top: 24px;
  font-size: .75rem;
  text-align: center;
  line-height: 1.85;
  color: #8a7580;
}
.footer-bottom p { margin: 0; }
.footer-slogan { margin-top: 6px !important; color: #7a6670; }
.footer-icp { font-size: .72rem; color: #6e5a64; margin-top: 8px !important; }

/* 返回顶部 */
#backTop {
  position:fixed;
  bottom:calc(24px + env(safe-area-inset-bottom, 0px));
  right:calc(20px + env(safe-area-inset-right, 0px));
  width:50px; height:50px;
  background:linear-gradient(135deg,var(--coral),var(--rose));
  color:white; border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; box-shadow:0 6px 18px rgba(255,90,126,.5);
  opacity:0; pointer-events:none; transition:var(--transition);
  cursor:pointer; z-index:200; border:none;
}
#backTop.show { opacity:1; pointer-events:auto; }
#backTop:hover { transform:translateY(-3px); }

/* 入场动画 */
.fade-up { opacity:0; transform:translateY(24px); transition:opacity .5s ease,transform .5s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }

/* ===== 面包屑 ===== */
.breadcrumb {
  max-width:var(--content-max); margin:0 auto; padding:10px var(--gutter) 0;
  font-size:.82rem; color:var(--muted); position:relative; z-index:1;
}
.breadcrumb a { color:var(--coral); text-decoration:none; font-weight:600; }
.breadcrumb a:hover { text-decoration:underline; }
.breadcrumb span { color:var(--plum); font-weight:600; }

/* ===== SEO 介绍文本 ===== */
.seo-intro { max-width:var(--content-max); margin:0 auto; padding:0 var(--gutter) 28px; position:relative; z-index:1; }
.seo-intro-inner {
  background:white; border-radius:var(--radius-md);
  border:1px solid rgba(255,160,190,.2); box-shadow:var(--shadow-sm);
  padding:22px 20px;
}
.seo-intro h2 { font-family:var(--font-disp); font-size:1.5rem; color:var(--plum); margin-bottom:10px; }
.seo-intro p { font-size:.875rem; color:var(--muted); line-height:1.75; margin-bottom:10px; }
.seo-intro p:last-child { margin-bottom:0; }
.seo-intro a { color:var(--coral); font-weight:600; text-decoration:none; }
.seo-intro a:hover { text-decoration:underline; }

/* ===== FAQ 常见问题 ===== */
.faq-section {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter) 28px;
  position: relative;
  z-index: 1;
}

.faq-section .sec-head { padding-top: 8px; }

.faq-intro {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.65;
  padding: 0 var(--gutter);
  margin: -4px 0 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 var(--gutter);
}

.faq-item {
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,160,190,.2);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-q {
  padding: 15px 18px;
  font-weight: 700;
  font-size: .92rem;
  color: var(--plum);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  user-select: none;
}

.faq-q:hover { color: var(--coral); }

.faq-q i {
  transition: var(--transition);
  color: var(--coral);
  flex-shrink: 0;
  font-size: .75rem;
}

.faq-q.open { color: var(--coral); }
.faq-q.open i { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-a.open { max-height: 600px; }

.faq-a-inner {
  padding: 0 18px 16px;
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.75;
}

.faq-a-inner a {
  color: var(--coral);
  font-weight: 600;
  text-decoration: none;
}

.faq-a-inner a:hover { text-decoration: underline; }

.faq-more {
  text-align: center;
  padding: 18px var(--gutter) 0;
}

.faq-more a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--coral);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
}

.faq-more a:hover { text-decoration: underline; }

.faq-group-title {
  font-size: .78rem;
  font-weight: 700;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 20px var(--gutter) 10px;
}

.faq-group-title:first-child { padding-top: 0; }

/* ===== 法律/合规页 ===== */
.legal-content {
  padding: 0 var(--gutter) 40px;
  max-width: var(--content-max);
  margin: 0 auto;
}
.legal-content h1 {
  font-family: var(--font-disp);
  font-size: 2rem;
  background: linear-gradient(135deg, var(--rose), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 24px 0 8px;
}
.legal-updated { font-size: .82rem; color: var(--muted); margin-bottom: 24px; }
.legal-section {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,160,190,.2);
  box-shadow: var(--shadow-sm);
  padding: 22px 20px;
  margin-bottom: 16px;
}
.legal-section h2 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--plum); }
.legal-section p, .legal-section li {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 8px;
}
.legal-section ul { padding-left: 20px; margin-bottom: 8px; }
.legal-section li:last-child { margin-bottom: 0; }
.legal-section a { color: var(--coral); font-weight: 600; text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }

/* ===== 信任与合规模块 ===== */
.trust-section {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter) 28px;
  position: relative;
  z-index: 1;
}
.trust-inner {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,160,190,.2);
  box-shadow: var(--shadow-sm);
  padding: 24px 22px;
  text-align: center;
}
.trust-inner h2 {
  font-family: var(--font-disp);
  font-size: 1.35rem;
  color: var(--plum);
  margin-bottom: 6px;
}
.trust-inner > p {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.6;
}
.trust-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}
.trust-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  background: var(--petal);
  border: 1px solid rgba(255,160,190,.25);
  border-radius: var(--radius-sm);
  color: var(--plum);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.trust-links a:hover {
  background: var(--blush);
  color: var(--coral);
  border-color: var(--coral-lt);
  transform: translateY(-1px);
}
.trust-links a i { color: var(--coral); font-size: .78rem; }

/* ===== 404 / 搜索页 ===== */
.page-msg { text-align:center; padding:48px 18px 32px; }
.page-msg h1 {
  font-family:var(--font-disp); font-size:2rem;
  background:linear-gradient(135deg,var(--rose),var(--coral));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  margin-bottom:10px;
}
.page-msg p { font-size:.95rem; color:var(--muted); margin-bottom:20px; line-height:1.6; }
.search-results { padding:0 var(--gutter) 32px; max-width:var(--content-max); margin:0 auto; }
.search-item {
  background:white; border-radius:var(--radius-md);
  border:1px solid rgba(255,160,190,.2); box-shadow:var(--shadow-sm);
  padding:16px 18px; margin-bottom:12px; transition:var(--transition);
}
.search-item:hover { transform:translateY(-2px); box-shadow:var(--shadow-md); }
.search-item a { text-decoration:none; color:inherit; display:block; }
.search-item h3 { font-size:1rem; font-weight:700; color:var(--plum); margin-bottom:4px; }
.search-item p { font-size:.82rem; color:var(--muted); line-height:1.5; }
.search-empty { text-align:center; padding:24px 18px; color:var(--muted); font-size:.9rem; }
/* ===== 视频详情页 ===== */
.video-detail-cover {
  position:relative; height:240px; margin:0 var(--gutter) 20px;
  border-radius:var(--radius-md); overflow:hidden;
  background-size:cover; background-position:center;
  box-shadow:var(--shadow-md);
}
.video-detail-cover::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to top,rgba(30,10,22,.5) 0%,transparent 55%);
}
.video-detail-cover .play-badge {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:64px; height:64px; background:rgba(255,255,255,.9);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; color:var(--coral); z-index:2;
  box-shadow:0 8px 24px rgba(0,0,0,.2);
}
.video-detail-cover .dur-badge {
  position:absolute; bottom:14px; right:14px; z-index:2;
  background:rgba(0,0,0,.6); color:white; font-size:.78rem; font-weight:600;
  padding:4px 12px; border-radius:50px;
}
.video-detail-body { padding:0 var(--gutter) 32px; max-width:var(--content-max); margin:0 auto; }
.video-detail-body h1 { font-size:1.5rem; font-weight:700; color:var(--plum); line-height:1.4; margin-bottom:12px; }
.video-detail-meta {
  display:flex; flex-wrap:wrap; align-items:center; gap:12px;
  margin-bottom:20px; padding-bottom:16px;
  border-bottom:1px solid rgba(255,160,190,.2);
}
.video-detail-meta img { width:40px; height:40px; border-radius:50%; object-fit:cover; border:2px solid var(--blush); }
.video-detail-meta .author-name { font-weight:600; font-size:.95rem; }
.video-detail-meta .stats { display:flex; gap:14px; font-size:.8rem; color:var(--muted); margin-left:auto; }
.video-detail-meta .stats span { display:flex; align-items:center; gap:4px; }
.video-article { background:white; border-radius:var(--radius-md); border:1px solid rgba(255,160,190,.2); box-shadow:var(--shadow-sm); padding:22px 20px; margin-bottom:20px; }
.video-article h2 { font-size:1.1rem; font-weight:700; color:var(--plum); margin:20px 0 10px; }
.video-article h2:first-child { margin-top:0; }
.video-article p { font-size:.9rem; color:var(--muted); line-height:1.8; margin-bottom:12px; }
.video-article ul { padding-left:20px; margin-bottom:12px; }
.video-article li { font-size:.9rem; color:var(--muted); line-height:1.7; margin-bottom:6px; }
.video-related { padding:0 var(--gutter) 24px; max-width:var(--content-max); margin:0 auto; }
.video-related h2 { font-family:var(--font-disp); font-size:1.4rem; color:var(--plum); margin-bottom:14px; }
  .related-list { display:flex; flex-direction:column; gap:12px; }
  .related-item {
  display:flex; gap:14px; background:white; border-radius:var(--radius-md);
  border:1px solid rgba(255,160,190,.2); padding:12px; text-decoration:none; color:inherit;
  transition:var(--transition); box-shadow:var(--shadow-sm);
}
.related-item:hover { transform:translateY(-2px); box-shadow:var(--shadow-md); }
.related-thumb { width:100px; height:72px; border-radius:12px; background-size:cover; background-position:center; flex-shrink:0; }
.related-info h3 { font-size:.95rem; font-weight:700; color:var(--plum); margin-bottom:4px; }
.related-info p { font-size:.78rem; color:var(--muted); }

/* ===== 资讯文章 ===== */
.article-list {
  display: flex; flex-direction: column; gap: 16px;
  padding: 0 var(--gutter) 32px; max-width: var(--content-max); margin: 0 auto;
}
.article-card {
  display: flex; gap: 16px; background: white;
  border-radius: var(--radius-md); border: 1px solid rgba(255,160,190,.2);
  box-shadow: var(--shadow-sm); overflow: hidden; text-decoration: none; color: inherit;
  transition: var(--transition);
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.article-card-thumb {
  width: 120px; min-height: 120px; flex-shrink: 0;
  background-size: cover; background-position: center;
}
.article-card-body { padding: 16px 16px 16px 0; flex: 1; min-width: 0; }
.article-card-body h2 {
  font-size: 1rem; font-weight: 700; color: var(--plum);
  line-height: 1.45; margin: 6px 0 8px;
}
.article-card-body p {
  font-size: .82rem; color: var(--muted); line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.article-card-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 10px; font-size: .75rem; color: var(--muted);
}
.article-card-meta span:last-child { color: var(--coral); font-weight: 600; }
.article-tag {
  display: inline-block; font-size: .7rem; font-weight: 700;
  color: var(--coral); background: var(--petal); padding: 3px 10px;
  border-radius: 50px; letter-spacing: .3px;
}
.article-detail {
  max-width: var(--content-max); margin: 0 auto;
  padding: 0 var(--gutter) 24px;
}
.article-header { margin-bottom: 16px; }
.article-header h1 {
  font-size: 1.55rem; font-weight: 700; color: var(--plum);
  line-height: 1.4; margin: 10px 0 12px;
}
.article-meta {
  display: flex; flex-wrap: wrap; gap: 12px;
  font-size: .8rem; color: var(--muted);
}
.article-cover {
  height: 200px; border-radius: var(--radius-md);
  background-size: cover; background-position: center;
  margin-bottom: 20px; border: 1px solid rgba(255,160,190,.2);
}
.article-body {
  background: white; border-radius: var(--radius-md);
  border: 1px solid rgba(255,160,190,.2); box-shadow: var(--shadow-sm);
  padding: 24px 22px; margin-bottom: 28px;
}
.article-body h2 {
  font-size: 1.1rem; font-weight: 700; color: var(--plum);
  margin: 24px 0 12px; line-height: 1.4;
}
.article-body h2:first-child { margin-top: 0; }
.article-body p {
  font-size: .9rem; color: var(--muted); line-height: 1.85; margin-bottom: 14px;
}
.article-body p:last-child { margin-bottom: 0; }
.article-related {
  max-width: var(--content-max); margin: 0 auto;
  padding: 0 var(--gutter) 32px;
}
.article-related h2 {
  font-family: var(--font-disp); font-size: 1.35rem;
  color: var(--plum); margin-bottom: 14px;
}

/* ===== 分类聚合页 ===== */
.category-intro {
  background:white; border-radius:var(--radius-md); border:1px solid rgba(255,160,190,.2);
  box-shadow:var(--shadow-sm); padding:22px 20px; margin:0 var(--gutter) 24px;
}
.category-intro p { font-size:.9rem; color:var(--muted); line-height:1.75; margin-bottom:10px; }
.category-intro p:last-child { margin-bottom:0; }
.category-list { padding:0 var(--gutter) 32px; display:flex; flex-direction:column; gap:14px; }
