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

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

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