*{
    margin: 0;
    padding: 0;
}
body{
    background-color: #f1f2f3;
}
li{
    list-style: none;
}
.honor-box{display: flex;flex-wrap: wrap;justify-content: flex-start;padding: 1vw 4vw;}
.honor-box>li{
    /* width: 23.4%; */
    width: 18.6%;
    margin-right: 1.73%;
    margin-bottom: 2.13%;
    transition: all 0.6s;
    padding: 30px 30px 20px;
    background-color: #fff;
    cursor: pointer;
}
.honor-box>li:hover{
    box-shadow: 0px 15px 20px 0px rgba(0, 89, 156, 0.2);
}
.honor-box>li:nth-child(5n){
    margin-right: 0;
}
.honor-box>li>div:first-child{
    overflow: hidden;
}
.honor-box>li>div:first-child>img{
    max-width: 100%;
    width: 100%;
    transition: all 0.5s;
}
.honor-box>li>div:first-child:hover>img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}
.honor-box>li>div:last-child{}
.honor-box>li>div:last-child>span{
    font-size: 20px;
    color: #333;
    padding-top: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}
.honor-box>li>div:last-child>span:hover{
    color: #00428E;
}
@media screen and (max-width: 767px){
    .honor-box{
        padding: 5vw 4vw;
    }
    .honor-box>li{
        width: 49%;
        padding:10px;
    }
    .honor-box>li:nth-child(5n){
        margin-right: 1.73%;
    }
    .honor-box>li:nth-child(2n){
        margin-right: 0;
    }
}