html, body {
    margin: 0;
    padding: 0;
}
.progress-bar {
  display: none;
}
.flutter-loader {
  display: none !important;
}

.loading{
    position: absolute;
    z-index: 2147483647; /*最顶层*/
    width: 100%;
    height: 100%;
    background-color: #000;
    -webkit-animation: bg-data-v-8175861c 20s linear infinite;
    animation: bg-data-v-8175861c 20s linear infinite;
}
.loading_view {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.loading_bg{
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/loading.gif') no-repeat center center;
    background-size: contain;
}
.loading_view p{
    font-weight: 700;
    font-size: 1.2rem;
}

.loader {
  position: absolute;
  width: fit-content;
  font-weight: bold;
  font-family: sans-serif;
  font-size: 20px;
  padding: 0 5px 8px 0;
  background: repeating-linear-gradient(90deg,currentColor 0 8%,#0000 0 10%) 200% 100%/200% 3px no-repeat;
  animation: l3 2s steps(6) infinite;
}
.loader:before {
  content:"Loading..."
}
@keyframes l3 {to{background-position: 80% 100%}}