/* 图片放大模态框 */
.zoom-img-modal{
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-color: #dadada7d;
    padding: 5% 0;
}

.zoom-img-modal.after-zoom{
    display: block;
}

.zoom-img-modal .img-body{
    max-width: 1200px;
    margin: auto;
    max-height: 100%;
    overflow: auto;
    box-shadow: 4px 4px 8px #bbbbbb;
    text-align: center;
    background-color: #ffffff;
    padding: 24px;
}
.zoom-img-modal .img-body img{
    height: 100%;
    cursor: zoom-out;
    min-height: 200px;
}