.exit-popup-wrapper {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
}

.exit-popup-wrapper > div {
  width: 600px;
  max-width: 90%;
  background: url(../img/background.png) no-repeat center/cover;
  position: relative;
  padding: 2rem 1rem;
}

.exit-popup-wrapper .popup-content {
  display: block;
  margin: 0 auto;
  width: 400px;
  max-width: 100%;
  text-align: center;
}

.exit-popup-wrapper .close {
  height: 20px;
  width: 20px;
  cursor: pointer;
  display: block;
  margin-left: auto;
  background: url(../img/close.png) no-repeat center/contain;
}

body.show-exit-popup .exit-popup-wrapper {
  opacity: 1;
  visibility: visible;
}
/*# sourceMappingURL=jucai-exit-popup.css.map */