/* ============================================
   硬派越野车(4x4)底盘升高与穿越防护改装厂 - 主样式表
   视觉风格：泥地迷彩绿+沙漠风暴黄 军工装甲风格
   ============================================ */

/* CSS变量定义 */
:root {
  --color-primary: #4A5D23;
  --color-secondary: #D4A017;
  --color-bg: #1C1C1C;
  --color-card: #2A2A2A;
  --color-text: #E0E0E0;
  --color-text-muted: #999999;
  --color-border: #3A3A3A;
  --color-accent-dark: #3B4A1C;
  --color-accent-light: #6B7D3A;
  --font-heading: "Microsoft YaHei", "PingFang SC", sans-serif;
  --font-body: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --shadow-card: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-heavy: 0 8px 32px rgba(0,0,0,0.6);
  --transition-base: all 0.3s ease;
  --max-width: 1200px;
}

/* 全局重置 */
*, *::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(--color-bg);
  color: var(--color-text);
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
}

/* 金属防滑纹理背景 */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(74,93,35,0.03) 2px,
      rgba(74,93,35,0.03) 4px
    );
  pointer-events: none;
  z-index: 0;
}

/* 螺丝铆钉装饰元素 */
.cb1566d72 {
  position: relative;
}

.cb1566d72::before,
.cb1566d72::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #666 30%, #333 60%, #1a1a1a 100%);
  border-radius: 50%;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.3), 0 1px 3px rgba(0,0,0,0.5);
}

.cb1566d72::before {
  top: 8px;
  left: 8px;
}

.cb1566d72::after {
  top: 8px;
  right: 8px;
}

/* 容器 */
.c49cd8ab7 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* 导航栏 - 装甲顶部 */
.c09759f44 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, #1C1C1C 0%, #222222 100%);
  border-bottom: 3px solid var(--color-primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.6);
  z-index: 1000;
  padding: 0;
}

.c09759f44::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-primary));
}

.ce6fa54fc {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.cab522206 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--color-secondary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cab522206 .cd9036f9c {
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  border: 2px solid var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.ca0619aa0 {
  display: flex;
  list-style: none;
  gap: 0;
}

.ca0619aa0 li a {
  color: var(--color-text);
  text-decoration: none;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-base);
  position: relative;
  display: block;
}

.ca0619aa0 li a:hover,
.ca0619aa0 li a.c805efac3 {
  color: var(--color-secondary);
  background: rgba(74,93,35,0.2);
}

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

.ca0619aa0 li a:hover::after {
  width: 80%;
}

/* 移动端菜单按钮 */
.c138358ce {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.c138358ce span {
  width: 28px;
  height: 3px;
  background: var(--color-secondary);
  transition: var(--transition-base);
}

/* Hero区 - 征服极限 */
.ccfc16147 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 60px;
}

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

.ccfc16147 .ccfe2154d {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(28,28,28,0.3) 0%,
    rgba(28,28,28,0.1) 40%,
    rgba(28,28,28,0.7) 80%,
    rgba(28,28,28,1) 100%
  );
}

.cd9574077 {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
}

.cd9574077 h1 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.8);
  line-height: 1.2;
}

.cd9574077 h1 span {
  color: var(--color-secondary);
}

.cd9574077 p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.8;
}

/* 重型机械开关按钮 */
.cc35631e4 {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(180deg, var(--color-secondary) 0%, #B8860B 100%);
  color: #1C1C1C;
  font-weight: 900;
  font-size: 1.1rem;
  text-decoration: none;
  border: 2px solid var(--color-secondary);
  position: relative;
  cursor: pointer;
  transition: var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 4px 0 #8B6914, 0 6px 12px rgba(0,0,0,0.4);
}

.cc35631e4:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #8B6914, 0 4px 8px rgba(0,0,0,0.4);
}

.cc35631e4:active {
  transform: translateY(4px);
  box-shadow: 0 0px 0 #8B6914, 0 2px 4px rgba(0,0,0,0.4);
}

.btn-outline {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid var(--color-primary);
  transition: var(--transition-base);
  letter-spacing: 1px;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* 区块标题 */
.c0d28c59c {
  text-align: center;
  margin-bottom: 48px;
}

.c0d28c59c h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.c0d28c59c h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--color-secondary);
}

.c0d28c59c p {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-top: 16px;
}

/* 装甲卡片 */
.cb7217d12 {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: var(--transition-base);
  position: relative;
}

.cb7217d12::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cb7217d12:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-primary);
}

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

.cb7217d12 .c15af5d8e {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

.cb7217d12:hover .c15af5d8e img {
  transform: scale(1.05);
}

.cb7217d12 .c8fe3e84d {
  padding: 24px;
}

.cb7217d12 .c8fe3e84d h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.cb7217d12 .c8fe3e84d p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.cb7217d12 .c8df168ef {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(74,93,35,0.3);
  color: var(--color-accent-light);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 8px;
  border: 1px solid var(--color-primary);
}

/* 网格布局 */
.c974007ac {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cdbf7fef5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ca1a3eec6 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* 区块间距 */
.c6c43506d {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.c6c43506d.c2159d003 {
  background: rgba(0,0,0,0.3);
}

/* 车型快捷入口 */
.c98dee19c {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  text-decoration: none;
  transition: var(--transition-base);
  text-align: center;
}

.c98dee19c:hover {
  border-color: var(--color-secondary);
  background: rgba(74,93,35,0.15);
  transform: translateY(-3px);
}

.c98dee19c .c9a35585b {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(74,93,35,0.2);
  border: 2px solid var(--color-primary);
}

.c98dee19c .c39ed5884 {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.c98dee19c .c47e45a56 {
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

/* 装备推荐卡片 */
.c3828006e {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  padding: 24px;
  text-align: center;
  transition: var(--transition-base);
}

.c3828006e:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 0 20px rgba(212,160,23,0.1);
}

.c3828006e .cf32b1beb {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  background: rgba(74,93,35,0.2);
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.c3828006e h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.c3828006e p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.c3828006e .c9bdc4d45 {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 0.9rem;
}

/* 穿越车队集结号 */
.ccd414755 {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: var(--transition-base);
}

.ccd414755:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

.ccd414755 .cc9a2975e {
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-dark));
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ccd414755 .cc9a2975e .c3d391e3d {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.ccd414755 .cc9a2975e .cf6e55aa7 {
  padding: 4px 10px;
  background: var(--color-secondary);
  color: #1C1C1C;
  font-size: 0.75rem;
  font-weight: 700;
}

.ccd414755 .cdd3f9c47 {
  padding: 20px;
}

.ccd414755 .cdd3f9c47 .cee4f9e44 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.ccd414755 .cdd3f9c47 .cee4f9e44 span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.ccd414755 .cdd3f9c47 .cee4f9e44 span strong {
  color: var(--color-text);
}

/* 面包屑导航 */
.c50aa4c74 {
  padding: 16px 0;
  margin-top: 60px;
}

.c50aa4c74 ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.c50aa4c74 ol li {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.c50aa4c74 ol li a {
  color: var(--color-accent-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.c50aa4c74 ol li a:hover {
  color: var(--color-secondary);
}

.c50aa4c74 ol li + li::before {
  content: '>';
  margin-right: 8px;
  color: var(--color-text-muted);
}

/* 页面内容区 */
.cc46629c1 {
  padding: 40px 0 80px;
}

.cc46629c1 h1 {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--color-primary);
}

.cc46629c1 h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 32px 0 16px;
  padding-left: 12px;
  border-left: 4px solid var(--color-secondary);
}

.cc46629c1 h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 24px 0 12px;
}

.cc46629c1 p {
  margin-bottom: 16px;
  line-height: 1.9;
}

.cc46629c1 ul, .cc46629c1 ol {
  margin: 16px 0;
  padding-left: 24px;
}

.cc46629c1 li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* 数据表格 */
.cab9d7bb4 {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--color-card);
  border: 1px solid var(--color-border);
}

.cab9d7bb4 th {
  background: var(--color-primary);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.9rem;
}

.cab9d7bb4 td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.cab9d7bb4 tr:hover td {
  background: rgba(74,93,35,0.1);
}

/* FAQ区域 */
.c8c2182db {
  margin: 40px 0;
}

.c42d66dbc {
  border: 1px solid var(--color-border);
  margin-bottom: 12px;
  background: var(--color-card);
}

.c42d66dbc summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-base);
}

.c42d66dbc summary:hover {
  background: rgba(74,93,35,0.15);
}

.c42d66dbc summary::before {
  content: '+';
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-secondary);
  font-weight: 900;
  flex-shrink: 0;
}

.c42d66dbc[open] summary::before {
  content: '-';
}

.c42d66dbc .c63118890 {
  padding: 0 20px 16px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* 页脚 */
.c3ffb56af {
  background: #111111;
  border-top: 3px solid var(--color-primary);
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
}

.cc46f3cab {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.c4181b2a0 h3 {
  color: var(--color-secondary);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.c4181b2a0 p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.cbb82c80e h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-primary);
}

.cbb82c80e ul {
  list-style: none;
}

.cbb82c80e ul li {
  margin-bottom: 8px;
}

.cbb82c80e ul li a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.cbb82c80e ul li a:hover {
  color: var(--color-secondary);
}

.ccac77890 {
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

.ccac77890 a {
  color: var(--color-accent-light);
  text-decoration: none;
}

/* 搜索页 */
.c7c49eb28 {
  max-width: 600px;
  margin: 40px auto;
  display: flex;
  gap: 0;
}

.c7c49eb28 input {
  flex: 1;
  padding: 14px 20px;
  background: var(--color-card);
  border: 2px solid var(--color-border);
  color: var(--color-text);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.c7c49eb28 input:focus {
  border-color: var(--color-primary);
}

.c7c49eb28 button {
  padding: 14px 28px;
  background: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-primary);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-base);
}

.c7c49eb28 button:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #1C1C1C;
}

/* 404页面 */
.error-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  margin-top: 60px;
}

.error-page .error-code {
  font-size: 8rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  text-shadow: 0 4px 12px rgba(74,93,35,0.3);
}

.error-page h1 {
  font-size: 2rem;
  color: #fff;
  margin: 16px 0;
}

.error-page p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  max-width: 500px;
}

/* 探照灯扫过效果 */
@keyframes spotlight-sweep {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.ce2552438 {
  position: relative;
  overflow: hidden;
}

.ce2552438::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212,160,23,0.1) 45%,
    rgba(212,160,23,0.2) 50%,
    rgba(212,160,23,0.1) 55%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: spotlight-sweep 3s ease-in-out infinite;
  pointer-events: none;
}

/* 轮胎胎印痕迹特效 */
.c17320581 {
  position: fixed;
  right: 20px;
  top: 0;
  width: 40px;
  height: 100%;
  background-image: repeating-linear-gradient(
    180deg,
    transparent,
    transparent 20px,
    rgba(74,93,35,0.08) 20px,
    rgba(74,93,35,0.08) 22px,
    transparent 22px,
    transparent 30px
  );
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* 互动组件样式 */
.c3f732d2d {
  background: var(--color-card);
  border: 2px solid var(--color-border);
  padding: 32px;
  margin: 32px 0;
}

.c3f732d2d h3 {
  color: var(--color-secondary);
  font-size: 1.3rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cfa8cc935 {
  margin: 20px 0;
}

.cfa8cc935 label {
  display: block;
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: 8px;
}

.cfa8cc935 input[type="range"] {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  outline: none;
  border-radius: 4px;
}

.cfa8cc935 input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: var(--color-secondary);
  border: 3px solid #1C1C1C;
  border-radius: 50%;
  cursor: pointer;
}

.ce4f1f5fe {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.c8dded136 {
  text-align: center;
  padding: 16px;
  background: rgba(74,93,35,0.15);
  border: 1px solid var(--color-primary);
}

.c8dded136 .ca0b7c0e8 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-secondary);
}

.c8dded136 .ccb19250c {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* 响应式断点 */
@media (max-width: 1024px) {
  .ca1a3eec6 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cc46f3cab {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ca0619aa0 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1C1C1C;
    flex-direction: column;
    border-top: 1px solid var(--color-border);
    padding: 16px 0;
  }
  
  .ca0619aa0.c805efac3 {
    display: flex;
  }
  
  .c138358ce {
    display: flex;
  }
  
  .cd9574077 h1 {
    font-size: 2rem;
  }
  
  .cd9574077 p {
    font-size: 1rem;
  }
  
  .c974007ac, .cdbf7fef5, .ca1a3eec6 {
    grid-template-columns: 1fr;
  }
  
  .cc46f3cab {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .c0d28c59c h2 {
    font-size: 1.6rem;
  }
  
  .c6c43506d {
    padding: 48px 0;
  }
  
  .ce4f1f5fe {
    grid-template-columns: 1fr;
  }
  
  .c17320581 {
    display: none;
  }
  
  .cc46629c1 h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .cd9574077 h1 {
    font-size: 1.6rem;
  }
  
  .cc35631e4 {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .cab522206 {
    font-size: 1rem;
  }
}

/* 打印样式 */
@media print {
  .c09759f44, .c3ffb56af, .c17320581 {
    display: none;
  }
  
  body {
    background: #fff;
    color: #333;
  }
}
