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

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

/* ============ 导航栏 ============ */
.ca23b84d3 {
  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);
}

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

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

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

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

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

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

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

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

.cb91a7a22 a:hover::after,
.cb91a7a22 a.c198e2c4d::after {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c52588491 {
  padding: 5rem 0;
}

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

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

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

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

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

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

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

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

.c9489d5b2 .cb1d8e8c3 img {
  width: 200%;
  max-width: none;
}

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

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

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

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

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

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

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

.c24c9730e:hover .c43c5206c img {
  transform: scale(1.05);
}

.c24c9730e .c2c22f63b {
  padding: 1.5rem;
}

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

.c24c9730e .c2c22f63b .cb7f4c9ea {
  color: var(--color-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

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

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

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

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

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

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

.c396129bd .c2c22f63b {
  padding: 1.5rem;
}

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

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

.c396129bd .c8fa60fed span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

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

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

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

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

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

.cde7343f5 .c43c5206c {
  aspect-ratio: 1;
  overflow: hidden;
  background: #faf8f2;
}

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

.cde7343f5 .c2c22f63b {
  padding: 1.25rem;
}

.cde7343f5 .c2c22f63b h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

.c16b8ec8e ul {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cfc5ec9b8 {
  padding: 3rem 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cad63c3e7 {
  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页面 ============ */
.c6d147b18 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 72px;
}

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

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

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

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

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

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

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

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

.cf9870530.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) {
  .c69cabd2c {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c879a0e27 {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .c68ca28b0 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .cb91a7a22 {
    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);
  }
  
  .cb91a7a22.c198e2c4d {
    display: flex;
  }
  
  .cb91a7a22 li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
  }
  
  .c6cb2d63f {
    display: flex;
  }
  
  .cceeb6a01 h1 {
    font-size: 2.25rem;
  }
  
  .cceeb6a01 p {
    font-size: 1rem;
  }
  
  .c52588491 {
    padding: 3rem 0;
  }
  
  .cf7b6b6da h2 {
    font-size: 1.75rem;
  }
  
  .c69cabd2c {
    grid-template-columns: 1fr;
  }
  
  .c879a0e27 {
    grid-template-columns: 1fr;
  }
  
  .c68ca28b0 {
    grid-template-columns: 1fr 1fr;
  }
  
  .c9b0af854 {
    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;
  }
  
  .cb55a168c {
    height: 200px;
  }
  
  .cb55a168c .c51e1bd2e h1 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .ce9a4900f {
    padding: 0 1rem;
  }
  
  .cceeb6a01 h1 {
    font-size: 1.75rem;
    letter-spacing: 2px;
  }
  
  .c68ca28b0 {
    grid-template-columns: 1fr;
  }
  
  .c735f8b75 {
    padding: 0 1rem;
  }
}

/* ============ 打印样式 ============ */
@media print {
  .ca23b84d3,
  .c06534ece,
  .c6cb2d63f {
    display: none;
  }
  
  body {
    background: #fff;
    color: #000;
  }
  
  .c9502274d {
    height: auto;
    margin-top: 0;
  }
}
