@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Noto+Sans+TC:wght@400;500&family=Poppins:wght@400;600&display=swap");
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/*新訊列表*/
.newsList {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.newsList li {
  width: 33.33%;
  margin-bottom: 30px;
  padding-left: 10px;
  padding-right: 10px;
}
.newsList .item {
  background-color: #ffffff;
  box-shadow: 0px 10px 23.75px 1.25px rgba(0, 0, 0, 0.05);
}
.newsList .Img a {
  display: block;
  line-height: 0;
}
.newsList .Txt {
  padding: 25px;
}
.newsList .Txt h3 {
  font-size: 17px;
  font-weight: 400;
  color: #111111;
  margin-bottom: 5px;
}
.newsList .Txt p {
  color: #626262;
  height: 75px;
  line-height: 25px;
}
@media (max-width: 992px) {
  .newsList li {
    width: 50%;
  }
  .newsList .Txt {
    padding: 25px 20px;
  }
}
@media (max-width: 480px) {
  .newsList {
    margin: 0;
  }
  .newsList li {
    width: 100%;
    padding: 0;
  }
}

.newsDate {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
}
.newsDate > div {
  width: 50%;
}
.newsDate .date {
  color: #2c5099;
  font-size: 14px;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}
.newsDate .newIcon {
  text-align: right;
}
.newsDate .newIcon span {
  display: inline-block;
  padding: 5px 10px;
  font-weight: 400;
  font-size: 13px;
  color: #ffffff;
  background-color: #efbc15;
}

/*內頁*/
/****分享*****/
.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: #ae4233;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #ae4233 0%, #c44c4c 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ae4233", endColorstr="#c44c4c", GradientType=0);
  /* IE6-9 */
  cursor: pointer;
}
.shareBox .back:hover {
  background: #398cb1;
}

/********標題區*******/
.titleArea {
  clear: both;
  margin-bottom: 30px;
  padding: 15px 10px 15px 0;
  border-bottom: 1px solid #e9e9e9;
}
.titleArea h1 {
  font-size: 19px;
  font-weight: 400;
  color: #2f2f2f;
  overflow: hidden;
}
.titleArea h1 strong {
  display: block;
  font-weight: 400;
}
.titleArea h1 b {
  /*標題區左-訊息日期*/
  margin-left: 5px;
  font-size: 12px;
  font-weight: 400;
  color: #a3a3a3;
}
.titleArea .btn-fb {
  /*fb*/
  float: left;
}
.titleArea a.back {
  /*回上頁*/
  float: right;
  display: block;
  margin-left: 5px;
  font-size: 10pt;
  color: #06F;
  cursor: pointer;
}

.recommendPage .newsList li {
  width: 25%;
}
@media (max-width: 992px) {
  .recommendPage .newsList li {
    width: 50%;
  }
  .recommendPage .newsList .Txt {
    padding: 25px 20px;
  }
}
@media (max-width: 480px) {
  .recommendPage .newsList {
    margin: 0;
  }
  .recommendPage .newsList li {
    width: 100%;
    padding: 0;
  }
}