/*新闻列表  begin*/
.newsCard {
  padding: 24px 40px;
  margin: 15px auto 40px;
  border: 1px solid #d7d7d7;
}

.newsCard .title {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
  line-height: 28px;
  width: 100%;
  border-bottom: 1px solid #d7d7d7;
  margin: 0 auto;
}

.newsCard .title span {
  font-size: 16px;
  font-weight: bold;
}

.newsCard .title i {
  display: inline-block;
  width: 3px;
  height: 16px;
  margin-right: 13px;
  background-color: #005bac;
}

.newsCard ul li {
  font-size: 16px;
  height: 49px;
  border-bottom: 1px dashed #d7d7d7;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.newsCard ul li a i {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #E8E8E8;
  border-radius: 3px;
  margin-right: 6px;
}

.newsCard ul li a {
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
}

.newsCard ul li span {
  font-size: 16px;
}

.newsCard ul li>span {
  color: #999;
  display: inline-block;
  width: 93px;
  white-space: nowrap;
  overflow: hidden;
}
.newsCard ul li:hover a i {
	background:#005bac;
}
.newsCard ul li:hover span{
	color: #005bac;
}


.pagination-css tbody tr {
  display: flex;
  justify-content: flex-end;
}

.pagination-css tbody tr td a.z_num {
  display: inline-block;
  padding: 0;
  width: 23px;
  height: 23px;
}

.pagination-css tbody tr td a.current {
  display: inline-block;
  padding: 0;
  width: 23px;
  height: 23px;
  background: #005BAC;
  color: #ffffff !important;
}
/*新闻列表  end*/