/* CSS Document */
.newsList .Img a::after, .newsList .Img a::before {
  -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: 15px 0;
}
.newsInfoBox .dateBox, .newsInfoBox .classTitle {
  color: #333f48;
  padding: 5px 0;
}
.newsInfoBox .dateBox {
  font-family: "Archivo", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
.newsInfoBox .dateBox .date {
  line-height: 1;
}
.newsInfoBox .classTitle {
  background: #a7d500;
  border-radius: 99px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.5px;
  padding: 10px 10px;
}

.newsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0 -25px;
}
.newsList .newsItem {
  width: 33.3333333333%;
  padding: 0 25px 30px;
}
@media (max-width: 1180px) {
  .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .newsList .newsItem {
    width: 100%;
  }
}
.newsList .newsItem:nth-of-type(odd) .newsInfoBox .classTitle {
  background: #a7d500;
}
.newsList .newsItem:nth-of-type(even) .newsInfoBox .classTitle {
  background: #00a9e0;
}
.newsList .item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (min-width: 1181px) {
  .newsList .item:hover .Img a::after, .newsList .item:hover .Img a::before {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.newsList .Img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 40px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.newsList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.newsList .Img.noLink {
  pointer-events: none;
}
.newsList .Img.noLink a::after, .newsList .Img.noLink a::before {
  display: none;
}
.newsList .Img a {
  position: relative;
}
.newsList .Img a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 169, 224, 0.8);
  opacity: 0;
}
.newsList .Img a::after {
  content: "";
  position: absolute;
  width: 60px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 99px;
  border: 1px solid #fff;
  background: url(../images/btnArrow.svg) no-repeat center center/19px 13px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.newsList .Txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  padding: 15px;
}
.newsList .Txt .title a {
  display: block;
  color: #333f48;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1180px) {
  .newsList .Txt .title a {
    font-size: 18px;
  }
}
.newsList .Txt .text {
  color: #9a9ea1;
  font-size: 16px;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1180px) {
  .newsList .Txt .text {
    font-size: 15px;
  }
}

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