.honor {
    padding: 100px 0px 70px 0px;
}

.honor h3 {
    text-align: center;
    color: #333;
    font-weight: bolder;
    margin-bottom: 70px;
}

.honorUl {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.honorUl li {
    width: 31.6%;
    margin-right: 2.6%;
}

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

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

.imgBox {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #F8F9FB;
    border: 1px solid #EDF0F4;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.imgBox img {
    display: block;
    height: 94%;
    width: 90%;
    object-fit: contain;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.imgBox:hover img {
    transform: scale(1.1);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.honorUl p {
    margin-top: 14px;
    text-align: center;
    color: #333;
}

/* 大图 */
.bigImg {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: none;
}

.bigImgBg {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bigImgCon {
    width: 90%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bigImgCon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 767px) {

    /* 大图 */
    .bigImgCon {
        width: 90%;
        height: 90%;
    }

    .bigImgCon img {
        width: 100%;
        height: auto;
    }
}



/* 适配 */
@media (max-width: 1440px) {
    .honor {
        padding: 70px 0px 50px 0px
    }

    .honor h3,
    .honorUl {
        margin-bottom: 60px;
    }
}

@media (max-width: 992px) {

    .honor h3 {
        font-size: 26px;
    }

    .honor {
        padding: 40px 0px;
    }

    .honor h3,
    .honorUl {
        margin-bottom: 40px;
    }

    .mPageBox {
        width: 100%;
    }

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

@media (max-width: 767px) {

    .honor h3 {
        font-size: 20px;
    }

    .honor {
        padding: 30px 0px;
    }

    .honor h3,
    .honorUl {
        margin-bottom: 30px;
    }

    .honorUl {
        justify-content: space-between;
    }

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

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

    .imgBox {
        height: 150px;
    }

    .honorUl p {
        margin-top: 10px;
    }
}