/* 页面加载动画 */
#app-loading {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: opacity 0.3s ease;
}

.app-loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Loading 圆环 */
.app-loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #e5e7eb;
  border-top-color: #1989fa;
  border-radius: 50%;
  animation: app-loading-rotate 0.8s linear infinite;
}

/* Loading 文字 */
.app-loading-text {
  margin-top: 12px;
  color: #666;
  font-size: 14px;
  line-height: 20px;
}

@keyframes app-loading-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* 隐藏 */
#app-loading.hidden {
  opacity: 0;
  pointer-events: none;
}