.honor_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
}
.banner_content {
	position: absolute;
	left: 0;
	top: 0;
	padding-top: 193px;
	padding-left: 295px;
	height: 100%;
	width: 100%;
}
.banner_content .banner_title {
	font-size: 80px;
	font-weight: 700;
}

.honor_item {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.honor_img {
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
}

.honor_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.honor_title {
    padding: 15px;
    text-align: center;
    font-size: 20px;
    color: #333;
    /* font-weight: bold; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (max-width: 1024px) {
    .honor_list {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Banner区域适配 */
	.banner {
		height: 300px;
		background-size: cover;
		background-position: center;
	}
	.banner_content {
		padding-top: 0px;
		padding-left: 24px;
		text-align: left;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	.banner .banner_title {
		font-size: 36px;
	}
	.banner .banner_subtitle {
		font-size: 18px;
		margin-bottom: 20px;
	}
	.banner .banner_btn {
		width: 160px;
		height: 40px;
		font-size: 16px;
    line-height: 40px;
    text-align: center;
	}
    .honor_title{
        font-size: 16px;
        font-weight: 700;
    }
}
