
.honor_box{
    width: 100%;
    padding: calc(10px + 3rem) 0;
}
.honor{
    max-width: 1740px;
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
.honor_left{
    flex: 1;
    padding-left: calc(19px + 5rem);
    padding-top: calc(36px + 5rem);
}
.honor_nav{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(15px + 2rem);
}

.honor_nav_item a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(1px + 1.5rem);
font-family: Source Han Sans, Source Han Sans;
font-weight: 350;
font-size: calc(10px + 0.5rem);
color: #333333;
line-height: 1;
}
.honor_nav_item img{
    width: calc(4px + 1.5rem);
}
.honor_nav_item_act a{
    font-family: Source Han Sans, Source Han Sans;
    font-weight: 350;
    font-size: calc(6px + 1.5rem);
    color: #007BA3;
    line-height: 1;
}

.honor_right{
    width: 69.4253%;
}
.honor_list{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: calc(6px + 1rem);
    row-gap: calc(10px + 2rem);
}

.honor_item{
    width: 31.6225%;
    height: calc(80px + 20rem);
    background: #F6F9FE;
box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.05);
border: 1px solid #D8D8D8;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: calc(5px + 0.5rem) 0;
cursor: pointer;
border-bottom: calc(2px + 0.1rem) #D8D8D8 solid;
transition: .3s;
}
.honor_pic {
    width: calc(55px + 12rem);
    /*height: calc(63px + 15rem);*/
    margin: auto;
}
.honor_pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.honor_item .p1{
    width: 80%;
font-family: Source Han Sans, Source Han Sans;
font-weight: 350;
font-size: calc(4px + 0.5rem);
color: #666666;
line-height: calc(10px + 0.5rem);
text-align: center;
border-top: 1px #D8D8D8 solid;
padding-top: calc(2px + 0.5rem);
transition: .3s;
}

.honor_item:hover{
    border-bottom-color: #007BA3;
}

.honor_item:hover .p1{
    color: #007BA3;
}

@media screen and (max-width: 1100px){
    .honor{
        margin: auto !important;
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 5rem);
    }
    .honor_left{
        padding: 0;
    }
    .honor_nav_item a{
        font-size: calc(10px + 1rem);
    }
    .honor_nav_item img {
        width: calc(12px + 1.5rem);
    }
    .honor_nav_item_act a{
        font-size: calc(16px + 1rem);
    }
    .honor_right{
        width: 100%;
    }
    .honor_list{
        justify-content: space-between;
    }
    .honor_item{
        width: 48.5%;
    }
    .honor_pic {
        width: calc(55px + 19rem);
        height: calc(63px + 30rem);
        
    }
    .honor_item .p1{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
}