/* CSS Document */
.newsList .Img:after, .newsList .Img:before {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.newsInfoBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 15px;
}
.newsInfoBox .date {
  color: #363636;
  line-height: 1;
}
.newsInfoBox .classTitle {
  font-size: 17px;
  font-weight: 400;
  border-radius: 9999px;
  background-color: #f1efe8;
  display: inline-block;
  padding: 5.5px 20px 7.5px 22px;
}
@media (max-width: 480px) {
  .newsInfoBox .classTitle {
    font-size: 15px;
    padding: 5.5px 15px 7px 17px;
  }
}

.newsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 30px;
  margin: 0 -30px;
}
@media (max-width: 1180px) {
  .newsList {
    margin: 0 -15px;
  }
}
@media (max-width: 1024px) {
  .newsList {
    padding-top: 20px;
  }
}
@media (max-width: 640px) {
  .newsList {
    margin: 0;
  }
}
.newsList .newsItem {
  width: 33.33%;
  padding: 0 30px 40px;
}
@media (max-width: 1180px) {
  .newsList .newsItem {
    padding: 0 15px 40px;
  }
}
@media (max-width: 992px) {
  .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .newsList .newsItem {
    width: 100%;
    padding: 0 0 35px;
  }
}
.newsList .item {
  height: 100%;
}
.newsList .Txt {
  padding-left: 0;
  max-width: 510px;
  margin-top: 5px;
}
.newsList .Txt .title {
  color: #f3bd7e;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2.4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .newsList .Txt .title {
    font-size: 22px;
  }
}
.newsList .Txt .text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.866;
  letter-spacing: 1.95px;
  height: 56px;
  margin-top: 8px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .newsList .Txt .text {
    font-size: 14px;
    height: 53px;
    letter-spacing: 1.82px;
  }
}
.newsList .Img {
  margin: 35px 0;
  position: relative;
}
@media (max-width: 1200px) {
  .newsList .Img {
    margin: 30px 0 0 0;
  }
}
@media (max-width: 768px) {
  .newsList .Img {
    margin: 25px 0 0 0;
  }
}
.newsList .Img:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  background-color: rgba(243, 189, 126, 0.5);
  border-radius: 18px;
  pointer-events: none;
}
.newsList .Img:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-box-shadow: 0px 40px 45px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 40px 45px 0px rgba(0, 0, 0, 0.25);
  border-radius: 18px;
  opacity: 0;
}
@media (min-width: 1201px) {
  .newsList .Img:hover:before {
    -webkit-transform: rotate(-6deg);
            transform: rotate(-6deg);
  }
  .newsList .Img:hover:after {
    opacity: 1;
  }
}
.newsList .Img img {
  width: 100%;
  display: block;
  border-radius: 18px;
  /*overflow: hidden;*/
  height: 280px;
  object-fit: cover;

}
.newsList .Img a {
  display: block;
  position: relative;
  z-index: 2;
}
.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;
  }
}