#splashScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white; /* 白色背景 */
    display: flex;
    align-items: center;
    justify-content: center; /* 居中对齐 */
    z-index: 9999;
}

.image {
    position: absolute;
    width: 35vw; /* 35% 视口宽度 */
    height: 35vw; /* 根据宽度设置高度 */
    max-width: 250px; /* 最大宽度限制 */
    max-height: 250px; /* 最大高度限制 */
    opacity: 0; /* 初始隐藏 */
    /* transition: opacity 0.5s ease-in-out; 渐变效果 */
}
.active {
    opacity: 1; /* 显示的图片 */
}