/* lsptj78xp7o5 | v7.73 */
/* ============================================
   本地化短视频分享平台 - 主样式表
   独特配色：渐变紫橙 + 深色主题
   ============================================ */

/* 自定义字体 */
@import url('https://fonts._el3h7x.css-xmc9mz/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&family=ZCOOL+KuaiLe&display=swap');

/* CSS变量 */
:root {
  --primary: #7c3aed;
  --primary-light: #a78bfa;
  --primary-dark: #5b21b6;
  --secondary: #f97316;
  --secondary-light: #fdba74;
  --accent: #06b6d4;
  --accent-dark: #0891b2;
  --bg-dark: #0f0b1a;
  --bg-card: #1a1528;
  --bg-card-hover: #241e35;
  --bg-section: #130f20;
  --text-primary: #f1f0f5;
  --text-secondary: #a8a3b5;
  --text-muted: #6b6580;
  --border-color: #2d2640;
  --gradient-main: linear-gradient(135deg, #7c3aed 0%, #f97316 100%);
  --gradient-card: linear-gradient(145deg, #1a1528 0%, #0f0b1a 100%);
  --gradient-hero: linear-gradient(160deg, #1a0533 0%, #0f0b1a 40%, #1a0a0a 100%);
  --shadow-sm: 0 2px 8px rgba(124, 58, 237, 0.1);
  --shadow-md: 0 4px 20px rgba(124, 58, 237, 0.15);
  --shadow-lg: 0 8px 40px rgba(124, 58, 237, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-main: 'Noto Sans SC', sans-serif;
  --font-display: 'ZCOOL KuaiLe', cursive;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* 8edyk6 */
/* 全局重置 */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 干扰标签区块 - 肉眼不可见 */
._wriwm6d {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  z-index: -9999;
}
/* pc2waz833r */
/* 链接样式 */
a {
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* 容器 */
.st-z90arn {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   导航栏 - 非sticky
   ============================================ */
.css-j4hfwp {
  background: rgba(15, 11, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  z-index: 100;
  position: relative;
}

._b4f67g5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.opahxu3a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.el-rbe5dv {
  display: flex;
  gap: 28px;
  align-items: center;
}
/* eayws2v9z */
.el-rbe5dv a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.el-rbe5dv a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.el-rbe5dv a:hover {
  color: var(--text-primary);
}

.el-rbe5dv a:hover::after {
  width: 100%;
}

.css-3vrgod {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.css-3vrgod span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* 移动端导航 */
@media (max-width: 768px) {
  .css-3vrgod {
    display: flex;
  }
  .el-rbe5dv {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
  }
  .el-rbe5dv.active {
    display: flex;
  }
}

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

._6golhq a {
  color: var(--text-secondary);
}
/* 1ywcyks6 */
._6golhq a:hover {
  color: var(--primary-light);
}

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

/* ============================================
   主屏Banner / Hero区域
   ============================================ */
.sc-4cn3gh {
  background: var(--gradient-hero);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

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

.sc-4cn3gh::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 8s ease-in-out infinite reverse;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
/* wj9x1ftcl1 */  50% { transform: scale(1.2); opacity: 1; }
}

.qm6g0fie4z {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.ed8bl7w3jv {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1.3;
  margin-bottom: 20px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

._q9cm5f8 {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.8;
}

.tw-ejytvm {
  display: flex;
  max-width: 600px;
  margin: 0 auto 30px;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.tw-ejytvm:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.tw-ejytvm input {
  flex: 1;
  padding: 16px 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
  font-family: var(--font-main);
}
/* yd745trm */
.tw-ejytvm input::placeholder {
  color: var(--text-muted);
}

.tw-ejytvm button {
  padding: 16px 32px;
  background: var(--gradient-main);
  border: none;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
}

.tw-ejytvm button:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.nez1nja6 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.sc-6qqdfq {
  padding: 6px 16px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--primary-light);
  transition: var(--transition);
  cursor: pointer;
}

.sc-6qqdfq:hover {
  background: rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
}
/* ejp7b2 */
/* ============================================
   通用区块标题
   ============================================ */
._q2qjcs {
  text-align: center;
  margin-bottom: 48px;
}

._q2qjcs h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

._q2qjcs h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-main);
  margin: 12px auto 0;
  border-radius: 2px;
}

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

/* ============================================
   内容区块
   ============================================ */
._05xog7x {
  padding: 70px 0;
}

._05xog7x:nth-child(even) {
  background: var(--bg-section);
}

/* ============================================
   视频卡片网格
   ============================================ */
._70l1c8 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
/* aqp8x0f47 */
.st-jt0l5d {
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  cursor: pointer;
}

.st-jt0l5d:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

._r29vahm5 {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-section);
  overflow: hidden;
}

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

.st-jt0l5d:hover ._r29vahm5 img {
  transform: scale(1.08);
}

._8ab61k7 {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

.css-cpt3dr {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(124, 58, 237, 0.85);
  color: white;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.sc-bu56u0 {
  padding: 16px;
}

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

.iy9sukf4o {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.iy9sukf4o ._41ko68 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.iy9sukf4o ._41ko68 img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

._gdrzd9x {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

._gdrzd9x span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================
   创作者卡片
   ============================================ */
.tw-6mph9l {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.tw-oipiz4 {
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
/* hyh7c68ogf */
.tw-oipiz4:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.ruiqwy6 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 3px solid var(--primary);
  padding: 2px;
}

.ruiqwy6 img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.tw-oipiz4 h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

._o04cx18 {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: 12px;
  font-size: 0.75rem;
  color: var(--primary-light);
  margin-bottom: 10px;
}

.tw-oipiz4 p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.xz8xvfco {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
/* hg9w81ag */
.xz8xvfco ._5rxxay9 {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ============================================
   活动版块
   ============================================ */
.st-f8j7d4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

._msrh64af {
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  display: flex;
  transition: var(--transition);
}
/* fizf8sh7qy */
._msrh64af:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

._vzqodm4 {
  background: var(--gradient-main);
  padding: 20px 16px;
  text-align: center;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

._vzqodm4 ._bblkiu1 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

._vzqodm4 .st-zvot3k {
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 4px;
}

.x5ra5qyx37 {
  padding: 18px;
  flex: 1;
}

.x5ra5qyx37 h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.x5ra5qyx37 p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.st-o5rg9l {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 10px;
  font-size: 0.75rem;
  color: var(--secondary-light);
}

/* ============================================
   评论区
   ============================================ */
._8mcxbq8f {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.s45egzy1q {
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

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

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

.sc-qf4qbx img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.sc-bmf0bh h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.sc-bmf0bh .sc-eqanzu {
  font-size: 0.75rem;
  color: var(--secondary);
}

._tqrxf2ab {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.s45egzy1q p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   FAQ手风琴
   ============================================ */
.br1udbz {
  max-width: 800px;
  margin: 0 auto;
}

.xajkt8f4 {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.st-ylwz5i {
  padding: 18px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
/* kojgqzxgdx */
.st-ylwz5i:hover {
  background: var(--bg-card-hover);
}

.st-ylwz5i::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary-light);
  transition: transform 0.3s ease;
}

.xajkt8f4.active .st-ylwz5i::after {
  content: '−';
}

.st-ioazm9 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.xajkt8f4.active .st-ioazm9 {
  max-height: 500px;
  padding: 0 24px 18px;
}

.st-ioazm9 p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================
   视频播放页
   ============================================ */
._9g78hax {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}

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

._2fxeq9d0 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(124, 58, 237, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

._2fxeq9d0:hover {
  background: var(--primary);
  transform: translate(-50%, -50%) scale(1.1);
}

._2fxeq9d0::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent white;
  margin-left: 4px;
}
/* byj7igsnia */
.el-72wdyw {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
}

@media (max-width: 900px) {
  .el-72wdyw {
    grid-template-columns: 1fr;
  }
}

._6lxxsp h1 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}

._iw6uym {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

._2vvepp {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}
/* ycxd */
._2vvepp:hover {
  border-color: var(--primary);
  color: var(--primary-light);
}

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

._bw3m0xgi p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

._lm8uw2q {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

._lm8uw2q a {
  padding: 4px 12px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 14px;
  font-size: 0.8rem;
  color: var(--primary-light);
}

/* 侧边栏 */
.midrw9gs4 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.bbnf0ab h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}
/* vohmy */
.sc-d6uol0 {
  text-align: center;
}

.sc-d6uol0 .mtwdn91 {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 12px;
  border: 3px solid var(--primary);
  overflow: hidden;
}

.sc-d6uol0 .mtwdn91 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.el-q3p16s {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.el-q3p16s:last-child {
  border-bottom: none;
}

.el-q3p16s ._26kort7 {
  width: 120px;
  min-width: 120px;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-section);
}
/* xpt3czalpx */
.el-q3p16s ._26kort7 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.el-q3p16s .tp13z3qbpe h4 {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.el-q3p16s .tp13z3qbpe span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   创作者详情页
   ============================================ */
.css-s60lv9 {
  background: var(--gradient-hero);
  padding: 60px 0 40px;
  text-align: center;
}

.pmmivxc {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 4px solid var(--primary);
  overflow: hidden;
}

.pmmivxc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.df2ep4c {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

.df2ep4c .j81ntpesk {
  text-align: center;
}

.df2ep4c .vrrvw9w0zi {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

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

/* ============================================
   本地专题页
   ============================================ */
.aecjb1qp {
  background: var(--gradient-hero);
  padding: 50px 0;
  text-align: center;
}

.st-oosb6p {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.st-byomw9 {
  padding: 8px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.st-byomw9:hover, .st-byomw9.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* ============================================
   页脚
   ============================================ */
.st-wx7iui {
  background: var(--bg-section);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
}

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

@media (max-width: 768px) {
  .st-xa30fu {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

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

._2oiaexi9 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: inline-block;
}

._0hnelu8 {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.z0e68ou {
  display: flex;
  gap: 12px;
}

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

.z0e68ou a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

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

._ek75xun ul li {
  margin-bottom: 10px;
}

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

._ek75xun ul li a:hover {
  color: var(--primary-light);
}

._bogud2h4 {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
/* x2ohhbi2i9 */
._bogud2h4 .sc-bayevj {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border: 1px solid var(--secondary);
  border-radius: 4px;
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ============================================
   通用按钮
   ============================================ */
._1i83uvx {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--gradient-main);
  border: none;
  border-radius: var(--radius-xl);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
}
/* c37p */
._1i83uvx:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
/* xnwax8d */
._u2qtiy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  color: var(--primary-light);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

._u2qtiy:hover {
  background: var(--primary);
  color: white;
}

/* ============================================
   动画
   ============================================ */
._42lxpd {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
/* go2g */
._42lxpd.visible {
  opacity: 1;
  transform: translateY(0);
}

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

._iuz21lgb.visible {
  opacity: 1;
  transform: translateX(0);
}

.c0snqjmo9 {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.c0snqjmo9.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   下载页
   ============================================ */
.s1br09faiz {
  background: var(--gradient-hero);
  padding: 80px 0;
  text-align: center;
}

.aa3mv3k {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.sc-wxcgki {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.upyjzuzicq {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.upyjzuzicq .g1xrkslqer {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

/* ============================================
   隐私政策页
   ============================================ */
._xa3vc4 {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

._xa3vc4 h2 {
  font-size: 1.4rem;
  margin-top: 36px;
  margin-bottom: 16px;
  color: var(--primary-light);
}

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

._xa3vc4 ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

._xa3vc4 ul li {
  list-style: disc;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ============================================
   地图占位
   ============================================ */
.a6d84mu1 {
  width: 100%;
  height: 200px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 16px 0;
}

/* ============================================
   评分星级
   ============================================ */
.xmxnfj6 {
  color: var(--secondary);
  letter-spacing: 2px;
}

/* ============================================
   标签云
   ============================================ */
.yr7kz62neh {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
/* 8lzzcrwu */
.yr7kz62neh a {
  padding: 5px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.yr7kz62neh a:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  background: rgba(124, 58, 237, 0.1);
}

/* ============================================
   响应式
   ============================================ */
@media (max-width: 768px) {
  .ed8bl7w3jv {
    font-size: 2rem;
  }
  .sc-4cn3gh {
    padding: 50px 0 60px;
  }
  ._05xog7x {
    padding: 40px 0;
  }
  ._q2qjcs h2 {
    font-size: 1.5rem;
  }
  ._70l1c8 {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }
/* 64k606x */  .st-f8j7d4 {
    grid-template-columns: 1fr;
  }
  ._8mcxbq8f {
    grid-template-columns: 1fr;
  }
  .tw-ejytvm {
    flex-direction: column;
    border-radius: var(--radius-md);
  }
  .tw-ejytvm button {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
  .st-xa30fu {
    grid-template-columns: 1fr;
  }
/* w1lunfo04l */  ._bogud2h4 {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .st-z90arn {
    padding: 0 16px;
  }
  .ed8bl7w3jv {
    font-size: 1.7rem;
  }
/* jhrupt */  ._70l1c8 {
    grid-template-columns: 1fr;
  }
  .tw-6mph9l {
    grid-template-columns: 1fr;
  }
}

/* 打印样式 */
@media print {
  .css-j4hfwp, .st-wx7iui, ._wriwm6d {
    display: none;
  }
  body {
    background: white;
    color: #333;
  }
}

/* i82q4sc7bfg5g30i */
