@charset "UTF-8";

.top-news {
  width:980px;
  margin:0 auto;
  margin-top: 94px;
  background: rgba(255,255,255,.8);
  padding:50px 0 50px 0;
}
.top-news .top {
  width:800px;
  margin:0 auto;
  z-index: 1;
  position: relative;
}
.top-news .top .desc {
  font-size:14px;
  color:#595757;
  height:70px;
  line-height: 70px;
  position: relative;
}
.top-news .top .desc span {
  color:#F26953;
}

.top-news .top .desc::after {
  content:' ';
  position: absolute;
  width:800px;
  height:1px;
  bottom:-1px;
  left:0;
  border-top:1px solid #ccc;
}

.top-news .news-list {
  width: 800px;
  margin: 0 auto;
  margin-top: 25px;
  padding-bottom:25px;
  position: relative;
}
.top-news .news-list::after {
  content:' ';
  position: absolute;
  width:800px;
  height:1px;
  bottom:-1px;
  left:0;
  border-top:1px solid #ccc;
}
.top-news .news-list li {
  display: flex;
  font-size: 14px;
  color: #595757;
  height: 48px;
  line-height: 48px;
  cursor: pointer;
}
.top-news .news-list li.hover .news-title {
  color:#286C9C;
}
.top-news .news-list li.hover .news-time {
  color:#42A679;
}
.top-news .news-list li .news-title:before {
  content: "•";
  font-size: 12px;
  margin-right: 12px;
}
.top-news .news-list li .news-title span {
  color:#F26953;
}
.top-news .news-list li .news-time {
  flex: 1;
  text-align: right;
}
.top-news .news-list li .news-time:before {
  content: "►";
  margin-right: 12px;
}
.top-news .news-list li.over .news-title {
  text-decoration: underline;
  color: #005A92;
}
.top-news .news-list li.over .news-time {
  color: #42A679;
}
.top-news .pagination {
  width: 771px;
  margin: 72px auto;
  height:22px;
  line-height: 22px;
  text-align: center;
}
.top-news .pagination div.active {
  color:#2778BD;
  cursor: pointer;
}
.top-news .pagination .box {
  display: inline-flex;
  margin:0 auto;
}
.top-news .pagination .prev {
  width:100px;
  color:#595757;
}
.top-news .pagination .next {
  width:100px;
  color:#595757;
}
.top-news .pagination .pages {
  display: flex;
}
.top-news .pagination .pages span {
  width:22px;
  height:22px;
  line-height:22px;
  text-align: center;
  border-radius: 100%;
  border:1px solid #2778BD;
  color:#2778BD;
  margin-right:18px;
  cursor: pointer;
}
.top-news .pagination .pages span.active {
  color:#fff;
  background:#2778BD;
}
.top-news .pagination .pages span:last-child {
  margin-right:0;
}
