#global-error-display {
  font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafe 100%);
  height: 100vh;
  /* display: flex;
  justify-content: center;
  align-items: flex-start; */
  padding-top: 34vh;
  /* overflow: hidden; */
  position: relative;
}
/* 背景动画粒子 */
.background-particles-20250717 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle-20250717 {
  position: absolute;
  background: rgba(240, 245, 250, 0.4);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.particle-20250717:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle-20250717:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 60%;
  left: 80%;
  animation-delay: 2s;
}

.particle-20250717:nth-child(3) {
  width: 40px;
  height: 40px;
  top: 40%;
  left: 60%;
  animation-delay: 4s;
}

.particle-20250717:nth-child(4) {
  width: 100px;
  height: 100px;
  top: 80%;
  left: 20%;
  animation-delay: 1s;
}

.particle-20250717:nth-child(5) {
  width: 50px;
  height: 50px;
  top: 10%;
  left: 70%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.8;
  }
}

/* 主容器 */
.loading-container-20250717 {
  text-align: center;
  z-index: 10;
  position: relative;
  background: transparent;
  padding: 60px 80px;
  animation: fadeInUp 1s ease-out;
}

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

/* 加载动画 */
.loading-spinner-20250717 {
  width: 50px;
  height: 50px;
  margin: 0 auto 30px;
  position: relative;
}

.loading-spinner-20250717::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top: 3px solid #4a90e2;
  border-right: 3px solid #4a90e2;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

.loading-spinner-20250717::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border: 2px solid transparent;
  border-top: 2px solid #7bb3f0;
  border-radius: 50%;
  animation: spin 1.8s linear infinite reverse;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* 文字样式 */
.loading-text-20250717 {
  color: #4a4a4a;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 25px;
  letter-spacing: 1.5px;
  animation: pulse 2s ease-in-out infinite;
}

.version-text-20250717 {
  color: #888888;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.8px;
  opacity: 0.85;
  margin-top: 5px;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* 水印效果 */
.watermark-20250717 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}

.watermark-20250717::before {
  content: 'LOADING';
  position: absolute;
  top: 20%;
  left: 10%;
  transform: rotate(-45deg);
  font-size: 80px;
  background: linear-gradient(90deg, rgba(200, 210, 220, 0.05) 0%, rgba(200, 210, 220, 0.25) 50%, rgba(200, 210, 220, 0.05) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  letter-spacing: 8px;
  animation: shimmer 3s ease-in-out infinite;
}

.watermark-20250717::after {
  content: 'LOADING';
  position: absolute;
  bottom: 20%;
  right: 10%;
  transform: rotate(-45deg);
  font-size: 80px;
  background: linear-gradient(90deg, rgba(200, 210, 220, 0.03) 0%, rgba(200, 210, 220, 0.18) 50%, rgba(200, 210, 220, 0.03) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  letter-spacing: 8px;
  animation: shimmer 4s ease-in-out infinite 1.5s;
}

.watermark-pattern-20250717 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  font-size: 60px;
  background: linear-gradient(90deg, rgba(220, 225, 235, 0.02) 0%, rgba(220, 225, 235, 0.12) 50%, rgba(220, 225, 235, 0.02) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 300;
  letter-spacing: 15px;
  animation: shimmer 5s ease-in-out infinite 2.5s;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  50% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* 响应式设计 */
@media (max-width: 768px) {
  .loading-container-20250717 {
    padding: 40px 50px;
    margin: 20px;
  }

  .loading-text-20250717 {
    font-size: 20px;
  }

  .version-text-20250717 {
    font-size: 12px;
  }

  .watermark-20250717 {
    font-size: 80px;
  }
}
