.news, .aside {
  display: inline-block;
  margin-top: 20px;
  vertical-align: top;
}

/*新闻*/

.news {
  border: 1px solid #eeeeee;
  width: 940px;
  margin-right: 15px;
  padding: 0 20px;
  box-sizing: border-box;
  min-height: 1260px;
}

/*标题*/

.news .title {
  margin: 40px 0;
  font-size: 18px;
  font-weight: bold;
}

/*新闻列表*/
.news .news_list {
  font-size: 0;
  min-height: 1000px;
}

.news .news_list li {
  margin-bottom: 25px;
}

.news .news_list div {
  display: inline-block;
  vertical-align: top;
}

/*新闻图片*/

.news .news_list .news_img {
  width: 200px;
  height: 100px;
  margin-left: 30px;
  position: relative;
}

.news .news_list .news_img img {
  max-width: 200px;
  max-height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/*新闻标题*/

.news .news_list .news_title {
  max-width: 660px;
  font-size: 18px;
  overflow: hidden;
  margin: 10px 0 20px 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*日期，说明*/
.news .news_list .explain, .news .news_list .time {
  color: #999;
  font-size: 14px;
}

.news .news_list .explain {
  margin-right: 40px;
}

/*--------------分页条-----------------*/

.news .paging {
  text-align: center;
  margin: 60px 0;
  font-size: 0;
}

/*上下页按钮*/
.news .paging a {
  text-decoration: none;
  font-size: 12px;
}

.news .paging > span {
  font-size: 12px;
}

.news .paging > a {
  display: inline-block;
  border: 1px solid #eeeeee;
  width: 60px;
  line-height: 30px;
  height: 30px;
  margin-right: 10px;
}

.news .paging > a:hover {
  background-color: #3c6dad;
  color: #fff;
}

.news .paging > a.ban, .news .paging > b.ban {
  display: none;
}

.news .paging > b {
  font-size: 12px;
  display: inline-block;
  border: 1px solid #eeeeee;
  width: 60px;
  line-height: 30px;
  height: 30px;
  margin-right: 10px;
  color: #999;
  background-color: #eee;
  font-weight: normal;
}

/*页码*/
.news .paging ul {
  display: inline-block;
  vertical-align: top;
}

.news .paging > ul > li {
  float: left;
  border: 1px solid #eee;
  margin-right: 10px;
}

.news .paging > ul > li > a {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 12px;
}

.news .paging > ul > li > a:hover {
  background-color: #3c6dad;
  color: #fff;
}

.news .paging > ul > li > a.current {
  background-color: #3c6dad;
  color: #fff;
}


