:root {
  --bg: #f9f3e8;
  --bg-deep: #4d0b14;
  --surface: #fffdf9;
  --text: #261a11;
  --muted: #6f5445;
  --line: #efd7bd;
  --primary: #8d1026;
  --primary-deep: #5f0c1a;
  --gold: #d1a034;
  --gold-deep: #9a7521;
  --shadow: 0 12px 30px rgba(112, 49, 8, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans SC", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 12% 0%, #fff4df 0%, #f9f3e8 35%, #f6ecdf 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(239, 215, 189, 0.8);
  background: rgba(249, 243, 232, 0.93);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  height: 78px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  color: var(--primary);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.logo-line1 {
  font-size: 0.8rem;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.5px;
}

.logo-line2 {
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: 0.2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
  color: #6d3d2f;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
  color: var(--primary);
  padding: 8px 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--primary);
  padding: 0 18px;
  font-weight: 700;
  transition: all 0.22s ease;
  background: var(--primary);
  color: #fff;
}

.btn:hover {
  background: var(--primary-deep);
}

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

.btn-outline:hover {
  background: rgba(141, 16, 38, 0.08);
}

.btn-small {
  height: 38px;
  padding: 0 14px;
}

.hero {
  padding: 88px 0 76px;
  background: linear-gradient(136deg, #5b0d18 0%, #7e1024 48%, #9f1530 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -120px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 200, 99, 0.35) 0%, rgba(242, 200, 99, 0) 70%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
}

.badge {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 228, 168, 0.8);
  color: #ffe4a8;
  margin: 0 0 14px;
  font-weight: 700;
}

h1 {
  font-family: "Lexend", "Noto Sans SC", sans-serif;
  margin: 0;
  line-height: 1.18;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
}

h2 {
  margin: 0;
  font-family: "Lexend", "Noto Sans SC", sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

h3 {
  margin: 0 0 8px;
}

.hero p {
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.hero-actions .btn {
  border-color: #f3cb74;
  background: #f3cb74;
  color: #4f2106;
}

.hero-actions .btn:hover {
  background: #e5b95c;
}

.hero-actions .btn-outline {
  background: transparent;
  color: #fff7e4;
  border-color: rgba(255, 247, 228, 0.72);
}

.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.13);
}

.hero-list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.hero-panel {
  border: 1px solid rgba(248, 216, 153, 0.45);
  border-radius: 18px;
  background: rgba(248, 216, 153, 0.09);
  padding: 22px;
}

.hero-panel .big {
  font-size: 2.05rem;
  color: #ffd98c;
  font-family: "Lexend", sans-serif;
  margin: 10px 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-stats div {
  border: 1px solid rgba(255, 233, 185, 0.35);
  border-radius: 10px;
  padding: 10px;
}

.hero-stats span {
  font-size: 0.84rem;
  color: #ffd98c;
}

.hero-stats strong {
  display: block;
  margin-top: 3px;
  color: #fff;
}

.section {
  padding: 80px 0;
}

.section-intro {
  margin: 12px 0 28px;
  color: var(--muted);
}

.section-dark {
  background: linear-gradient(180deg, #61101b 0%, #520d16 100%);
  color: #fff;
}

.section-dark .section-intro {
  color: #f6dac6;
}

.section-light {
  background: linear-gradient(180deg, #fffdf9 0%, #fff6ea 100%);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.nav-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.nav-tab {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-tab:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.nav-tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.materials-section {
  margin-bottom: 30px;
}

.materials-section h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.materials-section h4 {
  color: var(--primary-deep);
  margin-bottom: 15px;
  font-size: 1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.card p,
.card li,
.timeline p,
.office-card p {
  color: var(--muted);
  line-height: 1.75;
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 229, 174, 0.34);
  box-shadow: none;
}

.section-dark .card p,
.section-dark .card li {
  color: #ffe5bf;
}

.card ul {
  margin: 0;
  padding-left: 18px;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.timeline li {
  border-left: 5px solid var(--gold);
  background: #fffdf8;
  border-radius: 0 12px 12px 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
}

.timeline strong {
  color: var(--gold-deep);
}

.price {
  margin: 10px 0;
  font-family: "Lexend", sans-serif;
  font-size: 1.8rem;
  color: var(--primary);
}

.card.featured {
  border: 2px solid var(--gold);
  transform: translateY(-8px);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold-deep);
  font-weight: 700;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.link-grid a {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  text-align: center;
  font-weight: 700;
  color: #7a2e1f;
}

.office-card {
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.office-card h3 {
  color: var(--primary);
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  margin-bottom: 16px;
}

.province-header {
  padding: 40px 0 26px;
}

.province-header h1 {
  color: var(--primary);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff9f0;
  color: var(--muted);
  text-align: center;
  padding: 24px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-commercial h1 {
  display: grid;
  gap: 6px;
}

.hero-subline {
  font-size: clamp(1.2rem, 2.1vw, 1.62rem);
  color: #ffd98c;
  font-weight: 700;
}

.hero-premium {
  background: linear-gradient(130deg, #4e0913 0%, #6a0d1a 45%, #8a1428 100%);
}

.hero-short {
  font-size: 1.03rem;
  line-height: 1.9;
  max-width: 620px;
}

.btn-strong {
  background: linear-gradient(180deg, #f6ce79 0%, #e5b55b 100%);
  border-color: #efc26c;
  color: #52230a;
}

.btn-strong:hover {
  background: linear-gradient(180deg, #efc46a 0%, #d8a649 100%);
}

.hero-kpis {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.hero-kpis div {
  border: 1px solid rgba(255, 229, 174, 0.42);
  border-radius: 11px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-kpis strong {
  display: block;
  color: #ffe2a9;
  font-family: "Lexend", sans-serif;
}

.hero-kpis span {
  font-size: 0.84rem;
  color: #ffe9c0;
}

.guarantee-banner {
  background-color: #fff3cd;
  text-align: center;
  padding: 12px 0;
  border-top: 1px solid #ffeaa7;
}

.guarantee-banner .big-inline {
  color: #8d1026;
  font-weight: 700;
}

.card-tight p {
  margin: 8px 0;
}

.card-highlight {
  border: 1px solid #e8c88e;
  background: linear-gradient(180deg, #fff8ee 0%, #fff3df 100%);
}

.big-inline {
  font-size: 1.15rem;
  margin: 0;
}

.icon-grid .card {
  padding-top: 16px;
}

.icon-card h3 {
  color: var(--gold);
  margin: 0 0 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.inline-icon {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.icon-wrap {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 221, 165, 0.2);
  border: 1px solid rgba(245, 205, 132, 0.55);
}

.icon-wrap svg {
  width: 15px;
  height: 15px;
  stroke: #f8d389;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .section {
  padding-top: 74px;
  padding-bottom: 74px;
}

.home-page .section-light {
  background: linear-gradient(180deg, #fffdf9 0%, #fbf3e7 100%);
}

.home-page .section-dark {
  background: linear-gradient(180deg, #56101a 0%, #470c14 100%);
}

.home-page .home-hero {
  padding-top: 96px;
  padding-bottom: 86px;
}

.home-page .hero-grid {
  gap: 22px;
}

.home-page .hero-panel {
  background: linear-gradient(180deg, rgba(255, 236, 197, 0.14) 0%, rgba(255, 236, 197, 0.08) 100%);
  backdrop-filter: blur(3px);
}

.home-page .card {
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(106, 53, 14, 0.11);
}

.home-page .section-dark .card {
  border-color: rgba(255, 223, 166, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.home-page .icon-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-page .icon-card {
  min-height: 172px;
}

.home-page .cta-band-inner {
  border-radius: 18px;
  padding: 22px;
}

.home-page .link-grid a {
  border-radius: 12px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.cta-band {
  padding-top: 24px;
  padding-bottom: 24px;
}

.cta-band-inner {
  border: 1px solid #e8c88f;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(180deg, #fff6e8 0%, #ffeecf 100%);
}

.cta-title {
  margin: 0;
  font-weight: 800;
  color: #6d2317;
}

.cta-sub {
  margin: 6px 0 0;
  color: var(--muted);
}

.contact-focus {
  padding: 84px 0 44px;
  background: linear-gradient(130deg, #5a0f1b 0%, #741124 44%, #92213c 100%);
  color: #fff;
}

.contact-focus-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: center;
}

.contact-focus-inner h1 {
  margin: 0 0 10px;
}

.contact-focus-inner p {
  margin: 0 0 14px;
  color: #ffe9c2;
  line-height: 1.8;
}

.focus-side-card {
  border: 1px solid rgba(251, 220, 156, 0.45);
  background: rgba(255, 236, 191, 0.13);
  border-radius: 16px;
  padding: 20px;
  text-align: left;
}

.focus-side-card p {
  margin: 0;
  color: #ffe2ab;
}

.focus-side-card strong {
  display: block;
  font-family: "Lexend", sans-serif;
  font-size: 1.75rem;
  margin: 8px 0;
  color: #fff4d8;
}

.focus-side-card span {
  color: #ffe9c7;
  font-size: 0.92rem;
}

.page-focus {
  padding: 76px 0 40px;
  color: #fff;
}

.focus-benefits {
  background: linear-gradient(130deg, #5b1020 0%, #7b1427 55%, #9c2640 100%);
}

.focus-materials {
  background: linear-gradient(130deg, #5f1f0f 0%, #7f3716 55%, #9f531f 100%);
}

.focus-process {
  background: linear-gradient(130deg, #471321 0%, #5f1930 55%, #81224a 100%);
}

.focus-pricing {
  background: linear-gradient(130deg, #3f1824 0%, #5a2137 55%, #77304d 100%);
}

.focus-about {
  background: linear-gradient(130deg, #49131e 0%, #651b2a 55%, #8d2438 100%);
}

.page-focus-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: center;
}

.page-focus-inner h1 {
  margin: 0 0 10px;
}

.page-focus-inner p {
  margin: 0 0 14px;
  color: #ffe3c1;
  line-height: 1.8;
}

.page-focus-side {
  border: 1px solid rgba(251, 220, 156, 0.45);
  background: rgba(255, 236, 191, 0.13);
  border-radius: 16px;
  padding: 20px;
}

.page-focus-side p {
  margin: 0;
  color: #ffe2ab;
}

.page-focus-side strong {
  display: block;
  margin: 8px 0;
  color: #fff4d8;
  font-size: 1.2rem;
}

.page-focus-side span {
  color: #ffe9c7;
  font-size: 0.92rem;
}

.page-content-title {
  margin-top: 2px;
  margin-bottom: 10px;
}

.faq-wrap {
  border-top: 1px solid var(--line);
}

.faq-wrap.compact {
  padding-top: 56px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: #70251a;
}

.faq-list p {
  margin: 10px 0 2px;
  color: var(--muted);
  line-height: 1.75;
}

.province-filter {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.province-filter input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}

.region-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.region-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: #7b3120;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
}

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

.province-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.province-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.province-link span {
  color: #9f6f25;
  font-size: 0.86rem;
  font-weight: 700;
}

.detail-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.detail-section h2 {
  margin-bottom: 16px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.data-table th,
.data-table td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  line-height: 1.65;
}

.data-table thead th {
  background: #f8ebd8;
  color: #6f2b1b;
}

.check-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.check-list li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.check-list li i {
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.materials-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.materials-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(106, 53, 14, 0.18);
}

.materials-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--line);
}

.materials-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.materials-card h3 {
  margin: 0;
  color: var(--primary);
  font-size: 1.25rem;
}

.download-section {
  background: linear-gradient(180deg, #fff8ee 0%, #fff3df 100%);
  border: 1px solid #e8c88e;
  border-radius: 16px;
  padding: 28px;
}

.download-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.download-title i {
  color: var(--gold-deep);
}

.download-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.download-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  background: #fff;
  color: #7c2d1d;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.download-item:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.download-item i {
  font-size: 1.3rem;
  color: var(--gold-deep);
  transition: color 0.3s ease;
}

.download-item:hover i {
  color: #ffe4a8;
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .link-grid,
  .province-grid,
  .download-grid,
  .materials-grid {
    grid-template-columns: 1fr;
  }

  .contact-focus-inner {
    grid-template-columns: 1fr;
  }

  .page-focus-inner {
    grid-template-columns: 1fr;
  }

  .home-page .icon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-kpis {
    grid-template-columns: 1fr;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .card.featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }
  
  .materials-card {
    padding: 20px;
  }
  
  .materials-icon {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
    border-radius: 10px;
  }
  
  .materials-card-header {
    gap: 12px;
  }
  
  .download-section {
    padding: 22px;
  }
  
  .download-item {
    padding: 14px 16px;
  }

  .nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 14px 16px 18px;
    border-bottom: 1px solid var(--line);
    background: #fcf6eb;
    align-items: flex-start;
  }

  .nav.open {
    display: flex;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-page .icon-grid {
    grid-template-columns: 1fr;
  }
}

/* 成功案例页面样式 */
.case-image {
  margin: 16px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.case-image img {
  width: 100%;
  height: auto;
  display: block;
}

.quote {
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
}

.quote-author {
  text-align: right;
  margin-top: 10px;
  color: var(--muted);
}

/* 优化后的流程页面样式 */
.process-timeline {
  position: relative;
  margin: 30px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--gold) 100%);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}

.timeline-step {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(141, 16, 38, 0.3);
  border: 4px solid var(--gold);
  z-index: 1;
}

.step-number {
  font-family: 'Lexend', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

.step-icon {
  font-size: 1rem;
  color: #fff;
  margin-top: 2px;
}

.timeline-content {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateX(5px);
  box-shadow: 0 16px 40px rgba(106, 53, 14, 0.18);
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 30px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 12px solid var(--surface);
}

.timeline-content::after {
  content: '';
  position: absolute;
  left: -10px;
  top: 31px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid var(--line);
  z-index: -1;
}

.timeline-content h3 {
  margin: 0 0 8px 0;
  color: var(--primary);
  font-size: 1.15rem;
}

.timeline-content p {
  margin: 0 0 10px 0;
  color: var(--muted);
  line-height: 1.7;
}

.step-tag {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* 流程卡片样式 */
.process-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(106, 53, 14, 0.15);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
}

.card-header h4 {
  margin: 0;
  color: var(--primary);
  font-size: 1.1rem;
}

.card ul {
  margin: 0;
  padding-left: 20px;
}

.card ul li {
  padding: 6px 0;
  color: var(--muted);
  line-height: 1.6;
}

.process-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-card li {
  padding: 8px 0;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.process-card li i {
  color: var(--gold);
  flex-shrink: 0;
}

/* 周期时间轴 */
.timeline-summary {
  margin-top: 20px;
}

.timeline-summary h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--primary);
}

.timeline-summary h3 i {
  color: var(--gold);
}

.timeline-bars {
  display: grid;
  gap: 16px;
}

.timeline-bar {
  display: grid;
  grid-template-columns: 100px 1fr 80px;
  align-items: center;
  gap: 12px;
}

.bar-label {
  font-weight: 600;
  color: var(--text);
}

.bar-progress {
  height: 12px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.bar-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.bar-time {
  text-align: right;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Lexend', sans-serif;
}

/* 价格页面卡片样式 */
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
}

.card-tag {
  display: inline-block;
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.featured-tag {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
}

.price-box {
  text-align: center;
  padding: 16px 0;
  margin-bottom: 16px;
  border-bottom: 1px dashed var(--line);
}

.price {
  margin: 0;
  font-family: "Lexend", sans-serif;
  font-size: 2.2rem;
  color: var(--primary);
  font-weight: 800;
}

.price-num {
  font-size: 2.8rem;
}

.price-unit {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.price-note {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.feature-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.feature-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  border-bottom: 1px solid rgba(239, 215, 189, 0.5);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li i {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* 专项收费样式 */
.extra-services-section {
  margin-top: 50px;
  padding: 40px;
  background: linear-gradient(180deg, #fff9f0 0%, #fff6ea 100%);
  border: 2px solid var(--line);
  border-radius: 20px;
}

.extra-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.extra-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.extra-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(106, 53, 14, 0.15);
}

.extra-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.extra-content h4 {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 1rem;
}

.extra-price {
  margin: 0 0 12px;
  font-family: "Lexend", sans-serif;
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 700;
}

.extra-unit {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.extra-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.extra-content li {
  padding: 5px 0;
  color: var(--muted);
  font-size: 0.88rem;
  position: relative;
  padding-left: 14px;
}

.extra-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* 选择理由对比 */
.compare-section {
  margin-top: 50px;
  padding: 40px;
  background: linear-gradient(135deg, #5b1020 0%, #7b1427 55%, #9c2640 100%);
  border-radius: 20px;
  color: #fff;
}

.compare-section h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.6rem;
  color: #fff;
}

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

.compare-item {
  text-align: center;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 229, 174, 0.3);
  border-radius: 16px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.compare-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.compare-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: #fff;
}

.compare-item h4 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: #ffe9c2;
}

.compare-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #ffd9a8;
  line-height: 1.6;
}

/* FAQ样式 */
.faq-section {
  margin-top: 50px;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.faq-section h3 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary);
  font-size: 1.6rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.faq-item {
  padding: 20px;
  background: linear-gradient(180deg, #fffdf9 0%, #fff6ea 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(106, 53, 14, 0.1);
}

.faq-item h4 {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-item h4 i {
  color: var(--gold);
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.92rem;
}

/* 响应式优化 */
@media (max-width: 980px) {
  .extra-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 响应式优化 */
@media (max-width: 760px) {
  .process-timeline::before {
    left: 25px;
  }
  
  .timeline-step {
    width: 52px;
    height: 52px;
  }
  
  .step-number {
    font-size: 1.1rem;
  }
  
  .step-icon {
    font-size: 0.8rem;
  }
  
  .timeline-item {
    gap: 12px;
  }
  
  .timeline-bar {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .bar-time {
    text-align: left;
  }
}

/* 服务内容详情样式 */
.service-detail-section {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(106, 53, 14, 0.15);
}

.service-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--line);
  color: var(--primary);
  font-size: 1.25rem;
}

.service-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: var(--gold);
  border-radius: 50%;
  font-weight: 800;
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  flex-shrink: 0;
}

.service-content p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.75;
}

.service-price-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(180deg, #fff8ee 0%, #fff3df 100%);
  border: 1px solid #e8c88e;
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--text);
  margin-top: 8px;
}

.service-price-note i {
  color: var(--gold-deep);
  font-size: 1rem;
}

.service-price-note strong {
  color: var(--primary);
}

.sub-service {
  margin: 20px 0;
  padding: 18px;
  background: linear-gradient(180deg, #fffdf9 0%, #fff6ea 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.sub-service h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 1.05rem;
}

.sub-service h4 i {
  color: var(--gold);
  font-size: 1.1rem;
}

.sub-service-intro {
  margin: 0 0 16px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #fff8ee 0%, #fff3df 100%);
  border: 1px solid #e8c88e;
  border-radius: 10px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.step-price {
  margin: 10px 0 0 !important;
  padding: 8px 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: var(--gold) !important;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.step-price strong {
  color: #fff !important;
}

.step-note {
  margin: 10px 0 0 !important;
  padding: 6px 12px;
  background: rgba(209, 160, 52, 0.15);
  border-left: 3px solid var(--gold);
  color: var(--gold-deep) !important;
  font-size: 0.88rem;
  font-weight: 500;
}

.file-list p {
  margin: 8px 0;
  padding-left: 8px;
}

.process-detail p {
  margin: 10px 0;
  padding-left: 4px;
}

/* 全流程申报步骤样式 */
.process-step-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(106, 53, 14, 0.1);
}

.process-step-item:last-child {
  margin-bottom: 0;
}

.process-step-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.process-step-content {
  flex: 1;
}

.process-step-content h5 {
  margin: 0 0 6px;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
}

.process-step-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.process-step-content strong {
  color: var(--primary);
}

/* 收费标准汇总样式 */
.pricing-summary {
  margin: 50px 0;
  padding: 40px;
  background: linear-gradient(135deg, #5b1020 0%, #7b1427 55%, #9c2640 100%);
  border-radius: 20px;
  color: #fff;
}

.pricing-summary-title {
  text-align: center;
  margin: 0 0 30px;
  font-size: 1.6rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.pricing-summary-title i {
  color: var(--gold);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 229, 174, 0.3);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card-header {
  padding: 16px 20px;
  background: rgba(255, 229, 174, 0.15);
  border-bottom: 1px solid rgba(255, 229, 174, 0.2);
}

.pricing-card-header h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #ffe9c2;
}

.pricing-card-body {
  padding: 24px 20px;
  text-align: center;
}

.price-highlight {
  margin: 0;
  font-family: 'Lexend', sans-serif;
}

.price-highlight .price-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
}

.price-highlight .price-unit {
  font-size: 1.4rem;
  color: #ffe9c2;
  margin-left: 4px;
}

.price-desc {
  margin: 12px 0 0;
  font-size: 0.92rem;
  color: #ffd9a8;
}

.price-rule {
  margin: 12px 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.price-rule p {
  margin: 0;
  font-size: 0.95rem;
}

.rule-label {
  color: #ffe9c2;
  font-weight: 500;
}

.rule-value {
  display: block;
  margin-top: 6px;
  font-family: 'Lexend', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

/* 增值服务样式优化 */
.extra-services-section {
  margin-top: 50px;
  padding: 40px;
  background: linear-gradient(180deg, #fff9f0 0%, #fff6ea 100%);
  border: 2px solid var(--line);
  border-radius: 20px;
}

.extra-services-section .page-content-title {
  text-align: center;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.extra-services-section .page-content-title i {
  color: var(--gold);
}

/* 响应式优化 */
@media (max-width: 980px) {
  .extra-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .process-timeline::before {
    left: 25px;
  }

  .timeline-step {
    width: 52px;
    height: 52px;
  }

  .step-number {
    font-size: 1.1rem;
  }

  .step-icon {
    font-size: 0.8rem;
  }

  .timeline-item {
    gap: 12px;
  }

  .timeline-bar {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bar-time {
    text-align: left;
  }

  .service-item {
    padding: 20px;
  }

  .pricing-summary {
    padding: 28px 20px;
  }

  .pricing-summary-title {
    font-size: 1.3rem;
  }

  .price-highlight .price-num {
    font-size: 2.8rem;
  }

  .extra-services-section {
    padding: 28px 20px;
  }
}

/* about页面卡片图标样式 */
.section-title-gold {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-deep);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.section-title-gold i {
  color: var(--gold);
  font-size: 1.2rem;
}

.section-title-blue {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1e5f8a;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.section-title-blue i {
  color: #3498db;
  font-size: 1.2rem;
}

.section-title-primary {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.section-title-primary i {
  color: var(--primary);
}

.card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.card-icon-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(209, 160, 52, 0.35);
}

.card-icon-blue {
  background: linear-gradient(135deg, #3498db 0%, #1e5f8a 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(52, 152, 219, 0.35);
}

.card-icon-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: var(--gold);
  box-shadow: 0 6px 16px rgba(141, 16, 38, 0.3);
}

.card-gold {
  border: 1px solid rgba(209, 160, 52, 0.35);
  background: linear-gradient(180deg, #fffdf9 0%, #fff8ee 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-gold:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(209, 160, 52, 0.2);
  border-color: var(--gold);
}

.card-gold h4 {
  color: var(--gold-deep);
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.card-blue {
  border: 1px solid rgba(52, 152, 219, 0.35);
  background: linear-gradient(180deg, #f5fafd 0%, #eef6fb 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-blue:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(52, 152, 219, 0.2);
  border-color: #3498db;
}

.card-blue h4 {
  color: #1e5f8a;
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.card-gold p,
.card-blue p {
  margin: 0;
  line-height: 1.7;
}

/* benefits页面红色系卡片样式 */
.section-light .card-primary {
  border: 1px solid rgba(141, 16, 38, 0.25);
  background: linear-gradient(180deg, #fffdf9 0%, #fff6ea 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-light .card-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(141, 16, 38, 0.18);
  border-color: var(--primary);
}

.section-light .card-primary h3 {
  color: var(--primary);
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.section-dark .card-primary {
  border: 1px solid rgba(209, 160, 52, 0.25);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-dark .card-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(141, 16, 38, 0.25);
  border-color: rgba(209, 160, 52, 0.4);
}

.section-dark .card-primary h3 {
  color: var(--gold);
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.section-dark .card-primary p {
  color: #f6dac6;
}

.section-light .card-primary p,
.card-primary p {
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

/* 金色边框按钮 - 用于深色背景 */
.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--gold);
  padding: 0 18px;
  font-weight: 700;
  transition: all 0.22s ease;
  background: transparent;
  color: var(--gold);
}
/* 服务覆盖地区版块样式 */
.card-region {
  border: 1px solid rgba(141, 16, 38, 0.2);
  background: linear-gradient(180deg, #fffdf9 0%, #fff6ea 100%);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-region:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(141, 16, 38, 0.12);
}

.card-icon-region {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  box-shadow: 0 6px 16px rgba(141, 16, 38, 0.3);
  flex-shrink: 0;
}

.region-content {
  flex: 1;
}

.region-content h3 {
  color: var(--primary);
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.region-content p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 12px;
}

.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.region-tag {
  padding: 6px 14px;
  background: rgba(141, 16, 38, 0.08);
  border: 1px solid rgba(141, 16, 38, 0.15);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 500;
}

.btn-outline-region {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 8px;
  border: 2px solid var(--primary);
  padding: 0 20px;
  font-weight: 700;
  transition: all 0.22s ease;
  background: transparent;
  color: var(--primary);
}

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

.card-service {
  border: 1px solid rgba(141, 16, 38, 0.15);
  background: linear-gradient(180deg, #fffdf9 0%, #fff 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
}

.card-service:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(141, 16, 38, 0.12);
  border-color: var(--primary);
}

.card-service h3 {
  color: var(--primary);
  margin: 0 0 8px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-service h3 i {
  color: var(--primary);
  font-size: 0.95rem;
}

.card-service p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* 适配企业场景版块样式 */
.card-scenario {
  border: 1px solid rgba(141, 16, 38, 0.15);
  background: linear-gradient(180deg, #fffdf9 0%, #fff 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
}

.card-scenario:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(141, 16, 38, 0.12);
  border-color: var(--primary);
}

.card-scenario h3 {
  color: var(--primary);
  margin: 0 0 8px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-scenario h3 i {
  color: var(--primary);
  font-size: 1rem;
}

.card-scenario p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* 办理周期参考版块样式 */
.cycle-section {
  background: linear-gradient(180deg, #fffdf9 0%, #fef8ed 100%);
}

.card-cycle {
  border: 1px solid rgba(209, 160, 52, 0.3);
  background: #fff;
  padding: 24px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-cycle:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(209, 160, 52, 0.18);
}

.card-cycle-fast {
  border-color: rgba(39, 174, 96, 0.4);
  background: linear-gradient(180deg, #f8fff9 0%, #fff 100%);
}

.card-cycle-normal {
  border-color: rgba(52, 152, 219, 0.4);
  background: linear-gradient(180deg, #f5fafd 0%, #fff 100%);
}

.card-cycle-slow {
  border-color: rgba(230, 126, 34, 0.4);
  background: linear-gradient(180deg, #fff9f5 0%, #fff 100%);
}

.cycle-badge {
  display: inline-block;
  padding: 4px 14px;
  background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
  color: #fff;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cycle-badge-normal {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.cycle-badge-slow {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.card-cycle h3 {
  font-family: "Lexend", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 8px;
}

.card-cycle p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 16px;
}

.cycle-bar {
  height: 8px;
  background: #f0e6d8;
  border-radius: 4px;
  overflow: hidden;
}

.cycle-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease;
}

.cycle-fill-fast {
  width: 40%;
  background: linear-gradient(90deg, #27ae60 0%, #2ecc71 100%);
}

.cycle-fill-normal {
  width: 65%;
  background: linear-gradient(90deg, #3498db 0%, #5dade2 100%);
}

.cycle-fill-slow {
  width: 100%;
  background: linear-gradient(90deg, #e67e22 0%, #f39c12 100%);
}

.card-cycle-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  background: linear-gradient(135deg, rgba(209, 160, 52, 0.1) 0%, rgba(209, 160, 52, 0.05) 100%);
  border: 1px solid rgba(209, 160, 52, 0.25);
}

.note-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.card-cycle-note p {
  color: var(--text);
  font-weight: 500;
  margin: 0;
}

/* 常见合规风险版块样式 */
.section-title-dark {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffe4a8;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.section-title-dark i {
  color: #e67e22;
}

.card-risk {
  border: 1px solid rgba(209, 160, 52, 0.25);
  background: rgba(255, 255, 255, 0.06);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-risk:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.card-icon-risk {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card-risk h3 {
  color: var(--gold);
  margin: 0 0 12px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-risk h3 i {
  color: #e67e22;
  font-size: 1rem;
}

.risk-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.risk-list li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #f6dac6;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 229, 174, 0.1);
}

.risk-list li:last-child {
  border-bottom: none;
}

.risk-list li i {
  color: #e67e22;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* 服务保障版块样式 */
.card-guarantee {
  border: 1px solid rgba(141, 16, 38, 0.15);
  background: linear-gradient(180deg, #fffdf9 0%, #fff 100%);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-guarantee:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(141, 16, 38, 0.12);
}

.card-icon-guarantee {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card-guarantee h3 {
  color: var(--primary);
  margin: 0 0 12px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-guarantee h3 i {
  color: var(--primary);
  font-size: 1rem;
}

.card-guarantee ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.card-guarantee li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.card-guarantee li i {
  color: #27ae60;
  font-size: 0.95rem;
}

/* 行业专属方案版块样式 */
.industry-section {
  background: linear-gradient(180deg, #fff9f0 0%, #fff5e6 100%);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.industry-card {
  background: #fff;
  border: 1px solid rgba(141, 16, 38, 0.15);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(141, 16, 38, 0.15);
  border-color: var(--primary);
}

.industry-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin: 0 auto 12px;
}

.industry-card h3 {
  color: var(--primary);
  margin: 0 0 8px;
  font-size: 1rem;
}

.industry-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

/* 客户案例速览版块样式 */
.cases-section {
  background: linear-gradient(180deg, #fffdf9 0%, #fef8ed 100%);
}

.card-case {
  border: 1px solid rgba(141, 16, 38, 0.15);
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-case:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(141, 16, 38, 0.12);
}

.case-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}

.case-content h3 {
  color: var(--primary);
  margin: 0 0 8px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-content h3 i {
  color: var(--primary);
  font-size: 0.9rem;
}

.case-content p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.case-badge {
  align-self: flex-start;
  padding: 4px 12px;
  background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
  color: #fff;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* 响应式适配 */
@media (max-width: 980px) {
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .card-region {
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
  
  .region-tags {
    gap: 6px;
  }
  
  .region-tag {
    font-size: 0.82rem;
    padding: 4px 10px;
  }
  
  .card-icon-region {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
  
  .card-cycle h3 {
    font-size: 1.4rem;
  }
}

/* 首页"什么是ODI备案"版块样式 */
.section-title-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.section-title-icon i {
  color: var(--gold);
  font-size: 1.3rem;
}

.section-dark .section-title-icon {
  color: #ffe4a8;
}

.section-dark .section-title-icon i {
  color: var(--gold);
}

.card-info {
  border: 1px solid rgba(141, 16, 38, 0.2);
  background: linear-gradient(180deg, #fffdf9 0%, #fff6ea 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-info:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(141, 16, 38, 0.12);
}

.card-info h3 {
  color: var(--primary);
  margin: 0 0 12px;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-info h3 i {
  color: var(--primary);
  font-size: 1rem;
}

.card-info p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 10px;
}

.card-icon-info {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  box-shadow: 0 6px 16px rgba(141, 16, 38, 0.3);
}

.card-highlight-info {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, #fffcf0 0%, #fff8ee 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-highlight-info:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(209, 160, 52, 0.2);
}

.card-highlight-info h3 {
  color: var(--gold-deep);
  margin: 0 0 12px;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-highlight-info h3 i {
  color: var(--primary);
  font-size: 1rem;
}

.compliance-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(141, 16, 38, 0.1) 0%, rgba(141, 16, 38, 0.05) 100%);
  border: 1px solid rgba(141, 16, 38, 0.2);
  border-radius: 8px;
}

.badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.badge-text {
  color: var(--primary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.badge-text strong {
  color: var(--primary);
  font-weight: 600;
}

.card-highlight-info p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.card-icon-highlight {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 6px 16px rgba(209, 160, 52, 0.4);
}

.steps-flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(209, 160, 52, 0.15);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--gold-deep);
  font-weight: 600;
}

.step-item i {
  color: var(--gold);
  font-size: 0.85rem;
}

.step-arrow {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.2rem;
}

/* 首页"ODI备案的复杂性不容忽视"版块样式 */
.complexity-section {
  background: linear-gradient(180deg, #fff9e8 0%, #fff5d9 50%, #fff8e1 100%);
  border-top: 1px solid rgba(209, 160, 52, 0.3);
  border-bottom: 1px solid rgba(209, 160, 52, 0.3);
}

.section-title-warning {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #8d1026;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.section-title-warning i {
  color: #e67e22;
  font-size: 1.4rem;
}

.card-warning {
  border: 1px solid rgba(230, 126, 34, 0.3);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-warning:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(230, 126, 34, 0.18);
}

.card-warning h3 {
  color: #8d1026;
  margin: 0 0 14px;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-warning h3 i {
  color: #e67e22;
  font-size: 1rem;
}

.card-warning ul {
  margin: 0;
  padding: 0;
}

.card-warning li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.card-warning li i {
  color: #e67e22;
  font-size: 0.9rem;
}

.card-icon-warning {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 6px 16px rgba(230, 126, 34, 0.35);
}

.card-alert {
  border: 1px solid rgba(209, 160, 52, 0.4);
  background: linear-gradient(180deg, #fffdf5 0%, #fff9e8 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-alert:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(209, 160, 52, 0.2);
}

.card-alert h3 {
  color: #8d1026;
  margin: 0 0 12px;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-alert h3 i {
  color: var(--gold);
  font-size: 1rem;
}

.card-alert p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 14px;
}

.card-icon-alert {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 6px 16px rgba(209, 160, 52, 0.35);
}

.warning-badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(135deg, rgba(209, 160, 52, 0.15) 0%, rgba(209, 160, 52, 0.08) 100%);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
}

.warning-badge i {
  color: var(--gold-deep);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.warning-badge span {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 760px) {
  .section-title-icon,
  .section-title-warning {
    font-size: 1.25rem;
  }
  
  .steps-flow {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .step-item {
    font-size: 0.85rem;
  }
  
  .warning-badge {
    padding: 12px;
  }
  
  .card-icon-info,
  .card-icon-highlight,
  .card-icon-warning,
  .card-icon-alert {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }
}

@media (max-width: 760px) {
  .section-title-gold,
  .section-title-blue,
  .section-title-primary {
    font-size: 1.2rem;
  }

  .card-icon-wrap {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
    border-radius: 12px;
  }
}

/* local.html本地服务页面专用样式 */
.local-detail {
  padding: 20px 0;
}

.region-section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.region-section h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}

.region-section h3 i {
  color: var(--gold);
}

.region-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.region-item {
  background: linear-gradient(180deg, #fffdf9 0%, #fff6ea 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.region-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(106, 53, 14, 0.12);
}

.region-item h4 {
  color: var(--primary);
  font-size: 1.1rem;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.region-item h4 i {
  color: var(--gold);
}

.region-item p {
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.6;
}

.region-item .btn-small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(106, 53, 14, 0.12);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
  color: var(--gold);
}

.feature-card h3 {
  color: var(--primary);
  font-size: 1rem;
  margin: 0 0 8px;
}

.feature-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
  font-size: 0.9rem;
}

.cta-section {
  background: linear-gradient(135deg, #5b1020 0%, #7b1427 55%, #9c2640 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-section p {
  color: #ffe9c2;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: linear-gradient(180deg, #f6ce79 0%, #e5b55b 100%);
  border-color: #efc26c;
  color: #52230a;
  font-weight: 700;
}

.cta-buttons .btn-primary:hover {
  background: linear-gradient(180deg, #efc46a 0%, #d8a649 100%);
}

.cta-buttons .btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.cta-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* 响应式适配 */
@media (max-width: 980px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .region-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .region-list {
    grid-template-columns: 1fr;
  }
  
  .region-section {
    padding: 20px;
  }
  
  .region-item {
    padding: 16px;
  }
  
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
