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

/* 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;
}

/* ============================================
   导航栏 - 锻铁风格
   ============================================ */
.cf3bce0e8 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cf83eb77b: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);
}

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

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

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

.cf83eb77b:hover .c29847abb img {
  transform: scale(1.05);
}

/* 剑刃寒光特效 */
.c29847abb::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;
}

.cf83eb77b:hover .c29847abb::after {
  left: 100%;
}

.c21847852 {
  padding: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cd8bfbebc {
  padding: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.c79768803 ul {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c4b5bcd44.active .cea9efcfd::after {
  content: '-';
}

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

.c4b5bcd44.active .c12f14b52 {
  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);
}

.c3d036ba0 {
  list-style: none;
}

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

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

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

/* ============================================
   404页面
   ============================================ */
.c71be6e00 {
  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穿戴演示区
   ============================================ */
.cfd341e17 {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #0d0d0d 0%, var(--chainmail-gray) 50%, #0d0d0d 100%);
}

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

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

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

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

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

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

.c1894435b {
  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) {
  .c8b132cb3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .c3b63ebfd {
    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);
  }

  .c3b63ebfd.active {
    display: flex;
  }

  .cb9d19ca2 {
    display: flex;
  }

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

  .c87cee951 {
    font-size: 2rem;
  }

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

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

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

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

  .cf9e8c10a {
    padding: 3rem 1rem;
  }

  .c21847852 {
    padding: 1rem;
  }
}

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

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

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

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