#spinner-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  border: 6px solid rgba(0, 0, 0, 0.1); /* 增加边框宽度 */
  border-radius: 50%;
  width: 65px; /* 增大宽度 */
  height: 65px; /* 增大高度 */
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    border-top: 6px solid #007bff; /* 增加边框宽度 */
  }
  20% {
    border-top: 6px solid #00ff00;
  }
  40% {
    border-top: 6px solid #ffff00;
  }
  60% {
    border-top: 6px solid #ff00ff;
  }
  80% {
    border-top: 6px solid #ff0000;
  }
  100% {
    border-top: 6px solid #007bff;
    transform: rotate(360deg);
  }
}
