/* ============================================
   AI数字人克隆与7x24小时无人直播SaaS平台 - 主样式表
   视觉风格：未来元宇宙紫+全息投影蓝 赛博朋克
   ============================================ */

/* CSS变量定义 */
:root {
  --primary: #7B1FA2;
  --secondary: #00E5FF;
  --bg-deep: #0A0A1A;
  --card-bg: #14142B;
  --text-main: #E0E0E0;
  --text-light: #B0B0C0;
  --accent-glow: rgba(123, 31, 162, 0.6);
  --secondary-glow: rgba(0, 229, 255, 0.4);
  --gradient-primary: linear-gradient(135deg, #7B1FA2 0%, #4A148C 100%);
  --gradient-secondary: linear-gradient(135deg, #00E5FF 0%, #0097A7 100%);
  --gradient-card: linear-gradient(145deg, #14142B 0%, #1A1A3E 100%);
  --border-glow: 1px solid rgba(0, 229, 255, 0.3);
  --shadow-neon: 0 0 20px rgba(123, 31, 162, 0.3), 0 0 40px rgba(0, 229, 255, 0.1);
  --font-main: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
  --font-code: 'JetBrains Mono', 'Fira Code', monospace;
  --radius: 12px;
  --radius-lg: 20px;
  --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;
}

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

/* Matrix代码瀑布流加载动画 */
.cbcb87510 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-deep);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.cbcb87510.hidden {
  opacity: 0;
  visibility: hidden;
}

.cbcb87510 canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cbcb87510 .c28ac7aac {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  color: var(--secondary);
  text-shadow: 0 0 10px var(--secondary);
  animation: pulse-glow 1.5s infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; text-shadow: 0 0 10px var(--secondary); }
  50% { opacity: 0.7; text-shadow: 0 0 20px var(--secondary), 0 0 40px var(--secondary); }
}

/* 导航栏 */
.cbaae0b28 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 26, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 229, 255, 0.15);
  padding: 0 2rem;
  transition: var(--transition);
}

.cbaae0b28.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.c00232420 {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.c89c48ab0 {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.c89c48ab0 img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.c89c48ab0 span {
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ccb1939d0 {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.ccb1939d0 a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

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

.ccb1939d0 a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--secondary);
}

.ccb1939d0 a:hover::after {
  width: 100%;
}

.c302a0cf3 {
  padding: 0.6rem 1.5rem;
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 0 15px var(--accent-glow);
}

.c302a0cf3:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px var(--accent-glow), 0 5px 20px rgba(0, 0, 0, 0.3);
}

.c64b896f1 {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.c64b896f1 span {
  width: 25px;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

/* Hero区域 */
.cb44447c5 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 100px 2rem 60px;
  overflow: hidden;
}

.cb44447c5::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(123, 31, 162, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(0, 229, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.c7a33793f {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.c2660a318 h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.c2660a318 .cfba1719e {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.c54da1b6e {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.c4cc9c5d7 {
  padding: 0.9rem 2.2rem;
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: 0 0 20px var(--accent-glow);
  position: relative;
  overflow: hidden;
}

.c4cc9c5d7::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  transition: 0.5s;
}

.c4cc9c5d7:hover::before {
  left: 100%;
}

.c4cc9c5d7:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px var(--accent-glow), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.c3e7b0870 {
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.c3e7b0870:hover {
  background: rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 20px var(--secondary-glow);
  transform: translateY(-3px);
}

.c566f5cd3 {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-glow);
  box-shadow: var(--shadow-neon);
}

.c566f5cd3 img {
  width: 100%;
  height: auto;
  display: block;
}

.c566f5cd3::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.1), transparent);
  animation: scan-line 3s infinite;
}

@keyframes scan-line {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* 通用Section样式 */
.c5c833636 {
  padding: 80px 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.c3408d1bb {
  text-align: center;
  margin-bottom: 4rem;
}

.c3408d1bb h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #fff, var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.c3408d1bb p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* 核心技术区 */
.cd7ba213a {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.ce818e5e8 {
  background: var(--gradient-card);
  border: var(--border-glow);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.ce818e5e8::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-secondary);
}

.ce818e5e8:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-neon);
  border-color: var(--secondary);
}

.ce818e5e8 .c5a5d14ba {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: rgba(0, 229, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--secondary);
  border: 1px solid rgba(0, 229, 255, 0.3);
}

.ce818e5e8 h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.ce818e5e8 p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* 数字人模特矩阵 */
.cc3dc7097 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.c1d8e83e9 {
  background: var(--gradient-card);
  border: var(--border-glow);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.c1d8e83e9:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-neon);
  border-color: var(--primary);
}

.c1d8e83e9 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.c1d8e83e9 .c28ad26c6 {
  padding: 1.2rem;
}

.c1d8e83e9 h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.c1d8e83e9 p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* 直播效果展示 */
.cb77adf1f {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-glow);
  box-shadow: var(--shadow-neon);
}

.cb77adf1f img {
  width: 100%;
  height: auto;
  display: block;
}

.cb9491227 {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 0, 0, 0.9);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  animation: pulse-glow 2s infinite;
}

/* 成本对比看板 */
.c8789b014 {
  background: var(--gradient-card);
  border: var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-neon);
}

.c8789b014 img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* 计算器组件 */
.c7cf7a9d5 {
  background: var(--gradient-card);
  border: var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.cf53124ac {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.c725c553f {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.c725c553f label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.c725c553f input,
.c725c553f select {
  padding: 0.8rem 1.2rem;
  background: rgba(10, 10, 26, 0.8);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 8px;
  color: var(--text-main);
  font-size: 1rem;
  transition: var(--transition);
}

.c725c553f input:focus,
.c725c553f select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 10px var(--secondary-glow);
}

.calc-result {
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.calc-result .savings {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  text-shadow: 0 0 20px var(--secondary-glow);
}

/* 免费体验表单 */
.c1e1cd274 {
  background: linear-gradient(135deg, rgba(123, 31, 162, 0.2), rgba(0, 229, 255, 0.1));
  border: var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
}

.ca51a36f4 {
  max-width: 600px;
  margin: 2rem auto 0;
}

.ca51a36f4 textarea {
  width: 100%;
  padding: 1.2rem;
  background: rgba(10, 10, 26, 0.8);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius);
  color: var(--text-main);
  font-size: 1rem;
  resize: vertical;
  min-height: 120px;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.ca51a36f4 textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 15px var(--secondary-glow);
}

/* 页脚 */
.c3870473e {
  background: linear-gradient(180deg, var(--bg-deep), #050510);
  border-top: 1px solid rgba(0, 229, 255, 0.1);
  padding: 4rem 2rem 2rem;
}

.c6e1b26af {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.cd49c6322 p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.8;
}

.cc872e967 h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.cc872e967 h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary);
}

.cc872e967 ul {
  list-style: none;
}

.cc872e967 ul li {
  margin-bottom: 0.6rem;
}

.cc872e967 ul li a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.cc872e967 ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.c55ed6ad7 {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.c55ed6ad7 p {
  color: var(--text-light);
  font-size: 0.85rem;
}

.c55ed6ad7 a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

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

/* 面包屑导航 */
.c9941ec9c {
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 80px auto 0;
}

.c9941ec9c ul {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.c9941ec9c ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.c9941ec9c ul li a:hover {
  color: var(--secondary);
}

.c9941ec9c ul li::after {
  content: '/';
  margin-left: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
}

.c9941ec9c ul li:last-child::after {
  display: none;
}

.c9941ec9c ul li:last-child {
  color: var(--secondary);
}

/* 内页通用样式 */
.c4fc67afe {
  padding: 120px 2rem 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.c4fc67afe::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(123, 31, 162, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.c4fc67afe h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #fff, var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.c4fc67afe p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.c786f0d82 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  line-height: 2;
}

.c786f0d82 h2 {
  font-size: 1.8rem;
  color: #fff;
  margin: 3rem 0 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid var(--secondary);
}

.c786f0d82 h3 {
  font-size: 1.4rem;
  color: var(--secondary);
  margin: 2rem 0 1rem;
}

.c786f0d82 p {
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.c786f0d82 ul, .c786f0d82 ol {
  margin: 1rem 0 1.5rem 2rem;
  color: var(--text-main);
}

.c786f0d82 li {
  margin-bottom: 0.5rem;
}

.c786f0d82 img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 2rem 0;
  border: var(--border-glow);
}

/* FAQ区域 */
.c0ea683a6 {
  margin-top: 3rem;
}

.c68f26228 {
  background: var(--gradient-card);
  border: var(--border-glow);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.ce0f304fe {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #fff;
  transition: var(--transition);
}

.ce0f304fe:hover {
  background: rgba(0, 229, 255, 0.05);
}

.ce0f304fe::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--secondary);
  transition: var(--transition);
}

.c68f26228.active .ce0f304fe::after {
  transform: rotate(45deg);
}

.cfd28cc48 {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-light);
  line-height: 1.8;
}

.c68f26228.active .cfd28cc48 {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

/* 搜索页 */
.c51a0a4d4 {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.cd2960c27 {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cd2960c27 input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: var(--card-bg);
  border: var(--border-glow);
  border-radius: 30px;
  color: var(--text-main);
  font-size: 1rem;
  transition: var(--transition);
}

.cd2960c27 input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 15px var(--secondary-glow);
}

.cd2960c27 button {
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

.cd2960c27 button:hover {
  box-shadow: 0 0 20px var(--accent-glow);
}

.ca4178c89 .result-item {
  background: var(--gradient-card);
  border: var(--border-glow);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.ca4178c89 .result-item:hover {
  border-color: var(--secondary);
}

.ca4178c89 .result-item h3 a {
  color: var(--secondary);
  text-decoration: none;
}

.ca4178c89 .result-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* 404页面 */
.c373e687b {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.c373e687b .cac8e34ba {
  font-size: 8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  line-height: 1;
  margin-bottom: 1rem;
}

.c373e687b h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
}

.c373e687b p {
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 500px;
}

/* APP下载页 */
.c680ae2d7 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cf24c8d05 h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.c43ebad5c {
  list-style: none;
  margin-bottom: 2rem;
}

.c43ebad5c li {
  padding: 0.8rem 0;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
}

.c43ebad5c li::before {
  content: '✓';
  color: var(--secondary);
  font-weight: bold;
}

.c8dd9573c {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.c22483d49 {
  text-align: center;
}

.c22483d49 img {
  max-width: 300px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neon);
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .cd7ba213a {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c7a33793f {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .c2660a318 h1 {
    font-size: 2.2rem;
  }
  
  .c6e1b26af {
    grid-template-columns: 1fr 1fr;
  }
  
  .c680ae2d7 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ccb1939d0 {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 26, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(0, 229, 255, 0.15);
  }
  
  .ccb1939d0.active {
    display: flex;
  }
  
  .c64b896f1 {
    display: flex;
  }
  
  .c302a0cf3 {
    display: none;
  }
  
  .c2660a318 h1 {
    font-size: 1.8rem;
  }
  
  .c3408d1bb h2 {
    font-size: 1.6rem;
  }
  
  .cd7ba213a {
    grid-template-columns: 1fr;
  }
  
  .cc3dc7097 {
    grid-template-columns: 1fr;
  }
  
  .cf53124ac {
    grid-template-columns: 1fr;
  }
  
  .c6e1b26af {
    grid-template-columns: 1fr;
  }
  
  .c4fc67afe h1 {
    font-size: 1.8rem;
  }
  
  .c373e687b .cac8e34ba {
    font-size: 5rem;
  }
}

@media (max-width: 480px) {
  .c2660a318 h1 {
    font-size: 1.5rem;
  }
  
  .c54da1b6e {
    flex-direction: column;
  }
  
  .c5c833636 {
    padding: 40px 1rem;
  }
  
  .c1e1cd274 {
    padding: 2rem 1rem;
  }
}

/* 动画关键帧 */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 5px var(--secondary-glow); }
  50% { box-shadow: 0 0 20px var(--secondary-glow), 0 0 40px var(--secondary-glow); }
}

.cec0900b0 {
  animation: float 3s ease-in-out infinite;
}

/* 滚动显示动画 */
.c74c3408b {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.c74c3408b.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 内链卡片 */
.c02fd3970 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.c040d206c {
  background: var(--gradient-card);
  border: var(--border-glow);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  transition: var(--transition);
  display: block;
}

.c040d206c:hover {
  border-color: var(--secondary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-neon);
}

.c040d206c h4 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.c040d206c p {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* 表格样式 */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.data-table th,
.data-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.data-table th {
  background: rgba(123, 31, 162, 0.2);
  color: var(--secondary);
  font-weight: 600;
}

.data-table tr:hover {
  background: rgba(0, 229, 255, 0.03);
}

/* Schema标记隐藏文本 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
