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

.articleTitle {
  text-align: left;
  border-bottom: 1px solid #ccc;
}

.newsInfoBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.newsInfoBox.ind {
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 10px 0;
  position: relative;
}
.newsInfoBox.ind::after {
  content: "";
  display: block;
  width: calc(100% - 160px);
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  position: absolute;
  background-color: #ccc;
  height: 1px;
  opacity: 0.4;
}
.newsInfoBox.ins .infoItem {
  padding-right: 10px;
  margin-right: 10px;
  position: relative;
}
.newsInfoBox.ins .infoItem:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 10px;
  background-color: rgba(171, 153, 124, 0.5);
}
.newsInfoBox .dateBox, .newsInfoBox .classTitle {
  padding: 5px 0;
  font-family: "Noto Serif Tc";
}
.newsInfoBox .dateBox .date {
  line-height: 1;
}
.newsInfoBox .classTitle {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.5px;
}

.newsList {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.newsList .newsItem {
  padding: 25px;
  width: 33.33%;
}
@media (max-width: 1023px) {
  .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .newsList .newsItem {
    width: 100%;
  }
}
.newsList .Img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.newsList .Txt {
  overflow: hidden;
}
.newsList .Txt .title {
  margin-bottom: 3px;
  font-size: 19px;
  font-weight: 400;
  color: #2f2f2f;
}
.newsList .Txt .title a {
  display: inline-block;
  vertical-align: middle;
}
.newsList .Txt .text {
  margin-top: 7px;
  font-size: 13px;
  color: #909090;
  line-height: 1.8;
}

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