/*!* 蒙层样式 *!*/
#overlay {
    display: none; /* 默认隐藏 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* 半透明黑色背景 */
    z-index: 1000;
    text-align: center;
}
@media (max-width: 480px){
    #overlayImg {
        margin-top: 50% !important;
    }
    #closeButton {
        top: 15% !important;
    }
}
#overlayImg {
    max-width: 90%;
    max-height: 90%;
    margin-top: 5%;
    transition: transform 0.2s ease; /* 图片缩放过渡效果 */
}

#closeButton {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

#closeButton:hover {
    color: #ccc;
}