/* ============================================
   电商网拍外籍模特与跨境商品视觉拍摄基地 - 主样式表
   配色方案：影棚高光白 + 时尚潮流橙
   ============================================ */

/* CSS变量定义 */
:root {
  --color-primary: #FF6B00;
  --color-primary-dark: #E55E00;
  --color-primary-light: #FF8A33;
  --color-black: #1A1A1A;
  --color-white: #FFFFFF;
  --color-card: #F5F5F5;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-border: #E0E0E0;
  --font-heading: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  --font-body: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* 重置与基础 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.8;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-dark); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.4; color: var(--color-black); }

/* 容器 */
.ce7a4ef53 { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.c7e4daff4 { padding: 80px 0; }
.c5b242439 { font-size: 2rem; text-align: center; margin-bottom: 16px; }
.c5c08f799 { text-align: center; color: var(--color-text-light); margin-bottom: 48px; font-size: 1.05rem; }

/* 对焦环加载动画 */
.ce9724b7a {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--color-white); display: flex; align-items: center; justify-content: center;
  z-index: 99999; transition: opacity 0.5s, visibility 0.5s;
}
.ce9724b7a.loaded { opacity: 0; visibility: hidden; }
.cf9d5dd67 {
  width: 80px; height: 80px; border: 3px solid var(--color-border);
  border-radius: 50%; position: relative;
  animation: focusRotate 1.5s ease-in-out infinite;
}
.cf9d5dd67::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 20px; height: 20px; margin: -10px 0 0 -10px;
  border: 2px solid var(--color-primary); border-radius: 50%;
  animation: focusPulse 1.5s ease-in-out infinite;
}
.cf9d5dd67::after {
  content: ''; position: absolute; top: -8px; left: 50%; margin-left: -1px;
  width: 2px; height: 8px; background: var(--color-primary);
}
@keyframes focusRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes focusPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.5; } }

/* 导航栏 */
.cd651ff7f {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border); transition: box-shadow var(--transition);
}
.cd651ff7f.scrolled { box-shadow: var(--shadow-sm); }
.c1ab7baa1 { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.cb62b2aec { font-size: 1.4rem; font-weight: 800; color: var(--color-black); display: flex; align-items: center; gap: 8px; }
.cb62b2aec .cbb95e2be { width: 36px; height: 36px; background: var(--color-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.cb62b2aec .cbb95e2be::before { content: ''; width: 14px; height: 14px; border: 2px solid #fff; border-radius: 50%; }
.c7d982248 { display: flex; gap: 32px; }
.c7d982248 a { color: var(--color-text); font-size: 0.95rem; font-weight: 500; position: relative; padding: 4px 0; }
.c7d982248 a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--color-primary); transition: width var(--transition); }
.c7d982248 a:hover::after, .c7d982248 a.active::after { width: 100%; }
.c7d982248 a:hover { color: var(--color-primary); }
.cd3fb730a { background: var(--color-primary); color: #fff; padding: 10px 24px; border-radius: 24px; font-weight: 600; font-size: 0.9rem; transition: background var(--transition), transform var(--transition); }
.cd3fb730a:hover { background: var(--color-primary-dark); color: #fff; transform: translateY(-1px); }
.c3f5b3e32 { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.c3f5b3e32 span { width: 24px; height: 2px; background: var(--color-black); transition: var(--transition); }

/* Hero区 - 相机取景器UI */
.caaab45ad {
  position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center;
  justify-content: center; overflow: hidden; margin-top: 72px;
}
.c0180ccf0 { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.c1c7fcd3c { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.35); }
.c95fe24bb {
  position: absolute; top: 40px; left: 40px; right: 40px; bottom: 40px;
  border: 2px solid rgba(255,255,255,0.6); border-radius: 4px; pointer-events: none;
}
.c95fe24bb::before, .c95fe24bb::after {
  content: ''; position: absolute; width: 30px; height: 30px; border-color: #fff; border-style: solid;
}
.c95fe24bb::before { top: -2px; left: -2px; border-width: 3px 0 0 3px; }
.c95fe24bb::after { bottom: -2px; right: -2px; border-width: 0 3px 3px 0; }
.ca4c0e81c, .c1cffc790 {
  position: absolute; width: 30px; height: 30px; border-color: #fff; border-style: solid;
}
.ca4c0e81c { top: -2px; right: -2px; border-width: 3px 3px 0 0; }
.c1cffc790 { bottom: -2px; left: -2px; border-width: 0 0 3px 3px; }
.c0a2a668d {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 60px; height: 60px; border: 1.5px solid rgba(255,255,255,0.8); border-radius: 50%;
}
.c0a2a668d::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 8px; height: 8px; background: var(--color-primary); border-radius: 50%;
}
.cd4c75fcb { position: relative; z-index: 2; text-align: center; color: #fff; padding: 20px; }
.cd4c75fcb h1 { font-size: 3rem; margin-bottom: 16px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.cd4c75fcb p { font-size: 1.2rem; margin-bottom: 32px; opacity: 0.95; }
.ce73ef741 {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-primary); color: #fff; padding: 16px 40px;
  border-radius: 32px; font-size: 1.1rem; font-weight: 600;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 20px rgba(255,107,0,0.4);
}
.ce73ef741:hover { background: var(--color-primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 28px rgba(255,107,0,0.5); }
.c4500c0d1 { display: flex; gap: 48px; margin-top: 48px; justify-content: center; }
.c756df1a4 { text-align: center; }
.c756df1a4 .cf2dff132 { font-size: 2.2rem; font-weight: 800; }
.c756df1a4 .ceb89e073 { font-size: 0.85rem; opacity: 0.85; margin-top: 4px; }

/* 快门闪烁特效 */
@keyframes shutterFlash { 0% { opacity: 0; } 10% { opacity: 0.8; } 100% { opacity: 0; } }
.c4007d086 {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: #fff; opacity: 0; pointer-events: none; z-index: 9998;
}
.c4007d086.active { animation: shutterFlash 0.3s ease-out; }

/* 案例展播模块 */
.c3de05bde { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.c465ad3ce {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.c465ad3ce:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.c465ad3ce img { width: 100%; height: 260px; object-fit: cover; transition: transform var(--transition); }
.c465ad3ce:hover img { transform: scale(1.05); }
.c465ad3ce .cb90d747e { padding: 20px; background: #fff; }
.c465ad3ce .cf4da5ca8 {
  position: absolute; top: 16px; right: 16px; background: var(--color-primary);
  color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600;
}
.c465ad3ce .c4e21dd35 { font-size: 1.1rem; margin-bottom: 8px; }
.c465ad3ce .ca90ef38d { color: var(--color-text-light); font-size: 0.9rem; }

/* 模特面孔墙 - 横向滚动 */
.c36bbb771 { overflow: hidden; position: relative; padding: 40px 0; }
.ca98c2e9e {
  display: flex; gap: 20px; animation: scrollModels 30s linear infinite;
  width: max-content;
}
.ca98c2e9e:hover { animation-play-state: paused; }
@keyframes scrollModels { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.model-card {
  flex-shrink: 0; width: 200px; border-radius: var(--radius-lg); overflow: hidden;
  position: relative; cursor: pointer; transition: transform var(--transition);
  perspective: 1000px;
}
.model-card:hover { transform: scale(1.05); }
.model-card img { width: 200px; height: 280px; object-fit: cover; }
.model-card .model-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: #fff;
}
.model-card .model-name { font-weight: 600; font-size: 0.95rem; }
.model-card .model-info { font-size: 0.8rem; opacity: 0.85; }

/* 模特卡片翻转效果 */
.cd1d92d83 { perspective: 1000px; width: 200px; height: 280px; flex-shrink: 0; }
.cfaedb1cc {
  position: relative; width: 100%; height: 100%; transition: transform 0.6s;
  transform-style: preserve-3d; border-radius: var(--radius-lg); cursor: pointer;
}
.cd1d92d83:hover .cfaedb1cc { transform: rotateY(180deg); }
.cdd9cdc3b, .c7f2297f1 {
  position: absolute; width: 100%; height: 100%; backface-visibility: hidden;
  border-radius: var(--radius-lg); overflow: hidden;
}
.c7f2297f1 {
  background: var(--color-black); color: #fff; transform: rotateY(180deg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px;
}
.c7f2297f1 .c9c9d460d { margin: 6px 0; font-size: 0.85rem; }
.c7f2297f1 .c83e0b4c7 { color: var(--color-primary); font-weight: 600; }

/* 流程图解 */
.c22d123d1 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.c22d123d1::before {
  content: ''; position: absolute; top: 50px; left: 12.5%; right: 12.5%;
  height: 2px; background: var(--color-border);
}
.cdf1c222a {
  text-align: center; position: relative; z-index: 1; padding: 0 10px;
}
.ca7ddc86c {
  width: 100px; height: 100px; border-radius: 50%; background: var(--color-card);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  border: 3px solid var(--color-primary); font-size: 2rem; transition: background var(--transition);
}
.cdf1c222a:hover .ca7ddc86c { background: var(--color-primary); color: #fff; }
.c01e5cb0c {
  position: absolute; top: -8px; right: calc(50% - 60px); width: 28px; height: 28px;
  background: var(--color-primary); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700;
}
.c6c3398fa { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.c26fdac94 { font-size: 0.85rem; color: var(--color-text-light); }

/* 报价卡片 */
.c200c6bd1 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.c896f36ed {
  background: var(--color-white); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 40px 30px; text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.c896f36ed:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.c896f36ed.c65f560a0 { border-color: var(--color-primary); }
.c896f36ed.c65f560a0::before {
  content: '热门推荐'; position: absolute; top: 20px; right: -30px;
  background: var(--color-primary); color: #fff; padding: 4px 40px;
  font-size: 0.75rem; transform: rotate(45deg);
}
.c896f36ed .c66693390 { font-size: 2.5rem; font-weight: 800; color: var(--color-primary); margin: 16px 0; }
.c896f36ed .c66693390 span { font-size: 1rem; font-weight: 400; color: var(--color-text-light); }
.c896f36ed .c0374badd { font-size: 1.2rem; font-weight: 700; }
.c896f36ed .cbc1fa168 { margin: 24px 0; text-align: left; }
.c896f36ed .cbc1fa168 li { padding: 8px 0; border-bottom: 1px solid var(--color-card); font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.c896f36ed .cbc1fa168 li::before { content: '✓'; color: var(--color-primary); font-weight: 700; }
.c126712dc {
  display: block; width: 100%; padding: 14px; border: 2px solid var(--color-primary);
  border-radius: 28px; color: var(--color-primary); font-weight: 600;
  text-align: center; transition: background var(--transition), color var(--transition);
}
.c126712dc:hover, .c896f36ed.c65f560a0 .c126712dc {
  background: var(--color-primary); color: #fff;
}

/* 客户证言 */
.c0e318910 { background: var(--color-card); }
.c04611938 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.c986fd3f3 {
  background: #fff; padding: 32px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); position: relative;
}
.c986fd3f3::before { content: '"'; position: absolute; top: 16px; left: 24px; font-size: 4rem; color: var(--color-primary); opacity: 0.2; font-family: serif; }
.cf859f565 { font-size: 0.95rem; line-height: 1.8; margin-bottom: 20px; position: relative; z-index: 1; }
.c768019b9 { display: flex; align-items: center; gap: 12px; }
.c5e8258ed { width: 48px; height: 48px; border-radius: 50%; background: var(--color-card); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--color-primary); }
.c9cb1cc50 { font-weight: 600; }
.c2ae6f119 { font-size: 0.8rem; color: var(--color-text-light); }

/* 报价器组件 */
.c42ffe9d8 {
  background: var(--color-white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-md); max-width: 800px; margin: 0 auto;
}
.ce5b9946f { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }
.c197206a9 label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; }
.c197206a9 select, .c197206a9 input {
  width: 100%; padding: 12px 16px; border: 1px solid var(--color-border);
  border-radius: var(--radius-md); font-size: 0.95rem; transition: border-color var(--transition);
}
.c197206a9 select:focus, .c197206a9 input:focus { border-color: var(--color-primary); outline: none; }
.c5e39c914 {
  background: var(--color-card); border-radius: var(--radius-md);
  padding: 24px; text-align: center; margin-top: 24px;
}
.c3e069777 { font-size: 2rem; font-weight: 800; color: var(--color-primary); }
.cac6da8dd { color: var(--color-text-light); margin-top: 8px; }

/* 日历看板 */
.calendar-widget { background: #fff; border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.calendar-cell {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); font-size: 0.85rem; cursor: pointer;
  transition: background var(--transition);
}
.calendar-cell:hover { background: var(--color-card); }
.calendar-cell.available { background: #E8F5E9; color: #2E7D32; }
.calendar-cell.booked { background: #FFEBEE; color: #C62828; }
.calendar-cell.today { border: 2px solid var(--color-primary); font-weight: 700; }

/* 页脚 */
.c09fbacb1 { background: var(--color-black); color: #fff; padding: 60px 0 30px; }
.cf5f99d7e { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.c6e6ece50 { }
.c6e6ece50 .cf4601ccd { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; }
.c6e6ece50 p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.8; }
.c6dd045a7 h4 { font-size: 1rem; margin-bottom: 16px; color: #fff; }
.c6dd045a7 a { display: block; color: rgba(255,255,255,0.7); font-size: 0.9rem; padding: 4px 0; transition: color var(--transition); }
.c6dd045a7 a:hover { color: var(--color-primary); }
.c83f74fd4 { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* 面包屑 */
.ca8572e14 { padding: 16px 0; font-size: 0.85rem; color: var(--color-text-light); }
.ca8572e14 a { color: var(--color-text-light); }
.ca8572e14 a:hover { color: var(--color-primary); }
.ca8572e14 span { margin: 0 8px; }

/* 内页通用 */
.cf72bb35d { padding: 120px 0 60px; background: var(--color-card); text-align: center; }
.cf72bb35d h1 { font-size: 2.4rem; margin-bottom: 12px; }
.cf72bb35d p { color: var(--color-text-light); font-size: 1.05rem; }
.c86b215ff { padding: 60px 0; }
.c86b215ff h2 { font-size: 1.6rem; margin: 40px 0 16px; }
.c86b215ff h3 { font-size: 1.3rem; margin: 32px 0 12px; }
.c86b215ff p { margin-bottom: 16px; }
.c95cccedd { display: grid; grid-template-columns: 3fr 1fr; gap: 40px; }
.c741f6f7e { position: sticky; top: 92px; }
.c8d526399 { background: var(--color-card); border-radius: var(--radius-md); padding: 24px; margin-bottom: 20px; }
.c8d526399 h4 { font-size: 1rem; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 2px solid var(--color-primary); }
.c8d526399 a { display: block; padding: 8px 0; font-size: 0.9rem; color: var(--color-text); }
.c8d526399 a:hover { color: var(--color-primary); }

/* FAQ手风琴 */
.c2ef411a4 { max-width: 800px; margin: 0 auto; }
.c4cae4642 { border-bottom: 1px solid var(--color-border); }
.cebe70dd9 {
  padding: 20px 0; font-weight: 600; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; font-size: 1rem;
}
.cebe70dd9::after { content: '+'; font-size: 1.4rem; color: var(--color-primary); transition: transform var(--transition); }
.c4cae4642.active .cebe70dd9::after { transform: rotate(45deg); }
.ca09c96a6 { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.c4cae4642.active .ca09c96a6 { max-height: 500px; }
.ca09c96a6 p { padding-bottom: 20px; color: var(--color-text-light); font-size: 0.95rem; }

/* 搜索页 */
.cfaf2a6f4 { max-width: 600px; margin: 0 auto 40px; position: relative; }
.cfaf2a6f4 input {
  width: 100%; padding: 16px 60px 16px 24px; border: 2px solid var(--color-border);
  border-radius: 32px; font-size: 1rem; transition: border-color var(--transition);
}
.cfaf2a6f4 input:focus { border-color: var(--color-primary); outline: none; }
.cfaf2a6f4 button {
  position: absolute; right: 8px; top: 8px; width: 44px; height: 44px;
  background: var(--color-primary); border: none; border-radius: 50%;
  color: #fff; font-size: 1.2rem; cursor: pointer;
}
.c9bde4f95 .result-item { padding: 24px 0; border-bottom: 1px solid var(--color-border); }
.result-item h3 { margin-bottom: 8px; }
.result-item h3 a { color: var(--color-black); }
.result-item h3 a:hover { color: var(--color-primary); }
.result-item p { color: var(--color-text-light); font-size: 0.9rem; }
.result-item .result-url { color: var(--color-primary); font-size: 0.8rem; margin-top: 4px; }

/* 404页面 */
.c5264afef { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding-top: 72px; }
.c5264afef h1 { font-size: 8rem; color: var(--color-primary); line-height: 1; }
.c5264afef h2 { font-size: 1.8rem; margin: 16px 0; }
.c5264afef p { color: var(--color-text-light); margin-bottom: 32px; }

/* APP下载页 */
.ca03cf27f { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cbf343295 h2 { font-size: 2rem; margin-bottom: 16px; }
.app-features { margin: 24px 0; }
.app-features li { padding: 10px 0; display: flex; align-items: center; gap: 12px; font-size: 0.95rem; }
.app-features li::before { content: '●'; color: var(--color-primary); }
.app-buttons { display: flex; gap: 16px; margin-top: 24px; }
.app-btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px;
  background: var(--color-black); color: #fff; border-radius: var(--radius-md);
  font-weight: 600; transition: background var(--transition);
}
.app-btn:hover { background: #333; color: #fff; }
.app-mockup img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* 响应式断点 */
@media (max-width: 1024px) {
  .c3de05bde { grid-template-columns: repeat(2, 1fr); }
  .c200c6bd1 { grid-template-columns: repeat(2, 1fr); }
  .cf5f99d7e { grid-template-columns: repeat(2, 1fr); }
  .c22d123d1 { grid-template-columns: repeat(2, 1fr); }
  .c22d123d1::before { display: none; }
}

@media (max-width: 768px) {
  .c7d982248 { display: none; position: absolute; top: 72px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px; gap: 16px; box-shadow: var(--shadow-md); }
  .c7d982248.active { display: flex; }
  .c3f5b3e32 { display: flex; }
  .cd4c75fcb h1 { font-size: 2rem; }
  .c4500c0d1 { gap: 24px; flex-wrap: wrap; }
  .c756df1a4 .cf2dff132 { font-size: 1.6rem; }
  .c7e4daff4 { padding: 50px 0; }
  .c5b242439 { font-size: 1.6rem; }
  .c3de05bde { grid-template-columns: 1fr; }
  .c200c6bd1 { grid-template-columns: 1fr; }
  .c22d123d1 { grid-template-columns: 1fr; }
  .c04611938 { grid-template-columns: 1fr; }
  .cf5f99d7e { grid-template-columns: 1fr; }
  .c95cccedd { grid-template-columns: 1fr; }
  .ca03cf27f { grid-template-columns: 1fr; }
  .ce5b9946f { grid-template-columns: 1fr; }
  .c95fe24bb { top: 20px; left: 20px; right: 20px; bottom: 20px; }
}

@media (max-width: 480px) {
  .cd4c75fcb h1 { font-size: 1.6rem; }
  .ce73ef741 { padding: 12px 28px; font-size: 1rem; }
  .ce7a4ef53 { padding: 0 16px; }
}

/* 工具类 */
.cf5af5970 { text-align: center; }
.text-primary { color: var(--color-primary); }
.c5272b91e { background: var(--color-card); }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.hidden { display: none; }
