.imgnews {
	width: 100%;
	/*height: 250px;*/
}

.imgnews a {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.imgnews .text {
	flex: 1;
	height: 250px;
	padding-left: 15px;
	margin-right: 30px;
}

.imgnews .text .title {
	margin-top: 10px;
	font-size: 24px;
	font-weight: bold;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.imgnews:hover .text .title {
	color: #133984;
}

.imgnews .text .time {
	font-size: 18px;
	margin-top: 20px;
}

.imgnews .text .desc {
	margin-top: 20px;
	text-align: justify;
	text-justify: distribute;
	line-height: 32px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	color: #616161;
	overflow: hidden;
}

.imgnews .image {
	width: 350px;
	height: 250px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.newslist {
	box-sizing: border-box;
	margin-top: 40px;
}

.newslist ul {
	width: 100%;
}

.newslist ul li {
	width: 100%;
	height: 120px;
	box-sizing: border-box;
	margin: 30px 0;
	background-color: #f8f8f8;
}

.newslist ul li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.newslist ul li:hover {
	background-color: #2280c4;
}

.newslist ul li .time {
	width: 120px;
	height: 120px;
	padding: 10px;
	box-sizing: border-box;
}

.newslist ul li .time .timebox {
	width: 100%;
	height: 100%;
	background-color: #2280c4;
	color: white;
	text-align: center;
}

.newslist ul li:hover .time .timebox {
	border-right: 1px solid white;
}

.newslist ul li .time .timebox .day {
	width: 100%;
	height: auto;
	line-height: 70px;
	font-size: 50px;
}

.newslist ul li .time .timebox .month {
	width: 100%;
	height: auto;
	line-height: 16px;
	font-size: 16px;
}

.newslist ul li .content {
	flex: 1;
	height: 100px;
	overflow: hidden;
	padding: 10px;
}

.newslist ul li .content .title {
	font-size: 20px;
	font-weight: bold;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	line-height: 40px;
}

.newslist ul li:hover .content .title {
	color: white;
}

.newslist ul li .content .desc {
	text-align: justify;
	text-justify: distribute;
	line-height: 36px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: #616161;
	overflow: hidden;
	line-height: 30px;
}

.newslist ul li:hover .content .desc {
	color: white;
}

.paging {
	width: 100%;
	text-align: center;
	margin-top: 40px;
}

.paging a {
	display: inline-block;
	padding: 10px 15px;
	border: 1px solid #616161;
	border-radius: 6px;
}

.paging a.active {
	background-color: #2280c4;
	border: 1px solid #2280c4;
	color: white;
}

.paging a:hover {
	background-color: #2280c4;
	border: 1px solid #2280c4;
	color: white;
}

.paging span {
	display: inline-block;
	padding: 10px;
}