/* CSS Document */
.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;
  font-size: 22px;
}
.newsInfoBox .classTitle {
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  background-color: #161616;
  color: #fff;
}

.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: 1024px) {
  .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .newsList .newsItem {
    width: 100%;
  }
}
.newsList .item {
  padding: 20px 0px;
}
.newsList .Img {
  width: 100%;
  margin-right: 10px;
}
.newsList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: 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;
  }
}

.Txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 20px 5px;
}
@media (max-width: 1180px) {
  .Txt {
    padding: 20px 0;
  }
}
@media (max-width: 840px) {
  .Txt {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.Txt .dateBox {
  width: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.Txt .dateBox::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 38px;
  background-color: rgba(0, 0, 0, 0.3);
  left: auto;
  top: 5px;
  right: 40px;
  rotate: 37.5deg;
}
.Txt .dateBox .day {
  font-size: 50px;
  letter-spacing: 2.5px;
  line-height: 40px;
  padding-right: 5px;
  padding-bottom: 10px;
  color: #5a5a5a;
}
.Txt .dateBox .year {
  font-size: 14px;
  letter-spacing: 0.65px;
  line-height: 20px;
  color: #8B8B8B;
}
.Txt .dateBox .classTitle {
  font-size: 15px;
  letter-spacing: 0.75px;
  line-height: 20px;
}
.Txt .title {
  width: calc(100% - 180px);
  padding-top: 5px;
  font-family: "Cormorant Garamond", "Noto Serif TC", "Microsoft JhengHei", sans-serif;
}
@media (max-width: 840px) {
  .Txt .title {
    width: 100%;
  }
}
.Txt .title.ellipsis {
  max-height: 60px;
}
@media (max-width: 1180px) {
  .Txt .title.ellipsis {
    max-height: 55px;
  }
}
@media (max-width: 400px) {
  .Txt .title.ellipsis {
    max-height: 50px;
  }
}
.Txt .title a {
  display: block;
  font-size: 20px;
  line-height: 1.35;
  color: #4f4946;
  font-weight: 500;
}
@media (min-width: 1201px) {
  .Txt .title a:hover {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
}