.loading-container {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.tu {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  .dog-img {
    width: 50px;
    margin-left: 6px;
  }
}
.kuang {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 80px;
  height: 80px;
  border: 1px solid #d7d7d7; // var(--g-d10);
  border-top-color: #8b5cf6; //var(--g-l10);
  border-radius: 100%;
  animation: Preloader_spin__qOYSL 1s linear infinite;
}

.loading-title {
  font-size: 28px;
  font-weight: 500;
  color: var(--primary-color);
}

@keyframes Preloader_spin__qOYSL {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(1turn);
  }
}
