:root {
  --color-accent: #c9a96e;
  --color-accent-light: #d4ba85;
  --color-accent-dark: #b8944f;
  --color-accent-5: rgba(201, 169, 110, .05);
  --color-accent-10: rgba(201, 169, 110, .1);
  --color-accent-20: rgba(201, 169, 110, .2);
  --color-bg-primary: #fff;
  --color-bg-secondary: #fafaf7;
  --color-bg-tertiary: #f5f3ef;
  --color-bg-hero: #1c1917;
  --color-text-primary: #1c1917;
  --color-text-body: #4a4744;
  --color-text-secondary: #8a8680;
  --color-text-muted: #c4c0ba;
  --color-text-inverse: #fff;
  --color-border: #e8e5e0;
  --color-border-light: #f0ede8;
  --color-dark-bg: #1a1816;
  --color-dark-surface: #242220;
  --color-dark-text: rgba(255, 255, 255, .92);
  --color-dark-text-secondary: rgba(255, 255, 255, .56);
  --color-dark-border: rgba(255, 255, 255, .08);
  --color-footer-bg: #1c1917;
  --color-footer-text: #a8a49e;
  --color-footer-heading: #c9a96e;
  --font-heading: "Noto Serif SC", "Source Han Serif SC", "SimSun", serif;
  --font-body: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-english: "Playfair Display", Georgia, serif;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 30px;
  --text-4xl: 36px;
  --text-5xl: 48px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --page-padding-desktop: 120px;
  --page-padding-tablet: 48px;
  --page-padding-mobile: 16px;
  --content-max-width: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 999px;
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .06), 0 2px 4px rgba(0, 0, 0, .03);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .04);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, .04), 0 8px 24px rgba(0, 0, 0, .04);
  --shadow-gold: 0 4px 20px rgba(201, 169, 110, .2);
  --noise-overlay: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--color-text-body);
  background: var(--color-bg-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
main { min-height: 60vh; }
.container {
  width: min(calc(100% - var(--page-padding-desktop) * 2), var(--content-max-width));
  margin: 0 auto;
}
.section { padding: 100px 0; }
.section-tight { padding: 72px 0; }

.dark-section {
  color: var(--color-dark-text);
  background: var(--color-dark-bg);
  position: relative;
  overflow: hidden;
}
.dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--noise-overlay);
  opacity: .45;
  pointer-events: none;
}
.dark-section > * { position: relative; z-index: 1; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 80px;
  background: rgb(255, 255, 255);
  border-bottom: 1px solid var(--color-border-light);
  backdrop-filter: blur(12px);
  transition: box-shadow .25s ease, height .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo img { width: 120px; height: auto; }


.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}
.main-nav a {
  height: 80px;
  display: inline-flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--color-accent); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--color-accent);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  color: var(--color-accent);
  /*font-family: var(--font-english);*/
  font-size: 16px;
  white-space: nowrap;
  margin-top: 10px;
}
.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}
.mobile-toggle.is-open span { opacity: 0; }
.mobile-toggle.is-open::before { transform: translateY(6px) rotate(45deg); }
.mobile-toggle.is-open::after { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 500;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  color: var(--color-text-inverse);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  box-shadow: var(--shadow-gold);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: transform .5s ease;
}
.btn-primary:hover::after { transform: translateX(120%); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,.3); }
.btn-outline {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background: transparent;
}
.btn-outline:hover { color: #fff; background: var(--color-accent); }
.btn-ghost {
  color: #fff;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.28);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent);
  font-size: 15px;
  font-weight: 600;
  transition: gap .25s ease;
}
.btn-text:hover { gap: 11px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.badge-gold {
    
  color: var(--color-accent-dark);
  background: var(--color-accent-10);
  border: 1px solid var(--color-accent-20);
}
@media (max-width: 810px) {
    .badge-gold { margin-bottom: 10px; }
}
.badge-dark {
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
}
.section-kicker { margin-bottom: 14px; }
.section-title {
  margin: 0;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  line-height: 1.25;
}
.section-title.small { font-size: var(--text-3xl); }
.section-copy {
  max-width: 640px;
  margin: 14px 0 0;
  color: var(--color-text-secondary);
}
.heading-accent::after,
.heading-accent-left::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  border-radius: 2px;
}
.heading-accent::after { margin-left: auto; margin-right: auto; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}
.section-head.center { display: block; text-align: center; }
.hero {
  min-height: calc(100vh - 80px);
  color: #fff;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #1c1917 url("/static/skin/images/banner-pc.jpg?v=hero-real-01") center/cover fixed;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28,25,23,.48), rgba(28,25,23,.84)),
    linear-gradient(0deg, var(--color-dark-bg), transparent 28%),
    var(--noise-overlay);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 32px));
  margin: 0 auto 25vh;
  text-align: center;
}
.hero h1 {
  margin: 22px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,.35);
}
.hero p {
  margin: 18px auto 0;
  max-width: 680px;
  color: rgba(255,255,255,.74);
  font-size: var(--text-xl);
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}
.trust-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 38px 0 24px;
  background: linear-gradient(180deg, transparent, rgba(26,24,22,.96) 38%);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.trust-item:last-child { border-right: 0; }
.trust-item img { width: 22px; height: 22px; color: var(--color-accent); }
.trust-item strong { display: block; color: #fff; font-size: 13px; }
.trust-item span { display: block; color: rgba(255,255,255,.52); font-size: 11px; }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 124px;
  z-index: 2;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: 12px;
  letter-spacing: 1px;
  animation: cue 1.6s ease infinite;
}
@keyframes cue { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }
.reveal-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  animation: revealChar .58s ease forwards;
}
@keyframes revealChar { to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(20px); animation: fadeIn .7s ease forwards; }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }
.service-mosaic {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 24px;
}
.service-mosaic .service-card:nth-child(3) { grid-column: 1; }
.service-mosaic .service-card:nth-child(4) { grid-column: 2; transform: translateY(-54px); }
.media-card,
.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-bg-primary);
  box-shadow: var(--shadow-card);
  transition: transform .35s ease, box-shadow .35s ease;
}
.media-card:hover, .card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.clickable-card { cursor: pointer; }
.clickable-card:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}
.media-card img, .card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .55s ease;
  max-height: 280px;
}
.media-card:hover img, .card:hover img { transform: scale(1.045); }
.media-card .overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.76));
}
.media-card h3, .card h3 {
  margin: 0 0 8px;
  color: inherit;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  line-height: 1.25;
}
.media-card p, .card p { margin: 0 0 14px; color: rgba(255,255,255,.74); font-size: var(--text-sm); }
.card-body { padding: 22px; }
.card .card-body p { color: var(--color-text-secondary); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item {
  padding: 20px 24px;
  border-right: 1px solid var(--color-dark-border);
}
.stat-item:last-child { border-right: 0; }
.stat-number {
  color: var(--color-accent);
  font-family: var(--font-english);
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: 1;
}
.stat-unit { color: var(--color-accent); font-size: var(--text-lg); }
.stat-label { margin-top: 12px; color: var(--color-dark-text-secondary); font-size: var(--text-sm); }
.story-section {
  background: var(--color-bg-secondary);
  overflow: hidden;
}
.story-wrap {
  position: relative;
  min-height: 620px;
}
.story-image {
  width: min(64vw, 820px);
  min-height: 520px;
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-image img { width: 100%; height: 100%; object-fit: cover; min-height: 520px; }



.story-card {
  position: absolute;
  right: 0;
  top: 120px;
  width: min(510px, 46vw);
  padding: 42px;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.story-card h2 {
  margin: 16px 0 16px;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  line-height: 1.25;
}
.store-layout {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 28px;
  align-items: stretch;
}
.store-visual {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.store-visual img { width: 100%; height: 100%; object-fit: cover; }
.store-visual .badge { position: absolute; left: 22px; bottom: 22px; }
.store-list {
  border-top: 1px solid var(--color-border-light);
}
.store-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--color-border-light);
  transition: background .25s ease, box-shadow .25s ease;
  cursor: pointer;
}
.store-row:hover, .store-row.active {
  background: var(--color-accent-5);
  box-shadow: inset 3px 0 0 var(--color-accent);
}
.store-row img { width: 70px; height: 54px; object-fit: cover; border-radius: var(--radius-sm); }
.store-row h3 { margin: 0; color: var(--color-text-primary); font-family: var(--font-heading); font-size: 17px; }
.store-row p { margin: 2px 0 0; color: var(--color-text-secondary); font-size: 13px; line-height: 1.5; }
.store-row a { color: var(--color-accent); font-size: 13px; }
.store-directory {
  display: grid;
  gap: 22px;
}
.store-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 520px) 1fr;
  gap: 18px;
  align-items: end;
}
.store-search {
  display: grid;
  gap: 8px;
  color: var(--color-text-secondary);
  font-size: 13px;
}
.store-search input {
  width: 100%;
  height: 46px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0 16px;
  color: var(--color-text-primary);
  background: #fff;
  outline: none;
}
.store-search input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-10);
}
.store-summary {
  justify-self: end;
  color: var(--color-text-secondary);
  font-size: 14px;
}
.store-city-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}
.store-city-tab {
  flex: 0 0 auto;
  height: 38px;
  padding: 0 18px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #fff;
  color: var(--color-text-primary);
  box-shadow: var(--shadow-card);
  cursor: pointer;
}
.store-city-tab.active {
  border-color: var(--color-dark-bg);
  background: var(--color-dark-bg);
  color: #fff;
}
.store-card-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.store-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 min(360px, calc(100vw - 48px));
  min-height: 300px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  scroll-snap-align: start;
  transition: transform .25s ease, box-shadow .25s ease;
}
.store-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.store-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.store-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}
.store-card-city {
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
}
.store-card h3 {
  margin: 10px 0 8px;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.35;
}
.store-card address {
  margin: 0 0 16px;
  color: var(--color-text-secondary);
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
}
.store-card-meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--color-border-light);
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 1.8;
}
.store-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.store-card-actions .btn {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  justify-content: center;
}
.store-empty {
  flex: 0 0 100%;
  padding: 42px;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
  color: var(--color-text-secondary);
  text-align: center;
  background: var(--color-bg-secondary);
}
.store-load-wrap {
  display: none;
  justify-content: center;
}
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--color-text-secondary);
  font-size: 12px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 54px;
}
.faq-nav {
  position: sticky;
  top: 110px;
  align-self: start;
}
.faq-nav a {
  display: block;
  padding: 11px 0 11px 14px;
  border-left: 2px solid var(--color-border);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}
.faq-nav a.active, .faq-nav a:hover {
  color: var(--color-accent);
  border-left-color: var(--color-accent);
}
.faq-group { margin-bottom: 34px; }
.faq-group h3 {
  margin: 0 0 8px;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
}
.faq-item {
  border-bottom: 1px solid var(--color-border-light);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 8px;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--color-text-primary);
  cursor: pointer;
}
.faq-question::before {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(45deg);
  transition: transform .25s ease;
  flex: 0 0 auto;
}
.faq-item.is-open .faq-question { color: var(--color-accent); }
.faq-item.is-open .faq-question::before { transform: rotate(-135deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .35s ease, opacity .25s ease;
}
.faq-answer p {
  margin: 0;
  padding: 0 8px 18px 32px;
  color: var(--color-text-body);
  font-size: var(--text-sm);
}
.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #1c1917 url("/static/skin/images/cta-bg.jpg?v=20260613-premium-01") center/cover fixed;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28,25,23,.88);
}
.cta .container { position: relative; z-index: 1; }
.cta h2 {
  margin: 18px 0 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
}
.cta p { margin: 12px 0 0; color: rgba(255,255,255,.62); font-size: var(--text-lg); }
.cta-actions { display: flex; justify-content: center; gap: 16px; margin-top: 32px; }
.site-footer {
  color: var(--color-footer-text);
  background: var(--color-footer-bg);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 42px;
  padding: 64px 0 36px;
}
.footer-logo { width: 100px; margin-bottom: 18px; }
.footer-main h3 {
  margin: 0 0 16px;
  color: var(--color-footer-heading);
  font-size:  20px;;
  letter-spacing: 1px;
}
.footer-main a { display: block; line-height: 34px; color: #d4d0ca; font-size: var(--text-sm); }
.footer-main a:hover { color: var(--color-accent); }
.footer-phone {
  display: block;
  color: var(--color-accent);
  /*font-family: var(--font-english);*/
  font-size: var(--text-xl);
  margin-bottom: 10px;
}
.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
  text-align: center;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.mobile-bar { display: none; }
.page-hero {
  min-height: 46vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background-color: #1c1917;
  background-image: var(--page-hero-image, url("/static/skin/images/about-hero.jpg?v=about-real-01"));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.page-hero.tall { min-height: 60vh; }
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28,25,23,.34), rgba(28,25,23,.58)),
    linear-gradient(90deg, rgba(28,25,23,.46), rgba(28,25,23,.18) 45%, rgba(28,25,23,.42)),
    var(--noise-overlay);
}
.page-hero.hero-focus-left { background-position: left center; }
.page-hero.hero-focus-right { background-position: right center; }
.page-hero.hero-focus-bottom { background-position: center bottom; }
.page-hero.about-hero { background-image: url("/static/skin/images/about-hero.jpg?v=20260613-premium-01"); }
.page-hero.services-hero { background-image: url("/static/skin/images/service-cleaning.jpg?v=service-cleaning-real-01"); }
.page-hero.knowledge-hero { background-image: url("/static/skin/images/knowledge-hero.jpg?v=20260613-premium-01"); }
.page-hero.contact-hero { background-image: url("/static/skin/images/cta-bg.jpg?v=20260613-premium-01"); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 60px);
}
.page-hero p { max-width: 680px; margin: 18px auto 0; color: rgba(255,255,255,.72); font-size: var(--text-lg); }
.breadcrumbs {
  padding: 18px 0 0;
  color: var(--color-text-secondary);
  font-size: 13px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 44px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 20px;
  height: 2px;
  background: var(--color-accent);
}
.timeline-item { position: relative; padding-top: 52px; }
.timeline-item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 8px var(--color-accent-10);
}
.timeline-year {
  color: var(--color-accent-dark);
  font-family: var(--font-english);
  font-size: var(--text-xl);
  font-weight: 700;
}
.value-grid, .advantage-grid, .process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-item, .advantage-item, .process-step, .info-card {
  padding: 24px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
  color: var(--color-text-primary);
}
.value-item img, .advantage-item img { width: 34px; height: 34px; margin-bottom: 16px; color: var(--color-accent); }
.value-item h3, .advantage-item h3, .process-step h3, .info-card h3 {
  margin: 0 0 8px;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.filter-btn {
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  background: #fff;
  border-radius: var(--radius-full);
  color: var(--color-text-secondary);
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
  color: var(--color-accent-dark);
  border-color: var(--color-accent);
  background: var(--color-accent-10);
}
.article-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  color: #fff;
  background: #1c1917 url("/static/skin/images/process-overview.jpg?v=20260613-premium-01") center/cover;
}
.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,25,23,.3), rgba(28,25,23,.85));
}
.article-hero .container { position: relative; z-index: 1; padding-bottom: 70px; }
.article-hero h1 {
  max-width: 900px;
  margin: 18px 0 14px;
  color: #fff;
  font-family: var(--font-heading);
  /*font-size: clamp(30px, 1vw, 52px);*/
  line-height: 1.2;
}
.article-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  /*padding-left: 392px;*/
}
.article-body h2 {
  margin-top: 42px;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
}
.form-layout {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 44px;
  align-items: start;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.field.full { grid-column: 1 / -1; }
.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
  outline: none;
  color: var(--color-text-primary);
}
.field textarea { min-height: 112px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--color-accent); }
.form-status {
  margin-top: 16px;
  min-height: 24px;
  color: var(--color-accent-dark);
  font-size: var(--text-sm);
}
.appointment-card {
  padding: 30px;
  border-radius: 8px;
}
.appointment-card .form-grid {
  gap: 18px 16px;
}
.appointment-card .field label {
  color: var(--color-text-primary);
  font-size: 16px;
  font-weight: 700;
}
.appointment-card .field input,
.appointment-card .field select,
.appointment-card .field textarea {
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: #fff;
}
.appointment-card .field textarea {
  min-height: 110px;
}
.appointment-card .field input:focus,
.appointment-card .field select:focus,
.appointment-card .field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-10);
}
.appointment-card .btn[type="submit"] {
  width: 100%;
}
.floating-cursor {
  position: fixed;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201,169,110,.72);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .2s ease, width .2s ease, height .2s ease;
}
.floating-cursor.active { opacity: 1; width: 42px; height: 42px; }
.animate-on-scroll {
  /*opacity: 0;*/
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.section-martop { margin-top: 0px; }
@media (max-width: 821px) {
  .section-martop { margin-top: 10%; }
}
/* ===== Layout refinement pass: calmer, more consistent page rhythm ===== */
@media (min-width: 821px) {
  :root {
    --content-max-width: 1120px;
    --page-padding-desktop: 88px;
  }

}
.container {
  width: min(calc(100% - 48px), var(--content-max-width));
}
.section { padding: 84px 0; }
.section-tight { padding: 13px 0; }

.section + .section,
.section-tight + .section,
.section + .section-tight {
  border-top: 1px solid rgba(232, 229, 224, .52);
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  margin-bottom: 32px;
}

.section-head.center {
  display: grid;
  place-items: center;
  text-align: center;
}
@media (max-width: 821px) {
  .section-head.center { display: revert; }
}
.section-title {
  max-width: 780px;
  font-size: clamp(28px, 3vw, 38px);
}
.section-title.small { font-size: clamp(24px, 2.4vw, 30px); }
.section-copy {
  max-width: 680px;
  line-height: 1.8;
}
.heading-accent::after,
.heading-accent-left::after {
  width: 58px;
  height: 2px;
  margin-top: 14px;
}
.badge {
  border-radius: 6px;
  letter-spacing: 1.2px;
}
.hero {
  min-height: 760px;
  align-items: center;
}
.hero-content {
  margin: 0 auto 112px;
}
.hero h1 {
  font-size: clamp(42px, 5.4vw, 64px);
  letter-spacing: 0;
}
.hero p { font-size: 19px; }
.trust-strip { padding: 34px 0 20px; }
.trust-grid {
  max-width: 1040px;
  margin: 0 auto;
}
.trust-item {
  justify-content: flex-start;
  padding: 0 22px;
}
.service-mosaic {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.service-mosaic .service-card,
.service-mosaic .service-card:nth-child(3),
.service-mosaic .service-card:nth-child(4) {
  grid-column: auto;
  transform: none;
}
.media-card,
.card,
.value-item,
.advantage-item,
.process-step,
.info-card {
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(28, 25, 23, .04), 0 10px 28px rgba(28, 25, 23, .06);
}
.media-card img,
.card img {
  aspect-ratio: 16 / 10;
}
.media-card {
  min-height: 100%;
}
.media-card .overlay {
  padding: 24px;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.82));
}
.media-card h3,
.card h3 {
  font-size: 22px;
}
.card {
  display: flex;
  flex-direction: column;
}
.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.card-body .btn-text,
.card-body .article-meta {
  margin-top: auto;
}
.stats-grid {
  max-width: 1040px;
  margin: 0 auto;
}
.stat-item { padding: 12px 20px; }
.story-wrap {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(360px, .72fr);
  align-items: center;
  gap: 0;
}
.story-image {
  width: 100%;
  min-height: 460px;
  border-radius: 0 8px 8px 0;
}
.story-image img { min-height: 460px; }
.story-card {
  position: relative;
  top: auto;
  right: auto;
  width: auto;
  margin-left: -72px;
  padding: 36px;
  border-radius: 8px;
}
.store-layout {
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 22px;
}
.store-visual {
  min-height: 440px;
  border-radius: 8px;
}
.store-list {
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.store-row {
  padding: 14px 16px;
}
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
#article-items.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.faq-layout {
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 38px;
}
.faq-content {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  padding: 10px 24px;
  box-shadow: 0 10px 28px rgba(28, 25, 23, .04);
}
.faq-group { margin-bottom: 24px; }
.faq-group:last-child { margin-bottom: 4px; }
.faq-question { padding: 15px 0; }
.faq-answer p { padding: 0 0 18px 28px; }
.page-hero {
  min-height: 360px;
}
.page-hero.tall { min-height: 480px; }
.page-hero h1 {
  font-size: clamp(34px, 4vw, 52px);
}
.page-hero p {
  font-size: 17px;
}
.breadcrumbs {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border-light);
}
.timeline { margin-top: 30px; }
.value-grid,
.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.advantage-grid {
  gap: 16px;
}
.value-item,
.advantage-item,
.process-step,
.info-card {
  padding: 22px;
}
.article-hero {
  min-height: 440px;
}
.article-hero .container { padding-bottom: 54px; }
.article-body {
  max-width: 1150px;
  line-height: 1.9;
}
.article-body p {
  margin: 0 0 18px;
}
.article-body h2 {
  margin-top: 36px;
  margin-bottom: 12px;
}
.form-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
}
.footer-main {
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, .75fr));
  gap: 28px;
  padding: 52px 0 30px;
}
.cta {
  background-attachment: scroll;
}
.cta h2 {
  font-size: clamp(28px, 3vw, 40px);
}
@media (min-width: 901px) {
  .service-mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .service-mosaic .service-card,
  .service-mosaic .service-card:first-child,
  .service-mosaic .service-card:nth-child(3),
  .service-mosaic .service-card:nth-child(4) {
    grid-column: auto;
    transform: none;
  }
  .service-mosaic .media-card,
  .service-mosaic .card {
    min-height: 360px;
  }
  .service-mosaic .media-card img,
  .service-mosaic .card img {
    aspect-ratio: 4 / 3;
  }
  .service-mosaic .media-card h3,
  .service-mosaic .card h3 {
    font-size: 20px;
  }
  .service-mosaic .media-card .overlay,
  .service-mosaic .card-body {
    padding: 18px;
  }
  .faq-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 28px;
    align-items: start;
  }
  .faq-group {
    margin-bottom: 8px;
  }
}
@media (max-width: 1100px) and (min-width: 901px) {
  .container { width: min(calc(100% - var(--page-padding-tablet) * 2), var(--content-max-width)); }
  .main-nav { gap: 18px; }
  .header-phone { display: none; }
  .form-layout {
    grid-template-columns: 1fr;
  }
  .store-visual { min-height: 360px; }
  .story-wrap {
    grid-template-columns: minmax(0, .98fr) minmax(320px, .72fr);
    min-height: 500px;
  }
  .story-image {
    width: 100%;
    min-height: 420px;
    border-radius: 8px;
  }
  .story-image img { min-height: 420px; }
  .story-card {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    margin: 0 0 0 -56px;
    padding: 30px;
  }
  .knowledge-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .faq-layout { grid-template-columns: 1fr; gap: 24px; }
  .faq-nav {
    position: static;
    display: flex;
    align-items: end;
    gap: 18px;
    overflow-x: auto;
  }
  .faq-nav h2 { min-width: 180px; }
  .faq-nav a {
    flex: 0 0 auto;
    padding: 8px 0;
    border-left: 0;
    border-bottom: 2px solid var(--color-border);
  }
  .faq-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 22px;
  }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
}
@media (max-width: 900px) and (min-width: 821px) {
  .container { width: min(calc(100% - 40px), var(--content-max-width)); }
  .main-nav { gap: 14px; font-size: 13px; }
  .header-phone { display: none; }
  .section-head { display: block; }
  .service-mosaic,
  .knowledge-grid,
  #article-items.knowledge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .store-layout,
  .story-wrap,
  .form-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .story-card {
    width: min(760px, calc(100% - 32px));
    margin: -48px auto 0;
  }
  .store-visual { min-height: 340px; }
  .faq-content { padding: 8px 18px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  :root {
    --text-3xl: 26px;
    --text-4xl: 32px;
    --text-5xl: 40px;
    
    
  }
  


  html { scroll-padding-top: 64px; }
  .container { width: calc(100% - var(--page-padding-mobile) * 2); }
  .section, .section-tight { padding: 11px 0; }
  .site-header { height: 72px; }
  .logo img { width: 80px; margin-top:10px;}
  .mobile-toggle { display: block; margin-top:10px;}
  .main-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 65px;
    display: grid;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-130%);
    transition: transform .25s ease;
    box-shadow: var(--shadow-md);
  }
  .main-nav.is-open { transform: translateY(0); }
  .main-nav a {
    height: auto;
    padding: 14px var(--page-padding-mobile);
    border-top: 1px solid var(--color-border-light);
  }
  .main-nav a.active::after { display: none; }
  .header-actions .btn { display: none; }
  .hero {
    min-height: calc(100vh - 56px);
    min-height: 640px;
    background-image: url("/static/skin/images/banner-mobile.jpg?v=hero-mobile-real-01");
    background-attachment: scroll;
  }
  .hero-content {
    width: calc(100% - 32px);
    margin-bottom: 240px;
  }
  .hero p { font-size: var(--text-base); }
  .hero-actions, .cta-actions { flex-direction: column; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .trust-strip { padding: 28px 0 14px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .trust-item {
    justify-content: flex-start;
    padding: 10px 6px;
    border-right: 0;
  }
  .scroll-cue { display: none; }
  .section-head { display: block;}
  .section-title { font-size: var(--text-1xl); }
  .service-mosaic {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .service-mosaic .service-card:nth-child(3),
  .service-mosaic .service-card:nth-child(4) { grid-column: auto; transform: none; }
  .media-card .overlay, .card-body { padding: 14px; }
  .media-card h3, .card h3 { font-size: 16px; }
  .media-card p, .card p { font-size: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: 0; padding: 16px 8px; }
  .stat-number { font-size: var(--text-3xl); }
  .story-wrap { min-height: 0; }
  .story-image {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  .story-image img { min-height: 0; height: 100%; }
  .story-card {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% - 24px);
    margin: -32px auto 25px;
    padding: 22px;
  }
  .store-layout, .faq-layout, .form-layout { grid-template-columns: 1fr; gap: 22px; }
  .store-visual { min-height: 260px; }
  .store-row { grid-template-columns: 92px 1fr; padding: 12px 0; }
  .store-row img { width: 92px; height: 66px; }
  .store-toolbar {
    grid-template-columns: 1fr;
  }
  .store-summary {
    justify-self: start;
  }
  .store-city-tabs {
    padding-bottom: 4px;
  }
  .store-city-tab {
    flex: 0 0 auto;
    height: 34px;
    padding: 0 14px;
    font-size: 13px;
  }
  .store-card {
    flex-basis: min(320px, calc(100vw - 32px));
    min-height: 0;
  }
  .store-card-actions {
    grid-template-columns: 1fr;
  }
  .knowledge-grid,
  #article-items.knowledge-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 30px;
  }
  #article-items.knowledge-grid .card img {
    aspect-ratio: 16 / 9;
    max-height: 220px;
  }
  .faq-nav {
    position: static;
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 6px;
  }
  .faq-nav a {
    flex: 0 0 auto;
    border-left: 0;
    border-bottom: 2px solid var(--color-border);
    padding: 8px 2px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 42px 0 28px;
  }
  .footer-main > :first-child { grid-column: 1 / -1; }
  .footer-bottom .container { display: block; }
  .timeline {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .timeline::before {
    left: 10px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
  }
  .timeline-item { padding: 0 0 0 42px; }
  .timeline-item::before { left: 0; top: 4px; }
  .value-grid, .advantage-grid, .process-grid { grid-template-columns: 1fr; gap: 14px; }
  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .filter-btn { flex: 0 0 auto; }
  .article-hero { min-height: 430px; }
  .form-grid { grid-template-columns: 1fr; }
  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -8px 24px rgba(0,0,0,.08);
  }
  .mobile-bar a {
    min-height: 52px;
    display: grid;
    place-items: center;
    color: var(--color-text-primary);
    font-size: 12px;
  }
  body { padding-bottom: 52px; }

#article-items.knowledge-grid .card {
    margin-bottom: 16px;
}

}


/* ========================================
   分页器样式 - 横向居中
   ======================================== */

.section .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    padding: 30px 0 10px 0;
    margin: 0;
    width: 100%;
}

.section .pagination li {
    display: inline-block;
    margin: 0;
}

.section .pagination li a {
    display: inline-block;
    padding: 6px 14px;
    min-width: 32px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    line-height: 1.4;
}

.section .pagination li a:hover:not(.disabled):not(.active) {
    background: #f0f4ff;
    border-color: #b3c6e8;
}


.section .pagination li.active a {
    background: var(--color-accent, #2a6cf6);
    color: #fff;
    border-color: var(--color-accent, #2a6cf6);
    cursor: default;
}
.section .pagination li.active a:hover {
  color: inherit;
  background-color: transparent;
  text-decoration: none; 
}

.section .pagination li.disabled a {
    opacity: 0.45;
    cursor: not-allowed;
    background: #f8f9fc;
    pointer-events: none;
}

.section .pagination li:first-child a {
    background: transparent;
    border: none;
    cursor: default;
    color: #666;
    font-weight: 500;
    padding: 6px 10px;
}

.section .pagination li.total a {
    background: transparent;
    border: none;
    cursor: default;
    color: #666;
    font-weight: 500;
    padding: 6px 10px;
}

.section .pagination li.ellipsis a {
    background: transparent;
    border: none;
    cursor: default;
    color: #999;
    padding: 6px 4px;
}

@media (max-width: 600px) {
    .section .pagination {
        gap: 4px;
        padding: 20px 0 10px 0;
    }
    
    .section .pagination li a {
        padding: 4px 10px;
        font-size: 13px;
        min-width: 28px;
    }
    
    .section .pagination li:first-child a {
        padding: 4px 6px;
        font-size: 13px;
    }
}


/*返回顶部*/
.back-to-top {
    position: fixed;
    bottom: 39%;
    right: 1%;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    font-size: 20px;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-accent-dark, #15532e);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .back-to-top {
        right: 1%;
        width: 38px;
        height: 38px;
        line-height: 40px;
        font-size: 18px;
    }
}

