@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&family=Noto+Sans+TC:wght@100;300;400;500&family=Poppins:wght@400;600&family=Roboto:wght@300;400;500;700&display=swap");
.newsList .Img a:before {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes floating {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes moveRtoL {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes moveRtoL {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes moveLtoR {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes moveLtoR {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes moveRTbevelLB {
  0% {
    opacity: 0;
    -webkit-transform: translate(20px, -20px);
            transform: translate(20px, -20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes moveRTbevelLB {
  0% {
    opacity: 0;
    -webkit-transform: translate(20px, -20px);
            transform: translate(20px, -20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes moveRTbevelRB {
  0% {
    opacity: 0;
    -webkit-transform: translate(-20px, -20px);
            transform: translate(-20px, -20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes moveRTbevelRB {
  0% {
    opacity: 0;
    -webkit-transform: translate(-20px, -20px);
            transform: translate(-20px, -20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.contentBox .leftBox {
  padding: 0 50px 0 0;
}
@media (max-width: 1023px) {
  .contentBox .leftBox {
    padding: 0 0 30px 0;
  }
}
.contentBox .rightBox {
  padding: 0;
}

.btnBox {
  padding-top: 50px;
  padding-bottom: 10px;
}

/*新訊列表*/
.newsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
}
.newsList li {
  width: 33.33%;
  padding: 0 20px 35px;
}
.newsList .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.newsList .Img a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.newsList .Img a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 5px solid transparent;
}
.newsList .Img a:hover:before {
  border-color: #00397c;
}
.newsList .Img img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.newsList .Txt {
  position: relative;
  padding-top: 20px;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.newsList .Txt .left {
  width: calc(100% - 95px);
}
.newsList .Txt .right {
  width: 95px;
  padding-left: 30px;
}
.newsList .Txt p {
  height: 50px;
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}
.newsList .Txt .title {
  height: 35px;
  /*60px*/
}
.newsList .Txt .title a {
  display: block;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.59;
  letter-spacing: 0.75px;
  color: #3d3d3d;
}
.newsList .Txt .title a:hover {
  color: #00397c;
}
.newsList .date {
  text-align: right;
}
.newsList .date .day {
  color: #ec6e36;
  font-family: "Roboto";
  font-size: 45px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
}
.newsList .date .monthYear {
  color: #6b6b6b;
  font-size: 13px;
  font-family: "Roboto";
  line-height: 1.2;
}
@media (max-width: 992px) {
  .newsList li {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .newsList {
    margin: 0;
  }
  .newsList li {
    width: 100%;
    padding: 0 0 30px 0;
  }
}

.newsDate {
  padding-bottom: 10px;
  font-size: 12px;
  color: #818181;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.newsDate .date {
  color: #6b6b6b;
  font-size: 13px;
  font-family: "Roboto";
  line-height: 1.2;
  margin-left: 10px;
  padding-top: 2px;
}
.newsDate b {
  margin-left: 3px;
}

/*內頁*/
/****分享*****/
.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+ */
  background: -o-linear-gradient(top, #ae4233 0%, #c44c4c 100%);
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(#ae4233), to(#c44c4c));
  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 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.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;
}

.textEditor {
  word-break: break-all;
}