/*
侧栏图片展示小工具样式
*/

.zib-post-images-single {
    overflow: hidden;
    border-radius: 6px;
}

.zib-post-images-single img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.zib-post-images-single:hover img {
    transform: scale(1.03);
}
