/* ===== 加载页 ===== */
.loading-stage {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("/static/images/shunde_gov_bg.jpg") center / cover no-repeat
    #e8eef5;
  box-shadow: inset 0 0 120px rgba(255, 255, 255, 0.45);
}

.loading-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 12px 8px;
  max-width: 760px;
  width: 90%;
}

.loading-mascot {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 20px rgba(100, 180, 255, 0.25));
  animation: floaty 3s ease-in-out infinite;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.loading-text {
  flex: 1;
  font-size: 22px;
  font-weight: 700;
  color: #051a45;
  letter-spacing: 1px;
  /* 多层白色光晕，确保在浅天空背景上仍清晰可读 */
  text-shadow:
    0 1px 2px rgba(255, 255, 255, 0.95),
    0 0 12px rgba(255, 255, 255, 0.85),
    0 0 24px rgba(255, 255, 255, 0.7);
}

.loading-text .tip {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #1f4178;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-shadow:
    0 1px 2px rgba(255, 255, 255, 0.95),
    0 0 10px rgba(255, 255, 255, 0.75);
}

.progress-wrap {
  position: absolute;
  left: 50%;
  bottom: 28%;
  transform: translateX(-50%);
  width: min(720px, 70vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: rgba(13, 42, 92, 0.08);
  border: 1px solid rgba(13, 42, 92, 0.1);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.35);
}

.progress-bar .progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #1677ff, #25d4ff 80%, #b6f1ff);
  border-radius: 999px;
  transition: width 0.2s linear;
  box-shadow: 0 0 12px rgba(37, 212, 255, 0.6);
}

.progress-percent {
  font-size: 12px;
  font-weight: 600;
  color: #1f4178;
  letter-spacing: 1px;
  text-shadow:
    0 1px 2px rgba(255, 255, 255, 0.95),
    0 0 8px rgba(255, 255, 255, 0.7);
}
