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

.mainArea.ins .newsInfoBox {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mainArea.ins .newsInfoBox .dateBox:after {
  display: none;
}

.newsInfoBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 22px;
}
@media (max-width: 992px) {
  .newsInfoBox {
    padding-bottom: 15px;
  }
}
.newsInfoBox .dateBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
}
.newsInfoBox .dateBox::after {
  display: inline-block;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #dbdbdb;
  margin-left: 18px;
  margin-right: 13px;
  position: relative;
  bottom: 5px;
}
@media (max-width: 992px) {
  .newsInfoBox .dateBox::after {
    width: 20px;
    margin-left: 15px;
    margin-right: 10px;
  }
}
.newsInfoBox .dateBox .date {
  color: #555555;
  font-size: 27px;
  font-weight: 200;
  letter-spacing: 1.62px;
  line-height: 1;
}
.newsInfoBox .dateBox .year {
  color: #555555;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.72px;
  margin-left: 10px;
}

.classTitle {
  color: #888888;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.78px;
  padding-top: 5px;
}

.newsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -13.5px;
}
@media (max-width: 640px) {
  .newsList {
    margin: 0 -10px;
  }
}
@media (max-width: 537px) {
  .newsList {
    margin: 0;
  }
}
.newsList .newsItem {
  width: 33.33%;
  padding: 0 13.5px 45px;
}
@media (max-width: 900px) {
  .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .newsList .newsItem {
    padding: 0 10px 30px;
  }
}
@media (max-width: 537px) {
  .newsList .newsItem {
    width: 100%;
    padding: 0 0 30px;
  }
}
.newsList .newsItem .Txt {
  padding-top: 20px;
}
.newsList .newsItem .item {
  height: 100%;
  position: relative;
  cursor: pointer;
}
@media (min-width: 1201px) {
  .newsList .newsItem .item:hover .textBox .title {
    color: #b19365;
  }
  .newsList .newsItem .item:hover .textBox .title a {
    color: #b19365;
  }
  .newsList .newsItem .item:hover .Img img {
    -webkit-transform: scale3d(1.1, 1.1, 1);
            transform: scale3d(1.1, 1.1, 1);
  }
}
.newsList .newsItem .Img {
  overflow: hidden;
}
.newsList .newsItem .Img img {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.newsList .newsItem .textBox .title {
  color: #555555;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.647;
  letter-spacing: 1.02px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.newsList .newsItem .textBox .title a {
  color: #555555;
  display: block;
}
.newsList .newsItem .textBox .text {
  color: #888888;
  font-size: 15px;
  line-height: 1.666;
  letter-spacing: 0.9px;
  margin-top: 10px;
  max-height: 50px;
  overflow: hidden;
}

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