.newsList {
  font: 18px/60px '微软雅黑';
  color: #505050;
}
.newsList li {
  border-bottom: 1px solid #E8E8E8;
  padding-left: 28px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.newsList li:after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4F96CE;
  transform: translateY(-50%);
}
.newsList li a {
  max-width: 715px;
}
.newsList li a:hover {
  color: #4F96CE;
}
.newsList li .time {
  color: #707070;
  font: 14px/1 '微软雅黑';
  opacity: .5;
}