.swiper-wrapper {
  align-items: center;
}

.swiper-container {
  height: 100%;
}

.swiper-box {
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99999999;
  background: #000;
  display: none;
}

.swiper-box.show {
  display: block;
}

.swiper-slide {
  display: flex;
  align-items: center;
}

div.pinch-zoom-container {
  height: 100%;
}

.swiper-box .img-box {
  width: 100vw;
  height: 100vh;
  border: 0 solid black;
}

.swiper-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swiper-box .close{
  position: absolute;
  color: #fff;
  right: 0px;
  top: 0px;
  z-index: 99;
  line-height: 1;
  display: flex;
  align-items: center;
  font-size: 40px;
  width: 1.5em;
  height: 1.5em;
  justify-content: center;
}

.swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-bullet-active {
  background: rgb(22, 167, 168);
}