body {
    margin: 0;
    padding: 0;
    background-image: url('../img/beijing.jpg'); /* 设置背景图片 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-size: cover; /* 调整图片大小以覆盖整个视口 */
    background-position: center center; /* 居中图片 */
    background-attachment: fixed; /* 固定背景图片，不随滚动条滚动 */
}

#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1); /* 白色蒙版，完全不透明 */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 999;
}

#progressBar {
    width: 80%;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.7); /* 磨砂玻璃样式背景 */
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    backdrop-filter: blur(5px); /* 磨砂玻璃效果 */
    /*
    background: hsla(0, 0%, 100%, 0.7);
    filter: blur(5px); 
    */
}

#progressBarInner {
    height: 100%;
    background-color: rgba(0, 255, 0, 0.6); /* 进度条颜色 */
    transition: width 0.5s ease-in-out; /* 动画效果 */
}

#loadingText {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.5); /* 半透明文本颜色 */
    backdrop-filter: blur(5px); /* 磨砂玻璃效果 */
    animation: pulse 2s infinite; /* 文本脉冲动画 */
}

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