.con {
    display: flex;
    justify-content: space-between;
    background: #FAFBFC;
}

/* 左边 */
.leftWidth {
    width: 260px;
}

.leftBox {
    width: 26%;
    background: #fff;
}

.leftCon {
    width: 100%;
    padding: 50px 26px 0px 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.leftCon>h3 {
    margin-bottom: 20px;
}

.leftUl>li {
    border-bottom: 1px solid #EDF0F4;
}

.leftLi {
    display: flex;
    align-items: flex-start;
    padding-bottom: 16px;
    cursor: pointer;
    padding-top: 20px;
}

.leftLi i {
    display: block;
    width: 18px;
    height: 18px;
    background: url(../images/cpIcon.png)no-repeat center center;
    background-size: 100% 100%;
    flex-shrink: 0;
    margin-right: 12px;
    margin-top: 2px;
}

.leftLi p {
    font-weight: bold;
    color: #333;
    flex-grow: 1;
}

.leftLiBtn {
    display: block;
    width: 18px;
    height: 18px;
    position: relative;
    margin-left: 10px;
    flex-shrink: 0;
    margin-top: 2px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.leftLiBtn span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
}

.leftLiBtn span:first-child {
    width: 12px;
    height: 2px;
    border-radius: 10px;
    background: #82CBD9;
}

.leftLiBtn span:last-child {
    width: 2px;
    height: 12px;
    border-radius: 10px;
    background: #82CBD9;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.leftLiBtn.active span:last-child {
    height: 0px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/* 折叠菜单 */
.leftOl {
    background: #F8F9FB;
    display: none;
}

.leftOl li {
    padding: 12px 16px;
    color: #666;
    cursor: pointer;
}

.leftOl li.active,
.leftOl li:hover {
    background: #82CBD9;
    color: #fff;
    font-weight: bold;
}

/* 技术咨询 */
.consult {
    margin-top: 25px;
    padding-bottom: 80px;
}

.consult>div {
    text-align: center;
    padding: 24px 0px;
    color: #fff;
    background: url(../images/consultBg.png)no-repeat center center;
    background-size: cover;
}

.consult h3 {
    margin-top: 2px;
    font-family: "D-DIN-PRO";
    letter-spacing: 1px;
}



/* 右边 */
.rightBox {
    width: 72%;
    padding: 50px 17% 50px 0px;
    text-align: center;
}

.cpList {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cpList li {
    width: 31.5%;
    background: #fff;
    margin-right: 2.75%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.cpList li:nth-child(3n) {
    margin-right: 0px;
}

.cpList li:nth-child(n+4) {
    margin-top: 50px;
}

.cpList a {
    display: block;
}

.cpList .pubImgBox {
    padding-top: 80%;
    border-bottom: 1px solid #EDF0F4;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.cpList p {
    text-align: center;
    padding: 18px 14px;
    color: #333;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.cpList p::after {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: block;
    width: 12px;
    height: 12px;
    background: url(../images/point1.png)no-repeat center center;
    background-size: 100% 100%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .cpList li:hover {
        transform: translateY(-10px);
        box-shadow: 0px 6px 20px rgba(3, 28, 36, 0.08);
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

    .cpList li:hover p {
        color: #82CBD9;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

    .cpList li:hover p::after {
        background: url(../images/point2.png)no-repeat center center;
        background-size: 100% 100%;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

    .cpList li:hover .pubImgBox {
        border-bottom: 1px solid #82CBD9;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

    .cpList .pubImgBox:hover img {
        transform: scale(1);
    }
}



/* 适配 */
@media (max-width: 1680px) {
    .rightBox {
        padding-right: 12%;
    }
}

@media (max-width: 1440px) {
    .rightBox {
        padding-right: 6%;
    }

    .leftWidth {
        width: 86%;
    }

    .cpList li:nth-child(n+4) {
        margin-top: 36px;
    }
}

@media (max-width: 1200px) {
    .leftCon {
        padding-right: 6%;
    }

    .rightBox {
        padding-right: 4%;
    }

    .rightBox,
    .leftCon {
        padding-top: 38px;
    }
}

@media (max-width: 992px) {
    .con {
        display: flex;
        flex-direction: column;
        justify-content: unset;
    }

    .leftBox,
    .rightBox {
        width: 100%;
    }

    .leftBox {
        padding: 30px 4% 20px 4%;
    }

    .leftCon {
        padding: 0px;
        flex-wrap: wrap;
        flex-direction: unset;
    }

    /*  */
    .consult {
        padding-bottom: 0px;
    }

    .leftWidth {
        width: 100%;
    }

    .rightBox {
        padding: 40px 4%;
    }
}

@media (max-width: 767px) {
    .leftCon>h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .leftLi {
        padding: 12px 0px 8px 0px;
        align-items: center;
    }

    .leftLi i {
        margin-top: 0px;
        width: 14px;
        height: 14px;
        margin-right: 10px;
    }

    .leftOl li {
        padding: 10px 12px;
    }

    .consult {
        margin-top: 16px;
    }

    .consult>div {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0px;
    }

    .consult h3 {
        margin-left: 14px;
        margin-top: 0px;
    }

    .rightBox {
        padding: 20px 4%;
    }

    .cpList {
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .cpList li {
        width: 48%;
        margin: 0px !important;
    }

    .cpList li:nth-child(n+3) {
        margin-top: 20px !important;
    }

    .cpList p {
        padding: 14px 10px;
    }

    .mPageBox {
        width: 100%;
    }
}