.news-cont {
  padding: 50px 40px;
  background: #fff;
}
.news-list li {
  padding: 0 15px;
  margin-bottom: 20px;
}
.news-list .cont {
  display: block;
  padding: 25px;
  border: 1px solid #ddd;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-list .cont:hover {
  background: #e5f8ff;
  border-top-color: #e5f8ff;
  border-left-color: #e5f8ff;
  border-right-color: #e5f8ff;
  border-bottom-color: #00baff;
}
.news-list .cont:hover .tit {
  color: #00baff;
}
.news-list .cont .date {
  color: #999;
  font-size: 18px;
  font-weight: bold;
  font-family: "Arial";
  margin-bottom: 10px;
}
.news-list .cont .tit {
  color: #333;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-list .cont .text {
  color: #999;
  height: 66px;
  line-height: 22px;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .news-cont {
    padding: 30px 10px;
  }
  .news-list li {
    padding: 0 5px;
    margin-bottom: 10px;
  }
  .news-list .cont {
    padding: 15px;
  }
}
@media screen and (max-width: 600px) {
  .news-cont {
    padding: 10px;
  }
  .news-list li {
    width: 100%;
    padding: 0;
  }
  .news-list .cont .date {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .news-list .cont .tit {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .news-list .cont .text {
    height: auto;
  }
}
