@media (max-width: 767px) {
    /* 1. 强制容器取消单行锁定 */
    .bdp-row {
        display: flex !important;
        flex-wrap: wrap !important;
    }

    /* 2. 强制每一格占据 50% 宽度 */
    .bdp-row .bdp-columns.bdp-masonry {
        width: 50% !important;
        max-width: 50% !important;
        flex: 0 0 50% !important;
        float: left !important;
        padding: 5px !important; /* 给中间留点缝隙 */
        box-sizing: border-box !important;
    }

    /* 3. 隐藏手机端不需要的冗余信息（可选，让画面更干净） */
    .bdp-row .bdp-columns .bdp-post-content {
        padding: 10px !important;
    }
}