@charset "utf-8";
.photo-viewer,
.photo-viewer body {
  position: relative;
  height: 100%;
}

.photo-viewer .swiper-container {
  background-color: #000;
  z-index: 1000000;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.swiper-zoom-container div {
  width: 100%;
  height: 100%;
  background-size: cover;
}

.swiper-slide {
  overflow: hidden;
}

.swiper-slide img {
  display: block;
  width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
  outline: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .5) none no-repeat 50% 50%;
  background-size: 24px;
}

.swiper-button-prev {
  left: 0;
  background-image: url("../images/arrow-left.png");
}

.swiper-button-next {
  right: 0;
  background-image: url("../images/arrow-right.png");
}

.swiper-button-close {
  z-index: 1000001;
  position: absolute;
  outline: none;
  border: none;
  right: 10px;
  top: 10px;
  color: #fff;
  font-size: 24px;
  background: url("../images/close.png") no-repeat 100% 0;
  width: 24px;
  height: 24px;
  background-size: 24px;
}

