/* ============================================
   中古冷兵器收藏与欧洲中世纪甲胄复原网 - 主样式表
   视觉风格：淬火寒芒银+中世纪血袍红
   ============================================ */

/* CSS变量定义 */
:root {
  --blood-red: #8B0000;
  --quench-silver: #C0C0C0;
  --anvil-black: #1A1A1A;
  --chainmail-gray: #2A2A2A;
  --parchment-yellow: #E6D5B8;
  --blood-red-light: #A52A2A;
  --blood-red-dark: #5C0000;
  --steel-highlight: #D4D4D4;
  --forge-orange: #FF6B35;
  --shadow-deep: rgba(0, 0, 0, 0.8);
  --font-gothic: 'Cinzel', 'Noto Serif SC', serif;
  --font-body: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  --max-width: 1400px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--anvil-black);
  color: var(--parchment-yellow);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: var(--blood-red-light);
  text-shadow: 0 0 8px rgba(139, 0, 0, 0.5);
}

/* 图片响应式 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   导航栏 - 锻铁风格
   ============================================ */
.cfaf195c7 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.98) 0%, rgba(42, 42, 42, 0.95) 100%);
  border-bottom: 2px solid var(--blood-red-dark);
  backdrop-filter: blur(10px);
  padding: 0 2rem;
}

.cc118b454 {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.c7f49f5ee {
  display: flex;
  align-items: center;
  gap: 12px;
}

.c7f49f5ee img {
  width: 42px;
  height: 42px;
  border-radius: 4px;
}

.c9cd73578 {
  font-family: var(--font-gothic);
  font-size: 1.2rem;
  color: var(--quench-silver);
  font-weight: 700;
  letter-spacing: 2px;
}

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

.c95b8cd15 li a {
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  color: var(--parchment-yellow);
}

.c95b8cd15 li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blood-red);
  transition: width 0.3s ease;
}

.c95b8cd15 li a:hover::after {
  width: 100%;
}

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

.c865590a7 span {
  width: 25px;
  height: 2px;
  background: var(--quench-silver);
  transition: var(--transition-smooth);
}

/* ============================================
   Hero区 - 铁锤与烈火
   ============================================ */
.c59f55b2b {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cc9f9c108 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.c151221c4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.3) 0%,
    rgba(139, 0, 0, 0.15) 50%,
    rgba(26, 26, 26, 0.9) 100%
  );
}

.c589cd01b {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.cea6d73d7 {
  font-family: var(--font-gothic);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--quench-silver);
  text-shadow: 0 0 20px rgba(192, 192, 192, 0.3), 0 4px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: 1.5rem;
  letter-spacing: 4px;
  line-height: 1.3;
}

.c5129d4c7 {
  font-size: 1.2rem;
  color: var(--parchment-yellow);
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.8;
}

.ca5d82485 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--blood-red) 0%, var(--blood-red-dark) 100%);
  color: var(--quench-silver);
  font-family: var(--font-gothic);
  font-size: 1.1rem;
  border: 2px solid var(--blood-red-light);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}

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

.ca5d82485:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
  color: #fff;
}

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

/* ============================================
   通用区块标题
   ============================================ */
.cfa4123b8 {
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 1rem;
}

.c6b2f2f67 {
  font-family: var(--font-gothic);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--quench-silver);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.c6b2f2f67::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--blood-red);
  margin: 0.8rem auto 0;
}

.ce81b019e {
  font-size: 1rem;
  color: var(--parchment-yellow);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   内容区块 - 博物馆展柜风格
   ============================================ */
.c7b615310 {
  padding: 5rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.c3234e35d {
  background: var(--chainmail-gray);
  border: 1px solid rgba(192, 192, 192, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
}

.c3234e35d::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blood-red), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.c3234e35d:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(139, 0, 0, 0.2);
  border-color: rgba(139, 0, 0, 0.3);
}

.c3234e35d:hover::before {
  opacity: 1;
}

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

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

.c3234e35d:hover .ceb505206 img {
  transform: scale(1.05);
}

/* 剑刃寒光特效 */
.ceb505206::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.c3234e35d:hover .ceb505206::after {
  left: 100%;
}

.c78a4d52b {
  padding: 1.5rem;
}

.c4138a6cc {
  font-family: var(--font-gothic);
  font-size: 1.2rem;
  color: var(--quench-silver);
  margin-bottom: 0.8rem;
}

.ca317d92a {
  font-size: 0.85rem;
  color: var(--blood-red-light);
  margin-bottom: 0.8rem;
  display: flex;
  gap: 1rem;
}

.cd04f02e0 {
  font-size: 0.95rem;
  color: var(--parchment-yellow);
  opacity: 0.85;
  line-height: 1.7;
}

.c7b96c2e0 {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--blood-red);
  color: var(--blood-red-light);
  font-size: 0.85rem;
  border-radius: 3px;
  transition: var(--transition-smooth);
}

.c7b96c2e0:hover {
  background: var(--blood-red);
  color: #fff;
}

/* ============================================
   甲胄大赏区
   ============================================ */
.c368044a6 {
  background: linear-gradient(135deg, var(--anvil-black) 0%, #0d0d0d 100%);
  padding: 5rem 2rem;
}

.c9177949d {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.c4e3140f5 {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.c4e3140f5 img {
  width: 100%;
  height: auto;
}

.c3e846e25 h2 {
  font-family: var(--font-gothic);
  font-size: 2rem;
  color: var(--quench-silver);
  margin-bottom: 1.5rem;
}

.c3e846e25 p {
  margin-bottom: 1.2rem;
  line-height: 1.9;
}

/* ============================================
   数据图表区
   ============================================ */
.c24694e24 {
  padding: 5rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.c8d198c7b {
  background: var(--chainmail-gray);
  border: 1px solid rgba(192, 192, 192, 0.1);
  border-radius: 8px;
  padding: 2rem;
  margin-top: 2rem;
}

/* ============================================
   刀匠专访区
   ============================================ */
.c17b694cc {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--anvil-black) 0%, #111 50%, var(--anvil-black) 100%);
}

.c85e98478 {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.cb1f58ae0 {
  background: var(--chainmail-gray);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(192, 192, 192, 0.08);
  transition: var(--transition-smooth);
}

.cb1f58ae0:hover {
  border-color: var(--blood-red-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.c3e27d8bc {
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.c04bb1f5e {
  padding: 1.5rem;
}

.cb486e027 {
  font-family: var(--font-gothic);
  font-size: 1.3rem;
  color: var(--quench-silver);
  margin-bottom: 0.5rem;
}

.c5b6bcfa7 {
  font-size: 0.85rem;
  color: var(--blood-red-light);
  margin-bottom: 1rem;
}

.cf0ddd09e {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   保养指南区
   ============================================ */
.cbac895e3 {
  padding: 5rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.caee01a4b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.cfb926945 {
  background: var(--chainmail-gray);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid rgba(192, 192, 192, 0.08);
  transition: var(--transition-smooth);
}

.cfb926945:hover {
  border-color: var(--blood-red-dark);
}

.cd38facc2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.c040eadce {
  font-family: var(--font-gothic);
  font-size: 1.1rem;
  color: var(--quench-silver);
  margin-bottom: 0.8rem;
}

.ca5416749 {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.85;
}

/* ============================================
   页脚 - 铁砧风格
   ============================================ */
.c58e78efc {
  background: linear-gradient(180deg, var(--chainmail-gray) 0%, #111 100%);
  border-top: 2px solid var(--blood-red-dark);
  padding: 4rem 2rem 2rem;
}

.c200b9b4c {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.c0fe8c721 h3 {
  font-family: var(--font-gothic);
  font-size: 1.1rem;
  color: var(--quench-silver);
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--blood-red-dark);
}

.c0fe8c721 ul {
  list-style: none;
}

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

.c0fe8c721 ul li a {
  font-size: 0.9rem;
  color: var(--parchment-yellow);
  opacity: 0.8;
}

.c0fe8c721 ul li a:hover {
  opacity: 1;
  color: var(--blood-red-light);
}

.c0fe8c721 p {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.8;
}

.c86bb6016 {
  max-width: var(--max-width);
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(192, 192, 192, 0.1);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ============================================
   面包屑导航
   ============================================ */
.c5206ec7f {
  padding: 1rem 2rem;
  max-width: var(--max-width);
  margin: 80px auto 0;
  font-size: 0.85rem;
}

.c5206ec7f a {
  color: var(--parchment-yellow);
  opacity: 0.7;
}

.c5206ec7f span {
  margin: 0 0.5rem;
  opacity: 0.5;
}

/* ============================================
   内页通用布局
   ============================================ */
.ca443a762 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem;
}

.ca1957ce3 {
  position: relative;
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  overflow: hidden;
}

.c198fc2cc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

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

.c5d634821 {
  font-family: var(--font-gothic);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--quench-silver);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.c284e1e9d {
  margin-top: 1rem;
  font-size: 1.1rem;
  opacity: 0.85;
}

/* 文章内容 */
.c1c724290 {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.c1c724290 h2 {
  font-family: var(--font-gothic);
  font-size: 1.6rem;
  color: var(--quench-silver);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(139, 0, 0, 0.3);
}

.c1c724290 h3 {
  font-size: 1.3rem;
  color: var(--steel-highlight);
  margin: 2rem 0 0.8rem;
}

.c1c724290 p {
  margin-bottom: 1.2rem;
  line-height: 1.9;
}

.c1c724290 ul, .c1c724290 ol {
  margin: 1rem 0 1.5rem 2rem;
}

.c1c724290 li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* FAQ区 */
.c74b8dca8 {
  margin: 3rem 0;
}

.cc128d448 {
  background: var(--chainmail-gray);
  border: 1px solid rgba(192, 192, 192, 0.08);
  border-radius: 6px;
  margin-bottom: 1rem;
  overflow: hidden;
}

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

.c7ae97d68::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--blood-red);
}

.cc128d448.active .c7ae97d68::after {
  content: '-';
}

.c78f1dbad {
  padding: 0 1.5rem 1.2rem;
  display: none;
  line-height: 1.8;
  opacity: 0.85;
}

.cc128d448.active .c78f1dbad {
  display: block;
}

/* ============================================
   搜索页
   ============================================ */
.search-section {
  max-width: 800px;
  margin: 100px auto 3rem;
  padding: 2rem;
}

.search-box {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
}

.search-box input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: var(--chainmail-gray);
  border: 2px solid rgba(192, 192, 192, 0.2);
  border-right: none;
  border-radius: 4px 0 0 4px;
  color: var(--parchment-yellow);
  font-size: 1rem;
  outline: none;
}

.search-box input:focus {
  border-color: var(--blood-red);
}

.search-box button {
  padding: 1rem 2rem;
  background: var(--blood-red);
  color: #fff;
  border: 2px solid var(--blood-red);
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.search-box button:hover {
  background: var(--blood-red-light);
}

.c7fcaa245 {
  list-style: none;
}

.c7fcaa245 li {
  padding: 1.5rem;
  background: var(--chainmail-gray);
  border-radius: 6px;
  margin-bottom: 1rem;
  border: 1px solid rgba(192, 192, 192, 0.05);
}

.c7fcaa245 li h3 {
  color: var(--quench-silver);
  margin-bottom: 0.5rem;
}

.c7fcaa245 li p {
  font-size: 0.9rem;
  opacity: 0.8;
}

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

.error-page__code {
  font-family: var(--font-gothic);
  font-size: 8rem;
  color: var(--blood-red);
  text-shadow: 0 0 30px rgba(139, 0, 0, 0.4);
  line-height: 1;
}

.error-page__title {
  font-family: var(--font-gothic);
  font-size: 2rem;
  color: var(--quench-silver);
  margin: 1rem 0;
}

.error-page__desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.error-page__link {
  padding: 0.8rem 2rem;
  background: var(--blood-red);
  color: #fff;
  border-radius: 4px;
  font-size: 1rem;
}

/* ============================================
   产品网格
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.product-card {
  background: var(--chainmail-gray);
  border: 1px solid rgba(192, 192, 192, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.product-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

.product-card__body {
  padding: 1.5rem;
}

.product-card__name {
  font-family: var(--font-gothic);
  font-size: 1.1rem;
  color: var(--quench-silver);
  margin-bottom: 0.5rem;
}

.product-card__price {
  font-size: 1.3rem;
  color: var(--blood-red-light);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.product-card__specs {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.6;
}

/* ============================================
   3D穿戴演示区
   ============================================ */
.c47653685 {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #0d0d0d 0%, var(--chainmail-gray) 50%, #0d0d0d 100%);
}

.c608c5f23 {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.c2e078ed7 {
  background: var(--anvil-black);
  border: 2px solid rgba(192, 192, 192, 0.15);
  border-radius: 12px;
  padding: 3rem;
  margin: 2rem auto;
  max-width: 800px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.c4c558379 {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.c34b89298 {
  padding: 0.6rem 1.2rem;
  background: var(--chainmail-gray);
  border: 1px solid rgba(192, 192, 192, 0.2);
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--parchment-yellow);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.c34b89298:hover,
.c34b89298.active {
  background: var(--blood-red);
  border-color: var(--blood-red);
  color: #fff;
}

/* ============================================
   地图区
   ============================================ */
.c73bdb5bf {
  padding: 5rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.c6fd4484e {
  background: var(--chainmail-gray);
  border-radius: 12px;
  padding: 2rem;
  min-height: 400px;
  border: 1px solid rgba(192, 192, 192, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   响应式断点
   ============================================ */
@media (max-width: 1024px) {
  .c9177949d {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .c95b8cd15 {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--anvil-black);
    flex-direction: column;
    padding: 1rem 2rem;
    border-bottom: 2px solid var(--blood-red-dark);
  }

  .c95b8cd15.active {
    display: flex;
  }

  .c865590a7 {
    display: flex;
  }

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

  .cea6d73d7 {
    font-size: 2rem;
  }

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

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

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

@media (max-width: 480px) {
  .c59f55b2b {
    min-height: 500px;
  }

  .c7b615310 {
    padding: 3rem 1rem;
  }

  .c78a4d52b {
    padding: 1rem;
  }
}

/* ============================================
   动画效果
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.ca69b28e6 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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