.prompt-info-box::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 998;
}

/* 提示信息  */

#promptInfoBox {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 99999999999999999999;
  display: none;
}

#promptInfoBox.open::after {
  background: rgba(0, 0, 0, .1);
}

.prompt-info {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  outline: 0;
  cursor: default;
  width: 360px;
  height: 300px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .24);
  border-radius: 2px;
  border: none;
  padding: 19px 16px;
  z-index: 999;
}

.prompt-icon {
  position: relative;
  font-size: 60px;
  text-align: center;
  width: 80px;
  height: 80px;
  border: 4px solid #3fc3ee;
  border-radius: 50%;
  margin: 32px auto 16px;
  box-sizing: content-box;
  cursor: default;
  user-select: none;
  animation: showZeroAlert 0.3s;
  display: none;
}

.prompt-icon.info {
  line-height: 80px;
  color: #3fc3ee;
  border-color: #3fc3ee;
}

.prompt-icon.error {
  line-height: 72px;
  color: #f27474;
  border-color: #f27474;
  text-align: center;
}

.prompt-icon.success {
  border-color: #a5dc86;
}

.prompt-icon.loading {
  border: none;
}

.prompt-icon.loading img {
  transform: translate(-12%, -12%);
  height: 130%;
  width: 130%;
}

.prompt-icon.success .line {
  position: absolute;
  height: 5px;
  background-color: #a5dc86;
  display: block;
  border-radius: 2px;
  z-index: 2;
}

.prompt-icon.success .left-line {
  width: 25px;
  left: 14px;
  top: 46px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.prompt-icon.success .right-line {
  width: 47px;
  right: 8px;
  top: 38px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.prompt-text {
  width: 100%;
  text-align: center;
  color: #575757;
  font-size: 20px;
  font-weight: bold;
  margin-top: 36px;
}

.prompt-text span {
  color: red;
}

@keyframes showZeroAlert {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  45% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  80% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* 提示信息结束 */

/* loading */

#statusBox {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 9999999999;
  display: none;
}

#statusBox.open::after {
  background: transparent;
}

.status-box {
  position: fixed;
  width: 60px;
  height: 60px;
  background: #fff;
  z-index: 999;
  border-radius: 5px;
  text-align: center;
}


.status-box img.loading {
  width: 100%;
  height: 100%;
}

.status-box img.success {
  width: 80%;
  height: 80%;
}

.status-box img.error {
  width: 70%;
  height: 70%;
  margin-top: 7px;
}

/* loading结束 */
