.zjd-gallery{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.zjd-gallery .large-image{
    transition: transform 0.5s;
}
.zjd-gallery .large-image img{
    width: 100%;
    height: auto;
    /*cover*/
    object-fit: cover;

}
.zjd-gallery .large-image:hover{
    /*transform: scale(1.5);*/
}
.thumbnails-wrapper{
    overflow: hidden;
    width: 400px;
    position: relative;
}
.btn-prev, .btn-next{
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    font-size: 30px;
    cursor: pointer;
    border:0;
    padding: 6px 6px;
    /*放在最上层*/
    z-index: 10000;
}
.btn-prev:hover, .btn-next:hover{
    background: rgba(0,0,0,0.5);
    color: #fff;
}
.btn-prev{
    left:0;
}
.btn-next{
    right:0;
}
.thumbnails{
    display: flex;
    flex-direction:  row;
    align-items: center;
    width: 1440px;
    position: relative;
}
.thumbnail{
    padding:0 10px 0 0;
    margin-bottom: 10px;
}
.thumbnail img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    transition: transform 0.5s;
}
.thumbnail img.active {
    border: 2px solid #000;
    box-shadow: 0 0 2px rgba(0,0,0,0.5);
}
.thumbnail img:hover {
    /*transform: scale(1.1);*/
}