.newsList {
  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: 1023px) {
  .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .newsList .newsItem {
    width: 100%;
  }
}
.newsList .item {
  padding: 20px;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}
.newsList .Img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.newsList .Img img {
  width: 100%;
  height: auto;
  display: block;
}
.newsList .Txt {
  padding: 15px 0;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
}
.newsList .Txt .newsInfoBox {
  width: 80px;
  text-align: center;
}
.newsList .Txt .newsInfoBox .date {
  font-size: 50px;
  font-weight: 800;
}
.newsList .Txt .newsInfoBox .slash {
  position: relative;
  height: 50px;
  -webkit-transform: translate(17px, 0);
          transform: translate(17px, 0);
}
.newsList .Txt .newsInfoBox .slash::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 1px;
  background: #999;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.newsList .Txt .newsInfoBox .classTitle {
  font-size: 14px;
}
.newsList .Txt .right {
  width: calc(100% - 80px);
  padding: 11px 0 0;
}
.newsList .Txt .title a {
  display: block;
  font-size: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newsList .Txt .text {
  height: 90px;
  color: #8B8B8B;
  font-size: 16px;
  padding-top: 10px;
}
.newsList .btnBox {
  margin: 0;
  padding: 0 9px;
}

.contentBox:has(.articleTitle) {
  padding: 0;
}
.contentBox > .topBox .newsInfoBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-bottom: 10px;
}
.contentBox > .topBox .newsInfoBox .dateBox,
.contentBox > .topBox .newsInfoBox .classTitle {
  padding: 5px 0;
}
.contentBox > .topBox .newsInfoBox .dateBox .date {
  line-height: 1;
}
.contentBox > .topBox .newsInfoBox .classTitle {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.5px;
  padding: 5px 10px;
}

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