.loading {
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: url("../images/loading/loading-bg-pc.webp") no-repeat;
  background-size: 100% 100%;
}
.loading .logo {
  height: 84px;
  margin-bottom: 0.26rem;
}
.loading .title {
  font-family: Roboto, sans-serif;
  font-size: 0.28rem;
  font-weight: 500;
  line-height: 0.4rem;
  text-align: center;
  color: #5A5A5A;
}
.loading .image-1 {
  width: 5.87rem;
  height: auto;
  margin-top: 0.4rem;
}
.loading .progressCon {
  margin-top: 0.2rem;
  width: 5.54rem;
  height: 0.34rem;
  background: url("../images/loading/loading_progress_bg.png") no-repeat center;
  background-size: cover;
}
.loading .progressCon .progress {
  position: relative;
  top: 0.04rem;
  left: 0.05rem;
  width: 5.45rem;
  height: 0.26rem;
  border-radius: 0.06rem;
}
.loading .progressCon .progress::before {
  position: absolute;
  width: 0;
  height: 100%;
  background: linear-gradient(0deg, #056DFF 2.89%, #6087FF 19.49%, #277DFF 34.13%, #26AEFE 41.94%, #00A4E5 100.53%);
  content: "";
  border-radius: 0.05rem;
  animation: aw 3s forwards linear;
}
.loading .progressCon .progress .proTxt {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 10;
  position: relative;
  color: #fff;
  animation: aw 3s forwards linear;
}
.loading .progressCon .progress .proTxt .loadingTxt {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 0.25rem;
  line-height: 0.32rem;
}
.loading .progressCon .progress .proTxt i {
  font-family: "Roboto", sans-serif;
  font-size: 0.25rem;
  font-weight: 400;
}

@keyframes aw {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
