/* CSS Document */
.newsList .Img .more::before, .newsList .Img .more::after, .newsList .Img .more, .newsList .Img img, .newsList .Img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.newsInfoBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 10px;
}
.newsInfoBox .dateBox,
.newsInfoBox .classTitle {
  padding: 5px 0;
}
.newsInfoBox .dateBox .date {
  line-height: 1;
}
.newsInfoBox .classTitle {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.5px;
  padding: 5px 10px;
}

.newsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
.newsList .newsItem {
  position: relative;
  width: 33.3333333333%;
  padding: 0 15px 30px;
}
@media (max-width: 1024px) {
  .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .newsList .newsItem {
    width: 100%;
  }
}
.newsList .item {
  position: relative;
  cursor: pointer;
  width: 100%;
}
@media (min-width: 1201px) {
  .newsList .item:hover .Img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .newsList .item:hover .Img .more {
    background-color: #f1c713;
  }
  .newsList .item:hover .Img .more::after {
    -webkit-transform: translate(-50%, 0) rotate(0);
            transform: translate(-50%, 0) rotate(0);
  }
}
.newsList .Img {
  width: 100%;
  position: relative;
}
.newsList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-radius: 30px;
  overflow: hidden;
}
.newsList .Img .more {
  position: absolute;
  width: 52px;
  height: 52px;
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 18px 0px rgba(154, 154, 154, 0.25);
          box-shadow: 0px 5px 18px 0px rgba(154, 154, 154, 0.25);
  bottom: -8%;
  right: 5%;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.newsList .Img .more::before, .newsList .Img .more::after {
  content: "";
  width: 15px;
  height: 2px;
  background-color: #474747;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
.newsList .Img .more::after {
  -webkit-transform: translate(-50%, 0) rotate(90deg);
          transform: translate(-50%, 0) rotate(90deg);
}
.newsList .Txt {
  width: 100%;
  padding: 40px 0;
}
.newsList .Txt .classTitle {
  font-size: 15px;
  color: #8d8d8d;
}
.newsList .Txt .title {
  font-size: 20px;
  font-weight: 500;
  height: 60px;
  color: #474747;
  margin-top: 10px;
}
.newsList .Txt .title a {
  display: block;
  color: #474747;
}
.newsList .linkWrap {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.shareBox {
  float: right;
}
.shareBox .btn-fb {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.shareBox .back {
  display: inline-block;
  vertical-align: middle;
  padding: 3px 5px;
  border-radius: 3px;
  font-size: 12px;
  color: #fff;
  background: rgb(174, 66, 51);
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(174, 66, 51)), to(rgb(196, 76, 76)));
  background: linear-gradient(to bottom, rgb(174, 66, 51) 0%, rgb(196, 76, 76) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ae4233", endColorstr="#c44c4c", GradientType=0);
  /* IE6-9 */
  cursor: pointer;
}
@media (min-width: 1201px) {
  .shareBox .back:hover {
    background: #398cb1;
  }
}