/* 查看图片大图 */
.image-modal {
    position: fixed;
    z-index: 1000; /* 确保模态框位于顶部 */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* 半透明背景 */
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-modal-content {
    max-width: 90%;
    max-height: 90%;
}

.image-modal-close {
    position: absolute;
    top: 4px;
    right: 60px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}