@import url("https://fonts.googleapis.com/css?family=Roboto");
@import url("https://fonts.googleapis.com/css?family=Source+Serif+Pro");
.top .bg .pic {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.news {
  padding: 30px 0;
}
.news-box {
  display: flex;
  align-items: space-around;
  flex-wrap: wrap;
}
.news a {
  display: block;
  width: 33.3333%;
  margin-bottom: 30px;
}
.news a:hover .news-pic {
  border-radius: 50%;
  border: 1px solid #decd9c;
}
.news a:hover .news-pic img {
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.news a:hover .news-mask {
  background-color: rgba(0, 0, 0, 0.3);
}
.news a:hover .news-mask .view {
  opacity: 1;
}
.news a:hover .news-date {
  color: #fff;
}
.news li {
  padding: 15px;
  box-sizing: border-box;
}
.news-pic {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid transparent;
  -moz-transition: border-radius 0.3s ease-out, border 0.5s ease-in-out;
  -o-transition: border-radius 0.3s ease-out, border 0.5s ease-in-out;
  -webkit-transition: border-radius 0.3s ease-out, border 0.5s ease-in-out;
  transition: border-radius 0.3s ease-out, border 0.5s ease-in-out;
}
.news-pic img {
  width: 100%;
  -moz-transition: -moz-transform 0.5s ease-in-out;
  -o-transition: -o-transform 0.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
}
.news-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  -moz-transition: background-color 0.5s ease-in;
  -o-transition: background-color 0.5s ease-in;
  -webkit-transition: background-color 0.5s ease-in;
  transition: background-color 0.5s ease-in;
}
.news-mask .view {
  font-size: 16px;
  color: #fff;
  opacity: 0;
  -moz-transition: opacity 0.5s ease-in;
  -o-transition: opacity 0.5s ease-in;
  -webkit-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
}
.news-content {
  text-align: center;
  padding: 20px 0;
}
.news-date {
  font-size: 12px;
  padding-bottom: 8px;
  -moz-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.news-name {
  color: #fff;
  padding: 0 10%;
}

.rm {
  opacity: 0;
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
  -moz-transition: opacity 0.5s, -moz-transform 0.8s;
  -o-transition: opacity 0.5s, -o-transform 0.8s;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.8s;
  transition: opacity 0.5s, transform 0.8s;
}
.rm.show {
  opacity: 1;
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.lm {
  opacity: 0;
  -moz-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
  -moz-transition: opacity 0.5s, -moz-transform 0.8s;
  -o-transition: opacity 0.5s, -o-transform 0.8s;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.8s;
  transition: opacity 0.5s, transform 0.8s;
}
.lm.show {
  opacity: 1;
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@media screen and (max-width: 1100px) {
  .news a {
    width: 50%;
  }
}
@media screen and (max-width: 640px) {
  .news a {
    width: 80%;
    margin: auto;
  }
}
@media screen and (max-width: 460px) {
  .news a {
    width: 100%;
  }
}
