.news-wrap {
  background-color: #efefef;
  padding: 77px 0;
  background-image: url('../imgs/line-flow.png');
  background-position-y: -100%;
}
.news-list-wrap {
  width: 1255px;
  margin: 50px auto 0;
}
.news-item {
  padding: 28px 44px 28px 24px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 10px rgba(92, 88, 88, 0.1);
  display: flex;
  margin-top: 20px;
  cursor: pointer;
}
.news-img-wrap {
  width: 420px;
  height: 207px;
  flex-shrink:0;
  overflow: hidden;
}
.news-img {
  width: 100%;
  height: 100%;
}
.news-info-wrap {
  padding-top: 29px;
  padding-left: 26px;
}
.news-title {
  font-size: 24px;
  font-weight: bold;
  color: #333333;
  line-height: 36px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 740px;
}
.news-time {
  font-size: 18px;
  margin: 12px 0 16px;
  color: #747474;
  display: block;
}
.news-info {
  font-size: 20px;
  line-height: 36px;
  color: #747474;
  text-indent: 2em;
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}




#paging {
  font-size: 20px;
  display: flex;
  justify-content: center;
  margin-top: 70px;
  font-size: 14px;
  color: #333333;
}
#paging .active {
  color: #FFF;
  background: #C61E20;
}
#paging > li {
  min-width: 40px;
  padding: 10px 12px;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  border-radius: 4px;
}
#paging > li + li {
  margin-left: 10px;
}
#paging .disabled {
  opacity: .5;
  cursor: not-allowed;
}
#paging .disabled a {
  cursor: not-allowed;
}