/* ============================================
   超自然现象调查与都市传说解密档案库 - 主样式表
   视觉风格：监控夜视绿 + 绝密档案牛皮纸
   ============================================ */

/* CSS 变量定义 */
:root {
  --color-primary: #00FF00;
  --color-secondary: #8B0000;
  --color-bg: #111111;
  --color-card: #D2B48C;
  --color-text: #A9A9A9;
  --color-primary-dim: #00cc00;
  --color-primary-glow: rgba(0, 255, 0, 0.3);
  --color-secondary-glow: rgba(139, 0, 0, 0.5);
  --font-typewriter: 'Courier New', 'Noto Sans SC', monospace;
  --font-body: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  --font-heading: 'Noto Serif SC', 'SimSun', serif;
  --max-width: 1200px;
  --border-radius: 2px;
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
}

/* VHS 噪点覆盖层 */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.03) 0px,
    rgba(0, 0, 0, 0.03) 1px,
    transparent 1px,
    transparent 2px
  );
  animation: scanline 8s linear infinite;
}

@keyframes scanline {
  0% { transform: translateY(0); }
  100% { transform: translateY(4px); }
}

/* 通用容器 */
.c8c31ce36 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* 链接样式 */
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #fff;
  text-shadow: 0 0 8px var(--color-primary-glow);
}

/* 标题样式 */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.4;
  margin-bottom: 1rem;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }

p {
  margin-bottom: 1rem;
}

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

/* ============ 导航栏 ============ */
.cdb0e6691 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.95);
  border-bottom: 1px solid rgba(0, 255, 0, 0.2);
  backdrop-filter: blur(10px);
}

.c51633241 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.c6bd10a3c {
  font-family: var(--font-typewriter);
  font-size: 1.2rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px var(--color-primary-glow);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.c6bd10a3c img {
  width: 32px;
  height: 32px;
}

.c213431b0 {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.c213431b0 a {
  font-family: var(--font-typewriter);
  font-size: 0.85rem;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0;
  border-bottom: 1px solid transparent;
}

.c213431b0 a:hover,
.c213431b0 a.cb74f09e2 {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.c46030152 {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0.5rem;
}

.c46030152 span {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

/* ============ Hero 监控室区域 ============ */
.ca19b25a1 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 60px;
}

.ca19b25a1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0.3) 0%,
    rgba(17, 17, 17, 0.7) 70%,
    rgba(17, 17, 17, 1) 100%
  );
  z-index: 2;
}

.c75da8c16 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.2);
  animation: vhsFlicker 4s infinite;
}

@keyframes vhsFlicker {
  0%, 95%, 100% { opacity: 1; filter: brightness(0.6) contrast(1.2); }
  96% { opacity: 0.8; filter: brightness(0.4) contrast(1.5) hue-rotate(10deg); }
  97% { opacity: 1; filter: brightness(0.7) contrast(1.1); }
}

.c089a4e1b {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
}

.c089a4e1b h1 {
  font-size: 3rem;
  font-family: var(--font-typewriter);
  color: var(--color-primary);
  text-shadow: 0 0 20px var(--color-primary-glow), 0 0 40px var(--color-primary-glow);
  margin-bottom: 1rem;
  animation: typeGlow 2s ease-in-out infinite alternate;
}

@keyframes typeGlow {
  from { text-shadow: 0 0 10px var(--color-primary-glow); }
  to { text-shadow: 0 0 30px var(--color-primary-glow), 0 0 60px var(--color-primary-glow); }
}

.c089a4e1b p {
  font-family: var(--font-typewriter);
  font-size: 1.1rem;
  color: var(--color-text);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.c0c12ff6b {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-typewriter);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  border: 2px solid var(--color-secondary);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.c0c12ff6b:hover {
  background: transparent;
  color: var(--color-secondary);
  box-shadow: 0 0 20px var(--color-secondary-glow);
  text-shadow: none;
}

.c0c12ff6b::after {
  content: '[ 绝密 ]';
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  color: var(--color-secondary);
  transition: var(--transition);
}

.c0c12ff6b:hover::after {
  top: -1.2rem;
}

/* 录像带时间戳 */
.c5eb141fd {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: var(--font-typewriter);
  font-size: 0.9rem;
  color: var(--color-primary);
  opacity: 0.7;
  z-index: 3;
}

.c5eb141fd::before {
  content: '● REC';
  color: red;
  margin-right: 1rem;
  animation: recBlink 1s infinite;
}

@keyframes recBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* ============ 档案卡片区域 ============ */
.cfd24798e {
  padding: 5rem 0;
  position: relative;
}

.ccff840c0 {
  font-family: var(--font-typewriter);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  width: 100%;
}

.ccff840c0::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-primary);
  margin: 0.8rem auto 0;
  box-shadow: 0 0 10px var(--color-primary-glow);
}

.c2d7fcb45 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.cc91ab948 {
  background: var(--color-card);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  position: relative;
  transition: var(--transition);
  transform: rotate(-0.5deg);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  color: #333;
  overflow: hidden;
}

.cc91ab948:nth-child(even) {
  transform: rotate(0.5deg);
}

.cc91ab948:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.7);
}

.cc91ab948::before {
  content: '绝密';
  position: absolute;
  top: 10px;
  right: -30px;
  background: var(--color-secondary);
  color: #fff;
  padding: 0.2rem 2.5rem;
  font-family: var(--font-typewriter);
  font-size: 0.75rem;
  transform: rotate(45deg);
  letter-spacing: 2px;
}

.cc91ab948 .ca29d827f {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border: 3px solid #8B7355;
  margin-bottom: 1rem;
  filter: sepia(0.3);
}

.cc91ab948 h3 {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-typewriter);
}

.cc91ab948 p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

.cc91ab948 .cebc2779b {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  font-family: var(--font-typewriter);
  border-radius: 2px;
  margin-top: 0.8rem;
}

.ca19f8b41 {
  background: #2d5a27;
  color: #00ff00;
}

.c7668a13a {
  background: #5a2727;
  color: #ff4444;
}

/* 回形针装饰 */
.c83125f01 {
  position: absolute;
  top: -8px;
  left: 20px;
  width: 20px;
  height: 40px;
  border: 2px solid #888;
  border-radius: 10px 10px 0 0;
  border-bottom: none;
}

/* ============ EVP 音频区域 ============ */
.c28e91650 {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, #0a0a0a 100%);
}

.c24a2f78e {
  max-width: 800px;
  margin: 0 auto;
  background: #0a0a0a;
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: var(--border-radius);
  padding: 2rem;
  position: relative;
}

.c24a2f78e img {
  width: 100%;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 255, 0, 0.2);
}

.cf7ee947f {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.c4137375b {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.c4137375b:hover {
  background: var(--color-primary);
  color: var(--color-bg);
}

.c06633b49 {
  flex: 1;
  height: 4px;
  background: #333;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.c00b70d3c {
  height: 100%;
  width: 35%;
  background: var(--color-primary);
  border-radius: 2px;
  box-shadow: 0 0 5px var(--color-primary-glow);
}

.cd77438c8 {
  font-family: var(--font-typewriter);
  font-size: 0.8rem;
  color: var(--color-primary);
  opacity: 0.7;
}

/* ============ 装备解析区域 ============ */
.cedf8be6e {
  padding: 5rem 0;
}

.cab373996 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cb93203a8 {
  border: 1px solid rgba(0, 255, 0, 0.2);
  border-radius: var(--border-radius);
}

.c68e076f1 {
  list-style: none;
}

.c68e076f1 li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 255, 0, 0.1);
  font-family: var(--font-typewriter);
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.5rem;
}

.c68e076f1 li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

/* ============ 辟谣对比区域 ============ */
.c33b072bd {
  padding: 5rem 0;
  background: #0a0a0a;
}

.debunk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.c21c1b476 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 255, 0, 0.1);
}

.c6ee20ce8 {
  padding: 1.5rem;
  background: rgba(139, 0, 0, 0.1);
  border-right: 2px solid var(--color-secondary);
}

.c6ee20ce8 h4 {
  color: var(--color-secondary);
  font-family: var(--font-typewriter);
  margin-bottom: 0.5rem;
}

.c27473858 {
  padding: 1.5rem;
  background: rgba(0, 255, 0, 0.03);
}

.c27473858 h4 {
  color: var(--color-primary);
  font-family: var(--font-typewriter);
  margin-bottom: 0.5rem;
}

/* ============ 目击者匿名墙 ============ */
.c6b02ab24 {
  padding: 5rem 0;
  overflow: hidden;
}

.cec5c5f4f {
  display: flex;
  gap: 2rem;
  animation: scrollWitness 30s linear infinite;
}

@keyframes scrollWitness {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.c3f649c57 {
  min-width: 300px;
  padding: 1.5rem;
  background: rgba(0, 255, 0, 0.03);
  border: 1px solid rgba(0, 255, 0, 0.1);
  border-left: 3px solid var(--color-primary);
  font-family: var(--font-typewriter);
  font-size: 0.85rem;
  line-height: 1.6;
}

.c3f649c57 .c2a62f0d4 {
  margin-top: 0.8rem;
  font-size: 0.75rem;
  color: rgba(0, 255, 0, 0.5);
}

/* ============ 页脚 ============ */
.c4a55230f {
  padding: 4rem 0 2rem;
  background: #0a0a0a;
  border-top: 1px solid rgba(0, 255, 0, 0.1);
}

.cfbc03fed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.c87d6b2f7 h4 {
  font-family: var(--font-typewriter);
  color: var(--color-primary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.c87d6b2f7 ul {
  list-style: none;
}

.c87d6b2f7 ul li {
  margin-bottom: 0.5rem;
}

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

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

.cf1c5b8b3 {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 255, 0, 0.1);
  font-family: var(--font-typewriter);
  font-size: 0.8rem;
  color: rgba(169, 169, 169, 0.5);
}

/* ============ 面包屑 ============ */
.cbcdb5c5c {
  padding: 1rem 0;
  margin-top: 70px;
  font-family: var(--font-typewriter);
  font-size: 0.8rem;
}

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

.cbcdb5c5c span {
  color: var(--color-primary);
  margin: 0 0.5rem;
}

/* ============ 内页通用样式 ============ */
.c5c7bf8ce {
  padding: 6rem 0 3rem;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, rgba(0, 255, 0, 0.03) 0%, transparent 100%);
}

.c5c7bf8ce h1 {
  font-family: var(--font-typewriter);
  font-size: 2.5rem;
}

.c5c7bf8ce .c48023c1b {
  max-width: 700px;
  margin: 1rem auto 0;
  font-size: 1rem;
}

.cad0309e0 {
  padding: 3rem 0 5rem;
}

.cad0309e0 article {
  max-width: 800px;
  margin: 0 auto;
}

.cad0309e0 article h2 {
  margin-top: 2.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 255, 0, 0.2);
}

.cad0309e0 article h3 {
  margin-top: 1.5rem;
}

/* ============ 表单样式 ============ */
.cdf8a375e {
  margin-bottom: 1.5rem;
}

.cdf8a375e label {
  display: block;
  font-family: var(--font-typewriter);
  font-size: 0.85rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.cdf8a375e input,
.cdf8a375e textarea,
.cdf8a375e select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(0, 255, 0, 0.03);
  border: 1px solid rgba(0, 255, 0, 0.2);
  color: var(--color-text);
  font-family: var(--font-typewriter);
  font-size: 0.9rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

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

.cdf8a375e textarea {
  min-height: 150px;
  resize: vertical;
}

.c1a02db93 {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--color-primary);
  color: var(--color-bg);
  font-family: var(--font-typewriter);
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
}

.c1a02db93:hover {
  background: var(--color-primary-dim);
  box-shadow: 0 0 20px var(--color-primary-glow);
}

/* ============ 搜索页 ============ */
.cfe60eecd {
  max-width: 600px;
  margin: 2rem auto;
  position: relative;
}

.cfe60eecd input {
  width: 100%;
  padding: 1rem 1.5rem;
  padding-right: 3rem;
  background: rgba(0, 255, 0, 0.03);
  border: 2px solid rgba(0, 255, 0, 0.3);
  color: var(--color-primary);
  font-family: var(--font-typewriter);
  font-size: 1rem;
  border-radius: var(--border-radius);
}

.cfe60eecd button {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 1.2rem;
  cursor: pointer;
}

.c4bfd1225 {
  max-width: 800px;
  margin: 2rem auto;
}

.search-result-item {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 255, 0, 0.1);
}

.search-result-item h3 a {
  color: var(--color-primary);
}

.search-result-item p {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

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

.page-404 h1 {
  font-size: 8rem;
  font-family: var(--font-typewriter);
  color: var(--color-primary);
  text-shadow: 0 0 30px var(--color-primary-glow);
  animation: glitch404 3s infinite;
}

@keyframes glitch404 {
  0%, 90%, 100% { transform: none; opacity: 1; }
  91% { transform: translateX(-5px) skewX(2deg); opacity: 0.8; }
  92% { transform: translateX(5px) skewX(-2deg); opacity: 0.9; }
  93% { transform: none; opacity: 1; }
}

.page-404 p {
  font-family: var(--font-typewriter);
  font-size: 1.2rem;
  margin: 1rem 0 2rem;
}

/* ============ 打字机动效 ============ */
.typewriter {
  overflow: hidden;
  border-right: 2px solid var(--color-primary);
  white-space: nowrap;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: var(--color-primary); }
}

/* ============ 绝密印章动画 ============ */
.ce2fd2ab2 {
  position: relative;
  display: inline-block;
}

.ce2fd2ab2::after {
  content: '已解密';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  font-family: var(--font-typewriter);
  font-size: 2rem;
  color: var(--color-secondary);
  border: 4px solid var(--color-secondary);
  padding: 0.3rem 1rem;
  opacity: 0;
  animation: stampDown 0.5s ease forwards;
  animation-delay: 1s;
}

@keyframes stampDown {
  0% { transform: translate(-50%, -50%) rotate(-15deg) scale(3); opacity: 0; }
  50% { transform: translate(-50%, -50%) rotate(-15deg) scale(1.1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) rotate(-15deg) scale(1); opacity: 0.9; }
}

/* ============ FAQ 折叠 ============ */
.c48257554 {
  border: 1px solid rgba(0, 255, 0, 0.1);
  margin-bottom: 0.5rem;
}

.c4d6531f7 {
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-typewriter);
  font-size: 0.9rem;
  color: var(--color-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.c4d6531f7:hover {
  background: rgba(0, 255, 0, 0.03);
}

.c4d6531f7::after {
  content: '+';
  font-size: 1.2rem;
}

.c48257554.cb74f09e2 .c4d6531f7::after {
  content: '-';
}

.c1be6802d {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.c48257554.cb74f09e2 .c1be6802d {
  padding: 0 1.5rem 1rem;
  max-height: 500px;
}

/* ============ 响应式设计 ============ */
@media (max-width: 992px) {
  .cfbc03fed {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cab373996 {
    grid-template-columns: 1fr;
  }
  
  .c21c1b476 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html { font-size: 14px; }
  
  .c213431b0 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.98);
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid rgba(0, 255, 0, 0.2);
  }
  
  .c213431b0.cb74f09e2 {
    display: flex;
  }
  
  .c46030152 {
    display: flex;
  }
  
  .c089a4e1b h1 {
    font-size: 2rem;
  }
  
  .c2d7fcb45 {
    grid-template-columns: 1fr;
  }
  
  .cfbc03fed {
    grid-template-columns: 1fr;
  }
  
  .debunk-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .c089a4e1b h1 {
    font-size: 1.6rem;
  }
  
  .ccff840c0 h2 {
    font-size: 1.4rem;
  }
  
  .c8c31ce36 {
    padding: 0 1rem;
  }
}

/* ============ 工具类 ============ */
.cee9bc029 { text-align: center; }
.text-green { color: var(--color-primary); }
.text-red { color: var(--color-secondary); }
.ce088c6bd { margin-top: 1rem; }
.c5e5fa251 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.c5d9c094c { margin-bottom: 2rem; }
.c79b42643 { margin-bottom: 3rem; }

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