/* 页面加载动画样式 */
.page-loading-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loading-wrapper.fade-out {
  opacity: 0;
  visibility: hidden;
}

.page-loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #114084;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.page-loading-text {
  margin-top: 20px;
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .page-loading-spinner {
    width: 50px;
    height: 50px;
    border-width: 3px;
  }

  .page-loading-text {
    font-size: 14px;
    margin-top: 15px;
  }
}
