.solution-half {
	margin-top: 2rem;
	min-height: 350px;
	max-height: 450px;
}

.news-mainImg {
	width: 100%;
	height: 100%;
}

.scroll-list {
	width: 95%;
	max-height: 450px;
	border: 0px solid #ddd;
	overflow: hidden;
}

.list-item {
	width:90%;
	min-height: 10rem;
	display: flex;
	padding: 10px;
	background-color: #e8e8e8;
	margin-bottom: 1.5rem;
	cursor:pointer;
}
.list-item:hover{
	background-color: #265da3;
}
.list-item:hover .date,
.list-item:hover .day,
.list-item:hover .month,
.list-item:hover .content,
.list-item:hover .title,
.list-item:hover .description {
    color: white;
}

.list-item .date {
	text-align: center;
	margin-right: 1rem;
	width: 10rem;
}

.list-item .day {
	font-size: 4rem;
	font-weight: bold;
	color: #999;
}

.list-item .month {
	font-size: 2rem;
	color: #999;
}

.list-item .content {
	flex: 1;
}

.list-item .title {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 10px;
	color: #666666;
	/*display: -webkit-box;*/
	-webkit-line-clamp: 1; /* 限制两行 */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
}

.list-item .description {
	font-size: 1rem;
	line-height: 1.8rem;
	color: #999999;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* 限制两行 */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
}

.flex_box{
	display:block;
	overflow: hidden;
	min-height:25rem;
}

.box-img60h{
	width:100%;
	height:auto;
	min-height: 50%;
	max-height:50%;
	overflow: hidden;
}
.box-img60h img{
	width:100%;
	height:auto;
}

.flex_box_content{
	min-height: 5rem;
	background-color: white;
	color: black;
	text-align: left;
	padding:2rem 2rem;
}
.flex_box_content a{
    text-decoration: none;
    color: darkslategray;
}
.flex_box_content .date{
	display:block;
	font-size: 1.5rem;
}
.flex_box_content .title{
	display:block;
	margin-top: 1rem;
    font-size: 1.2rem;
    color: #00000090;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* 限制两行 */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
}
.flex_box_content .more{
	display:block;
	margin-top: 1rem;
	/* 2025年2月11日 新闻一级页 注释
	font-size: 1.5rem;
	position: absolute;
	bottom: 2rem; */
}

.news2-list-box{
	margin-top:5rem;
}










/* 响应式样式：当屏幕宽度小于768px时 */
@media (max-width: 768px) {
	.solution-half {
	    margin-top: 0rem;
	    min-height: 25vh;
	    max-height: 45vh;
		margin-bottom: 1rem;
	}
	.scroll-list {
	    width: 100%;
	    max-height: 30rem;
	}
	.list-item {
	    width: 95%;
	    min-height: 4rem;
	    margin-bottom: 1rem;
	    padding: 8px;
	}
	.list-item .date {
		text-align: center;
		margin-right: 1rem;
		width: 4rem;
	}
	
	.list-item .day {
		font-size: 2rem;
		font-weight: bold;
		color: #999;
	}
	
	.list-item .month {
		font-size: 0.8rem;
		color: #999;
	}
	
	.list-item .content {
		flex: 1;
	}
	
	.list-item .title {
		font-size: 1rem;
		display: -webkit-box;
		-webkit-line-clamp: 1; /* 限制两行 */
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: normal;
	}
	.list-item .description {
	    font-size: 0.8rem;
	    line-height: 1.2rem;
	    width: 90%;
	}
	
	.flex_box {
	    height: 20rem;
	}
	.flex_box_content {
	    padding: 2rem 2rem; /*2025年2月19日 新闻速递 1->2 */
	}
	.flex_box_content .date {
	    font-size: 0.8rem;
	}
	.flex_box_content .title {
	    margin-top: 0.5rem;
	    font-size: 1.2rem;
	}
	.flex_box_content .more {
	    font-size: 0.8rem;
	    bottom: 1rem;
	}
	
	.solution {
		margin-bottom: 2rem;
	}
	
	.news2-list-box{
		margin-top:1rem;
	}
	
}