/* vtdthpez0vif | v9.38 */
/* ============================================
   视频直播互动平台 - 全站样式表
   独特配色方案：渐变紫红+深空蓝+亮橙
   ============================================ */

/* 干扰标签区块隐藏样式 */
._075k4aba {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
  user-select: none;
}

/* CSS变量定义 */
:root {
  --color-primary: #ff2d55;
  --color-primary-dark: #d91a40;
  --color-secondary: #6c5ce7;
  --color-accent: #ff9f43;
  --color-bg-dark: #0a0e27;
  --color-bg-section: #111540;
  --color-bg-card: #1a1f4e;
  --color-text: #e8e8f0;
  --color-text-muted: #9a9abf;
  --color-border: #2a2f6e;
  --color-success: #00d2d3;
  --color-warning: #feca57;
  --font-main: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
  --font-heading: "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --shadow-card: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-hover: 0 12px 48px rgba(255,45,85,0.2);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --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: var(--font-main);
  background-color: var(--color-bg-dark);
  color: var(--color-text);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: var(--color-accent);
}
/* 4w4x */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* 容器 */
.gicb00v {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ 顶部导航 ============ */
.tbuxtlj {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #151a4a 100%);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
  position: relative;
  z-index: 100;
}

.y6bb5rlhq5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.nvhwjapp {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  font-family: var(--font-heading);
}

.nvhwjapp img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.nvhwjapp span {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* 8k3r7hl */
.tw-fca4yw {
  display: flex;
  align-items: center;
  gap: 0;
}

.tw-fca4yw a {
  color: var(--color-text-muted);
  padding: 10px 18px;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.tw-fca4yw a:hover,
.tw-fca4yw a.active {
  color: var(--color-text);
  background: rgba(255,45,85,0.1);
}

.tw-fca4yw a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
}

.tw-4yt2i8 {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 8px;
}

/* ============ 面包屑导航 ============ */
._907323 {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

._907323 a {
  color: var(--color-text-muted);
}
/* 8umeqxg */
._907323 a:hover {
  color: var(--color-primary);
}

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

/* ============ 英雄区域 ============ */
.u0mly66 {
  position: relative;
  padding: 80px 0 60px;
  background: linear-gradient(160deg, var(--color-bg-dark) 0%, #1a1060 40%, #2d1b69 70%, var(--color-bg-dark) 100%);
  overflow: hidden;
}

.u0mly66::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,45,85,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
}

.u0mly66::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(108,92,231,0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 5s ease-in-out infinite reverse;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
/* 1hl6i5tldw */  50% { transform: scale(1.1); opacity: 1; }
/* 4moo6b8ua */}

._69cvdn0 {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
/* zpw8yn */
._69cvdn0 h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #fff 0%, #e8e8f0 50%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

._69cvdn0 p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

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

/* ============ 按钮 ============ */
.t8n63f3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.sc-d2bi4x {
  background: linear-gradient(135deg, var(--color-primary), #ff6b81);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,45,85,0.4);
}

.sc-d2bi4x:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,45,85,0.5);
  color: #fff;
}

.q0bb7c0n {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.q0bb7c0n:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(255,45,85,0.05);
}

._7dwnei {
  background: linear-gradient(135deg, var(--color-accent), #ffbe76);
  color: #1a1a2e;
  box-shadow: 0 4px 20px rgba(255,159,67,0.3);
}

._7dwnei:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,159,67,0.5);
  color: #1a1a2e;
}
/* akjm0 */
.h7i8z93 {
  padding: 8px 18px;
  font-size: 0.85rem;
}

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

.p8mz5my h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  color: var(--color-text);
}
/* pnkkufuik */
.p8mz5my h2 span {
  color: var(--color-primary);
}

.p8mz5my p {
  color: var(--color-text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============ 通用区块 ============ */
.sc-vm1uxt {
  padding: 72px 0;
}

.h3k4f52k3 {
  background: var(--color-bg-section);
}

/* ============ 直播分类筛选 ============ */
.e537sqz7a {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
/* cmmnf */
.s0eqrskyb4 {
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: var(--transition);
}

.s0eqrskyb4:hover,
.s0eqrskyb4.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* ============ 直播卡片网格 ============ */
.n1ipnf27 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.el-y9p99q {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  position: relative;
}

.el-y9p99q:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-primary);
}

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

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

.el-y9p99q:hover ._eh0j6hx img {
  transform: scale(1.05);
}

.css-81d2es {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}

.tw-vw14kl {
  background: var(--color-primary);
  animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.el-s9bj8f {
  background: var(--color-accent);
}

.lapotsrfag {
  background: var(--color-success);
}

.ya6da2y {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  background: rgba(0,0,0,0.7);
  color: #fff;
  backdrop-filter: blur(4px);
}

.r6slmb7wv {
  padding: 16px;
}

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

._77x2pv {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

._77x2pv img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

/* ============ 热门商品秒杀 ============ */
.tw-eicxte {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.tw-09xzbd {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

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

.ul6i6jm3g {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

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

._egca6au {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--color-primary);
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

._tjjd8wxh {
  padding: 14px;
}

._tjjd8wxh h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

._d2zyji {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
/* rve3r98 */
._d2zyji ._h7y9sbc {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
}

._d2zyji .tw-ir5rdk {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.el-8jh5zl {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 6px;
}

/* ============ 买家秀 ============ */
.vo5ik4t {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.tw-oea6ci {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

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

._ca0e6cs {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

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

.nottsmpn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(255,45,85,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.bbxivaw449 {
  padding: 14px;
}

.el-ndkb7x {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.el-ndkb7x img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.el-ndkb7x .hasrq2ap45 {
  font-size: 0.9rem;
  font-weight: 600;
}

.bbxivaw449 p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
/* cebo0t */
.qyapjgkx {
  color: var(--color-warning);
  font-size: 0.85rem;
  margin-top: 6px;
}

/* ============ 榜单 ============ */
._4jh0vfa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.st-lwu641 {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

._ve0a9m {
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(255,45,85,0.15), rgba(108,92,231,0.15));
  border-bottom: 1px solid var(--color-border);
  font-size: 1.1rem;
  font-weight: 700;
}

._h41iv5fg {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(42,47,110,0.5);
  transition: var(--transition);
}

._h41iv5fg:last-child {
  border-bottom: none;
}

._h41iv5fg:hover {
  background: rgba(255,45,85,0.05);
}

._qghq5z {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--color-bg-dark);
  color: var(--color-text-muted);
  flex-shrink: 0;
}
/* vpcxsf1hkd */
._qghq5z.tw-5x6jt5 { background: linear-gradient(135deg, #ffd700, #ffaa00); color: #1a1a2e; }
._qghq5z._n5tdfo { background: linear-gradient(135deg, #c0c0c0, #a0a0a0); color: #1a1a2e; }
._qghq5z.sc-bb2t87 { background: linear-gradient(135deg, #cd7f32, #b06020); color: #fff; }

.hhjosad {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

._ophs8871 {
  flex: 1;
  min-width: 0;
}

._ophs8871 .hasrq2ap45 {
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

._ophs8871 .bqo6fca70 {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
/* sr31pteyuf */
.imtkqtneni {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ============ FAQ ============ */
.msufsb0m {
  max-width: 800px;
  margin: 0 auto;
}
/* 9hod */
.st-ob93hk {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.c9dlr1hte {
  padding: 18px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.c9dlr1hte:hover {
  background: rgba(255,45,85,0.05);
}

.c9dlr1hte ._vs2wwj {
  font-size: 1.2rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.st-ob93hk.open .c9dlr1hte ._vs2wwj {
  transform: rotate(45deg);
}

._cel073m {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.st-ob93hk.open ._cel073m {
  padding: 0 24px 18px;
  max-height: 500px;
}

/* ============ 直播间详情页 ============ */
.kph5deb664 {
  background: linear-gradient(180deg, #1a1060 0%, var(--color-bg-dark) 100%);
  padding: 30px 0 40px;
}

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

.z4901t9j3 {
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

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

._rltkhl {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
}

.fao2slvte {
  width: 80px;
  height: 80px;
  background: rgba(255,45,85,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.fao2slvte:hover {
  transform: scale(1.1);
  background: var(--color-primary);
}

.x2kuk0c2j2 {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  max-height: 500px;
}

.pjxtking {
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-border);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rqk7isfw {
  flex: 1;
  overflow-y: auto;
  padding: 14px 18px;
}

.css-8wg5xa {
  margin-bottom: 12px;
  font-size: 0.9rem;
}
/* 56uxft5kd */
.css-8wg5xa ._9vu66bs9 {
  color: var(--color-secondary);
  font-weight: 600;
  margin-right: 6px;
}

.css-8wg5xa .st-u8rz8s {
  color: var(--color-text-muted);
}
/* f4bikn */
.ipswr8w {
  padding: 12px 18px;
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: 10px;
}

.ipswr8w input {
  flex: 1;
  background: var(--color-bg-dark);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  padding: 8px 16px;
  color: var(--color-text);
  font-size: 0.9rem;
  outline: none;
}

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

.rv0ctfpkh {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* ============ 商品详情页 ============ */
.css-3zt553 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
}

.tw-ae0vr1 {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tw-ae0vr1 img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.tw-rnp59u h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}

.sc-7mjtuk {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
/* blryxf */
.sc-7mjtuk ._h7y9sbc {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
}

.sc-7mjtuk .tw-ir5rdk {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.sc-7mjtuk ._pf8s0yb {
  background: var(--color-primary);
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

._19s7zk8 {
  margin-bottom: 24px;
}

._vf5b0cz {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(42,47,110,0.3);
  font-size: 0.95rem;
}

._vf5b0cz ._zblmnj {
  color: var(--color-text-muted);
  min-width: 80px;
}
/* d5ay */
.st-u52qpx {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

/* ============ 评论区 ============ */
.css-w4etoy {
  padding: 40px 0;
}

._fsocftx6 {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  padding: 24px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
/* 2neha */
._vn5z92q {
  text-align: center;
}

._vn5z92q .f53j7ci8oc {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-warning);
}

._vn5z92q ._zblmnj {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.smyx3eis {
  flex: 1;
}

.xf6mb41ff {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 0.85rem;
}

.xf6mb41ff ._8420u5ka {
  flex: 1;
  height: 8px;
  background: var(--color-bg-dark);
  border-radius: 4px;
  overflow: hidden;
}

.xf6mb41ff ._qmtmw5aw {
  height: 100%;
  background: linear-gradient(90deg, var(--color-warning), var(--color-accent));
  border-radius: 4px;
}

.el-936b48 {
  margin-top: 24px;
}

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

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

._ekmzl9j img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

._ekmzl9j .css-05s6cd .hasrq2ap45 {
  font-weight: 600;
  font-size: 0.95rem;
}

._ekmzl9j .css-05s6cd .tw-agj4x1 {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.st-qrqykp {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.yznkrazq {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.yznkrazq img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

/* ============ 用户中心 ============ */
.dkr0giz {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 40px 0;
}

._98y5qs4 {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 24px;
}

.el-atr7tn {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.el-atr7tn img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 12px;
  object-fit: cover;
  border: 3px solid var(--color-primary);
}
/* m91mxegdjx */
.el-atr7tn .hasrq2ap45 {
  font-size: 1.1rem;
  font-weight: 700;
}

.el-atr7tn .y091du1 {
  font-size: 0.8rem;
  color: var(--color-accent);
  margin-top: 4px;
}
/* dctbf */
.uwc0ytq9vq a {
  display: block;
  padding: 12px 16px;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
  font-size: 0.95rem;
}
/* byxd3mdv7 */
.uwc0ytq9vq a:hover,
.uwc0ytq9vq a.active {
  background: rgba(255,45,85,0.1);
  color: var(--color-text);
}

.sc-oxrr1n {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 24px;
}

.sc-oxrr1n h2 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}
/* ueicj001vd */
.a7npsjc09 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.css-y696k9 {
  background: var(--color-bg-dark);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}
/* bat5bdiywx */
.css-y696k9 .f53j7ci8oc {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary);
}

.css-y696k9 ._zblmnj {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* ============ 专题页 ============ */
._9viuky {
  padding: 60px 0;
  background: linear-gradient(135deg, #2d1b69 0%, #1a1060 50%, var(--color-bg-dark) 100%);
  text-align: center;
}

._9viuky h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

._9viuky p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.lcww7ilqn {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 30px auto;
  max-width: 900px;
}

.lcww7ilqn img {
  width: 100%;
}

/* ============ 下载页面 ============ */
.m640hw1yq9 {
  text-align: center;
  padding: 80px 0;
}

.x6hf7ffkln {
  max-width: 300px;
  margin: 0 auto 30px;
}

.x6hf7ffkln img {
  width: 100%;
  border-radius: var(--radius-lg);
}

._g381uk {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
/* r07wo */
.xhx9fz5wmq {
  margin-top: 30px;
}
/* tjp2 */
.xhx9fz5wmq p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 10px;
}

/* ============ 页脚 ============ */
.geg9yhuzc {
  background: linear-gradient(180deg, var(--color-bg-section) 0%, #080b1e 100%);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 0;
}

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

.sy2om5v p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 14px;
}

.ag4kj9l7m2 h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-text);
}

.ag4kj9l7m2 a {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  padding: 4px 0;
}

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

.bo0hnok1 {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.bo0hnok1 a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.bo0hnok1 a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

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

._8i1z074 a {
  color: var(--color-text-muted);
  margin: 0 8px;
}

._8i1z074 a:hover {
  color: var(--color-primary);
}
/* uxydeq */
.css-bfjcrf {
  display: inline-block;
  border: 2px solid var(--color-primary);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-left: 10px;
}

/* ============ 动画 ============ */
.css-5hr1ic {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.css-5hr1ic.visible {
  opacity: 1;
  transform: translateY(0);
}

._3ihwdki {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
/* tf4q */
._3ihwdki.visible {
  opacity: 1;
  transform: translateX(0);
}

.css-1ovdz0 {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.css-1ovdz0.visible {
  opacity: 1;
  transform: translateX(0);
}
/* 13b7 */
/* ============ 响应式 ============ */
@media (max-width: 1024px) {
  ._dt4r4sgw {
    grid-template-columns: 1fr 1fr;
  }
  ._i8nhws {
    grid-template-columns: 1fr;
  }
/* jgnnycov */  .css-3zt553 {
    grid-template-columns: 1fr;
  }
  .dkr0giz {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .tw-4yt2i8 {
    display: block;
  }

  .tw-fca4yw {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--color-border);
    z-index: 99;
  }
/* s6qfza39e5 */
  .tw-fca4yw.open {
    display: flex;
  }

  .tw-fca4yw a {
    padding: 12px 16px;
    width: 100%;
  }

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

  ._69cvdn0 p {
    font-size: 1rem;
  }

  .p8mz5my h2 {
    font-size: 1.5rem;
  }

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

  .tw-eicxte {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .a7npsjc09 {
    grid-template-columns: repeat(2, 1fr);
  }

  ._fsocftx6 {
    flex-direction: column;
  }
/* qlqv0znh */
  .sc-t9gzti {
    flex-direction: column;
    align-items: center;
  }

  .st-u52qpx {
    flex-direction: column;
  }

  .gicb00v {
    padding: 0 16px;
  }

  .sc-vm1uxt {
    padding: 48px 0;
  }
}

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

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

  ._g381uk {
    flex-direction: column;
    align-items: center;
  }
}

/* ============ 滚动条美化 ============ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* ============ 选中文本 ============ */
::selection {
  background: rgba(255,45,85,0.3);
  color: #fff;
}

/* ============ 表格样式 ============ */
._ybx97wm {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

._ybx97wm th,
._ybx97wm td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
/* mk1exmhqn9 */
._ybx97wm th {
  background: var(--color-bg-dark);
  font-weight: 600;
  color: var(--color-text);
}

._ybx97wm tr:hover {
  background: rgba(255,45,85,0.03);
}

/* ============ 标签 ============ */
._52hp0v {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  background: rgba(108,92,231,0.15);
  color: var(--color-secondary);
  margin: 2px 4px;
}
/* iqukp */
._2b3vh69 {
  background: rgba(255,45,85,0.15);
  color: var(--color-primary);
}

.a60sh0jv {
  background: rgba(255,159,67,0.15);
  color: var(--color-accent);
}

/* ============ 隐私政策样式 ============ */
._vi9x5y {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

._vi9x5y h1 {
  font-size: 2rem;
  margin-bottom: 24px;
}

._vi9x5y h2 {
  font-size: 1.4rem;
  margin: 30px 0 14px;
  color: var(--color-primary);
}

._vi9x5y p {
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: 14px;
}

/* ============ 懒加载占位 ============ */
img[loading="lazy"] {
  background: var(--color-bg-card);
  min-height: 100px;
}

/* ypfp95gh62v8vz9x */
