.container {
  width: 100%;
  height: 100%;
}

.showPage {
  position: relative;
  height: 100%;
  width: 100%;
  display: none;
  overflow-y: auto;
}

.showPage img {
  display: block;
  width: 100%;
}

.showIframe {
  display: none;
  height: 100%;
}

.showIframe img {
  display: block;
  width: 100vw;
  height: 100%;
}

.showIframe #iframeRef {
  width: 100vw;
  height: 100%;
  overflow: hidden;
}

.modal {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
}

.modal .content-box {
  background-color: #232626;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.modal .model-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  font-size: 15px;
  font-weight: 600;
  padding: 0 12px;
}

.modal .model-header .close {
  cursor: pointer;
}

.modal .model-header .close img {
  width: 30px;
  display: block;
}

.modal .model-content {
  padding: 0 12px 12px 12px;
}

.silder-contailer {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}

.silder-contailer .silder-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.silder-contailer .silder-item img {
  margin: 0 auto;
}

.silder-contailer .silder-item p {
  width: 100%;
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
}

.dots {
  display: flex;
  gap: 6px;
  width: 100%;
  height: 30px;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #eee;
  cursor: pointer;
  transition: all 0.3s;
}

.dots .on {
  background: #ffae17;
  width: 24px;
}

.pageBox {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 40%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pageBox img {
  width: 30px;
  height: 30px;
}

.pageBox img:first-child {
  transform: rotate(180deg);
}

.plaubtn-box {
  position: absolute;
  left: 50%;
  top: 112vw;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.plaubtn {
  width: 70vw;
  /* width: 150px;
  height: 44px;
  background: #ffae17;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px; */
  animation: example 1.6s infinite;
}

@keyframes example {
  0% {
    opacity: .9;
    /* 放大缩小 */
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  100% {
    opacity: .9;
    transform: scale(1);
  }
}

.topup {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  color: #f1f1f1;
  background-color: #232626;
  border-radius: 18px;
  padding: 25px 20px;
}

.topup .topup-title {
  text-align: center;
  font-size: 15px;
}

.topup .topup-content {
  background-color: #3A4142;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .23);
  margin: 15px 0;
  padding: 20px;
  display: flex;
  align-items: center;
}

.topup .topup-content>img {
  width: 70px;
  margin-right: 20px;
}

.topup .topup-content .info .info-title {
  display: flex;
  align-items: center;
  font-size: 22px;
}

.topup .topup-content .info .info-title img {
  width: 24px;
}

.topup .topup-content .info .info-description {
  color: #028760;
  font-size: 15px;
  font-weight: 500;
  margin: 5px 0;
}

.topup .topup-content .info .info-play {
  font-size: 10px;
  display: flex;
  align-items: center;
}

.topup .topup-content .info .info-play img {
  width: 10px;
  height: auto;
  margin-right: 4px;
}

.topup .topup-details .info-detail-introduction {
  line-height: 18px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

.topup .topup-button {
  background-color: #ffae17;
  width: 100%;
  color: #fff;
  border-radius: 8px;
  text-align: center;
  margin-top: 15px;
  height: 35px;
  line-height: 35px;
  cursor: pointer;
}

.topup .topup-progress {
  width: 100%;
  border: 1px solid #028760;
  color: #fff;
  border-radius: 8px;
  text-align: center;
  height: 36px;
  line-height: 34px;
  font-size: 15px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}

.topup .topup-progress .proBgcolor {
  background-color: #028760;
  width: 10%;
  height: 100%;
  border-radius: 9px;
  position: absolute;
  left: 0;
  top: 0;
}

.topup .topup-progress .proNums {
  position: relative;
  z-index: 9;
}