/* 左右布局容器 */
.product .prolist_wraper .prolist-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* 左侧菜单容器 - 预留 */
.product .prolist_wraper .prolist-sidebar {
    flex: 0 0 280px;
}

/* 右侧内容区 */
.product .prolist_wraper .prolist-content {
    flex: 1;
    min-width: 0;
}

/* 响应式 */
@media screen and (max-width: 768px) {
    .product .prolist_wraper .prolist-layout {
        flex-direction: column;
    }
    .product .prolist_wraper .prolist-sidebar {
        flex: auto;
        width: 100%;
    }
}