/* 政府机构页面 - 移动端网格适配 */
@media screen and (max-width: 768px) {
    .deptPage .boxA .bd ul {
        margin: 0 -8px;
    }
    .deptPage .boxA .bd ul li {
        width: 50%;  /* 每行2个 */
        padding: 0 8px;
        box-sizing: border-box;
    }
}
@media screen and (max-width: 480px) {
    .deptPage .boxA .bd ul li {
        width: 100%; /* 每行1个 */
    }
}