.GlobalLoading_global-loading__iKhSb {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  pointer-events: auto;
}

.GlobalLoading_loading-content__kYfc3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.GlobalLoading_loading-text__2DNG6 {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  font-family: 'MiSans', 'Microsoft YaHei', sans-serif;
  margin-top: 12px;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #5757FF 0%, #24EAFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: GlobalLoading_fadeInUp__fW8uy 0.6s ease-out;
}

@keyframes GlobalLoading_fadeInUp__fW8uy {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 隐藏时的样式 */
.GlobalLoading_global-loading__iKhSb[data-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}


