#BANNER {
	position: relative;
	color: #FFF;
	height: 300px;
}

#BANNER>img {
	position: absolute;
	width: 100%;
	min-height: 600px;
	max-height:600px;
	z-index: 0;
	transform: translateY(-200px) scale(1);
}

.part{
	padding-top: 10rem;
	display: flex;
	justify-content: space-between;
	width: 1200px;
	margin: 0 auto;
	color: #FFF;
}

.part_left{
	width: 200px;
	height: 100%;
	background-color: #24262e;
	border-radius: 4px;
}
.part_left>p{
	font-size: 18px;
	padding: 21px 30px;
	font-size: 18px;font-weight: bold;
	border-bottom: #191A20 solid 1px;
}
.part_left li{
	padding: 15px 30px;
}
.active_tag{
	color: #D7B587;
}

.part_right{
	width: 950px;
}

.part_right>ul>li>a{
	cursor: pointer;
	padding: 30px;
	background-color: #24262e;
	border-radius: 4px;
	display: flex;
	align-items: center;
	margin-bottom: 1px;
}
.part_right li>a>img{
	width: 220px;
	min-width: 220px;
	height: 140px;
	border-radius: 4px;
	margin-right: 28px;
}
.new_infos{
	width: 600px;
}
.news_title{
	text-overflow: -o-ellipsis-lastline;
	  overflow: hidden;
	  text-overflow: ellipsis;
	  display: -webkit-box;
	  -webkit-line-clamp: 2;
	  line-clamp: 2;
	  -webkit-box-orient: vertical;
	font-size: 18px;
}
.news_content{
	font-size: 14px;
	color: #666976;
	margin: 21px 0;
}
.news_time{
	font-size: 14px;
	color: #666976;
	display: flex;
}

@media screen and (max-width:1000px) {
	.active_tag{
			font-size: 18px;
			position: relative;
		}
	.active_tag:after{
		content: '';
		position: absolute;
		width: 50%;
		height: 4px;
		background-color: #dcb785;
		bottom: -10px;
		left: 50%;
		border-radius: 10px;
		transform: translateX(-50%);
	}
	#BANNER{
		height: 10rem;
	}
	
	#BANNER>img{
		height: 10rem;
		min-height: 100%;
		object-fit: cover;
		transform: none;
	}
	.part{
		padding-top: 0;
		flex-wrap: wrap;
		width: 100%;
	}
	.part_left,.part_right{
		width: 100%;
	}
	.part_left{
		white-space: nowrap;
		font-size: 1.2em;
	}
	.part_left>p{
		padding: 30px .5rem;
		font-size: 1em;
	}
	.part_left ul{
		width: 95%;
		margin: 0 auto;
		font-size: 16px;
		flex-wrap: nowrap;
		overflow-x: scroll;
		display: flex;
	}
	.part_left li{
		padding: .5rem .5rem;

	}
	.part_right>ul>li>a {
		padding: .5rem .5rem;
		margin-bottom: 0;
		border-radius: 0;
	}
	.part_right li>a>img {
		width: 25%;
		min-width: 7rem;
		height: 5rem;
		margin-right: 10px;
		border-radius: 10px;
	}
	.news_title{
		overflow:hidden; 
		text-overflow:ellipsis;
		display:-webkit-box; 
		-webkit-box-orient:vertical;
		-webkit-line-clamp:1; 
		font-size: 16px;
	}
	.news_content{
		overflow:hidden; 
		text-overflow:ellipsis;
		display:-webkit-box; 
		-webkit-box-orient:vertical;
		-webkit-line-clamp:1; 
		font-size: 14px;
		margin: .5rem 0;
	}
	.news_time{
		font-size: .8em;
	}
}