/* ========== 全局图片灯箱样式 ========== */
.img-lightbox-wrap{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin:12px 0;
}
.lightbox-img{
    cursor:zoom-in;
    border-radius:10px;
    transition:transform 0.18s ease;
}
.lightbox-img:hover{
    transform:scale(1.02);
}

/* 灯箱遮罩 */
.lightbox-mask{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.88);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:9999;
    padding:20px;
}
.lightbox-inner{
    position:relative;
    max-width:92vw;
    max-height:92vh;
    width:auto;
    height:auto;
    cursor:grab;
}
.lightbox-inner img{
    display:block;
    max-width:92vw;
    max-height:92vh;
    border-radius:8px;
    user-select:none;
    pointer-events:none;
}
.lightbox-close{
    position:absolute;
    top:-12px;
    right:-12px;
    width:32px;
    height:32px;
    border-radius:999px;
    background:#ffffff;
    color:#111111;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:18px;
    font-weight:bold;
    box-shadow:0 2px 8px rgba(0,0,0,0.45);
    z-index:10000;
}
.lightbox-close:hover{
    background:#f0f0f0;
}