/* 覆盖 .nuxt-spa-loading 样式 */
.nuxt-spa-loading {
  display: none !important;
}
.nuxt-spa-loading1 {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8) !important;width: 160px !important; height: 154px !important; 
}
.nuxt-spa-loading1>path {
   /* fill: none; */
   stroke: rgba(111,83, 233, 0.6);
   stroke-width: 4px;
   stroke-linecap: round;
   stroke-linejoin: round;
   stroke-dasharray: 400;
   stroke-dashoffset: 400;
   animation: nuxt-spa-loading-move 3s linear infinite;
 }
 @keyframes nuxt-spa-loading-move {
   100% {
     stroke-dashoffset: -400;
   }
 }