/* CSS Document */
.articleTitle {
  padding-top: 5px;
}

.newsInfoBox {
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(128, 116, 106, 0.5);
}
.newsInfoBox .dateBox {
  float: right;
}

.classTitle {
  display: inline-block;
  letter-spacing: 0.5px;
}

.newsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
}
.newsList .newsItem {
  width: 33.3333333333%;
  padding: 0 10px 30px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1024px) {
  .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .newsList .newsItem {
    width: 100%;
  }
}
.newsList .Img {
  position: relative;
  width: 100%;
  margin-right: 10px;
}
.newsList .Img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ee7836;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (min-width: 1181px) {
  .newsList .Img:hover::before {
    -webkit-transform: translate(5px, 5px);
            transform: translate(5px, 5px);
  }
  .newsList .Img:hover img {
    -webkit-transform: translate(-5px, -5px);
            transform: translate(-5px, -5px);
  }
}
.newsList .Img img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}
.newsList .Txt {
  padding: 15px 0;
  overflow: hidden;
}
.newsList .Txt .title a {
  display: block;
  padding-top: 5px;
  font-size: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 1180px) {
  .newsList .Txt .title a {
    font-size: 16px;
  }
}
.newsList .Txt .text {
  padding-top: 5px;
  height: 60px;
  font-size: 15px;
  font-weight: 500;
  color: #80746a;
  line-height: 1.8;
}
@media (max-width: 1180px) {
  .newsList .Txt .text {
    font-size: 14px;
  }
}
.newsList .Txt .btnBox .btn.more {
  padding: 9px 12px 9px 15px;
  font-size: 14px;
  max-width: 150px;
  min-width: 150px;
}
.newsList .Txt .btnBox .btn.more .btnTitle {
  padding-right: 10px;
}

.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: 1181px) {
  .shareBox .back:hover {
    background: #398cb1;
  }
}