/* CSS Document */
.newsList .Txt::before, .newsList .Txt .plus::after, .newsList .Txt .plus::before, .newsList .Txt .plus, .newsList .Txt .text, .newsList .Txt .title, .newsList .Txt, .newsList .Img, .newsInfoBox {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.newsPage .mainArea {
  position: relative;
  overflow: clip;
}
.newsPage .mainArea::before {
  content: "";
  position: absolute;
  width: clamp(200px, 27%, 534px);
  height: auto;
  aspect-ratio: 1/1;
  background: url("../images/deco/donutDeco.png") no-repeat center center;
  background-size: contain;
  top: 5%;
  right: -100px;
  z-index: -1;
  animation: rotate 20s linear infinite reverse;
}
.newsPage .mainArea::after {
  content: "";
  position: absolute;
  width: clamp(250px, 30%, 590px);
  height: auto;
  aspect-ratio: 1/1;
  background: url("../images/deco/donutDeco.png") no-repeat center center;
  background-size: contain;
  rotate: -90deg;
  bottom: -20%;
  left: -50px;
  z-index: -1;
  -webkit-animation: rotate 20s linear infinite;
          animation: rotate 20s linear infinite;
}

.newsInfoBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: "Poppins", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: #555555;
  font-weight: 500;
  padding-bottom: 20px;
}
.newsInfoBox .classTitle {
  background: #086ea3;
  border-radius: 99px;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.75px;
  padding: 5px 10px;
}
.newsInfoBox .classTitle span {
  position: relative;
  font-family: "Poppins", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  padding-right: 10px;
  margin-right: 10px;
}
.newsInfoBox .classTitle span::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 14px;
  background-color: #666666;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0.5;
}
.newsInfoBox .date {
  font-size: 45px;
  line-height: 45px;
}
.newsInfoBox .year {
  font-size: 14px;
  letter-spacing: 0.7px;
}

.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 -15px;
}
.newsList .newsItem {
  width: 33.3333333333%;
  padding: 0 15px 30px;
}
@media (max-width: 1180px) {
  .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .newsList .newsItem {
    width: 100%;
  }
}
.newsList .item {
  cursor: pointer;
  height: 100%;
  width: 100%;
  position: relative;
  border: 1px solid rgba(23, 23, 23, 0.2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fafafa;
}
@media (min-width: 1181px) {
  .newsList .item:not(.noImage):hover .Img {
    opacity: 1;
  }
  .newsList .item:not(.noImage):hover .newsInfoBox {
    color: #fff;
  }
  .newsList .item:not(.noImage):hover .Txt .title, .newsList .item:not(.noImage):hover .Txt .text {
    color: #fff;
  }
  .newsList .item:not(.noImage):hover .Txt::before {
    border-color: #fff;
    color: #fff;
  }
  .newsList .item:not(.noImage):hover .Txt .plus {
    border-color: #fff;
  }
  .newsList .item:not(.noImage):hover .Txt .plus::before {
    background: #fff;
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
            transform: translate(-50%, -50%) rotate(180deg);
  }
  .newsList .item:not(.noImage):hover .Txt .plus::after {
    background: #fff;
    -webkit-transform: translate(-50%, -50%) rotate(270deg);
            transform: translate(-50%, -50%) rotate(270deg);
  }
}
@media (min-width: 1181px) {
  .newsList .item.noImage:hover .Txt .title {
    color: #086ea3;
  }
}
.newsList .linkWrap {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.newsList .Img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  z-index: 0;
}
.newsList .Img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.newsList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: block;
  z-index: 1;
}
.newsList .Txt {
  width: 100%;
  height: 100%;
  min-height: 275px;
  position: relative;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px 15px 65px;
}
.newsList .Txt .title {
  color: #2c2c2c;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.9px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.newsList .Txt .text {
  color: #777777;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.8px;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.newsList .Txt .plus {
  width: 33px;
  height: 33px;
  border: 1px solid rgba(23, 23, 23, 0.2);
  border-radius: 50%;
  position: absolute;
  top: 0px;
  right: 0px;
  display: none;
}
.newsList .Txt .plus::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 1px;
  background-color: rgba(23, 23, 23, 0.2);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.newsList .Txt .plus::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 11px;
  background-color: rgba(23, 23, 23, 0.2);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.newsList .Txt::before {
  content: "";
  position: absolute;
  content: "VIEW MORE";
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  border-top: 1px solid rgba(23, 23, 23, 0.2);
  color: #4c4c4c;
  font-family: "Poppins", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
  padding-top: 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;
  }
}