/* l2po8dff8713 | v8.30 */
/* ========================================
   主样式表 - 明星绯闻新闻视频网站
   移动优先响应式设计
   ======================================== */

/* CSS变量 */
:root {
  --primary: #dc3250;
  --primary-dark: #b0283f;
  --secondary: #1a1a2e;
  --accent: #f5a623;
  --bg-dark: #0f0f1a;
  --bg-card: #1c1c30;
  --bg-card-hover: #252540;
  --text-primary: #f0f0f5;
  --text-secondary: #a0a0b8;
  --text-muted: #6a6a80;
  --border-color: #2a2a45;
  --gradient-1: linear-gradient(135deg, #dc3250 0%, #f5a623 100%);
  --gradient-2: linear-gradient(135deg, #1a1a2e 0%, #2d2d50 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --font-main: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
/* cuiamj0 */
body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.75;
  min-height: 100vh;
  overflow-x: hidden;
}
/* u60u5vp7 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

/* 容器 */
.z53kvng {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ========== 顶部导航 ========== */
.yqikuex {
  background: var(--secondary);
  border-bottom: 2px solid var(--primary);
  padding: 12px 0;
  position: relative;
  z-index: 100;
}
/* sa8rz */
.ykmk10l3x {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

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

._bnv7x1yb span {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-left: 8px;
}

/* 汉堡菜单 */
.css-gjq49f {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.css-gjq49f span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text-primary);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.el-0937vo {
  display: none;
  width: 100%;
  padding-top: 10px;
}

.el-0937vo.active {
  display: block;
}

.el-0937vo ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.el-0937vo li a {
  display: block;
  padding: 10px 14px;
  color: var(--text-primary);
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}
/* 48l9yp7gf */
.el-0937vo li a:hover,
.el-0937vo li a.active {
  background: var(--primary);
  color: #fff;
}

/* 桌面导航 */
@media (min-width: 768px) {
  .css-gjq49f {
    display: none;
  }
  .el-0937vo {
    display: block;
    width: auto;
    padding-top: 0;
  }
  .el-0937vo ul {
    flex-direction: row;
    gap: 4px;
  }
  .el-0937vo li a {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
/* rvk19 */}
/* 5dgexgo5 */
/* ========== Hero区域 ========== */
.css-6fti87 {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background: var(--gradient-2);
}

.css-6fti87::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("../images/hero-banner.sc-b1x7ya") center/cover no-repeat;
  opacity: 0.25;
  z-index: 0;
}

._q6bbisz {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 30px 16px;
}

._q6bbisz h1 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

._q6bbisz p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 24px;
}

._m7nwki {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-1);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

._m7nwki:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

@media (min-width: 768px) {
  ._q6bbisz h1 {
    font-size: 2.6rem;
  }
  ._q6bbisz p {
    font-size: 1.15rem;
  }
}

/* ========== 面包屑 ========== */
.css-rwnbn8 {
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.css-rwnbn8 a {
  color: var(--text-secondary);
}

.css-rwnbn8 span {
  margin: 0 6px;
}

/* ========== 通用区块 ========== */
.tw-x4yemn {
  padding: 40px 0;
}
/* bw6h */
._9oe4e82 {
  background: var(--bg-card);
}

.h9ukakp4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
}

.h9ukakp4::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-top: 6px;
}

@media (min-width: 768px) {
  .tw-x4yemn {
    padding: 60px 0;
  }
  .h9ukakp4 {
    font-size: 1.8rem;
  }
}

/* ========== 视频卡片网格 ========== */
._qr9lu3l {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
/* h5bkuyie8 */
@media (min-width: 480px) {
  ._qr9lu3l {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  ._qr9lu3l {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
/* y447tn1aoc */
@media (min-width: 1024px) {
  ._qr9lu3l {
    grid-template-columns: repeat(4, 1fr);
  }
}

.el-eg6vpw {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid var(--border-color);
}
/* pu6klwcw */
.el-eg6vpw:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.el-eg6vpw .sc-so8z3j {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.el-eg6vpw .sc-so8z3j img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.el-eg6vpw:hover .sc-so8z3j img {
  transform: scale(1.05);
}

.el-eg6vpw .css-9fi0ca {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; height: 50px;
  background: rgba(220,50,80,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.el-eg6vpw .css-9fi0ca::after {
  content: "";
  display: block;
  width: 0; height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}

.el-eg6vpw:hover .css-9fi0ca {
  background: rgba(245,166,35,0.9);
}

.el-eg6vpw .el-7y0ka1 {
  padding: 14px;
}

.el-eg6vpw .el-7y0ka1 h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.el-eg6vpw .el-7y0ka1 .n05joe68so {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
}

/* ========== 视频播放模块 ========== */
.sc-xfd07a {
  background: #000;
  padding: 30px 0;
}

.q5cs2dom {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: #111;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.q5cs2dom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.q5cs2dom ._ebccmi {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  background: rgba(220,50,80,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(220,50,80,0.5);
  transition: transform 0.2s ease;
}

.q5cs2dom:hover ._ebccmi {
  transform: translate(-50%, -50%) scale(1.1);
}

.q5cs2dom ._ebccmi::after {
  content: "";
  display: block;
  width: 0; height: 0;
  border-style: solid;
  border-width: 16px 0 16px 28px;
  border-color: transparent transparent transparent #fff;
  margin-left: 5px;
}

._6pfcmg {
  max-width: 800px;
  margin: 20px auto 0;
  text-align: center;
}

._6pfcmg h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

._6pfcmg p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ========== 投稿模块 ========== */
._78we84ml {
  background: var(--gradient-2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  margin: 20px 0;
}

._71hvy7 {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 600px;
  margin: 0 auto;
}
/* kjbpdta */
._71hvy7 input,
._71hvy7 textarea,
._71hvy7 select {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-main);
  transition: border-color 0.2s ease;
}

._71hvy7 input:focus,
._71hvy7 textarea:focus {
  outline: none;
  border-color: var(--primary);
}

._71hvy7 textarea {
  min-height: 120px;
  resize: vertical;
}
/* lfgi */
.c54qvipt9 {
  background: var(--gradient-1);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.c54qvipt9:hover {
  transform: translateY(-2px);
}

/* ========== 评论模块 ========== */
.pv662uy4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .pv662uy4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* 9jyd2 */
@media (min-width: 1024px) {
  .pv662uy4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sc-bpdl8w {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color 0.2s ease;
}

.sc-bpdl8w:hover {
  border-color: var(--accent);
}

._l4s5si {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.poj7usbfs {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.kadbgf9 {
  font-weight: 600;
  font-size: 0.95rem;
}

.vsv0jhy7ku {
  font-size: 0.8rem;
  color: var(--text-muted);
}

._2h838tj {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
/* x64vw */
._frmue7e {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.sc-vvgkyg {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ========== 专家评论 ========== */
.yfl81s6in {
  background: var(--bg-card);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px;
  margin: 16px 0;
}

.yfl81s6in .f90e6qre0f {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.yfl81s6in .f90e6qre0f img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

.yfl81s6in .f90e6qre0f ._w1u9t7g {
  font-weight: 700;
  font-size: 1rem;
}
/* 7a85tfym */
.yfl81s6in .f90e6qre0f ._2zl0yl {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.yfl81s6in blockquote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.8;
}

/* ========== 授权模块 ========== */
._f9tu1r0 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

._f9tu1r0 .c1eyy9zro {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  object-fit: cover;
}

._f9tu1r0 ._b5bm4vkp {
  max-width: 700px;
}

._f9tu1r0 .gux07py3s3 {
  background: var(--bg-dark);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: monospace;
  color: var(--accent);
  margin-top: 10px;
  display: inline-block;
}

@media (min-width: 768px) {
  ._f9tu1r0 {
    flex-direction: row;
    text-align: left;
  }
/* att8kyy3e */}
/* 352kee9 */
/* ========== FAQ ========== */
.css-k35of1 {
  max-width: 800px;
}
/* 3bx0q */
._txt2yfnh {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.sc-vw08ql {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--bg-card);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}

.sc-vw08ql:hover {
  background: var(--bg-card-hover);
}

.sc-vw08ql::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

._txt2yfnh.open .sc-vw08ql::after {
  transform: rotate(45deg);
}

._5rio1tjw {
  display: none;
  padding: 16px 20px;
  background: var(--bg-dark);
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

._txt2yfnh.open ._5rio1tjw {
  display: block;
}
/* ey2vja */
/* ========== 新闻模块 ========== */
._3138m5g {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tiljjsyp {
  display: flex;
  gap: 16px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: border-color 0.2s ease;
}

.tiljjsyp:hover {
  border-color: var(--primary);
}
/* ow2yjv */
.tiljjsyp .dvanlbon9 {
  flex-shrink: 0;
  width: 120px;
  height: 90px;
  object-fit: cover;
}

@media (min-width: 640px) {
  .tiljjsyp .dvanlbon9 {
    width: 180px;
    height: 120px;
  }
}

.tiljjsyp .css-c1n3ar {
  padding: 12px 12px 12px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tiljjsyp .css-c1n3ar h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.4;
}

.tiljjsyp .css-c1n3ar .byc6rj5pt {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tiljjsyp .css-c1n3ar .st-3afz4s {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
}
/* 87iswm1 */
/* ========== 关于我们 ========== */
.el-br5atu {
  max-width: 800px;
}

.el-br5atu p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.9;
}

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

/* ========== 客户支持 ========== */
._9or8iyi {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  ._9or8iyi {
    grid-template-columns: repeat(2, 1fr);
  }
/* re4v6 */}

@media (min-width: 1024px) {
  ._9or8iyi {
    grid-template-columns: repeat(4, 1fr);
  }
}

.css-rqln7d {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.css-rqln7d:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.css-rqln7d .p9mrr7ltmi {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.css-rqln7d h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.css-rqln7d p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========== 页脚 ========== */
.bnsdife6c {
  background: var(--secondary);
  border-top: 2px solid var(--primary);
  padding: 40px 0 20px;
}

.nxbv4bil6 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

@media (min-width: 640px) {
  .nxbv4bil6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .nxbv4bil6 {
    grid-template-columns: repeat(4, 1fr);
  }
}

._gtwnzf h4 {
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--text-primary);
  position: relative;
  padding-bottom: 8px;
}

._gtwnzf h4::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--primary);
}

._gtwnzf ul {
  list-style: none;
}

._gtwnzf ul li {
  margin-bottom: 8px;
}

._gtwnzf ul li a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

._gtwnzf ul li a:hover {
  color: var(--primary);
  padding-left: 4px;
}
/* dhiiuo0b7r */
.css-rn0ph0 {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.css-rn0ph0 a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--bg-dark);
  border-radius: 50%;
  transition: background 0.2s ease;
}
/* vbq7jqp */
.css-rn0ph0 a:hover {
  background: var(--primary);
}

.css-rn0ph0 a img {
  width: 20px; height: 20px;
}
/* by0t03t6 */
._vw2o0qtw {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

._vw2o0qtw a {
  color: var(--text-secondary);
}

/* ========== 内页样式 ========== */
.css-y3oxg5 {
  position: relative;
  padding: 40px 0;
  background: var(--gradient-2);
  overflow: hidden;
}

.css-y3oxg5::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.2;
  z-index: 0;
}

.css-y3oxg5 .el-le6lmx {
  position: relative;
  z-index: 1;
}

.css-y3oxg5 h1 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.css-y3oxg5 p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}
/* j8erhmhi */
@media (min-width: 768px) {
  .css-y3oxg5 h1 {
    font-size: 2.2rem;
  }
}
/* g9bf1ilr */
.el-e5gl2z {
  padding: 30px 0;
}

.el-e5gl2z article {
  max-width: 800px;
}

.el-e5gl2z article h2 {
  font-size: 1.4rem;
  margin: 28px 0 14px;
  color: var(--text-primary);
  border-left: 4px solid var(--primary);
  padding-left: 14px;
}

.el-e5gl2z article h3 {
  font-size: 1.15rem;
  margin: 20px 0 10px;
  color: var(--text-primary);
}

.el-e5gl2z article p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.9;
}

.el-e5gl2z article img {
  border-radius: var(--radius-md);
  margin: 20px 0;
  width: 100%;
}

.el-e5gl2z article ul,
.el-e5gl2z article ol {
  margin: 12px 0 16px 20px;
  color: var(--text-secondary);
}

.el-e5gl2z article li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ========== APP下载页面 ========== */
.sc-by9lwa {
  text-align: center;
  padding: 50px 16px;
  background: var(--gradient-2);
}

.sc-by9lwa h1 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* 566q7bys */
.sc-by9lwa p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 30px;
}

.sc-by9lwa .od6pqxlv {
  max-width: 400px;
  margin: 0 auto 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.css-0l0vjo {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

@media (min-width: 480px) {
  .css-0l0vjo {
    flex-direction: row;
    justify-content: center;
  }
}

.sc-qpiuxp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.sc-qpiuxp:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  color: #fff;
}

.sc-qpiuxp.tw-ga34ij {
  background: var(--accent);
}

.sc-qpiuxp.tw-ga34ij:hover {
  background: #d89520;
}

/* ========== 作者信息 ========== */
.el-vbts2k {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 24px 0;
}
/* xnfz */
.el-vbts2k img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--primary);
}

.el-vbts2k .el-w9zpy4 h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.el-vbts2k .el-w9zpy4 p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ========== 评分 ========== */
.elvjyko {
  color: var(--accent);
  letter-spacing: 2px;
}

._yatlq8 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

/* ========== 侧边栏 ========== */
.tw-v4m4e8 {
  margin-top: 30px;
}
/* 1hq49f */
@media (min-width: 1024px) {
  ._maa8rfom {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
  }
  .tw-v4m4e8 {
    margin-top: 0;
  }
}

.vkqmiu2w7 {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
}

.vkqmiu2w7 h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
}

.vkqmiu2w7 ul {
  list-style: none;
}

.vkqmiu2w7 ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}
/* s9lrko */
.vkqmiu2w7 ul li:last-child {
  border-bottom: none;
}

.vkqmiu2w7 ul li a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

._h2j329n1 {
  animation: fadeInUp 0.5s ease forwards;
}

/* ========== 工具类 ========== */
._p9meyblm { text-align: center; }
._xvxt1q { color: var(--primary); }
/* lgt1p */.k0sfohyf { color: var(--accent); }
._n75x8n { margin-top: 8px; }
._riegerd { margin-top: 16px; }
.el-3bttm4 { margin-top: 24px; }
/* 7mka3 */.pms2ns3 { margin-bottom: 8px; }
.bacd7cohk { margin-bottom: 16px; }
.st-rgt8ch { margin-bottom: 24px; }
/* omf7j18o */
/* 隐藏溢出文本 */
.jptix83 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

._mjfgys {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 视觉稳定性 */
img, video {
  aspect-ratio: attr(width) / attr(height);
}

.sc-so8z3j {
  aspect-ratio: 16/9;
}

/* a8nunoocrdzq8p95 */
