/* ===========================================================================
   fast-clone 展示页样式
   =========================================================================== */

/* ---------- 主题变量 ---------- */
:root {
  --bg: #0d1117;
  --bg-alt: #161b22;
  --bg-card: #1c2128;
  --bg-hover: #22272e;
  --border: #30363d;
  --border-light: #444c56;
  --text: #e6edf3;
  --text-muted: #8b949e;
  --text-dim: #6e7681;
  --accent: #2dd4bf;
  --accent-2: #34d399;
  --accent-glow: rgba(45, 212, 191, 0.4);
  --green: #3fb950;
  --yellow: #d29922;
  --red: #f85149;
  --cyan: #39c5cf;
  --purple: #a371f7;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --radius: 12px;
  --radius-sm: 8px;
  --maxw: 1140px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  --mono: "JetBrains Mono", "Fira Code", "SF Mono", "Cascadia Code",
    Consolas, "Liberation Mono", Menlo, monospace;
}

[data-theme="light"] {
  --bg: #ffffff;
  --bg-alt: #f6f8fa;
  --bg-card: #ffffff;
  --bg-hover: #f3f4f6;
  --border: #d0d7de;
  --border-light: #c9d1d9;
  --text: #1f2328;
  --text-muted: #59636e;
  --text-dim: #818b98;
  --accent: #0d9488;
  --accent-2: #059669;
  --accent-glow: rgba(13, 148, 136, 0.25);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ---------- 重置 ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; }
code, .mono { font-family: var(--mono); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-sm { padding: 8px 14px; font-size: 14px; }
.btn-lg { padding: 14px 30px; font-size: 16px; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04201c;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--bg-hover);
  border-color: var(--border-light);
}

/* ---------- 导航栏 ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(13, 17, 23, 0.7);
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
[data-theme="light"] .nav { background: rgba(255, 255, 255, 0.75); }
.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(13, 17, 23, 0.85);
}
[data-theme="light"] .nav.scrolled { background: rgba(255, 255, 255, 0.9); }
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.5px;
}
.nav-logo-icon { font-size: 22px; }
.nav-links {
  display: flex;
  gap: 4px;
  margin-left: 8px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  color: var(--text-muted);
  font-weight: 500;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-hover); }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-github { font-size: 14px; }
.theme-toggle {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.theme-toggle:hover { background: var(--bg-hover); color: var(--text); }
.icon-sun { display: none; }
.icon-moon { display: block; }
[data-theme="light"] .icon-sun { display: block; }
[data-theme="light"] .icon-moon { display: none; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 20%, var(--accent-glow), transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 60%, rgba(163, 113, 247, 0.15), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.gradient-text {
  background: linear-gradient(120deg, var(--accent), var(--accent-2), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-desc code, .hero-desc strong { color: var(--text); }
.hero-desc code {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 0.9em;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--mono);
  letter-spacing: -1px;
}
.stat-label { font-size: 13px; color: var(--text-dim); }

/* ---------- 终端 ---------- */
.hero-terminal { perspective: 1200px; }
.terminal {
  background: #010409;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow), 0 0 60px rgba(45, 212, 191, 0.1);
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s;
}
.terminal:hover { transform: rotateY(0) rotateX(0); }
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #0d1117;
  border-bottom: 1px solid var(--border);
}
.term-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }
.term-title {
  margin-left: 8px;
  font-size: 13px;
  color: #7d8590;
  font-family: var(--mono);
}
.terminal-body {
  padding: 18px 20px;
  font-family: var(--mono);
  font-size: 13.5px;
  line-height: 1.9;
  min-height: 340px;
  color: #e6edf3;
}
.term-line { white-space: pre-wrap; word-break: break-all; }
.prompt { color: #2dd4bf; font-weight: 700; }
.cmd { color: #e6edf3; }
.term-muted { color: #7d8590; }
.term-green { color: #56d364; }
.term-cyan { color: #39c5cf; }
.cursor { display: flex; align-items: center; gap: 6px; }
.cursor-block {
  display: inline-block;
  width: 8px; height: 16px;
  background: var(--accent);
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ---------- 价值条 ---------- */
.value-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.value-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}
.value-icon { font-size: 20px; }
.value-arrow { color: var(--text-dim); font-size: 18px; }

/* ---------- 通用 section ---------- */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.section-sub { color: var(--text-muted); font-size: 17px; }
.section-sub code {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.88em;
  color: var(--accent);
}

/* ---------- 特性网格 ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
  box-shadow: var(--shadow);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(45,212,191,0.15), rgba(52,211,153,0.15));
  font-size: 24px;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; }
.feature-card p strong { color: var(--text); }

/* ---------- 表格 ---------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}
th {
  background: var(--bg-alt);
  font-weight: 700;
  color: var(--text-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr { transition: background 0.15s; }
tbody tr:hover { background: var(--bg-hover); }
.mirror-table td:first-child { font-family: var(--mono); color: var(--accent); font-weight: 600; }
.mirror-table .default-tag {
  display: inline-block;
  padding: 1px 8px;
  border-radius: 100px;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  margin-left: 6px;
}
.latency-badge {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--mono);
}
.latency-fast { background: rgba(63,185,80,0.15); color: var(--green); }
.latency-mid { background: rgba(210,153,34,0.15); color: var(--yellow); }
.latency-slow { background: rgba(248,81,73,0.15); color: var(--red); }
.ip-badge {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 5px;
  font-size: 12px;
  font-family: var(--mono);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.table-note { margin-top: 16px; color: var(--text-dim); font-size: 13.5px; }
.table-note code {
  font-family: var(--mono);
  color: var(--text-muted);
}
.options-table td:first-child { font-family: var(--mono); color: var(--accent); font-weight: 600; white-space: nowrap; }
.options-table td:nth-child(2) { font-family: var(--mono); color: var(--text-muted); }

/* ---------- 步骤 ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.step-num {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04201c;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
}
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 15px; margin-bottom: 16px; }
.step p code, .step-note code {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.88em;
  color: var(--accent);
}
.step-note { color: var(--text-dim); font-size: 13.5px; margin-top: 14px; }

/* ---------- 代码块 ---------- */
.code-block {
  position: relative;
  background: #010409;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 13.5px;
  color: #e6edf3;
  white-space: pre-wrap;
  word-break: break-all;
  overflow-wrap: anywhere;
  line-height: 1.7;
}
.code-block::after {
  content: "复制";
  position: absolute;
  top: 8px; right: 8px;
  padding: 4px 10px;
  border-radius: 5px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  font-family: var(--font);
  cursor: pointer;
  opacity: 0;
  transition: all 0.2s;
  user-select: none;
}
.code-block:hover::after { opacity: 1; }
.code-block.copied::after { content: "已复制 ✓"; color: var(--green); border-color: var(--green); }

/* ---------- Tabs ---------- */
.tabs { margin-bottom: 4px; }
.tab-head {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.tab-btn {
  padding: 8px 16px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: -1px;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ---------- 用法网格 ---------- */
.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.usage-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: all 0.25s;
}
.usage-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-light);
  box-shadow: var(--shadow);
}
.usage-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.usage-card-head h4 { font-size: 16px; }
.usage-tag {
  padding: 2px 10px;
  border-radius: 100px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
}
.usage-tag.tag-accent { background: var(--accent-glow); color: var(--accent); border-color: transparent; }
.usage-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 14px; }
.usage-card p code {
  font-family: var(--mono);
  color: var(--accent);
  font-size: 0.9em;
}

/* ---------- 保护网格 ---------- */
.protect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.protect-card {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 26px;
  transition: all 0.25s;
}
.protect-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow); }
.protect-icon { font-size: 40px; margin-bottom: 16px; }
.protect-card h4 { font-size: 18px; margin-bottom: 10px; }
.protect-card p { color: var(--text-muted); font-size: 15px; }
.protect-card p strong { color: var(--accent); }

/* ---------- CTA ---------- */
.cta-section {
  padding: 80px 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, var(--accent-glow), transparent 70%),
    var(--bg-alt);
  border-top: 1px solid var(--border);
}
.cta-inner { text-align: center; }
.cta-title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.cta-desc { color: var(--text-muted); font-size: 17px; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 50px 0 30px;
}
.footer-inner { text-align: center; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 12px;
}
.footer-desc { color: var(--text-muted); font-size: 15px; margin-bottom: 22px; }
.footer-links {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 14.5px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 13.5px;
}
.footer-vibe { color: var(--text-dim); }

/* ---------- 回到顶部 ---------- */
.to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 90;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--accent); color: #04201c; border-color: var(--accent); }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-card);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 200;
  pointer-events: none;
}
.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* ---------- 主题切换圆形过渡动画 ---------- */
::view-transition-old(root),
::view-transition-new(root) {
  animation: none;
  mix-blend-mode: normal;
}
::view-transition-old(root) { z-index: 1; }
::view-transition-new(root) { z-index: 9999; }

/* 降级：不支持 View Transitions 时的全屏遮罩淡入淡出 */
.theme-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
}
.theme-overlay.run {
  animation: themeSweep 480ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes themeSweep {
  0% { transform: scale(0); opacity: 0.9; border-radius: 50%; }
  60% { opacity: 0.9; border-radius: 8%; }
  100% { transform: scale(2.5); opacity: 0; border-radius: 0; }
}
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) { animation: none !important; }
  .theme-overlay.run { animation: none; }
}

/* ---------- 响应式 ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-terminal { max-width: 560px; }
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px;
    gap: 4px;
    transform: translateY(-120%);
    transition: transform 0.3s;
    z-index: 99;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-burger { display: flex; }
  .nav-github span { display: none; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 560px) {
  .hero { padding: 100px 0 60px; }
  .section { padding: 64px 0; }
  .container { padding: 0 18px; }
  .hero-cta .btn { flex: 1; justify-content: center; }
  .value-bar-inner { gap: 10px; font-size: 14px; }
  .value-arrow { display: none; }
  .footer-bottom { flex-direction: column; }
  .terminal-body { font-size: 12px; }
}
