﻿.header{
	position: static;
	background-color: rgb(32,33,36);
	overflow: hidden;
}

.inner-banner{
	height: 200px;
}

.news_list {
	margin:0;
	padding:0;
	background:#fff;
}
.news_list li {
	padding:20px;
	font-size:14px;
	line-height:30px;
	background-color: #f8f8f8;
	margin-bottom: 12px;
}
.news_list li>*{
}
.news_list li .img {
	width: 35%;
	max-width: 380px;
	background-size: cover;
	background-position: center center;
	height: 212px;
}

.news_list li .info-panel{
	width: 64%;
}
.news_list li .title {
	font-size: 18px;
	color:#333;
	line-height:48px;
	font-weight:normal
}
.news_list li .intro {
	max-height:120px;
	overflow:hidden;
	line-height: 30px;
	color: #666666;
}
.news_list li .datetime {
	line-height:30px;
	color:#999999;
	margin-top: 5px;
}

.news_list li .datetime>*{
	display: inline-block;
	line-height: 16px;
	background: no-repeat left center;
}

.news_list li .datetime .date{
	padding-left: 28px;
	padding-right: 40px;
	background-image: url("../img/time-icon.png");
}

.news_list li .datetime .browse{
	padding-left: 28px;
	background-image: url("../img/browse-icon.png");
}

.news_list li .detail-btn{
	color:white;
	width: 140px;
	line-height: 40px;
	text-align: center;
	background-color: #108ee9;
	display: block;
	border-radius: 4px;
	margin-top: 12px;
	transition: background 0.2s;
}

.news_list li .detail-btn:hover{
	background-color: #40a5ed;
}

.list_page li{
	margin: 0 5px;
}

.list_page li a{
	background-color: white;
	border-radius: 4px;
	width: 30px;
	line-height: 30px;
	height: 30px;
	border: 1px solid #e9e9e9;
}

.list_page li.thisclass a{
	background-color: #108ee9;
	color: white;
}

@media screen and (max-width: 850px) {
	.news_list li .img{
		float: none;
		width: 100%;
		max-width: 100%;
		height: 360px;
	}
	.news_list li .info-panel{
		float: none;
		width: 100%;
	}
	.news_list li .detail-btn{
		margin-left: auto;
		margin-right: auto;
	}
}