@charset "UTF-8";
/* CSS Document */
.bannerItem .Img {
  background: #000;
}
.bannerItem .Img img {
  opacity: 0.75;
}

.titleBox {
  position: absolute;
  top: 50%;
  left: 0%;
  right: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.titleBox .titleBg {
  border: 2px solid rgba(255, 255, 255, 0.3764705882);
  border-bottom: 2px solid #15d6bc;
  background: transparent;
}
.titleBox .titleBg::before {
  display: none;
}
.titleBox .titleBg::after {
  display: none;
}
.titleBox .txtBox {
  color: #fff;
}
.titleBox .titleTw {
  color: #fff;
}

@media (max-width: 768px) {
  .mainArea .top {
    padding: 0;
  }
}

/*新訊列表*/
.newsList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.newsList .newsItem {
  width: 33.3%;
  padding: 20px 10px;
}
@media (max-width: 980px) {
  .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 580px) {
  .newsList .newsItem {
    width: 100%;
  }
}
.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 img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.newsList .Txt {
  overflow: hidden;
}
.newsList .Txt .title {
  margin-bottom: 3px;
  font-size: 20px;
  font-weight: 400;
  color: #1b1b1b;
}
.newsList .Txt .title a {
  display: inline-block;
  vertical-align: middle;
}
.newsList .Txt .text {
  margin-top: 7px;
  font-size: 15px;
  color: #4c4c4c;
  line-height: 1.8;
}

[class^=g-] {
  padding: 0;
}

.newsDate {
  padding: 5px 0;
  font-size: 12px;
  color: #31a152;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.newsDate strong {
  font-weight: 400;
}
.newsDate strong i {
  margin-right: 2px;
  font-size: 14px;
  color: #AE4233;
}
.newsDate b {
  margin-left: 3px;
}

.classTitle {
  display: inline-block;
  padding: 3px 5px;
  margin-right: 3px;
  border-radius: 3px;
  font-weight: 400;
  font-size: 14px;
  font-family: "微軟正黑體";
  color: #fff;
}

/*內頁*/
/****分享*****/
.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;
}
.shareBox .back:hover {
  background: #398cb1;
}