.news-wrap {
  padding: 0 6vw;
}
.news-item {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  padding-top: 100px;
  margin-top: 100px;
  border-top: #eee solid 1px;
}
.news-item:first-child {
  padding: 0;
  margin: 0;
  border: none;
}
.news-img {
  width: 60%;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  -moz-transition: clip-path 1s;
  -o-transition: clip-path 1s;
  -webkit-transition: clip-path 1s;
  transition: clip-path 1s;
}
.show .news-img {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.news-img img {
  width: 100%;
}
.news-content {
  padding: 0% 5% 5% 0;
  width: 35%;
}
.news-title {
  font-size: 0.875rem;
  letter-spacing: 5px;
}
.news-title span {
  display: block;
}
.news-info {
  font-size: 0.75rem;
  margin-top: 10px;
  color: #999;
}
.news-title, .news-info, .news-btn {
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.show .news-title, .show .news-info, .show .news-btn {
  opacity: 1;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

@media screen and (max-width: 1100px) {
  .news-img {
    width: 55%;
  }
  .news-content {
    padding: 0 40px 40px 0;
    width: calc(45% - 40px);
  }
}
@media screen and (max-width: 900px) {
  .news-item {
    display: block;
  }
  .news-img {
    width: auto;
  }
  .news-content {
    width: auto;
    padding: 40px 0 0;
  }
  .news-btn {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .news-item {
    margin-top: 40px;
    padding-top: 40px;
  }

  .news-sort {
    margin-bottom: 20px;
  }

  .news-content {
    padding-top: 20px;
  }
}
