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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c1f005c74:hover .c277cba2b img {
  transform: scale(1.05);
}

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

.c1f005c74:hover .c277cba2b::after {
  left: 100%;
}

.c6b219880 {
  padding: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ccf39173f {
  padding: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.c915a0655 ul {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c915fba57.active .cde418bad::after {
  content: '-';
}

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

.c915fba57.active .ce53beb66 {
  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);
}

.c1a24ff9b {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

  .c0a22eb5f.active {
    display: flex;
  }

  .c3685a907 {
    display: flex;
  }

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

  .c391b23c0 {
    font-size: 2rem;
  }

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

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

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

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

  .c9cd8eb3b {
    padding: 3rem 1rem;
  }

  .c6b219880 {
    padding: 1rem;
  }
}

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

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

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

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