.main-popup {
  display: none;
  position: fixed;
  top: 115px;
  left: 30px;
  z-index: 9999999;
  background: #fff;
  border: 1px solid #ddd;
  pointer-events: auto;
  isolation: isolate;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.popup-on {
  display: block;
}
.popup-inner {
  position: relative;
  z-index: 1;
  width: 800px;
  background: #fff;
}
/* ÆË¾÷ Àü¿ë swiper */
.popup-swiper {
  width: 100%;
  overflow: hidden;
}
.popup-swiper .swiper-slide {
  text-align: center;
  background: #fff;
}
.popup-swiper .swiper-slide a {
  display: block;
}
.popup-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  /* ±âÁ¸ pointer-events:none Á¦°Å */
}
/* ¹öÆ° ¿µ¿ª */
.popup-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: #f8f8f8;
}
.popup-btns button {
  font-size: 13px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}
/* swiper È­»ìÇ¥ */
.popup-swiper-prev,
.popup-swiper-next {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -21px;
  z-index: 10;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-swiper-prev {
  left: 0;
}
.popup-swiper-next {
  right: 0;
}
.popup-swiper-prev i,
.popup-swiper-next i {
  font-size: 28px;
  color: #999;
  line-height: 1;
}
/* ¸ð¹ÙÀÏ */
@media (max-width: 768px) {
  .main-popup {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 420px;
  }
  .popup-inner {
    width: 100%;
  }
}