
/* 白屏阶段会执行的 CSS 加载动画 */
/* 
#app-loading {
  position: relative;
  top: 45vh;
  margin: 0 auto;
  color: #063E82;
  font-size: 12px;
}

#app-loading,
#app-loading:before,
#app-loading:after {
  width: 2em;
  height: 2em;
  border-radius: 50%;
  animation: 2s ease-in-out infinite app-loading-animation;
}

#app-loading:before,
#app-loading:after {
  content: "";
  position: absolute;
}

#app-loading:before {
  left: -4em;
  animation-delay: -0.2s;
}

#app-loading:after {
  left: 4em;
  animation-delay: 0.2s;
}

@keyframes app-loading-animation {
  0%,
  80%,
  100% {
    box-shadow: 0 2em 0 -2em;
  }
  40% {
    box-shadow: 0 2em 0 0;
  }
} */


/* 
#app-loading {
  position: fixed;
  z-index: 9999;
  height: 2em;
  width: 2em;
  overflow: visible;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

#app-loading:before {
  content: '';
  display: block;
  margin: auto;
  height: 2em;
  width: 2em;
  border-radius: 50%;
  border: .3em solid rgba(0,0,0,.1);
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
} */

.app-loading {
  position: absolute; 
  top: 0; 
  background-color: white; 
  width: 100%; 
  height: 100%;
}
.app-loader-title-class{
  font-size: 14px;
  text-align: center;
  color: var(--main-color); 
  margin-top: 2.5em;
}

.app-loader-class,
.app-loader-class:before,
.app-loader-class:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  animation-fill-mode: both;
  animation: load-animation 1.8s infinite ease-in-out;
}

.app-loader-class {
  color: #063E82;
  font-size: 10px;
  margin: 80px auto 0 ;
  position: relative;
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.16s;
  top: 0;
  transform: translate(-50%, 0);
}

.app-loader-class:before,
.app-loader-class:after {
  content: "";
  position: absolute;
  top: 0;
}

.app-loader-class:before {
  left: -3.5em;
  animation-delay: -0.32s;
}

.app-loader-class:after {
  left: 3.5em;
}

@keyframes load-animation {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }

  40% {
    box-shadow: 0 2.5em 0 0;
  }
}