.nav-bar-element {
    background-color: #FFFFFF;
}

.about-detail {
    padding: 40px 0;
    text-align: left;
}

.about-detail img {
    max-width: 100%;
    display: inline-block;
}

.honor-info-element {
    width: 1300px;
    margin: 0 auto;
    position: relative;
    text-align: left;
    padding-bottom: 150px;
}

.honor-info-element .honor-image {
    width: 645px;
    height: 440px;
}

.honor-info-element .honor-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.honor-info-element .honor-info {
    color: #FFFFFF;
    background-color: #175fac;
    width: 750px;
    height: 410px;
    position: absolute;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    right: 0;
    top: 80px;
    box-sizing: border-box;
    padding: 60px;
    font-size: 18px;
}

.honor-info-element .honor-info h1 {
    font-size: 36px;
}

.honor-info-element .honor-info h2 {
    font-size: 30px;
}

.honor-cate-element {
    width: 100%;
    display: flex;
    justify-content: center;
}

.honor-cate-element .cate-item {
    display: block;
    cursor: pointer;
    box-sizing: border-box;
    width: 285px;
    height: 70px;
    border: 1px solid #434343;
    text-align: center;
    line-height: 70px;
    color: #434343;
    font-size: 30px;
    transition: all .4s;
    background-color: #FFFFFF;
    margin: 0 80px;
}

.honor-cate-element .cate-item:nth-child(1) {
    margin-left: 0;
}

.honor-cate-element .cate-item:nth-last-child(1) {
    margin-right: 0;
}

.honor-cate-element .cate-item:hover {
    background-color: #175fac;
    border-color: #175fac;
    color: #FFFFFF;
}

.honor-cate-element .cate-item.active {
    background-color: #175fac;
    border-color: #175fac;
    color: #FFFFFF;
}

.honor-list {
    display: flex;
    flex-wrap: wrap;
    padding: 75px 0;
    width: 1520px;
    margin: 0 auto;
}

.honor-list .honor-item {
    width: 350px;
    display: block;
    margin-left: 30px;
    cursor: pointer;
}

.honor-list .honor-item:nth-child(4n+4) {
    margin-right: 0;
}

.honor-list .honor-item .honor-image {
    width: 330px;
    margin-left: auto;
    margin-right: auto;
    height: 440px;
}

.honor-list .honor-item .honor-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.honor-list .honor-item .honor-info {
    text-align: center;
    display: flex;
    align-items: center;
    margin-top: 15px;
    background-color: #FFFFFF;
    width: 350px;
    box-sizing: border-box;
    padding: 10px 35px;
    justify-content: center;
    transition: background-color .4s;
    color: #000000;
    height: 100px;
}

.honor-list .honor-item:hover .honor-info {
    background-color: #175fac;
    color: #FFFFFF;
}

.honor-list .honor-item .honor-info .title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* 显示的行数 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
}