.honor_box{
    width: 100%;
}

.honor{
    max-width: 1588px;
    width: 90%;
    margin: auto;
    padding: calc(10px + 0.5rem) 0;
    display: flex;
    justify-content: space-between;
    gap: calc(10px + 3rem);
}

.honor_right{
    flex: 1;
    padding-top: calc(25px + 0.5rem);
}

.honor_list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.honor_item{
    width: 31.33333%;
    margin: 0 1% 20px 1%;
    padding: calc(5px + 0.25rem) calc(5px + 0.25rem) 0 calc(5px + 0.25rem);
    border: 1px solid #eeeeee;
    cursor: pointer;
}
.honor_pic {
    width: 100%;
    height: calc(123px + 20rem);
    overflow: hidden;
}
.honor_pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.honor_item p{
    text-align: center;
    color: #000;
    line-height: calc(10px + 1.5rem);
    font-weight: normal;
    font-size: calc(6px + 0.5rem);
}

.honor_item:hover img{
    transform: scale(1.1);
}