/* CSS Document */
.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;
  background-color: #990000;
  color: #fff;
}

.newsList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}
.newsList .newsItem {
  width: calc(33.3333333333% - 50px);
  margin-left: 25px;
  margin-right: 25px;
}
@media (max-width: 1180px) {
  .newsList .newsItem {
    width: calc(50% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media (max-width: 480px) {
  .newsList .newsItem {
    width: 100%;
  }
}
.newsList .Img {
  margin-bottom: 20px;
}
.newsList .Img img {
  max-width: 100%;
}
.newsList .Txt {
  overflow: hidden;
  margin-bottom: 40px;
}
.newsList .Txt .title {
  margin-bottom: 3px;
  font-size: 19px;
  font-weight: 400;
  color: #2f2f2f;
}
@media (max-width: 700px) {
  .newsList .Txt .title {
    font-size: 17px;
  }
}
.newsList .Txt .title a {
  display: inline-block;
  vertical-align: middle;
}
.newsList .Txt .text {
  margin-top: 7px;
  color: #666;
  line-height: 1.8;
  font-size: 15px;
  height: 60px;
}

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