body {
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.loading-container {
  width: 100vw;
  height: 100vh;
   display: flex;
  justify-content: center;
  align-items: center;
}

.loading-box{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 16px 30px;
  border-radius: 4px;
}

.loading-desc{
  font-size: 14px;
  color: #333
}


.loading-bar {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: space-between;
}
.loading-line {
  background-color: #165dff;
  height: 100%;
  width: 15%;
  animation: init-wave 1.2s infinite ease-in-out;
}
.loading-line:nth-child(1) {
  animation-delay: -1.2s;
}
.loading-line:nth-child(2) {
  animation-delay: -1.1s;
}
.loading-line:nth-child(3) {
  animation-delay: -1s;
}
.loading-line:nth-child(4) {
  animation-delay: -0.9s;
}
.loading-line:nth-child(5) {
  animation-delay: -0.8s;
}


@keyframes init-wave {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
  }
}
