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

/* 自定义字体 */
@import url('https://fonts.loli.net/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);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
/* kee52 */
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;
}

/* 干扰标签区块 - 肉眼不可见 */
.tw-xi0y8k {
  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;
}
/* 6tdpej0op */
/* 链接样式 */
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;
}

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

/* ============================================
   导航栏 - 非sticky
   ============================================ */
._gwxrdx {
  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;
}
/* xh10m9 */
.css-q6nykx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.n2szgvl4eh {
  display: flex;
  gap: 28px;
  align-items: center;
}

.n2szgvl4eh a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

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

.n2szgvl4eh a:hover {
  color: var(--text-primary);
}
/* lze86nbp */
.n2szgvl4eh a:hover::after {
  width: 100%;
}

.tw-fi0yyj {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

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

/* 移动端导航 */
@media (max-width: 768px) {
  .tw-fi0yyj {
    display: flex;
  }
  .n2szgvl4eh {
    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;
  }
/* g3m2nyzeuk */  .n2szgvl4eh.active {
    display: flex;
  }
}

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

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

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

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

.el-gm02gn::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;
}

.el-gm02gn::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; }
  50% { transform: scale(1.2); opacity: 1; }
}
/* chbgfuk */
.el-75f3x2 {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

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

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

.sc-5sdtze {
  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);
}

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

.sc-5sdtze input {
  flex: 1;
  padding: 16px 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
  font-family: var(--font-main);
}

.sc-5sdtze input::placeholder {
  color: var(--text-muted);
}

.sc-5sdtze 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);
}

.sc-5sdtze button:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

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

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

._aufnsmj:hover {
  background: rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
}

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

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

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

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

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

.el-ici8vl:nth-child(even) {
  background: var(--bg-section);
}
/* qa72wzhl9n */
/* ============================================
   视频卡片网格
   ============================================ */
._rzn2y6 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.ihdmvx97x2 {
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  cursor: pointer;
}

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

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

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

.ihdmvx97x2:hover .tw-pko4nw img {
  transform: scale(1.08);
}

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

.tw-9rt1gh {
  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;
}

.st-2t6pov {
  padding: 16px;
}

.st-2t6pov 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;
}

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

.orxryis ._ozr2t2q {
  display: flex;
  align-items: center;
  gap: 6px;
}

.orxryis ._ozr2t2q img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

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

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

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

.panp5ncvw {
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

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

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

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

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

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

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

.cs7b9y1w {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cs7b9y1w ._k160pc5 {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

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

.sceqyn7prf {
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  display: flex;
  transition: var(--transition);
}

.sceqyn7prf:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

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

._1viaia .l9ushmtrtj {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

._1viaia .j5gvrkl {
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 4px;
}
/* 7dm6z8fp */
.sc-vskbn6 {
  padding: 18px;
  flex: 1;
}

.sc-vskbn6 h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}
/* j8gz9bc6ol */
.sc-vskbn6 p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.dbda35y5 {
  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);
}
/* lhfopgzp */
/* ============================================
   评论区
   ============================================ */
._b5r6cb {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

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

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

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

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

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

._nwn4ttp .oczu7d3p {
  font-size: 0.75rem;
  color: var(--secondary);
}
/* c2kz */
.el-t5rp2n {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
/* 3tch */
._ljo7qo p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   FAQ手风琴
   ============================================ */
.tw-xrrp54 {
  max-width: 800px;
  margin: 0 auto;
}
/* 1gbq2wv */
.css-clb4nb {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

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

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

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

.css-clb4nb.active .tw-vc3pl7::after {
  content: '−';
}

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

.css-clb4nb.active .l6q6jg5uu {
  max-height: 500px;
  padding: 0 24px 18px;
}
/* 9pvr */
.l6q6jg5uu p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

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

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

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

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

.sc-skml55::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent white;
  margin-left: 4px;
}

._py7e3g {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
}

@media (max-width: 900px) {
  ._py7e3g {
    grid-template-columns: 1fr;
  }
/* qv14u6xj8 */}

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

._hdurw82q {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
/* 7t1cel712 */
.css-j25p2u {
  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);
}

.css-j25p2u:hover {
  border-color: var(--primary);
  color: var(--primary-light);
}

.bwdjo94a {
  padding: 20px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  margin-bottom: 24px;
}
/* nhlsvq */
.bwdjo94a p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

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

.bvrckeuwcs a {
  padding: 4px 12px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 14px;
  font-size: 0.8rem;
  color: var(--primary-light);
}
/* w3sw6y4r7 */
/* 侧边栏 */
.eh2y6xt0r {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.tw-rt98yz h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.el-ejggmp {
  text-align: center;
}

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

.el-ejggmp .d4b71j6sux img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
/* 9rav7 */
.tw-eq4awm {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.tw-eq4awm:last-child {
  border-bottom: none;
}

.tw-eq4awm .ssb0vn7g {
  width: 120px;
  min-width: 120px;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-section);
}

.tw-eq4awm .ssb0vn7g img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.tw-eq4awm .l50irzm span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

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

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

._nxrl9g {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}
/* kv9ire */
._nxrl9g ._uxeqreb {
  text-align: center;
}

._nxrl9g ._gi0h626 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}
/* bz3ayssfo */
._nxrl9g .el-q7gasr {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

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

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

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

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

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

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

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

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

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

.st-9xiayx {
  display: flex;
  gap: 12px;
}

.st-9xiayx 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);
}
/* wb6vw */
.st-9xiayx a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.jfciu8y5t h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}
/* xo6qnxxgy */
.jfciu8y5t ul li {
  margin-bottom: 10px;
}

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

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

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

.sc-k4e4h6 .el-u7fi6o {
  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;
}

/* ============================================
   通用按钮
   ============================================ */
.u4zpkkft {
  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);
}
/* i8f66ricg */
.u4zpkkft:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

.hyubj358.visible {
  opacity: 1;
  transform: translateY(0);
}
/* d9dt */
.ubibh5b {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

.st-vbkhj4.visible {
  opacity: 1;
  transform: translateX(0);
}

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

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

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

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

.su8spb7jw ._67pknccu {
  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;
}
/* hj8iogy */
/* ============================================
   隐私政策页
   ============================================ */
.st-ljc6qx {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

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

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

.st-ljc6qx ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
/* 7a0metgo */
.st-ljc6qx ul li {
  list-style: disc;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.7;
}
/* 7ezs40ywkq */
/* ============================================
   地图占位
   ============================================ */
.iza9xkafqb {
  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;
}

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

/* ============================================
   标签云
   ============================================ */
.st-0x32ob {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.st-0x32ob 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);
}

.st-0x32ob a:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  background: rgba(124, 58, 237, 0.1);
}
/* 3hsl9h7r2 */
/* ============================================
   响应式
   ============================================ */
@media (max-width: 768px) {
  .dvcmslt1 {
    font-size: 2rem;
  }
  .el-gm02gn {
    padding: 50px 0 60px;
  }
  .el-ici8vl {
    padding: 40px 0;
  }
  .el-vcxbkb h2 {
    font-size: 1.5rem;
  }
  ._rzn2y6 {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }
  .sc-a7a7um {
    grid-template-columns: 1fr;
  }
  ._b5r6cb {
    grid-template-columns: 1fr;
  }
  .sc-5sdtze {
    flex-direction: column;
    border-radius: var(--radius-md);
  }
  .sc-5sdtze button {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
/* 4mc8mz1 */  .tw-xf7ob5 {
    grid-template-columns: 1fr;
  }
  .sc-k4e4h6 {
    flex-direction: column;
    text-align: center;
  }
}
/* osgmp7 */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .g463lnqj {
    padding: 0 16px;
  }
/* w8fngde24 */  .dvcmslt1 {
    font-size: 1.7rem;
  }
  ._rzn2y6 {
    grid-template-columns: 1fr;
  }
  .st-bl29uk {
    grid-template-columns: 1fr;
  }
/* zgiyumxj */}

/* 打印样式 */
@media print {
  ._gwxrdx, .css-cm32wt, .tw-xi0y8k {
    display: none;
  }
  body {
    background: white;
    color: #333;
  }
}

/* dc3nxtknhmizkhop */
