.wnoueqg_Cu1tR {
  --theme_color_mixed: color-mix(in srgb, var(--theme_color) 70%, #ffffff 30%);
  --theme_color_number: color-mix(in srgb, var(--theme_color_mixed) 25%, transparent);
  --active_text_muted: #fff;
  --text_muted: #666;
  --number_muted: #333;
  --card_bg: #fff;
  --card_shadow: 0 0 40px rgba(226, 225, 224, 0.42);
  --control_bg: rgba(43, 43, 43, 0.1);
  --control_bg_hover: rgba(43, 43, 43, 0.14);
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
  width: 100%;
  min-height: 1097px;
  padding-top: calc(var(--padding_tb) + 39px);
  overflow: hidden;
  background-color: #f4f4f4;
  background-image: var(--background_image, none);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #333;
}

.wnoueqg_Cu1tR * {
  box-sizing: border-box;
}

.wnoueqg_Cu1tR::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.94);
  content: "";
}

.wnoueqg_Cu1tR__inner {
  width: 100%;
  max-width: var(--custom-content-max-width);
  margin-inline: auto;
}

.wnoueqg_Cu1tR__heading {
  width: calc(100% - var(--padding_lr) - var(--padding_lr));
  margin-inline: auto;
}

.wnoueqg_Cu1tR__reveal {
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, 50%, 0);
}

.wnoueqg_Cu1tR__reveal.is-animated {
  visibility: visible;
  animation: wnoueqg_Cu1tR_fadeInUp 1s both;
}

.wnoueqg_Cu1tR__title {
  margin: 0;
  color: #333;
  font-size: 58px;
  font-weight: 500;
  line-height: 1.5;
}

.wnoueqg_Cu1tR__title-rule {
  width: 60px;
  height: 7px;
  margin-top: 19px;
  border-radius: 4px;
  background: var(--theme_color);
}

.wnoueqg_Cu1tR__viewport {
  width: 100%;
  height: 700px;
  margin-top: 138px;
  overflow-x: hidden;
  overflow-y: visible;
}

.wnoueqg_Cu1tR[data-has-heading="false"] .wnoueqg_Cu1tR__viewport {
  margin-top: 0;
}

.wnoueqg_Cu1tR .wnoueqg_Cu1tR__swiper.swiper {
  position: relative;
  width: calc(100% - var(--padding_lr) - var(--padding_lr));
  height: 449px;
  margin-inline: auto;
  overflow: visible;
}

.wnoueqg_Cu1tR .wnoueqg_Cu1tR__wrapper.swiper-wrapper {
  top: 53px;
  align-items: flex-start;
}

.wnoueqg_Cu1tR .wnoueqg_Cu1tR__slide.swiper-slide {
  top: 0;
  width: auto;
  height: auto;
  transition: top 500ms ease;
}

.wnoueqg_Cu1tR .wnoueqg_Cu1tR__slide.swiper-slide:nth-child(even) {
  top: -50px;
}

.wnoueqg_Cu1tR__card {
  position: relative;
  padding: 49px 40px 40px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--card_bg);
  box-shadow: var(--card_shadow);
  color: #333;
  transform-origin: center center;
  transition: background-color 500ms ease, color 500ms ease, transform 500ms ease;
}

.wnoueqg_Cu1tR__slide.is-active .wnoueqg_Cu1tR__card {
  background-color: var(--theme_color);
  color: #fff;
}

@media (any-hover: hover) {
  .wnoueqg_Cu1tR__slide:hover .wnoueqg_Cu1tR__card {
    background-color: var(--theme_color);
    color: #fff;
    transform: scale(1.05);
  }
}

.wnoueqg_Cu1tR__card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.wnoueqg_Cu1tR__card-title {
  margin: 7px 0 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.35;
}

.wnoueqg_Cu1tR__icon {
  flex: 0 0 64px;
  width: 64px;
  color: var(--theme_color);
  font-size: 58px;
  line-height: 1;
  text-align: center;
}

.wnoueqg_Cu1tR__slide.is-active .wnoueqg_Cu1tR__icon {
  color: #fff;
}

.wnoueqg_Cu1tR__body {
  margin: 50px 0 0;
  color: var(--text_muted);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.wnoueqg_Cu1tR__slide.is-active .wnoueqg_Cu1tR__body,
.wnoueqg_Cu1tR__slide:hover .wnoueqg_Cu1tR__body {
  color: var(--active_text_muted);
}

.wnoueqg_Cu1tR__number {
  display: block;
  margin-top: 10px;
  color: var(--number_muted);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.48;
  opacity: 0.07;
  text-align: end;
}

.wnoueqg_Cu1tR__slide.is-active .wnoueqg_Cu1tR__number,
.wnoueqg_Cu1tR__slide:hover .wnoueqg_Cu1tR__number {
  color: #fff;
}

.wnoueqg_Cu1tR__controls {
  position: absolute;
  left: calc(50% + 35px);
  top: 562px;
  display: flex;
  gap: 42px;
  width: auto;
  padding: 0;
  transform: translateX(-50%);
}

.wnoueqg_Cu1tR.is-locked .wnoueqg_Cu1tR__controls {
  display: none;
}

.wnoueqg_Cu1tR__control {
  width: 70px;
  height: 70px;
  border: 0;
  border-radius: 50%;
  background: var(--control_bg);
  color: #555;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.wnoueqg_Cu1tR__control:hover {
  background: var(--control_bg_hover);
}

.wnoueqg_Cu1tR__control:focus-visible {
  outline: 2px solid var(--theme_color);
  outline-offset: 3px;
}

.wnoueqg_Cu1tR__control:disabled {
  cursor: default;
  opacity: 0.45;
}

.wnoueqg_Cu1tR__control .yiyingbaoicon {
  font-size: 23px;
}

.rtlAr .wnoueqg_Cu1tR__card-head {
  flex-direction: row-reverse;
}

.rtlAr .wnoueqg_Cu1tR__control--prev .yiyingbaoicon,
.rtlAr .wnoueqg_Cu1tR__control--next .yiyingbaoicon {
  display: inline-block;
  transform: scaleX(-1);
}

@media (max-width: 1024px) {
  .wnoueqg_Cu1tR { min-height: 720px; padding-top: 48px; }
  .wnoueqg_Cu1tR__title { font-size: 42px; line-height: 1.35; }
  .wnoueqg_Cu1tR__title-rule { width: 48px; height: 5px; margin-top: 16px; }
  .wnoueqg_Cu1tR__viewport { height: 500px; margin-top: 70px; }
  .wnoueqg_Cu1tR .wnoueqg_Cu1tR__swiper.swiper { width: 88%; height: 430px; }
  .wnoueqg_Cu1tR .wnoueqg_Cu1tR__wrapper.swiper-wrapper { top: 45px; }
  .wnoueqg_Cu1tR .wnoueqg_Cu1tR__slide.swiper-slide:nth-child(even) { top: -40px; }
  .wnoueqg_Cu1tR__card { padding: 38px 30px 32px; }
  .wnoueqg_Cu1tR__card-title { font-size: 26px; }
  .wnoueqg_Cu1tR__icon { flex-basis: 54px; width: 54px; font-size: 48px; }
  .wnoueqg_Cu1tR__body { margin-top: 42px; font-size: 18px; }
  .wnoueqg_Cu1tR__number { font-size: 52px; }
  .wnoueqg_Cu1tR__controls { left: 50%; top: 375px; gap: 28px; }
  .wnoueqg_Cu1tR__control { width: 60px; height: 60px; }
}

@media (hover: none), (max-width: 767px) {
  .wnoueqg_Cu1tR {
    background-attachment: scroll;
  }
}

@media (max-width: 600px) {
  .wnoueqg_Cu1tR { min-height: 650px; padding-top: 36px; }
  .wnoueqg_Cu1tR__heading,
  .wnoueqg_Cu1tR__swiper { --padding_lr: 2rem; }
  .wnoueqg_Cu1tR__title { font-size: 34px; }
  .wnoueqg_Cu1tR__title-rule { width: 42px; height: 4px; margin-top: 13px; }
  .wnoueqg_Cu1tR__viewport { height: 470px; margin-top: 45px; }
  .wnoueqg_Cu1tR[data-has-heading="false"] .wnoueqg_Cu1tR__viewport { margin-top: 0; }
  .wnoueqg_Cu1tR .wnoueqg_Cu1tR__swiper.swiper { width: calc(100% - var(--padding_lr) - var(--padding_lr)); height: 432px; }
  .wnoueqg_Cu1tR .wnoueqg_Cu1tR__wrapper.swiper-wrapper { top: 36px; }
  .wnoueqg_Cu1tR .wnoueqg_Cu1tR__slide.swiper-slide { width: 100%; }
  .wnoueqg_Cu1tR .wnoueqg_Cu1tR__slide.swiper-slide:nth-child(even) { top: 0; }
  .wnoueqg_Cu1tR__card { padding: 32px 26px 30px; }
  .wnoueqg_Cu1tR__card-title { margin-top: 4px; font-size: 23px; }
  .wnoueqg_Cu1tR__icon { flex-basis: 48px; width: 48px; font-size: 42px; }
  .wnoueqg_Cu1tR__body { min-height: 0; margin-top: 35px; font-size: 16px; line-height: 1.65; }
  .wnoueqg_Cu1tR__number { font-size: 46px; }
  .wnoueqg_Cu1tR__controls { top: 374px; gap: 22px; }
  .wnoueqg_Cu1tR__control { width: 54px; height: 54px; }
  .wnoueqg_Cu1tR__control .yiyingbaoicon { font-size: 19px; }
}

@media (prefers-reduced-motion: reduce) {
  .wnoueqg_Cu1tR__reveal {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .wnoueqg_Cu1tR__reveal.is-animated {
    animation: none;
  }

  .wnoueqg_Cu1tR__slide,
  .wnoueqg_Cu1tR__card,
  .wnoueqg_Cu1tR__control { transition-duration: 1ms; }
}

@keyframes wnoueqg_Cu1tR_fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
