.loading-container {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 24px;
  box-sizing: border-box;
  background: #fff;
}

.loading-video {
  width: min(34vw, 220px);
  height: min(34vw, 220px);
  display: block;
  object-fit: contain;
  background: #fff;
  pointer-events: none;
  user-select: none;
}

.loading-title {
  margin-top: 14px;
  font-size: 26px;
  font-weight: 500;
  color: #6a6a6a;
  letter-spacing: 0.02em;
}

.loading-container::before {
  content: "";
  display: none;
  width: 56px;
  height: 56px;
  border: 4px solid rgba(22, 119, 255, 0.16);
  border-top-color: #1677ff;
  border-radius: 50%;
  animation: loading-spin 0.8s linear infinite;
}

@keyframes loading-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 640px) {
  .loading-title {
    font-size: 18px;
  }
}
