.loading_bj {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  /* transition: 0.2s ease-in;
  transition-property: background-color; */
  background: #0B0B0B;
  /* display:none; */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  /* padding-bottom: 100px; */
}

.app-loading-img {
  width: 150px;
  display: block;
  margin: 25px auto 5px;
  animation: blink 1.5s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.line-loading {
  display: block;
  width: 100px;
  flex: 0 1 70%;
  height: 4px;
  margin: 20px auto 100px;
  position: relative;
  background: rgba(52, 152, 219, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.line-progress {
  position: absolute;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg,
      rgba(52, 152, 219, 0.2),
      #008c3a,
      rgba(52, 152, 219, 0.2));
  border-radius: 4px;
  animation: line-move 1.5s ease-in-out infinite;
  filter: blur(0.5px);
}

@keyframes line-move {
  0% {
    left: -40%;
  }

  100% {
    left: 100%;
  }
}