html body {
    background: #f7f7f7;
}
.two-banner .word-fix h1 {
    color: #e5002d !important;
}
.two-banner .word-fix p {
    color: #e5002d !important;
}

/*荣誉列表*/
.honor-list {
    margin:2% 0;
}
.honor-list ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2%;
}

.honor-list ul li {
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 23.5%;
    background: #fff;
    border-radius: 4px;
    margin-bottom: 2%;
    padding:2%;
    background: #fff;
    text-align: center;
}
.honor-list ul li a {
    display: block;
    width: 100%;
}
.honor-list ul li .photo {
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    position: relative;
}
.honor-list ul li .photo .photo-box {
	position: absolute;
    top: 0%;
    left: 0%;
	width:100%;
	height:100%;
	display: table-cell;
}
.honor-list ul li .photo .photo-box img {
    max-width: 100%;
    max-height: 100%;
    transition: all 0.6s ease;
    vertical-align: bottom;
}
.honor-list ul li .photo .photo-box:after {
    opacity: 0;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1;
    transition: all 0.3s;
}

.honor-list ul li  h3 {
    width: 100%;
    height: 70px;
    padding: 15px 0;
    font-size: 22px;
    color: #333;
    line-height: 1.4;
}
.honor-list ul li:hover h3 {
    color: #e4002b;
}

@media screen and (max-width:1024px){
.honor-list {
    margin:2% 0;
}
.honor-list ul {
    gap: 2%;
}

.honor-list ul li {
    width: 49%;
    border-radius: 4px;
    margin-bottom: 2%;
    padding:2%;

}

.honor-list ul li .photo {
    width: 100%;
    padding-top: 100%;
}
.honor-list ul li .photo .photo-box {
}
.honor-list ul li .photo .photo-box img {
    max-width: 100%;
    max-height: 100%;
    transition: all 0.6s ease;
}
.honor-list ul li .photo .photo-box:after {
    opacity: 0;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1;
    transition: all 0.3s;
}

.honor-list ul li  h3 {
    height: 70px;
    padding: 15px 0;
    font-size: 16px;
}
    
}