.modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
}
.modal-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-top: 0.97rem;
}
.modal-mask-bg {
  width: 100%;
  height: 100%;
  background-image: url('../../img/bg-large.png'), url('../../img/bg-large.png');
  background-repeat: no-repeat, no-repeat;
  background-size: 100% auto, 100% auto;
  background-position: left top, left bottom;
  animation: ani-modal-bg 12s linear infinite;
}
@keyframes ani-modal-bg {
  0% {
    background-image: url('../../img/bg-large.png'), url('../../img/bg-large.png');
    background-position: left top, left bottom;
  }
  100% {
    background-image: url('../../img/bg-large.png'), url('../../img/bg-large.png');
    background-position: left bottom, left top;
  }
}
.modal-wapper {
  position: relative;
  z-index: 10001;
  height: 100%;
  margin: 0 auto;
  width: 9.53rem;
  box-sizing: border-box;
  padding: 1.52rem 0 0.44rem;
}
.modal-monkey {
  width: 2.96rem;
  height: 3.92rem;
  position: absolute;
  bottom: 0;
  right: -1.7rem;
  background-image: url("../img/yuan.png");
  background-repeat: no-repeat;
  background-size: 90% auto;
  background-position: 0.2rem 0.55rem;
}
.modal-inner {
  position: relative;
  box-sizing: border-box;
  height: 100%;
  background: #212121;
  border-radius: 0.2rem;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  overflow: hidden;
}

.modal-inner .modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  display: block;
  z-index: 10000;
  cursor: pointer;
}
.modal-inner .modal-close:hover {
  opacity: 0.8;
}
.modal-inner .modal-close img {
  display: block;
  width: 24px;
  height: 24px;
}
.modal-header {
  width: 100%;
  padding: 0.44rem 0.4rem 0.4rem;
  box-sizing: border-box;
  text-align: center;
  font-size: 0.24rem;
  line-height: 1.5;
  font-family: PingFang SC;
  font-weight: 500;
  color: #FCFDFF;
  user-select: none;
  background-color: #212121;
}
.modal-header-posi {
  position: absolute;
  top: 0;
  left: 0;
}
.modal-header-hidden {
  visibility: hidden;
}
.modal-content {
  height: 100%;
  width: 100%;
  flex-grow: 1;
  padding: 0.1rem 0.7rem;
  box-sizing: border-box;
  font-size: 0.16rem;
  font-family: PingFang SC;
  font-weight: 400;
  background-color: #212121;
  color: #FCFDFF;
  line-height: 0.3rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  user-select: none;
}

.modal-content::-webkit-scrollbar {
  width: 10px;
}
.modal-content::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #333;
}
.modal-content::-webkit-scrollbar-track {
  background-color: #212121;
}
.modal-footer {
  font-size: 0.12rem;
  font-family: PingFang SC;
  color: #E2E2E2;
  line-height: 1.5;
  padding: 0.49rem 0.76rem;
  text-align: right;
  user-select: none;
}
.modal-footer em {
  font-style: normal;
  font-weight: bold;
}
.modal-footer span {
  font-weight: 400;
  opacity: 0.5;
}
.modal-content * {
  max-width: 100% !important;
  word-break: break-all;
}
.modal-content iframe {
  display: block;
  width: 100%;
  height: 100%;
  background: #212121;
}
.modal-no-data {
  text-align: center;
}
