	#news {
		width: 1200px;
		margin: 0 auto;
	}
	
	#news .item {
		width: 100%;
	}
	
	#news .item {
		width: 100%;
		display: flex;
		flex-flow: row nowrap;
		justify-content: space-between;
		align-items: top;
		padding: 10px 20px;
		border-bottom: 1px solid #C3C3C3;
	}
	
	#news .item .left {
		width: 250px;
		min-height: 150px;
	}
	
	#news .item .left img {
		margin: 15px;
		width: 220px;
		height: auto;
	}
	
	#news .item .right {
		-moz-box-flex: 1;
		-webkit-box-flex: 1;
		flex: 1;
	}
	
	#news .item .right .title {
		line-height: 40px;
		height: 44px;
		color: #333;
		font-size: 20px;
		font-weight: 600;
	}
	
	#news .item .right .descript {
		width: 100%;
		height: 50px;
		font-size: 15px;
		line-height: 24px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}
	
	#news .item .right .descript a {
		color: #969696;
	}
	
	#news .item .right .time {
		font-size: 14px;
		line-height: 20px;
		color: #969696;
		margin-top: 10px;
	}
	
	#news .last-item {
		margin: 40px;
		border-bottom: none;
		font-size: 0px;
		text-align: center;
		width: 100%;
		text-align: center;
		cursor: pointer;
	}
	
	.last-item .pre,
	.last-item .next {
		margin-left: 10px;
		margin-right: 10px;
		width: 70px;
		height: 30px;
		line-height: 30px;
		display: inline-block;
		font-size: 14px;
		border: 1px solid #C3C3C3
	}
	
	.last-item .number {
		
		height: 26px;
		width:28px;
		text-align: center;
		line-height: 26px;
		display: inline-block;
		font-size: 14px;
	}
	
	.hover {
		color: #FC6C05;
	}
	
	#newslist {
		width: 1000px;
		margin: 0 auto;
		padding: 30px;
		background: #f5f5f5;
	}
	
	#newslist .list p {
		margin-bottom: 6px;
		font-size: 16px;
		line-height: 28px;
		color: #635E5E;
		text-indent: 2rem;
	}
	
	#newslist .list .title {
		width: 100%;
		text-align: center;
		font-size: 40px;
		line-height: 50px;
		font-size: 20px;
		font-weight: 700;
		color: #333;
	}
	
	#newslist .list .img {
		max-width: 600px;
	}
	
	#newslist .list .img img {
		width: 100%;
		height: auto;
	}
	
	@media only screen and (min-width: 300px) and (max-width: 640px) {
		#newslist,
		#news {
			width: 100%;
			box-sizing: border-box;
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
		}
		#news .item {
			box-sizing: border-box;
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
		}
		#news .item .left {
		
			display: none;
		}
		#news .item .left img {
			margin: 15px 5%;
			width: 90%;
			height: auto;
		}
		#news .item .right .title {
			overflow: hidden;
			text-overflow: ellipsis;
			display: -webkit-box;
			-webkit-box-orient: vertical;
			-webkit-line-clamp: 1;
		}
		
		#news .last-item {
			margin:40px auto;
		}
		.last-item .number{
			width:20px;
		}
		#newslist .list .title {
			line-height: 30px;
		}
		#newslist .list .img {
			text-indent: 0;
		}
		#newslist .list .img img {
			width: 100%;
		}
	}