/* CSS Document */
.newsInfoBox {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.newsInfoBox .dateBox {
  margin-right: 25px;
  color: #000000;
  font-size: 17px;
  font-weight: 500;
  line-height: calc(17 / 17);
  letter-spacing: calc(17 * 35 / 1000 * 1px);
  font-family: "Saira", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
.newsInfoBox .classTitle {
  background: #ebebeb;
  border-radius: 99px;
  padding: 12px 15px 10px;
  color: #000000;
  font-size: 17px;
  font-weight: 400;
  line-height: calc(17 / 17);
  letter-spacing: calc(17 * 50 / 1000 * 1px);
  font-family: "Saira", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}

.newsBox {
  padding-bottom: 100px;
}
.newsBox .newsList {
  margin: 0 -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.newsBox .newsList .newsItem {
  width: 33.3333333333%;
  padding: 0 15px 40px;
}
@media (max-width: 1180px) {
  .newsBox .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .newsBox .newsList .newsItem {
    width: 100%;
  }
}
.newsBox .newsList .newsItem .item {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  z-index: 1;
}
@media (min-width: 1181px) {
  .newsBox .newsList .newsItem .item:hover .Img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
}
.newsBox .newsList .newsItem .item .Img {
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}
.newsBox .newsList .newsItem .item .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.newsBox .newsList .newsItem .item .Txt .title {
  height: 64px;
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  line-height: calc(32 / 20);
  letter-spacing: calc(20 * 35 / 1000 * 1px);
  font-family: "Saira", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.newsBox .newsList .newsItem .item .Txt .title a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.newsBox .newsList .newsItem .item .Txt .text {
  height: 50px;
  margin-top: 20px;
  color: #333333;
  font-size: 15px;
  font-weight: 400;
  line-height: calc(25 / 15);
  letter-spacing: calc(15 * 35 / 1000 * 1px);
  font-family: "Saira", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}