/* Loading 动画样式 */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #121215;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loading-container {
  width: 100%;
  max-width: 100vw;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: absolute;
  top: 0;
}

.loading-progress-container {
  width: 100%;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.loading-progress-bar {
  width: 0%;
  height: 100%;
  background: #6FEDFF;
  border-radius: 2px;
  transition: width 0.3s ease;
  position: relative;
}

.loading-progress-bar::after {
 
}
.numbers-container {
  position: fixed;
  bottom: 10px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 1001;
}

.number {
  color: #1F1F23;
  font-size: 20px;
  font-weight: 800;
  transition: all 0.3s ease;
}

.number.active {
  color: #6FEDFF;
 
}
/* 主要内容初始隐藏 */
.main-website-content {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.main-website-content.show {
  opacity: 1;
}
/* 加载完成后的淡出动画 */
.loading-overlay.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-out;
  pointer-events: none;
}

