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

/* 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;
}
/* qqqzp */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* 316ob */
a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.25s ease;
}

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

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

/* ========== 顶部导航 ========== */
._v98fod {
  background: var(--secondary);
  border-bottom: 2px solid var(--primary);
  padding: 12px 0;
  position: relative;
  z-index: 100;
}

._8z5mxq90 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

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

._8ffm6qx span {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-left: 8px;
}
/* ho1jahmw */
/* 汉堡菜单 */
._697xtp2 {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
/* yp9u4b */
._697xtp2 span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text-primary);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.sc-iyusvw {
  display: none;
  width: 100%;
  padding-top: 10px;
}

.sc-iyusvw.active {
  display: block;
}

.sc-iyusvw ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sc-iyusvw 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;
}

.sc-iyusvw li a:hover,
.sc-iyusvw li a.active {
  background: var(--primary);
  color: #fff;
}

/* 桌面导航 */
@media (min-width: 768px) {
  ._697xtp2 {
    display: none;
  }
/* pmmn6 */  .sc-iyusvw {
    display: block;
    width: auto;
    padding-top: 0;
  }
  .sc-iyusvw ul {
    flex-direction: row;
    gap: 4px;
  }
  .sc-iyusvw li a {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
}

/* ========== Hero区域 ========== */
._oqh5k5o {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background: var(--gradient-2);
}

._oqh5k5o::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("../images/hero-banner.css-ymq627") center/cover no-repeat;
  opacity: 0.25;
  z-index: 0;
}
/* s8hs2nqe */
.st-mkov9w {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 30px 16px;
}

.st-mkov9w 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;
}
/* w7qxu1 */
.st-mkov9w p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 24px;
}

._5hwbtmn {
  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;
}

._5hwbtmn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: #fff;
}
/* rd6yvkfv */
@media (min-width: 768px) {
  .st-mkov9w h1 {
    font-size: 2.6rem;
  }
  .st-mkov9w p {
    font-size: 1.15rem;
  }
}

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

.p4km5bi6 span {
  margin: 0 6px;
}

/* ========== 通用区块 ========== */
._nrsivhe {
  padding: 40px 0;
}

.h9bx46q2 {
  background: var(--bg-card);
}

._7p6cu9a {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
}
/* 6j4oy1xq */
._7p6cu9a::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-top: 6px;
}

@media (min-width: 768px) {
  ._nrsivhe {
    padding: 60px 0;
  }
  ._7p6cu9a {
    font-size: 1.8rem;
  }
}
/* ya6d6 */
/* ========== 视频卡片网格 ========== */
._zt0lgxfz {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

@media (min-width: 768px) {
  ._zt0lgxfz {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

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

.tgr46euuq {
  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);
}

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

.tgr46euuq ._1m89ok6 {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.tgr46euuq ._1m89ok6 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
/* argem */
.tgr46euuq:hover ._1m89ok6 img {
  transform: scale(1.05);
}

.tgr46euuq ._pvqnt1i {
  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;
}

.tgr46euuq ._pvqnt1i::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;
}

.tgr46euuq:hover ._pvqnt1i {
  background: rgba(245,166,35,0.9);
}

.tgr46euuq .st-3w2wj4 {
  padding: 14px;
}
/* i2ig */
.tgr46euuq .st-3w2wj4 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;
}

.tgr46euuq .st-3w2wj4 .el-ukpsac {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
}

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

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

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

.yik16qul .el-hqnhrn {
  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;
}

.yik16qul:hover .el-hqnhrn {
  transform: translate(-50%, -50%) scale(1.1);
}

.yik16qul .el-hqnhrn::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;
}
/* rufq77rc2 */
.kpz818f6 {
  max-width: 800px;
  margin: 20px auto 0;
  text-align: center;
}

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

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

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

.el-pc3ots {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 600px;
  margin: 0 auto;
}

.el-pc3ots input,
.el-pc3ots textarea,
.el-pc3ots 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;
}

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

.el-pc3ots textarea {
  min-height: 120px;
  resize: vertical;
}

.sc-mqrqm6 {
  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;
}

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

/* ========== 评论模块 ========== */
._34j2guv {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
/* skh6 */
@media (min-width: 640px) {
  ._34j2guv {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

.st-7p18b7:hover {
  border-color: var(--accent);
}

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

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

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

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

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

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

/* ========== 专家评论 ========== */
.tw-2wv7k6 {
  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;
}

.tw-2wv7k6 .st-9e00cp {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.tw-2wv7k6 .st-9e00cp img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

.tw-2wv7k6 .st-9e00cp .aoebvdfmk {
  font-weight: 700;
  font-size: 1rem;
}
/* khdf */
.tw-2wv7k6 .st-9e00cp ._j5ce2j {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

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

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

._yvz8yk .st-jxuyjd {
  max-width: 700px;
}

._yvz8yk .tw-j2f765 {
  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) {
  ._yvz8yk {
    flex-direction: row;
    text-align: left;
  }
/* fr8yu1 */}

/* ========== FAQ ========== */
.sc-sil7qw {
  max-width: 800px;
}

.el-d9qtp6 {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

._j2nuc07 {
  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;
}

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

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

.el-d9qtp6.open ._j2nuc07::after {
  transform: rotate(45deg);
}

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

.el-d9qtp6.open .tw-xuw103 {
  display: block;
}

/* ========== 新闻模块 ========== */
.el-fcgrsh {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

._tf2ufq0u {
  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;
}

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

._tf2ufq0u ._al8bu1fa {
  flex-shrink: 0;
  width: 120px;
  height: 90px;
  object-fit: cover;
}
/* 6ss8lc1f1 */
@media (min-width: 640px) {
  ._tf2ufq0u ._al8bu1fa {
    width: 180px;
    height: 120px;
  }
}

._tf2ufq0u .st-lojdho {
  padding: 12px 12px 12px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

._tf2ufq0u .st-lojdho h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.4;
}
/* 2sizy1y */
._tf2ufq0u .st-lojdho .hzp9trye {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

._tf2ufq0u .st-lojdho .yh74s5oj {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ========== 关于我们 ========== */
.st-ok9btb {
  max-width: 800px;
}

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

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

/* ========== 客户支持 ========== */
.sc-q540os {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
/* ghwtstg5f */
@media (min-width: 640px) {
  .sc-q540os {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.qandl8ab {
  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;
}

.qandl8ab:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
/* r89d */
.qandl8ab .st-d1unmb {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.qandl8ab h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
/* opeqnwz */
.qandl8ab p {
  font-size: 0.85rem;
  color: var(--text-muted);
}
/* hyav */
/* ========== 页脚 ========== */
.sc-72wpw7 {
  background: var(--secondary);
  border-top: 2px solid var(--primary);
  padding: 40px 0 20px;
}

._mziwqrh2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
/* ihxkd0 */
@media (min-width: 640px) {
  ._mziwqrh2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

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

.css-a8pcy4 ul {
  list-style: none;
}
/* 7co8u */
.css-a8pcy4 ul li {
  margin-bottom: 8px;
}

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

.css-a8pcy4 ul li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.sc-al3r60 {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
/* t08895q75g */
.sc-al3r60 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;
}

.sc-al3r60 a:hover {
  background: var(--primary);
}

.sc-al3r60 a img {
  width: 20px; height: 20px;
}

.y1galw5x {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

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

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

._d63vw7a .rxmbd1qit {
  position: relative;
  z-index: 1;
}

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

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

@media (min-width: 768px) {
  ._d63vw7a h1 {
    font-size: 2.2rem;
  }
}
/* 71exen */
.pw2f7r01 {
  padding: 30px 0;
}

.pw2f7r01 article {
  max-width: 800px;
}
/* zi2vn1v */
.pw2f7r01 article h2 {
  font-size: 1.4rem;
  margin: 28px 0 14px;
  color: var(--text-primary);
  border-left: 4px solid var(--primary);
  padding-left: 14px;
}

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

.pw2f7r01 article p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.9;
}
/* ux93hsn */
.pw2f7r01 article img {
  border-radius: var(--radius-md);
  margin: 20px 0;
  width: 100%;
}

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

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

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

._z26qhs h1 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

._z26qhs p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 30px;
}

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

.el-zg4ugl {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

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

.st-oy2jb4 {
  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;
}

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

.st-oy2jb4.l4h1mvd5k {
  background: var(--accent);
}

.st-oy2jb4.l4h1mvd5k:hover {
  background: #d89520;
}

/* ========== 作者信息 ========== */
.el-qve5sk {
  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;
}

.el-qve5sk img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--primary);
}

.el-qve5sk .u37kdjm20l h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
/* vgx2lo */
.el-qve5sk .u37kdjm20l p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

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

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

/* ========== 侧边栏 ========== */
._rq5lkkql {
  margin-top: 30px;
}

@media (min-width: 1024px) {
  .o8wppiah {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
  }
  ._rq5lkkql {
    margin-top: 0;
  }
}

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

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

._xmyi18 ul {
  list-style: none;
}

._xmyi18 ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

._xmyi18 ul li:last-child {
  border-bottom: none;
}

._xmyi18 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);
  }
}

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

/* ========== 工具类 ========== */
._r7zsri { text-align: center; }
._5e3t9v7o { color: var(--primary); }
.m9ob1ilyv { color: var(--accent); }
.prl3x12 { margin-top: 8px; }
._8n1e30 { margin-top: 16px; }
.css-8h6nzp { margin-top: 24px; }
/* 4zcu7ows1 */.tw-6rfe39 { margin-bottom: 8px; }
.hjqwmgk2mk { margin-bottom: 16px; }
.jdll3t95 { margin-bottom: 24px; }

/* 隐藏溢出文本 */
.el-8wzxbm {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

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

._1m89ok6 {
  aspect-ratio: 16/9;
}

/* q8sq7j38mnvck42z */
