.news-list {
  padding: 0 10vw;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -3% auto;
  max-width: 1200px;
}
.news-item {
  position: relative;
  width: 44%;
  margin: 3%;
  border: #ccc solid 1px;
  box-sizing: border-box;
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.news-item.show {
  opacity: 1;
}
.news-img {
  position: relative;
  border-bottom: #ccc solid 1px;
}
.news-img:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  -moz-transition: width 0.6s;
  -o-transition: width 0.6s;
  -webkit-transition: width 0.6s;
  transition: width 0.6s;
}
.show .news-img:after {
  width: 0;
}
.news-img img {
  width: 100%;
  -moz-transition: -moz-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
}
.news-item:hover .news-img img {
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
.news-title {
  color: #000;
  padding-bottom: 10px;
  border-bottom: #ccc solid 1px;
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.show .news-title {
  opacity: 1;
}
.news-content {
  padding: 10px 10px 30px;
  margin-top: 20px;
}
.news-text {
  padding: 10px 0;
}
.news-more {
  position: absolute;
  right: 20px;
  bottom: -1px;
  font-size: 0.75em;
  color: #000;
}
.news-more:after {
  content: "";
  display: block;
  height: 2px;
  padding-right: 30px;
  margin-left: -30px;
  background: #000;
  -moz-transition: margin 0.6s, padding 0.6s;
  -o-transition: margin 0.6s, padding 0.6s;
  -webkit-transition: margin 0.6s, padding 0.6s;
  transition: margin 0.6s, padding 0.6s;
}
.news-item:hover .news-more:after {
  padding-right: 0px;
  margin-left: 0px;
}

@media screen and (max-width: 1100px) {
  .news-list {
    padding: 0 50px;
    margin: -3%;
  }
}
@media screen and (max-width: 640px) {
  .news-list {
    padding: 0 20px;
    margin: 0;
  }
  .news-item {
    width: auto;
    margin: 0 0 40px;
    border: none;
  }
  .news-img {
    border: #ccc solid 1px;
  }
  .news-content {
    padding: 10px 0 30px;
  }
  .news-more {
    right: 10px;
  }
}
