/* ============================================
   中国古建筑营造技艺与文物修复保护官网 - 主样式表
   视觉风格：故宫朱砂红+榫卯原木色 东方古典
   ============================================ */

/* CSS变量定义 */
:root {
  --color-primary: #8B2500;       /* 故宫朱砂红 */
  --color-secondary: #C8A45C;     /* 琉璃金 */
  --color-bg: #F5F0E8;            /* 宣纸米白 */
  --color-card: #FFFDF5;          /* 绢帛白 */
  --color-text: #2A1A0A;          /* 墨色 */
  --color-text-light: #5C4A3A;    /* 淡墨色 */
  --color-border: #D4C4A8;        /* 古铜边框 */
  --color-accent: #4A6741;        /* 青铜绿 */
  --font-heading: "Noto Serif SC", "Source Han Serif CN", "SimSun", serif;
  --font-body: "Noto Sans SC", "Source Han Sans CN", "Microsoft YaHei", sans-serif;
  --shadow-card: 0 4px 20px rgba(42, 26, 10, 0.08);
  --shadow-hover: 0 8px 32px rgba(139, 37, 0, 0.12);
  --radius: 4px;
  --max-width: 1200px;
  --transition: all 0.3s ease;
}

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

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

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

/* 水墨晕染背景装饰 */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero/ink-wash-bg.webp') no-repeat center/cover;
  opacity: 0.03;
  pointer-events: none;
  z-index: -1;
}

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

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

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

/* ============ 导航栏 ============ */
.cd572b29e {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

.cd572b29e.scrolled {
  box-shadow: 0 2px 20px rgba(42, 26, 10, 0.1);
}

.c6a7475e6 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.c3ebc704c {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.c3ebc704c img {
  width: 40px;
  height: 40px;
}

.c3ebc704c span {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 2px;
}

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

.c981f1b41 a {
  font-size: 0.95rem;
  color: var(--color-text);
  position: relative;
  padding: 0.5rem 0;
}

.c981f1b41 a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.c981f1b41 a:hover::after,
.c981f1b41 a.cd23bf8e8::after {
  width: 100%;
}

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

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

/* ============ Hero区域 ============ */
.c7865e12e {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 72px;
}

.c18cf2b65 {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.cdeb21cc6 {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 37, 0, 0.6) 0%,
    rgba(42, 26, 10, 0.4) 100%
  );
  z-index: 1;
}

.ced7888b3 {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
  animation: scrollUnfold 1.5s ease-out;
}

@keyframes scrollUnfold {
  from {
    opacity: 0;
    transform: translateY(40px) scaleY(0.8);
    clip-path: inset(50% 0);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    clip-path: inset(0 0);
  }
}

.ced7888b3 h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  letter-spacing: 4px;
}

.ced7888b3 p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cba9503d1 {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.1rem;
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cba9503d1:hover {
  background: var(--color-secondary);
  color: var(--color-text);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(200, 164, 92, 0.4);
}

/* 印章盖下动画 */
.c027df249 {
  position: relative;
  overflow: hidden;
}

.c027df249::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(139, 37, 0, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.c027df249:hover::before {
  width: 300px;
  height: 300px;
}

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

.c5ae767bc {
  padding: 5rem 0;
}

.c9c783ef3 {
  text-align: center;
  margin-bottom: 3rem;
}

.c9c783ef3 h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.c9c783ef3 h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
}

.c9c783ef3 p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 1rem auto 0;
}

/* ============ 修复案例对比滑块 ============ */
.cbf22fde3 {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.c2f8c0e05 {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: col-resize;
}

.c2f8c0e05 img {
  width: 100%;
  display: block;
}

.c2f8c0e05 .cfd925cc8 {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.c2f8c0e05 .cfd925cc8 img {
  width: 200%;
  max-width: none;
}

.c2f8c0e05 .cc901308e {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--color-secondary);
  transform: translateX(-50%);
  cursor: col-resize;
}

.c2f8c0e05 .cc901308e::before {
  content: '◀ ▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-secondary);
  color: #fff;
  padding: 0.5rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 2px;
}

/* ============ 工匠风采 ============ */
.ca8738287 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cbee45daf {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.cbee45daf:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

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

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

.cbee45daf:hover .cb641ab26 img {
  transform: scale(1.05);
}

.cbee45daf .c16ca3af8 {
  padding: 1.5rem;
}

.cbee45daf .c16ca3af8 h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.cbee45daf .c16ca3af8 .c2c54e18a {
  color: var(--color-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

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

/* ============ 游学报名 ============ */
.c2790aef6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.cd8657c7c {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.cd8657c7c:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

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

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

.cd8657c7c .c16ca3af8 {
  padding: 1.5rem;
}

.cd8657c7c .c16ca3af8 h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.cd8657c7c .cd2a01f34 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.cd8657c7c .cd2a01f34 span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.cd8657c7c .c69a2d2e7 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 700;
}

.cd8657c7c .c69a2d2e7 small {
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-weight: 400;
}

/* ============ 商城产品 ============ */
.c80a62ab7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.c2c69e771 {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.c2c69e771:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.c2c69e771 .cb641ab26 {
  aspect-ratio: 1;
  overflow: hidden;
  background: #faf8f2;
}

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

.c2c69e771 .c16ca3af8 {
  padding: 1.25rem;
}

.c2c69e771 .c16ca3af8 h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.c2c69e771 .ceef28e3e {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(139, 37, 0, 0.1);
  color: var(--color-primary);
  border-radius: 2px;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

/* ============ 基金动态 ============ */
.c43666b8f {
  background: linear-gradient(135deg, rgba(139, 37, 0, 0.03), rgba(200, 164, 92, 0.05));
}

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

.cc1045541 {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.cc1045541 .c5b4498fd {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-primary);
  font-weight: 700;
}

.cc1045541 .c8791955f {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* ============ 时间轴 ============ */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 1.5rem 2.5rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 2rem;
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  border: 3px solid var(--color-secondary);
  border-radius: 50%;
}

.timeline-item:nth-child(odd)::before {
  right: -8px;
}

.timeline-item:nth-child(even)::before {
  left: -8px;
}

.timeline-item h3 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

/* ============ 页脚 ============ */
.cdc57cb6e {
  background: var(--color-text);
  color: #d4c4a8;
  padding: 4rem 0 2rem;
}

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

.cea7c22f3 h3 {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.cea7c22f3 p {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.8;
}

.c8c6e9cbb h4 {
  color: var(--color-secondary);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.c8c6e9cbb ul {
  list-style: none;
}

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

.c8c6e9cbb ul li a {
  color: #d4c4a8;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: var(--transition);
}

.c8c6e9cbb ul li a:hover {
  color: var(--color-secondary);
  opacity: 1;
}

.cb9ec3a60 {
  border-top: 1px solid rgba(212, 196, 168, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

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

/* ============ 面包屑 ============ */
.cce5be676 {
  padding: 1rem 0;
  margin-top: 72px;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

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

.cce5be676 a:hover {
  color: var(--color-primary);
}

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

/* ============ 内页样式 ============ */
.c867ea92a {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 72px;
  overflow: hidden;
}

.c867ea92a img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c867ea92a .c111a7f97 {
  position: absolute;
  inset: 0;
  background: rgba(42, 26, 10, 0.6);
}

.c867ea92a .cc1b86eb6 {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.c867ea92a .cc1b86eb6 h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  letter-spacing: 3px;
}

.c560945b1 {
  padding: 3rem 0;
}

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

.c560945b1 article h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-primary);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-border);
}

.c560945b1 article h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-text);
  margin: 1.5rem 0 0.75rem;
}

.c560945b1 article p {
  margin-bottom: 1.25rem;
  text-indent: 2em;
  line-height: 2;
}

.c560945b1 article ul,
.c560945b1 article ol {
  margin: 1rem 0 1.5rem 2rem;
  line-height: 2;
}

/* ============ FAQ折叠 ============ */
.c997f8654 {
  max-width: 800px;
  margin: 2rem auto;
}

.cd4d72a57 {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.cd4d72a57 summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  background: var(--color-card);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cd4d72a57 summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.cd4d72a57[open] summary::after {
  transform: rotate(45deg);
}

.cd4d72a57 .cd564ade6 {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--color-border);
  line-height: 1.8;
  color: var(--color-text-light);
}

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

.cad0c6c20 input {
  width: 100%;
  padding: 1rem 1.5rem;
  padding-right: 4rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--color-card);
  color: var(--color-text);
  transition: var(--transition);
}

.cad0c6c20 input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.cad0c6c20 button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.6rem 1.2rem;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.9rem;
}

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

.search-result-item {
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.search-result-item h3 a {
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

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

/* ============ 404页面 ============ */
.ccd965883 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 72px;
}

.ccd965883 h1 {
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--color-primary);
  opacity: 0.3;
}

.ccd965883 h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin: 1rem 0;
}

.ccd965883 p {
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

/* ============ APP下载页 ============ */
.c40b6a92a {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}

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

.c950bb3f0 {
  text-align: center;
  padding: 2rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.c950bb3f0 h3 {
  font-family: var(--font-heading);
  margin: 1rem 0 0.5rem;
  color: var(--color-primary);
}

/* ============ 卷轴展开动画 ============ */
.c6e2b27d2 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.c6e2b27d2.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* 水墨晕染边框 */
.ink-border {
  position: relative;
  padding: 2rem;
}

.ink-border::before,
.ink-border::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: var(--color-primary);
  opacity: 0.3;
}

.ink-border::before {
  top: 0;
  left: 0;
  border-top: 2px solid;
  border-left: 2px solid;
}

.ink-border::after {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

/* ============ 响应式设计 ============ */
@media (max-width: 1024px) {
  .ca8738287 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c2cd6aafd {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .cceacbe0c {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .c981f1b41 {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--color-bg);
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 0;
    border-bottom: 1px solid var(--color-border);
  }
  
  .c981f1b41.cd23bf8e8 {
    display: flex;
  }
  
  .c981f1b41 li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
  }
  
  .c681eb066 {
    display: flex;
  }
  
  .ced7888b3 h1 {
    font-size: 2.25rem;
  }
  
  .ced7888b3 p {
    font-size: 1rem;
  }
  
  .c5ae767bc {
    padding: 3rem 0;
  }
  
  .c9c783ef3 h2 {
    font-size: 1.75rem;
  }
  
  .ca8738287 {
    grid-template-columns: 1fr;
  }
  
  .c2cd6aafd {
    grid-template-columns: 1fr;
  }
  
  .cceacbe0c {
    grid-template-columns: 1fr 1fr;
  }
  
  .c40b6a92a {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 50px;
    text-align: left !important;
  }
  
  .timeline-item::before {
    left: 12px !important;
    right: auto !important;
  }
  
  .c867ea92a {
    height: 200px;
  }
  
  .c867ea92a .cc1b86eb6 h1 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .ceb5582e2 {
    padding: 0 1rem;
  }
  
  .ced7888b3 h1 {
    font-size: 1.75rem;
    letter-spacing: 2px;
  }
  
  .cceacbe0c {
    grid-template-columns: 1fr;
  }
  
  .c6a7475e6 {
    padding: 0 1rem;
  }
}

/* ============ 打印样式 ============ */
@media print {
  .cd572b29e,
  .cdc57cb6e,
  .c681eb066 {
    display: none;
  }
  
  body {
    background: #fff;
    color: #000;
  }
  
  .c7865e12e {
    height: auto;
    margin-top: 0;
  }
}
