/* CSS Document */
.newsList .item, .newsList .newsItem {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.contentBox .leftBox {
  padding: 0 50px 0 0;
}
@media (max-width: 1023px) {
  .contentBox .leftBox {
    padding: 0 0 30px 0;
  }
}
.contentBox .rightBox {
  padding: 0;
}

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

.newsList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.newsList .newsItem {
  width: 33.3333333333%;
  padding: 25px;
}
@media (max-width: 1023px) {
  .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .newsList .newsItem {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
}
@media (min-width: 1201px) {
  .newsList .newsItem:hover .item {
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
}
.newsList .item {
  border: 1px solid rgba(74, 83, 92, 0.5);
  padding: 40px 20px;
  border-radius: 20px;
}


.newsList .Txt {
  width: 100%;
}
.newsList .Txt .title {
  margin-bottom: 3px;
  color: #2f2f2f;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.75px;
  height: 60px;
}
.newsList .Txt .title a {
  display: inline-block;
  vertical-align: middle;
}
.newsList .Txt .text {
  margin-top: 7px;
  height: 70px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.75px;
}

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