.sub_nav_wp{
    background: #F9F9F9!important;
}


.honor-list{
    display: flex;
    flex-wrap: wrap;
}
.honor-list li{
    width: 23.8%;
    margin: 0px 1.6% 60px 0px;
    border: none;
}
.honor-list li:nth-child(4n){
    margin-right: 0px;
}
.honor-list li a{
    height: auto;
}
.honor-list .imgBox{
    padding: 10px;
    border: 1px solid #DDDDDD;
}
.honor-list .imgBox>div{
    width: 100%;
    padding-top: 80%;
    overflow: hidden;
    position: relative;
}
.honor-list .imgBox img{
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.honor-list .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;
}
.honor-list li span{
    display: block;
    text-align: center;
    margin-top: 18px;
    color: #333;
    font-size: 16px;
}

@media (max-width: 900px){
    .honor-list li{
        width: 48%;
        margin: 0px 4% 40px 0px;
    }
    .honor-list li:nth-child(2n){
        margin-right: 0px;
    }
    .honor-list li span{
        margin-top: 10px;
        font-size: 14px;
    }
}