/* ============================================
   FDEHOME 官网设计系统
   元辅科技 · B端科技极简风
   主色：科技深蓝 + 白色
   ============================================ */

/* ---------- 设计令牌 ---------- */
:root {
  /* 主色系 - 科技深蓝 */
  --c-primary: #0A2540;
  --c-primary-deep: #061A2E;
  --c-primary-soft: #1B3A5C;
  --c-accent: #2563EB;
  --c-accent-light: #3B82F6;
  --c-accent-hover: #1D4ED8;

  /* 中性色 */
  --c-white: #FFFFFF;
  --c-bg: #FFFFFF;
  --c-bg-soft: #F7F9FC;
  --c-bg-tint: #EEF3FA;
  --c-bg-deep: #0A2540;

  /* 文字 */
  --c-text: #0F1B2D;
  --c-text-body: #2D3A4F;
  --c-text-mute: #5B6B82;
  --c-text-light: #94A3B8;
  --c-text-inv: #FFFFFF;

  /* 边框/分割 */
  --c-border: #E3E9F2;
  --c-border-soft: #EEF2F7;

  /* 功能色 */
  --c-success: #16A34A;
  --c-success-bg: #ECFDF5;
  --c-warn: #D97706;
  --c-info: #2563EB;

  /* 字体 */
  --font-sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", "Segoe UI", Roboto, sans-serif;
  --font-mono: "SF Mono", "JetBrains Mono", Consolas, monospace;

  /* 间距 */
  --space-section: 96px;
  --space-section-sm: 64px;

  /* 圆角 */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* 阴影 */
  --sh-sm: 0 1px 2px rgba(10, 37, 64, 0.04), 0 1px 3px rgba(10, 37, 64, 0.06);
  --sh-md: 0 4px 12px rgba(10, 37, 64, 0.06), 0 2px 6px rgba(10, 37, 64, 0.04);
  --sh-lg: 0 12px 32px rgba(10, 37, 64, 0.10), 0 4px 12px rgba(10, 37, 64, 0.06);
  --sh-xl: 0 24px 56px rgba(10, 37, 64, 0.14);

  /* 容器 */
  --container: 1200px;
  --container-narrow: 960px;

  /* 过渡 */
  --t-fast: 0.15s ease;
  --t-base: 0.25s ease;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-text-body);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-accent); }

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

ul, ol { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
  color: var(--c-text);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* ---------- 容器 ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-section) 0;
}

.section-sm {
  padding: var(--space-section-sm) 0;
}

.section-tint {
  background: var(--c-bg-soft);
}

.section-deep {
  background: var(--c-primary);
  color: rgba(255,255,255,0.82);
}

.section-deep h2,
.section-deep h3,
.section-deep h4 { color: var(--c-white); }

/* ---------- 顶部导航 ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--c-border-soft);
  transition: box-shadow var(--t-base), background var(--t-base);
}

.navbar.scrolled {
  box-shadow: var(--sh-md);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  color: var(--c-primary);
  letter-spacing: -0.02em;
}

.nav-brand .logo-mark {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px; font-weight: 800;
  flex-shrink: 0;
}

.nav-brand .brand-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--c-text-light);
  letter-spacing: 0.02em;
  display: block;
  line-height: 1.2;
  margin-top: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--c-text-body);
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
  position: relative;
}

.nav-menu a:hover {
  color: var(--c-accent);
  background: var(--c-bg-tint);
}

.nav-menu a.active {
  color: var(--c-accent);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 14px; right: 14px;
  height: 2px;
  background: var(--c-accent);
  border-radius: 2px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 400 服务热线（固定导航栏右侧，全站可见；导航栏为白色背景，故用品牌蓝保证清晰） */
.nav-phone {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--c-accent, #2563EB);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  padding: 7px 14px;
  border: 1.5px solid rgba(37,99,235,0.55);
  border-radius: var(--r-sm, 6px);
  transition: border-color var(--t-fast, .2s), background var(--t-fast, .2s), box-shadow var(--t-fast, .2s);
}
.nav-phone:hover {
  border-color: var(--c-accent, #2563EB);
  background: rgba(37,99,235,0.10);
  color: var(--c-accent-hover, #1D4ED8);
  box-shadow: 0 2px 12px rgba(37,99,235,0.25);
}
.nav-phone-lbl {
  color: var(--c-accent, #2563EB);
  font-weight: 600;
  font-size: 13px;
}

/* 页脚服务热线 */
.footer-hotline {
  margin-top: 8px;
  font-size: 15px;
  color: #cbd5e1;
}
.footer-hotline a {
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.3px;
}

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--r-sm);
}

.nav-toggle span {
  width: 20px; height: 2px;
  background: var(--c-primary);
  border-radius: 2px;
  transition: all var(--t-base);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-md);
  transition: all var(--t-base);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.22);
}

.btn-primary:hover {
  background: var(--c-accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.30);
}

.btn-dark {
  background: var(--c-primary);
  color: #fff;
}

.btn-dark:hover {
  background: var(--c-primary-deep);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-border);
}

.btn-outline:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  background: var(--c-bg-tint);
}

.btn-white {
  background: #fff;
  color: var(--c-primary);
}

.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: var(--sh-lg);
  color: var(--c-primary);
}

.btn-ghost-white {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}

.btn-ghost-white:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.btn-sm { padding: 8px 18px; font-size: 13.5px; }
.btn-lg { padding: 15px 34px; font-size: 16px; }

/* ---------- 标题区块 ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-head.left {
  text-align: left;
  margin-left: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 5px 14px;
  background: var(--c-bg-tint);
  border-radius: 20px;
}

.section-deep .eyebrow {
  background: rgba(37, 99, 235, 0.18);
  color: #93C5FD;
}

.section-head h2 {
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-head p {
  font-size: 16px;
  color: var(--c-text-mute);
  line-height: 1.75;
}

.section-deep .section-head p { color: rgba(255,255,255,0.72); }

/* ---------- Banner ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--c-primary-deep);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(37, 99, 235, 0.28), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(59, 130, 246, 0.18), transparent 60%),
    linear-gradient(180deg, #061A2E 0%, #0A2540 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  color: #93C5FD;
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #60A5FA;
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.2);
}

.hero h1 {
  font-size: 52px;
  line-height: 1.18;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero h1 .accent {
  background: linear-gradient(120deg, #60A5FA, #93C5FD);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat .num {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-stat .label {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ---------- 平台简介 ---------- */
.intro-block {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.intro-block .lead {
  font-size: 21px;
  line-height: 1.75;
  color: var(--c-text);
  font-weight: 500;
  margin-bottom: 24px;
}

.intro-block .desc {
  font-size: 16px;
  line-height: 1.85;
  color: var(--c-text-mute);
}

.intro-block .highlight {
  color: var(--c-accent);
  font-weight: 600;
}

/* ---------- 四宫格能力卡片 ---------- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ability-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}

.ability-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}

.ability-card:hover {
  border-color: var(--c-accent-light);
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}

.ability-card:hover::before { transform: scaleX(1); }

.ability-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--c-bg-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--c-accent);
}

.ability-card .idx {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-light);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.ability-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.ability-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-mute);
}

/* ---------- FDE 人才体系 ---------- */
.fde-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.fde-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.fde-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--c-text-mute);
  margin-bottom: 16px;
}

.fde-text .keyword {
  color: var(--c-accent);
  font-weight: 600;
}

.level-path {
  margin-top: 28px;
  padding: 24px;
  background: var(--c-bg-soft);
  border-radius: var(--r-md);
  border-left: 3px solid var(--c-accent);
}

.level-path .path-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-light);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.level-track {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.level-chip {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--c-border);
  background: #fff;
}

.level-chip.l-c { color: #5B6B82; }
.level-chip.l-b { color: #2563EB; border-color: #BFDBFE; background: #EFF6FF; }
.level-chip.l-a { color: #7C3AED; border-color: #DDD6FE; background: #F5F3FF; }
.level-chip.l-s { color: #fff; background: var(--c-primary); border-color: var(--c-primary); }

.level-arrow {
  color: var(--c-text-light);
  font-size: 16px;
}

/* 等级卡片网格 */
.level-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.level-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 24px;
  position: relative;
  transition: all var(--t-base);
}

.level-card:hover {
  box-shadow: var(--sh-md);
  border-color: var(--c-accent-light);
}

.level-card .grade {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
}

.level-card.g-c .grade { background: #F1F5F9; color: #5B6B82; }
.level-card.g-b .grade { background: #DBEAFE; color: #2563EB; }
.level-card.g-a .grade { background: #EDE9FE; color: #7C3AED; }
.level-card.g-s .grade { background: var(--c-primary); color: #fff; }

.level-card h4 { font-size: 16px; margin-bottom: 6px; }
.level-card .role { font-size: 13px; color: var(--c-accent); font-weight: 600; margin-bottom: 10px; }
.level-card p { font-size: 13.5px; color: var(--c-text-mute); line-height: 1.65; }

/* ---------- 社区生态 ---------- */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.community-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 26px 24px;
  transition: all var(--t-base);
}

.community-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
  border-color: var(--c-accent-light);
}

.community-card .ico {
  font-size: 26px;
  margin-bottom: 14px;
}

.community-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.community-card p {
  font-size: 13.5px;
  color: var(--c-text-mute);
  line-height: 1.65;
}

.ai-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: linear-gradient(120deg, rgba(37,99,235,0.06), rgba(59,130,246,0.04));
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: var(--r-lg);
}

.ai-banner .ai-ico {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  color: #fff;
}

.ai-banner h4 { font-size: 17px; margin-bottom: 4px; }
.ai-banner p { font-size: 14px; color: var(--c-text-mute); }

/* ---------- 项目交付 ---------- */
.project-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.project-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: all var(--t-base);
}

.project-item:hover {
  border-color: var(--c-accent-light);
  background: var(--c-bg-soft);
}

.project-item .pico {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--c-bg-tint);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.project-item h4 { font-size: 15px; margin-bottom: 4px; }
.project-item p { font-size: 13px; color: var(--c-text-mute); line-height: 1.55; }

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

.flow-step {
  text-align: center;
  padding: 28px 20px;
  position: relative;
}

.flow-step .step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
}

.flow-step h4 { font-size: 17px; margin-bottom: 8px; }
.flow-step p { font-size: 14px; color: var(--c-text-mute); line-height: 1.7; }

/* ---------- 实训学院 ---------- */
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.course-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: all var(--t-base);
  position: relative;
}

.course-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-3px);
  border-color: var(--c-accent-light);
}

.course-card .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.course-card .tag.core { background: #DBEAFE; color: #2563EB; }
.course-card .tag.ai { background: #EDE9FE; color: #7C3AED; }
.course-card .tag.practice { background: #D1FAE5; color: #16A34A; }

.course-card h4 { font-size: 17px; margin-bottom: 10px; }
.course-card p { font-size: 13.5px; color: var(--c-text-mute); line-height: 1.7; margin-bottom: 16px; }

.course-card .meta {
  display: flex;
  gap: 16px;
  font-size: 12.5px;
  color: var(--c-text-light);
  padding-top: 14px;
  border-top: 1px solid var(--c-border-soft);
}

.course-card .meta span { display: inline-flex; align-items: center; gap: 5px; }

/* ---------- 企业服务 ---------- */
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.service-item {
  display: flex;
  gap: 18px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: all var(--t-base);
}

.service-item:hover {
  box-shadow: var(--sh-md);
  border-color: var(--c-accent-light);
}

.service-item .snum {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--c-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
}

.service-item h4 { font-size: 16px; margin-bottom: 6px; }
.service-item p { font-size: 13.5px; color: var(--c-text-mute); line-height: 1.65; }

.service-model {
  background: var(--c-primary);
  border-radius: var(--r-lg);
  padding: 40px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.service-model .sm-label {
  font-size: 14px;
  color: #93C5FD;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.service-model h3 { color: #fff; font-size: 24px; margin-bottom: 10px; }
.service-model p { color: rgba(255,255,255,0.78); font-size: 15px; }

/* ---------- 品牌愿景 ---------- */
.vision-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.vision-block h3 {
  font-size: 20px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vision-block h3 .vico {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--c-bg-tint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.vision-block ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--c-border-soft);
  font-size: 14.5px;
  color: var(--c-text-body);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* 深色愿景区块：列表文字改为白色，提升可读性 */
.section-deep .vision-block ul li {
  color: #fff !important;
  font-weight: 600;
  font-size: 15.5px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
  border-bottom-color: rgba(255,255,255,0.14) !important;
}
.section-deep .vision-block ul li::before { background: #93C5FD !important; }
.section-deep .vision-block h3 { color: #fff !important; text-shadow: 0 1px 2px rgba(0,0,0,0.3); }
.section-deep .section-head p { color: rgba(255,255,255,0.9) !important; }

.vision-block ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  margin-top: 9px;
  flex-shrink: 0;
}

.vision-quote {
  margin-top: 48px;
  padding: 36px;
  background: linear-gradient(120deg, var(--c-primary), var(--c-primary-soft));
  border-radius: var(--r-lg);
  color: #fff;
  text-align: center;
}

.vision-quote .q-label {
  font-size: 13px;
  color: #93C5FD;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 12px;
}

.vision-quote .q-text {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
}

/* ---------- 通用卡片/列表 ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all var(--t-base);
}

.feature-card:hover {
  box-shadow: var(--sh-lg);
  border-color: var(--c-accent-light);
  transform: translateY(-3px);
}

.feature-card .fico {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--c-bg-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  color: var(--c-accent);
}

.feature-card h4 { font-size: 17px; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--c-text-mute); line-height: 1.7; }

/* 社区动态/资料卡片增强 */
a.feature-card { text-decoration: none; color: inherit; display: block; }
.feature-card .card-meta {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  color: var(--c-text-mute);
}
.feature-card .card-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.resource-card .btn-outline { padding: 8px 18px; font-size: 13px; }
.news-card:hover h4, .resource-card:hover h4 { color: var(--c-accent); }

/* 时间线 */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--c-border);
}

.timeline-item {
  position: relative;
  padding-bottom: 32px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--c-accent);
}

.timeline-item h4 { font-size: 16px; margin-bottom: 6px; }
.timeline-item .t-meta { font-size: 13px; color: var(--c-accent); font-weight: 600; margin-bottom: 8px; }
.timeline-item p { font-size: 14px; color: var(--c-text-mute); line-height: 1.7; }

/* ---------- CTA 区块 ---------- */
.cta-band {
  background: var(--c-primary-deep);
  border-radius: var(--r-xl);
  padding: 56px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(37,99,235,0.25), transparent 70%);
}

.cta-band h2 {
  position: relative;
  color: #fff;
  font-size: 30px;
  margin-bottom: 14px;
}

.cta-band p {
  position: relative;
  color: rgba(255,255,255,0.74);
  font-size: 16px;
  margin-bottom: 32px;
}

.cta-band .cta-actions {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- 页脚 ---------- */
.footer {
  background: var(--c-primary-deep);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer-brand .nav-brand {
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand .nav-brand .brand-sub { color: rgba(255,255,255,0.5); }

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 320px;
}

.footer-brand .slogan {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border-left: 2px solid var(--c-accent);
  border-radius: 6px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

.footer-col h5 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.footer-col ul li {
  margin-bottom: 11px;
}

.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast);
}

.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom .copy {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-bottom .icp {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom .icp a { color: rgba(255,255,255,0.55); }
.footer-bottom .icp a:hover { color: #fff; }

/* ---------- 悬浮AI智能体 ---------- */
.ai-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
}

.ai-fab-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-light));
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35), 0 0 0 0 rgba(37, 99, 235, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-base);
  position: relative;
  animation: fabPulse 2.4s infinite;
}

@keyframes fabPulse {
  0% { box-shadow: 0 8px 24px rgba(37,99,235,0.35), 0 0 0 0 rgba(37,99,235,0.4); }
  70% { box-shadow: 0 8px 24px rgba(37,99,235,0.35), 0 0 0 14px rgba(37,99,235,0); }
  100% { box-shadow: 0 8px 24px rgba(37,99,235,0.35), 0 0 0 0 rgba(37,99,235,0); }
}

.ai-fab-btn:hover { transform: scale(1.06); }

.ai-fab-btn .fab-ico {
  font-size: 26px;
  color: #fff;
}

.ai-fab-btn .fab-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #EF4444;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.ai-chat-panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 380px;
  max-width: calc(100vw - 48px);
  height: 540px;
  max-height: calc(100vh - 120px);
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--c-border);
}

.ai-chat-panel.open { display: flex; }

.ai-chat-header {
  padding: 18px 20px;
  background: linear-gradient(120deg, var(--c-primary), var(--c-primary-soft));
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-chat-header .ava {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 2px solid rgba(255,255,255,0.3);
}

.ai-chat-header .info h5 { color: #fff; font-size: 15px; margin-bottom: 2px; }
.ai-chat-header .info .status { font-size: 12px; color: #93C5FD; display: flex; align-items: center; gap: 5px; }
.ai-chat-header .status .live-dot { width: 7px; height: 7px; border-radius: 50%; background: #34D399; }

.ai-chat-header .close-btn {
  margin-left: auto;
  width: 30px; height: 30px;
  border-radius: 6px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0.7;
  transition: opacity var(--t-fast);
}

.ai-chat-header .close-btn:hover { opacity: 1; background: rgba(255,255,255,0.1); }

.ai-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background: var(--c-bg-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ai-chat-body::-webkit-scrollbar { width: 5px; }
.ai-chat-body::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 3px; }

.chat-msg {
  max-width: 85%;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.65;
}

.chat-msg.bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--c-border);
  border-bottom-left-radius: 4px;
  color: var(--c-text-body);
}

.chat-msg.user {
  align-self: flex-end;
  background: var(--c-accent);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-quick {
  padding: 0 20px 12px;
  background: var(--c-bg-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-quick button {
  padding: 7px 13px;
  font-size: 12.5px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--c-border);
  color: var(--c-text-body);
  transition: all var(--t-fast);
}

.chat-quick button:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  background: var(--c-bg-tint);
}

.ai-chat-input {
  padding: 14px 16px;
  border-top: 1px solid var(--c-border);
  background: #fff;
  display: flex;
  gap: 10px;
  align-items: center;
}

.ai-chat-input input {
  flex: 1;
  border: 1px solid var(--c-border);
  border-radius: 22px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--t-fast);
}

.ai-chat-input input:focus { border-color: var(--c-accent); }

.ai-chat-input button {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: background var(--t-fast);
}

.ai-chat-input button:hover { background: var(--c-accent-hover); }

/* ---------- 子页头部 ---------- */
.page-hero {
  padding: 140px 0 72px;
  background: var(--c-primary-deep);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 10%, rgba(37,99,235,0.22), transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(59,130,246,0.12), transparent 60%);
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero .breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}

.page-hero .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero .breadcrumb .sep { margin: 0 8px; opacity: 0.5; }

.page-hero h1 {
  color: #fff;
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-hero .ph-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 680px;
  line-height: 1.75;
}

/* ---------- 数据统计带 ---------- */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
}

.stat-item { text-align: center; }
.stat-item .num {
  font-size: 36px;
  font-weight: 800;
  color: var(--c-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-item .num .unit { font-size: 18px; color: var(--c-accent); margin-left: 2px; }
.stat-item .label { font-size: 13.5px; color: var(--c-text-mute); margin-top: 10px; }

/* ---------- 表格样式 ---------- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--c-border);
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--c-border-soft);
}

.compare-table th {
  background: var(--c-bg-soft);
  font-weight: 600;
  color: var(--c-text);
  font-size: 13.5px;
}

.compare-table tbody tr:hover { background: var(--c-bg-soft); }
.compare-table tbody tr:last-child td { border-bottom: none; }

.compare-table .tag-yes { color: var(--c-success); font-weight: 600; }
.compare-table .tag-no { color: var(--c-text-light); }

/* ---------- 入驻/咨询表单 ---------- */
.form-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--sh-md);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 8px;
}

.form-group label .req { color: #EF4444; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--c-text);
  background: #fff;
  outline: none;
  transition: border-color var(--t-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--c-accent); }

.form-group textarea { resize: vertical; min-height: 96px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-note {
  font-size: 12.5px;
  color: var(--c-text-light);
  margin-top: 14px;
  text-align: center;
}

/* ---------- 通用工具 ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root {
    --space-section: 64px;
    --space-section-sm: 48px;
  }

  .container { padding: 0 18px; }

  .nav-menu {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 20px;
    gap: 2px;
    border-bottom: 1px solid var(--c-border);
    box-shadow: var(--sh-md);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--t-base);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu a {
    padding: 13px 14px;
    border-radius: var(--r-sm);
  }

  .nav-menu a.active::after { display: none; }

  .nav-toggle { display: flex; }

  .nav-cta .btn { display: none; }

  .hero { min-height: auto; padding: 110px 0 60px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .hero-stats { gap: 28px; }
  .hero-stat .num { font-size: 26px; }

  .section-head h2 { font-size: 26px; }
  .section-head { margin-bottom: 40px; }

  .intro-block .lead { font-size: 18px; }

  .grid-4,
  .community-grid,
  .project-list,
  .flow-steps,
  .course-grid,
  .feature-grid,
  .level-cards { grid-template-columns: 1fr; }

  .fde-wrap,
  .vision-wrap { grid-template-columns: 1fr; gap: 36px; }

  .service-list { grid-template-columns: 1fr; }

  .stat-band { grid-template-columns: repeat(2, 1fr); gap: 28px; padding: 28px 20px; }

  .cta-band { padding: 40px 24px; }
  .cta-band h2 { font-size: 24px; }

  .service-model { flex-direction: column; align-items: flex-start; padding: 28px; }

  .page-hero { padding: 110px 0 52px; }
  .page-hero h1 { font-size: 30px; }
  .page-hero .ph-sub { font-size: 15px; }

  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .ai-fab { right: 16px; bottom: 16px; }
  .ai-fab-btn { width: 54px; height: 54px; }
  .ai-chat-panel { width: calc(100vw - 32px); height: 480px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 27px; }
  .hero-cta .btn { width: 100%; }
  .stat-band { grid-template-columns: 1fr; }
  .level-track { flex-direction: column; align-items: flex-start; }
  .level-arrow { transform: rotate(90deg); }
}

/* ============================================
   FDE 已入驻展示 + 入驻表单增强
   ============================================ */
.talent-filters {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-tab {
  padding: 8px 16px; border: 1px solid var(--c-border);
  background: #fff; color: var(--c-text-mute);
  border-radius: 999px; font-size: 14px; cursor: pointer;
  transition: all var(--t-base);
}
.filter-tab:hover { border-color: var(--c-accent-light); color: var(--c-accent); }
.filter-tab.active {
  background: var(--c-primary); border-color: var(--c-primary);
  color: #fff; font-weight: 600;
}
.talent-search input {
  width: 280px; max-width: 100%; padding: 9px 16px;
  border: 1px solid var(--c-border); border-radius: 999px;
  font-size: 14px; outline: none; transition: all var(--t-base);
}
.talent-search input:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.talent-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.talent-card {
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 22px;
  transition: all var(--t-base);
  display: flex; flex-direction: column; gap: 14px;
}
.talent-card:hover {
  border-color: var(--c-accent-light);
  box-shadow: var(--sh-md); transform: translateY(-3px);
}
.talent-head { display: flex; align-items: center; gap: 14px; }
.talent-ava {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; color: #fff; flex-shrink: 0;
  background: var(--c-primary);
}
.talent-ava.lv-c { background: #5B6B82; }
.talent-ava.lv-b { background: #2563EB; }
.talent-ava.lv-a { background: #7C3AED; }
.talent-ava.lv-s { background: var(--c-primary); }
.talent-ava-img {
  width: 48px; height: 48px; border-radius: 14px;
  object-fit: cover; flex-shrink: 0; background: #EEF2F7;
}
.talent-id { display: flex; flex-direction: column; gap: 6px; }
.talent-name { font-size: 16px; font-weight: 700; color: var(--c-text); }
.talent-title { font-size: 13px; color: var(--c-accent); font-weight: 500; }
.talent-card { position: relative; }
.talent-featured {
  position: absolute; top: 14px; right: 14px;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #fff; font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 999px; letter-spacing: .5px;
}
.level-badge {
  display: inline-block; align-self: flex-start;
  padding: 3px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 600; line-height: 1.4;
}
.level-badge.lv-c { background: #EEF2F7; color: #5B6B82; }
.level-badge.lv-b { background: #DBEAFE; color: #1D4ED8; }
.level-badge.lv-a { background: #EDE9FE; color: #6D28D9; }
.level-badge.lv-s { background: #0A2540; color: #fff; }
.talent-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--c-text-mute); }
.talent-bio { font-size: 13.5px; line-height: 1.6; color: var(--c-text-body); margin: 0; }
.talent-skills { display: flex; flex-wrap: wrap; gap: 6px; }
.talent-tag {
  padding: 4px 10px; background: var(--c-bg-tint);
  border-radius: 6px; font-size: 12px; color: var(--c-primary-soft);
}
.talent-loading, .talent-empty {
  grid-column: 1 / -1; padding: 48px; text-align: center;
  color: var(--c-text-mute); font-size: 15px;
}

.join-success {
  max-width: 560px; margin: 0 auto; text-align: center;
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 48px 32px;
  box-shadow: var(--sh-md);
}
.js-ico {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--c-success-bg); color: var(--c-success);
  font-size: 32px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.join-success h3 { font-size: 20px; margin-bottom: 10px; }
.join-success p { color: var(--c-text-mute); margin-bottom: 22px; line-height: 1.6; }

@media (max-width: 1024px) {
  .talent-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .talent-grid { grid-template-columns: 1fr; }
  .talent-filters { flex-direction: column; align-items: stretch; }
  .talent-search input { width: 100%; }
}

/* 移动端精简 400 热线展示 */
@media (max-width: 768px) {
  .nav-phone-lbl { display: none; }
  .nav-phone { padding: 6px 11px; font-size: 15px; }
}
@media (max-width: 400px) {
  .nav-phone { padding: 5px 9px; font-size: 14px; }
}
