.global {
  padding-top: 3.33vw;
  position: relative;
  z-index: 2;
  background-color: #fff;
}

.global .header {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.global .header .title {
  font-size: 2.29vw;
  font-weight: 700;
  color: #333;
}

.global .header .desc {
  margin-top: 1.41vw;
  display: flex;
  gap: 0 1.04vw;
  color: #333;
  font-size: 1.15vw;
}

.global .map-container {
  width: 72.92vw;
  margin: .83vw auto 0;
  height: 26.67vw;
  position: relative;
  z-index: 1;
}

/* box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1); */
.global .map-container .map-img {
  width: 100%;
  height: 100%;
}

.global .map-container .location .location-icon {
  position: relative;
  z-index: 2;
  width: 3.13vw;
  height: 3.13vw;
  filter: drop-shadow(0px 0px 1.56vw rgba(0, 0, 0, 0.1));
  cursor: pointer;
}

.global .map-container .location.is-active {
  z-index: 10;
}

.global .map-container .location.is-active .location-icon {
  filter: drop-shadow(0px 0px 1.56vw rgba(45, 119, 217, 0.35));
}

.global .map-container .location-pop {
  position: absolute;
  left: calc(100% + 0.78vw);
  bottom: 0;
  width: 17.71vw;
  background: #fff;
  border-radius: 0.42vw;
  box-shadow: 0 0.21vw 1.04vw rgba(0, 0, 0, 0.12);
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.42vw);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  padding: 0 1.04vw 1.46vw;
  padding-right: 0;
}

.global .map-container .location.is-active .location-pop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.global .map-container .location-item-3 .location-pop,
.global .map-container .location-item-6 .location-pop {
  left: auto;
  right: calc(100% + 0.78vw);
}

.global .map-container .location-item-4 .location-pop,
.global .map-container .location-item-5 .location-pop {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) translateY(0.42vw);
}

.global .map-container .location-item-4.is-active .location-pop,
.global .map-container .location-item-5.is-active .location-pop {
  transform: translateY(-50%);
}

.global .map-container .location-pop-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .99vw 0 0.73vw;
  border-bottom: 1px solid #e1e1e1;
  margin-right: 1.3vw;
}

.global .map-container .location-pop-head .title {
  font-size: 1.15vw;
  font-weight: 700;
  color: #333;
  line-height: 1;
}

.global .map-container .location-pop-head .pop-icon {
  width: 1.77vw;
  height: 1.77vw;
  flex-shrink: 0;
}

.global .map-container .location-pop-body {
  max-height: 16vw;
  overflow-y: auto;
  padding: .78vw 0 0;
  margin-right: .68vw;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.global .map-container .location-pop-body::-webkit-scrollbar {
  width: 0.26vw;
}

.global .map-container .location-pop-body::-webkit-scrollbar-button {
  display: none;
  height: 0;
  width: 0;
}

.global .map-container .location-pop-body::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 0.13vw;
}

.global .map-container .location-pop-body::-webkit-scrollbar-track {
  background: #e1e1e1;
}

@supports not selector(::-webkit-scrollbar) {
  .global .map-container .location-pop-body {
    scrollbar-width: thin;
    scrollbar-color: #333 #e1e1e1;
  }
}

.global .map-container .location-pop-body ul {
  list-style: none;
}

.global .map-container .location-pop-body li {
  font-size: .78vw;
  color: #666;
  line-height: 2.4;
  white-space: nowrap;
  box-sizing: content-box;
}

.global .map-container .item {
  position: absolute;
}

@keyframes location-ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

.global .map-container .location-circle {
  position: absolute;
  width: 7.81vw;
  height: 7.81vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.3);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  animation: location-ripple 6s ease-out infinite;
}

.global .map-container .location-circle-1 {
  animation-delay: var(--ripple-offset, 0s);
}

.global .map-container .location-circle-2 {
  animation-delay: calc(var(--ripple-offset, 0s) - 2s);
}

.global .map-container .location-circle-3 {
  animation-delay: calc(var(--ripple-offset, 0s) - 4s);
}

.global .map-container .location-item-1 {
  --ripple-offset: 0s;
  top: 30.6640625%;
  left: 8.07142857%;
}

.global .map-container .location-item-2 {
  --ripple-offset: -1.1s;
  top: 36.1328125%;
  left: 32.5%;
}

.global .map-container .location-item-3 {
  --ripple-offset: -2.4s;
  top: 31.25%;
  left: 75.35714285%;
}

.global .map-container .location-item-4 {
  --ripple-offset: -3.7s;
  top: 62.109375%;
  left: 10.785714285%;
}

.global .map-container .location-item-5 {
  --ripple-offset: -0.7s;
  top: 73.4375%;
  left: 41.357142857%;
}

.global .map-container .location-item-6 {
  --ripple-offset: -4.5s;
  top: 69.3359375%;
  left: 83.14285714%;
}

.global .bottom {
  position: relative;
  z-index: 1;
  margin-top: .94vw;
  padding-bottom: 5.73vw;
}

.global .bottom .info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.global .bottom .info .title {
  font-size: 1.25vw;
  font-weight: 700;
  line-height: 1;
}

.global .bottom .info .desc {
  margin-top: 1.04vw;
  font-size: .83vw;
  line-height: 2;
}

.global .bottom .statistics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 1.51vw;
  margin-top: 3.23vw;
}

.global .bottom .statistics .item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 10.94vw;
  line-height: 1;
}

.global .bottom .statistics .item .count {
  font-family: Arial;
  font-weight: 700;
  font-size: 4.79vw;
  color: #fff;
  margin-bottom: 1.04vw;
}

.global .bottom .statistics .item .desc {
  font-size: .94vw;
  color: #FAFDFF;
  line-height: 1;
}

.global .bottom .statistics .item:first-child {
  background-color: #2d77d9;
}

.global .bottom .statistics .item:nth-child(2) {
  background-color: #191919;
}

.global .bottom .statistics .item:last-child {
  background-color: #4b5b76;
}

.banner-wrap {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding-bottom: 4.17vw;
}

.banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  min-height: 50.21vw;
  background: var(--bg-image) no-repeat 0 0/cover;
  background-attachment: fixed;
  padding: 5.78vw 0 0;
  position: relative;
}

.banner .title {
  line-height: 1;
  font-size: 2.29vw;
  font-weight: 700;
}

.banner .desc {
  margin-top: 1.09vw;
  font-size: .83vw;
  line-height: 2;
  text-align: center;
}

.banner-gallery-wrap {
  width: 100%;
  margin-top: 2.86vw;
  position: relative;
}

.banner-gallery-viewport {
  width: 100%;
  overflow: hidden;
}

.banner-gallery-swiper {
  overflow: visible;
}

.banner-gallery-swiper .swiper-slide {
  width: 41.46vw;
}

.banner-gallery-swiper .img-box {
  position: relative;
  width: 100%;
  height: 23.39vw;
  overflow: hidden;
  box-shadow: 0 0.21vw 1.04vw rgba(0, 0, 0, 0.18);
}

.banner-gallery-swiper .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-gallery-swiper .img-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 1;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.banner-gallery-swiper .swiper-slide-active .img-box::after {
  opacity: 0;
}

.banner-gallery-nav {
  display: flex;
  justify-content: center;
  margin-top: 3.91vw;
}

.banner-gallery-prev,
.banner-gallery-next {
  width: 9.38vw;
  height: 2.6vw;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.3s ease;
  background-color: #fff;
}

.banner-gallery-next {
  margin-left: .73vw;
}

.banner-gallery-prev:not(.swiper-button-disabled):hover,
.banner-gallery-next:not(.swiper-button-disabled):hover {
  background-color: #2D77D9;
}

.banner-gallery-prev img,
.banner-gallery-next img {
  display: none;
}

.banner-gallery-prev::after,
.banner-gallery-next::after {
  content: '';
  width: .63vw;
  aspect-ratio: 12 / 20;
  -webkit-mask: url(../images/arrow-right-icon.svg) no-repeat center / contain;
  mask: url(../images/arrow-right-icon.svg) no-repeat center / contain;
  background-color: #333;
  transition: all .3s;
}

.banner-gallery-prev::after {
  transform: rotate(180deg);
}

.banner-gallery-prev:not(.swiper-button-disabled):hover::after,
.banner-gallery-next:not(.swiper-button-disabled):hover::after {
  background-color: #fff;
}

.banner-gallery-prev.swiper-button-disabled,
.banner-gallery-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media screen and (max-width: 1020px) {
  .global {
    padding-top: var(--m-section-py);
  }

  .global .header .title {
    font-size: var(--m-font-h1);
  }

  .global .header .desc {
    margin-top: var(--m-space-sm);
    flex-direction: column;
    align-items: center;
    gap: 2.133vw;
    font-size: var(--m-font-h3);
    line-height: 1.5;
    text-align: center;
    padding: 0 var(--m-space-md);
  }

  .global .map-container {
    width: 100%;
    height: 53.333vw;
    margin-top: var(--m-space-md);
  }

  .global .map-container .location .location-icon {
    width: var(--m-icon-md);
    height: var(--m-icon-md);
  }

  .global .map-container .location-circle {
    width: 16vw;
    height: 16vw;
  }

  .global .map-container .location-pop {
    position: fixed;
    left: 50% !important;
    right: auto !important;
    top: 50% !important;
    bottom: auto !important;
    width: 78.667vw;
    max-width: 18.75rem;
    padding: 0 4.267vw 4.267vw;
    padding-right: 0;
    border-radius: 1.067vw;
    box-shadow: 0 0.533vw 2.667vw rgba(0, 0, 0, 0.18);
    z-index: 200;
    transform: translate(-50%, -50%) translateY(2.133vw);
  }

  .global .map-container .location.is-active .location-pop {
    transform: translate(-50%, -50%);
  }

  .global .map-container .location-pop-head {
    padding: 4.267vw 0 3.2vw;
    margin-right: 4.267vw;
  }

  .global .map-container .location-pop-head .title {
    font-size: var(--m-font-h3);
  }

  .global .map-container .location-pop-head .pop-icon {
    width: 5.333vw;
    height: 5.333vw;
  }

  .global .map-container .location-pop-body {
    max-height: 48vw;
    padding: 2.133vw 0 0;
    margin-right: 2.667vw;
  }

  .global .map-container .location-pop-body::-webkit-scrollbar {
    width: 0.8vw;
  }

  .global .map-container .location-pop-body li {
    font-size: var(--m-font-body);
    line-height: 2;
  }

  .global .bottom {
    margin-top: var(--m-space-lg);
    padding-bottom: var(--m-section-py);
  }

  .global .bottom .info .title {
    font-size: var(--m-font-h3);
    line-height: 1.5;
    padding: 0 var(--m-space-sm);
  }

  .global .bottom .info .desc {
    margin-top: var(--m-space-sm);
    font-size: var(--m-font-body);
    line-height: 1.85;
    padding: 0 var(--m-space-sm);
  }

  .global .bottom .statistics {
    grid-template-columns: 1fr;
    gap: 4.267vw;
    margin-top: var(--m-gap-block);
    padding: 0 var(--m-space-sm);
  }

  .global .bottom .statistics .item {
    height: 29.333vw;
  }

  .global .bottom .statistics .item .count {
    font-size: var(--m-font-display);
    margin-bottom: 3.2vw;
  }

  .global .bottom .statistics .item .desc {
    font-size: var(--m-font-body);
    padding: 0 4.267vw;
    text-align: center;
    line-height: 1.5;
  }

  .banner {
    background-position: center;
    min-height: auto;
    margin-bottom: var(--m-section-py);
    padding: var(--m-section-py) var(--m-space-sm) var(--m-space-lg);
  }

  .banner .title {
    font-size: var(--m-font-h1);
    text-align: center;
    line-height: 1.4;
    padding: 0 var(--m-space-2xs);
  }

  .banner .desc {
    margin-top: var(--m-space-sm);
    font-size: var(--m-font-body);
    line-height: 1.85;
    padding: 0 var(--m-space-2xs);
  }

  .banner .container {
    width: 100%;
    padding: 0;
  }

  .banner-wrap {
    overflow-x: hidden;
  }

  .banner-gallery-wrap {
    margin-top: var(--m-space-lg);
  }

  .banner-gallery-viewport {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
  }

  .banner-gallery-swiper {
    overflow: hidden;
    width: 100%;
  }

  .banner-gallery-swiper .swiper-slide {
    width: 100%;
    flex-shrink: 0;
  }

  .banner-gallery-swiper .img-box {
    width: 100%;
    height: 56vw;
    box-shadow: none;
  }

  .banner-gallery-swiper .img-box::after {
    opacity: 0;
  }

  .banner-gallery-nav {
    margin-top: var(--m-space-md);
  }

  .banner-gallery-prev,
  .banner-gallery-next {
    width: 22vw;
    height: 6.4vw;
  }

  .banner-gallery-next {
    margin-left: 1.6vw;
  }

  .banner-gallery-prev::after,
  .banner-gallery-next::after {
    width: 1.2vw;
  }
}
