/* CSS Document */
.mainArea:not(.show) .titleBox .title {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.mainArea:not(.show) .titleBox .decoTitle {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.mainArea:not(.show) .contentBox {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.mainArea.show .titleBox .title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.6s;
}
.mainArea.show .titleBox .decoTitle {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.6s 0.2s;
}
.mainArea.show .contentBox {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.6s;
}

.newsInfoBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-bottom: 10px;
}
.newsInfoBox .dateBox, .newsInfoBox .classTitle {
  padding: 5px 0;
}
.newsInfoBox .dateBox .date {
  line-height: 1;
}
.newsInfoBox .classTitle {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.5px;
  padding: 5px 10px;
}

.newsList {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
.newsList .newsItem {
  width: 33.3333333333%;
  padding: 0 15px 30px;
}
@media (max-width: 1024px) {
  .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .newsList .newsItem {
    width: 100%;
  }
}
.newsList .item {
  padding: 20px;
  border: 1px solid #ddd;
  height: 100%;
  background-color: #eee;
  border-radius: 10px;
  overflow: hidden;
}
.newsList .newsInfoBox {
  color: #666666;
}
.newsList .Img {
  width: 100%;
  margin-top: 20px;
}
.newsList .Img img {
  width: 100%;
  height: auto;
  display: block;
}
.newsList .Txt {
  padding: 15px 0;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
}
.newsList .Txt .title a {
  display: block;
  font-size: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 1023px) {
  .newsList .Txt .title a {
    font-size: 22px;
  }
}
.newsList .Txt .text {
  height: 60px;
  color: #666666;
  font-size: 16px;
  padding-top: 10px;
}
@media (max-width: 1023px) {
  .newsList .Txt .text {
    font-size: 15px;
  }
}

.introductArea .topBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: end;
      align-items: end;
  padding-bottom: 20px;
  border-bottom: 1px solid #eff2f2;
  margin: 0 0 20px;
}
.introductArea .topBox .left {
  width: calc(100% - 560px);
}
@media (max-width: 1023px) {
  .introductArea .topBox .left {
    width: 100%;
  }
}
.introductArea .topBox .titleBox {
  margin: 0;
}
.introductArea .topBox .titleBox .decoTitleBox {
  margin: 0 0 21px;
}
.introductArea .topBox .titleBox .title {
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: 30px;
}
.introductArea .topBox .bread {
  padding: 0;
  margin: 0 0 6px;
}
@media (max-width: 1023px) {
  .introductArea .topBox .bread {
    width: 100%;
    padding-top: 20px;
  }
}
.introductArea .topBox .bread .wrap {
  max-width: unset;
  padding: 0;
  -ms-flex-pack: end;
      justify-content: end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 560px;
}
@media (max-width: 1023px) {
  .introductArea .topBox .bread .wrap {
    -ms-flex-pack: start;
        justify-content: start;
    padding: 0;
  }
}
.introductArea .topBox .bread .wrap a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 170px;
}
.introductArea .textEditor {
  padding-bottom: 40px;
}
.introductArea .pageBox {
  padding-bottom: 20px;
  border-top: #eff2f2 solid 1px;
}