.honor-and-qualification {
    margin-bottom: 25px;
}

.honor-and-qualification-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 20px;
    grid-gap: 20px;
}

.haq-card {
	/* width:307px; */
    /* width: 100%; */
    height: 320px;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.haq-card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.haq-card-img > img {
    width: 307px;
    height: 100%;
    display: block;
    transition: all 0.3s ease-in-out;
}

.haq-card-name {
    height: 50px;
    font-size: 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #F3F3F3;
    width: 100%;
}

.haq-card-name > span {
    width: 100%;
    margin-left: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.haq-card-nav {
    height: 50px;
    display: flex;
    align-items: center;
}

.haq-card-nav-button {
    width: 80px;
    height: 30px;
    margin-left: 10px;
    border: 1px solid #E5E5E5;
    box-sizing: border-box;
    text-align: center;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.haq-card-nav-button > span {
    font-size: 16px;
    line-height: 18px;
}

.haq-card-nav-button > img {
    margin-left: 6px;
    margin-right: 0;
}

.haq-card:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

.haq-card:hover .haq-card-name {
    color: #206BD1;
}

.haq-card:hover .haq-card-img > img {
    transform: scale(1.1);
}

.haq-card:hover .haq-card-nav-button {
    border: none;
    background-color: #206BD1;
    color: #fff;
}
.haq-card-product{
    height: 260px;
}
.haq-card-product .haq-card-name{
    border:none;
}
@media screen and (max-width: 900px) {
    .honor-and-qualification-content {
        grid-template-columns: repeat(2, 1fr);
    }
	.haq-card-product{
		height: 170px;
	}
	.haq-card-img{
		height: 130px;
	}
}
