/* CSS Document */
.newsList .textBox .title, .newsList .Img img {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

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

.newsList {
  display: -webkit-box;
  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: 1180px) {
  .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .newsList .newsItem {
    width: 100%;
  }
}
.newsList .item {
  position: relative;
  cursor: pointer;
}
@media (min-width: 1181px) {
  .newsList .item:hover .title {
    color: #aa876a;
  }
  .newsList .item:hover img {
    scale: 1.1;
  }
}
.newsList .Img {
  display: block;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.newsList .Img img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.newsList .Txt {
  position: relative;
  padding: 20px;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
}
.newsList .newsInfoBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.newsList .newsInfoBox .dateBox {
  text-align: center;
}
.newsList .newsInfoBox .dateBox .date {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.24px;
  color: #aa876a;
}
.newsList .newsInfoBox .classTitle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #aa876a;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 30px;
  font-size: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px 15px;
  color: #aa876a;
}
.newsList .textBox {
  width: 100%;
}
.newsList .textBox .title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.77px;
  color: #3e362e;
  line-height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 60px;
}
@media (max-width: 450px) {
  .newsList .textBox .title {
    font-size: 18px;
  }
}
.newsList .textBox .text {
  color: #5C5C5C;
  font-size: 14px;
  line-height: 1.5;
}
.newsList .textBox .text.ellipsis {
  height: 22px;
  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: 1181px) {
  .shareBox .back:hover {
    background: #398cb1;
  }
}

.classTitle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #aa876a;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 30px;
  font-size: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 15px;
  color: #aa876a;
}

.dateBox {
  text-align: center;
}
.dateBox .date {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.24px;
  color: #aa876a;
}