@charset "UTF-8";
/* CSS Document */
.newsDate, .newsList .newsItem .TxtBox .Txt .text, .newsList .newsItem .TxtBox .classDate {
  color: #424242;
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 1.625;
}

.contentBox.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contentBox.list .leftBox {
  width: 225px;
  z-index: 5;
}
.contentBox.list .rightBox {
  width: calc(100% - 225px);
  padding-left: 60px;
}
@media (max-width: 1024px) {
  .contentBox.list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contentBox.list .leftBox,
.contentBox.list .rightBox {
    width: 100%;
  }
  .contentBox.list .rightBox {
    padding-left: 0;
  }
}

/*新訊列表*/
.newsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
}
.newsList .newsItem {
  padding: 0 10px 30px;
  width: 33.3333333333%;
}
@media (max-width: 1180px) {
  .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .newsList .newsItem {
    width: 100%;
  }
}
.newsList .newsItem a {
  color: #373737;
}
.newsList .newsItem a:hover {
  color: #e50012;
}
.newsList .newsItem .item {
  -webkit-box-shadow: 0px 3px 68px 0px rgba(185, 165, 142, 0.22);
          box-shadow: 0px 3px 68px 0px rgba(185, 165, 142, 0.22);
}
.newsList .newsItem .Img img {
  width: 100%;
}
.newsList .newsItem .TxtBox {
  color: #373737;
  padding: 25px 20px;
  background-color: #ffffff;
}
.newsList .newsItem .TxtBox .classDate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.newsList .newsItem .TxtBox .classDate .classTitle {
  font-weight: 500;
  padding-right: 20px;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.newsList .newsItem .TxtBox .classDate .date {
  width: 110px;
  text-align: right;
  font-family: "Poppins";
}
@media (max-width: 1180px) {
  .newsList .newsItem .TxtBox .classDate .classTitle {
    padding-right: 10px;
  }
}
.newsList .newsItem .TxtBox .Txt {
  padding-top: 10px;
}
.newsList .newsItem .TxtBox .Txt .title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.66;
  letter-spacing: 0.18px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.newsList .newsItem .TxtBox .Txt .text {
  height: 55px;
  overflow: hidden;
}

.newsDate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #373737;
  font-weight: 500;
  text-transform: uppercase;
}
.newsDate .classTitle {
  padding-right: 20px;
  position: relative;
  margin-right: 20px;
}
.newsDate .classTitle:after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  width: 1px;
  height: 15px;
  background-color: rgba(0, 0, 0, 0.32);
}
.newsDate strong {
  font-weight: 400;
}
.newsDate strong i {
  margin-right: 2px;
  font-size: 14px;
  color: #AE4233;
}
.newsDate b {
  margin-left: 3px;
}

.dateShare {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 480px) {
  .dateShare {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

/*內頁*/
/****分享*****/
.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;
}