.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;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-top: 0.9rem;
}
.modal-mask::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url('../../assets/img/bg.gif');
  background-repeat: repeat;
}
.modal-wapper {
  position: relative;
  z-index: 20000;
  height: 100%;
  margin: 0 auto;
  width: 100%;
  padding: 1.3rem 0.4rem 0.4rem;
  box-sizing: border-box;
}
.modal-monkey {
  width: 1.6rem;
  height: 2.9rem;
  position: absolute;
  bottom: 0;
  right: 0;
}
.modal-monkey img {
  width: 1.89rem;
  height: auto;
}
.modal-inner {
  position: relative;
  height: 100%;
  background: #212121;
  border-radius: 0.2rem;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  box-sizing: border-box;
  overflow: hidden;
}
.modal-inner .modal-close {
  position: absolute;
  right: 0.16rem;
  top: 0.16rem;
  padding: 0.1rem;
  display: block;
  z-index: 10000;
  cursor: pointer;
}
.modal-inner .modal-close:hover {
  opacity: 0.8;
}
.modal-inner .modal-close img {
  display: block;
  width: 0.26rem;
  height: 0.26rem;
}
.modal-header {
  width: 100%;
  padding: 0.4rem 0.66rem;
  box-sizing: border-box;
  text-align: center;
  font-size: 0.32rem;
  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.2rem 0.4rem;
  box-sizing: border-box;
  font-size: 0.28rem;
  font-family: PingFang SC;
  font-weight: 400;
  background-color: #212121;
  color: #FCFDFF;
  line-height: 0.4rem;
  overflow: auto;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}
.modal-footer {
  font-size: 0.16rem;
  font-family: PingFang SC;
  color: #E2E2E2;
  line-height: 1.5;
  padding: 0.32rem 0.65rem;
  text-align: left;
  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;
}
