.image-gallery {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}
/* 单个图片项样式 */
.image-gallery-item {
    margin-bottom: 10px;
    box-sizing: border-box;
    text-align: center; /* 将图片水平居中 */
}


/* 图片样式 */
.image-gallery-item img {
    max-width: 100%;
    height: auto;
}
