.news-inner {
  padding: 0 50px;
  max-width: 1200px;
  margin: 0 auto;
}
.news-title {
  text-align: center;
  padding-bottom: 5%;
}
.news-list {
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.news-item {
  width: 50%;
  padding: 0 2%;
  box-sizing: border-box;
  margin-top: 100px;
}
.news-item:nth-child(1), .news-item:nth-child(2) {
  margin-top: unset;
}
.news-item a:hover .news-img:after {
  height: 0;
}
.news-item a:hover .news-img img {
  -webkit-filter: saturate(1);
  filter: saturate(1);
}
.news-item a:hover .news-plus {
  opacity: 1;
}
.news-item a:hover .news-btn {
  letter-spacing: 0.12rem;
}
.news-image {
  position: relative;
}
.news-img {
  position: relative;
  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;
}
.news-img.show {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.news-img:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  left: 0;
  -moz-transition: height 0.6s;
  -o-transition: height 0.6s;
  -webkit-transition: height 0.6s;
  transition: height 0.6s;
}
.news-img img {
  width: 100%;
  -webkit-filter: saturate(0);
  filter: saturate(0);
  -moz-transition: filter 0.6s;
  -o-transition: filter 0.6s;
  -webkit-transition: filter 0.6s;
  transition: filter 0.6s;
}
.news-plus {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #aaa;
  border-radius: 50%;
  box-shadow: 0 0 3px #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.news-plus:before {
  content: "";
  width: 15px;
  height: 1px;
  background: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.news-plus:after {
  content: "";
  width: 1px;
  height: 15px;
  background: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.news-content {
  padding-top: 20px;
  opacity: 0;
  -moz-transform: translateX(30px);
  -ms-transform: translateX(30px);
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -moz-transition: opacity 1s, -moz-transform 1s;
  -o-transition: opacity 1s, -o-transform 1s;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
}
.news-content.show {
  opacity: 1;
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.news-date {
  font-size: 0.75rem;
  font-family: "Ubuntu", Arial, Helvetica;
  color: #999;
  font-style: italic;
  padding-bottom: 5px;
}
.news-name {
  color: #FFF;
  font-size: 0.875rem;
  padding-bottom: 10px;
}

@media screen and (max-width: 1100px) {
  .news-title {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 800px) {
  .news-list {
    display: block;
  }
  .news-item {
    width: 85%;
    margin: 80px auto 0;
    padding: 0;
  }
  .news-item:nth-child(2) {
    margin: 80px auto 0;
  }
}
@media screen and (max-width: 640px) {
  .news-inner {
    padding: 0 30px;
  }
  .news-item {
    width: 100%;
    margin: 50px auto 0;
  }
  .news-item:nth-child(2) {
    margin: 50px auto 0;
  }
  .news-content {
    padding-top: 10px;
  }
  .news-name {
    padding-bottom: 20px;
  }
}
