/* CSS Document */
.newsInfoBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-bottom: 10px;
  margin-top: 20px;
}
.newsInfoBox .classTitle {
  padding: 15px;
  color: #fff;
  background-color: #004960;
  border-radius: 30px;
  min-width: 86px;
  height: 25px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  font-size: 14px;
}
.newsInfoBox .dateBox .date {
  line-height: 1;
}

.newsList {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
.newsList .newsItem {
  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 {
  padding: 20px 0px;
}
.newsList .Img {
  width: 100%;
  margin-right: 10px;
}
.newsList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.newsList .Txt {
  overflow: hidden;
}
.newsList .Txt .title {
  margin-bottom: 3px;
  font-size: 19px;
  font-weight: 400;
  color: #2f2f2f;
}
.newsList .Txt .title a {
  display: inline-block;
  vertical-align: middle;
}
.newsList .Txt .text {
  margin-top: 7px;
  font-size: 13px;
  color: #909090;
  line-height: 1.8;
}

.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: 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;
  }
}