body {
  margin: 0;
}
@font-face {
  font-family: "SourceHanSansCN";
  src: url(/fonts/SourceHanSansCN-Medium.otf);
}
.dashed-line {
  height: 3px;
  /* 线条高度 */
  background: linear-gradient(to right, #45266f 70%, transparent 30%);
  background-size: 10px 100%;
  /* 控制虚线段长度与间隔 */
  width: 100%;
}
.loading-box {
  background: linear-gradient(to bottom, #ffffff 0%, #f5f5fb 70%, #b9b9dd 100%);
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 9999999;
  overflow: hidden;
}
.loading-box .line {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 59%;
  display: flex;
  justify-content: space-between;
}
.loading-box .line #path-left {
  width: 35%;
  background: linear-gradient(to right, #bfb4cd 0%, #ffffff 100%);
  position: relative;
}
.loading-box .line #path-left .path-em {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  left: 0;
  top: 0;
  background: #45266f;
}
.loading-box .line #path-right {
  width: 35%;
  background: linear-gradient(to left, #bfb4cd 0%, #ffffff 100%);
  position: relative;
}
.loading-box .line #path-right .path-em {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  right: 0;
  top: 0;
  background: #45266f;
}
.loading-box .text {
  position: absolute;
  left: 50%;
  top: 43.7%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
  z-index: 2;
}
.loading-box .text img {
  width: 111px;
  height: 93px;
}
.loading-box .text .progress {
  width: 100%;
  text-align: center;
  color: #a7a9aa;
  position: relative;
}
.loading-box .text .progress span {
  text-align: right;
  display: inline-block;
  font-size: 2.625rem;
  font-weight: bold;
  margin-top: 12px;
}
.loading-box .text .msg {
  font-size: 1.5rem;
  position: relative;
}
@media (max-width: 750px) {
  .loading-box .line {
    top: 52.5%;
  }
  .loading-box .line #path-left {
    width: 30%;
  }
  .loading-box .line #path-right {
    width: 30%;
  }
  .loading-box .text {
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
  }
  .loading-box .text img {
    width: 65px;
    height: 54px;
  }
  .loading-box .text .progress::after {
    content: "";
    width: 3px;
    height: 89%;
    background: #45266f;
    transform: rotate(28deg);
    position: absolute;
    right: -21%;
    top: 4%;
  }
  .loading-box .text .progress span {
    font-size: 1.4375rem;
    font-weight: bold;
    margin-top: 0;
  }
  .loading-box .text .msg {
    font-size: 0.85rem;
    position: relative;
  }
}
