.newsList .Img, .newsList .Img:before {
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.newsList li:not(:first-child) {
  border-top: 0;
}

.newsList li:hover .Txt h3 a {
  color: #F76300;
}

.newsList li:hover .Img {
  opacity: .8;
}

.newsList li:hover .Img:before {
  -webkit-transform: translateY(0) scale(1);
      -ms-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
  opacity: 1;
}

.newsList .item {
  margin: 0 auto;
  max-width: 360px;
}

.newsList .Img {
  position: relative;
  float: none;
  width: 100%;
  margin-right: 0;
  border-radius: 5px;
  overflow: hidden;
}

.newsList .Img:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -55px;
  margin-left: -55px;
  display: block;
  width: 110px;
  height: 110px;
  background: url(../images/icon-more.png) no-repeat center;
  border-radius: 50%;
  -webkit-transform: translateY(50px) scale(0.5);
      -ms-transform: translateY(50px) scale(0.5);
          transform: translateY(50px) scale(0.5);
  opacity: 0;
  pointer-events: none;
}

.newsList .Txt > h3 {
  margin-top: 15px;
  margin-bottom: 10px;
}

.newsList .Txt > .ellipsis {
  height: 60px;
  line-height: 28px;
}

.newsList li .Img {
  display: block;
}
