.zjd_term_gallery.list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.zjd_term_gallery .item {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease; /* 添加过渡效果 */
}
.zjd_term_gallery .item:hover {
    transform: scale(1.1); /* 悬停时放大整个item */
    cursor: pointer;
}
.zjd_term_gallery .item a {
    display: block;
    text-decoration: none;
}
.zjd_term_gallery .item img {
    width: auto; /* 宽度自动调整 */
    object-fit: contain; /* 保持图片的宽高比 */
}

.zjd_term_gallery .title {
    font-size: 20px;
    font-weight: bold;
}