body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", ui-sans-serif, system-ui, sans-serif;
}

.wbm-page-shell {
  padding-top: 5rem;
}

.wbm-section {
  padding: 5rem 0;
}

.wbm-hero {
  position: relative;
  min-height: calc(100vh - 5rem);
  min-height: calc(100svh - 5rem);
  overflow: hidden;
}

.wbm-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.wbm-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.wbm-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.wbm-slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wbm-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.3) 45%, rgba(0, 0, 0, 0.12) 100%);
}

.wbm-slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: none;
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.wbm-slider-control:hover {
  background: rgba(255, 255, 255, 0.4);
}

.wbm-slider-control.prev {
  left: 1rem;
}

.wbm-slider-control.next {
  right: 1rem;
}

.wbm-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 20;
}

.wbm-slider-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  border: none;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.2s ease;
}

.wbm-slider-dot.is-active {
  width: 2rem;
  background: #fff;
}

.wbm-card {
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.wbm-prose {
  color: #364153;
  line-height: 1.85;
}

.wbm-prose h2,
.wbm-prose h3,
.wbm-prose h4 {
  color: #101828;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.wbm-prose p,
.wbm-prose ul,
.wbm-prose ol {
  margin-bottom: 1rem;
}

.wbm-prose img {
  border-radius: 1rem;
  margin: 1.5rem 0;
}

.wbm-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.wbm-kicker.orange {
  background: #ffedd5;
  color: #c53c00;
}

.wbm-kicker.green {
  background: #dcfce7;
  color: #0f7a3f;
}

.wbm-stat {
  text-align: center;
}

.wbm-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.wbm-empty {
  padding: 2rem;
  border-radius: 1rem;
  background: #f9fafb;
  color: #6a7282;
  text-align: center;
}

@media (max-width: 767px) {
  .wbm-slider-control {
    display: none;
  }

  .wbm-hero {
    min-height: 34rem;
  }
}
