.first-loading-wrp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 90vh;
  min-height: 90vh;
}

.first-loading-wrp>h1 {
  font-size: 28px;
  font-weight: bolder;
}

.first-loading-wrp .loading-wrp {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 98px;
}

.dot {
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  width: 64px;
  height: 64px;
  font-size: 64px;
  transform: rotate(45deg);
  animation: antRotate 1.2s infinite linear;
}

.dot i {
  position: absolute;
  display: block;
  width: 28px;
  height: 28px;
  background-color: var(--themecolor);
  border-radius: 100%;
  opacity: 0.3;
  transform: scale(0.75);
  transform-origin: 50% 50%;
  animation: antSpinMove 1s infinite linear alternate;
}

.dot i:nth-child(1) {
  top: 0;
  left: 0;
}

.dot i:nth-child(2) {
  top: 0;
  right: 0;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.dot i:nth-child(3) {
  right: 0;
  bottom: 0;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.dot i:nth-child(4) {
  bottom: 0;
  left: 0;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

@keyframes antRotate {
  to {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }
}

@-webkit-keyframes antRotate {
  to {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }
}

@keyframes antSpinMove {
  to {
    opacity: 1;
  }
}

@-webkit-keyframes antSpinMove {
  to {
    opacity: 1;
  }
}


/* index中的失败提示  */
.anerror-box {
    width: 100vw;
    height: 100vh;
    background-color: white;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999;
}
.anerror-box > div > img {
  width: 54vw;
  max-width: 300px;
  margin: auto;
}
.anerror-box > div > p {
    margin: 40px 0 16px 0;
    font-size: 20px;
    font-weight: bold;
}

.anerror-box > div .anerror-fq {
  width: 73vw;
  max-width: 440px;
  margin: auto;
  text-align: left;
}
.anerror-box > div .anerror-fq > p {
  margin: 16px 0;
  font-size: 14px;
  color: #999;
  word-break: break-all;
}

.anerror-box > div .anerror-fq > div {
  margin: auto;
  font-size: 12px;
  color: #666;
  word-break: break-all;
}

.anerror-box > div > span {
  display: inline-block;
  max-width: 46%;
  margin: 40px auto 0 auto;
  padding: 6px 32px;
  font-size: 14px;
  color: #1890ff;
  border: 1px solid #1890ff;
  border-radius: 50px;
  cursor: pointer;
}
