/* 定制化方案图标区：每行4个 */
.productFooter {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;        /* 行间距30px，列间距20px */
    justify-items: center;
    align-items: center;
    margin-top: 40px;
}

/* 每个图标卡片的样式（可选，让内容更整齐） */
.productFooterBox {
    text-align: center;
    width: 100%;
}

.productFooterBox img {
    max-width: 200px;
    height: auto;
    margin-bottom: 12px;
}

/* 响应式：平板设备每行2个 */
@media screen and (max-width: 992px) {
    .productFooter {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* 手机设备每行1个 */
@media screen and (max-width: 576px) {
    .productFooter {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.title2{
    margin-top:30px;
}
