/* 图片大小修复：调整红框内的图片大小与右边两个图片一致并保持水平对齐 */

/* 修复中间图片过大的问题 - 精确定位34%宽度的图片 */
.image_item-ff7d7[style*="--width: 34%"] {
    --width: 20% !important; /* 从34%调整到20%，与右边图片大小一致 */
    width: 20% !important;
    max-width: 20% !important;
}

/* 通过ID精确定位问题图片 */
#WsYxfzdp .image_item-ff7d7[style*="34%"] {
    --width: 20% !important;
    width: 20% !important;
    max-width: 20% !important;
}

#DxKkvNoE .image_item-ff7d7[style*="34%"] {
    --width: 20% !important;
    width: 20% !important;
    max-width: 20% !important;
}

/* 确保所有图片水平对齐 */
.page-layout-row-inner-ab83f {
    align-items: center !important;
}

/* 更通用的34%图片修复 */
div[style*="--width: 34%"] {
    --width: 20% !important;
    width: 20% !important;
}

/* 移动端适配 */
@media (max-width: 750px) {
    .image_item-ff7d7[style*="--width: 34%"],
    #WsYxfzdp .image_item-ff7d7,
    #DxKkvNoE .image_item-ff7d7 {
        --width: 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* 额外的通用图片大小调整 */
.img_wrapper-eb43b .image_item-ff7d7[style*="34%"] {
    --width: 20% !important;
    width: 20% !important;
}
