.image-container1 {
    display: flex;
    justify-content: space-between;
}

.image-box1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%; /*稍微减小以避免换行 */
    margin-bottom: 20px;
}
.image-box1 img {
    width: 100%;
    height: auto;
    margin-top: auto;
    align-self: flex-end; /* 图片底部对齐 */
}

.image-box1 p {
    text-align: center;
    font-weight: bold;
    font-size: 15px;
}
