﻿/*圖片檢視視窗*/
.viewer {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.9);
    z-index: 9999;
}

    .viewer.show {
        display: flex;
    }

#viewerImg {
    max-width: 95vw;
    max-height: 92vh;
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
}

.v-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: 22px;
    line-height: 40px;
    cursor: pointer;
}
/*圖片檢視視窗*/
