@charset "UTF-8";
/* CSS Document */
.contentBox .leftBox {
  padding: 0 50px 0 0;
}
@media (max-width: 1023px) {
  .contentBox .leftBox {
    padding: 0 0 30px 0;
  }
}
.contentBox .rightBox {
  padding: 0;
}

/*新訊列表*/
.newsList {
  width: 100%;
}
.newsList .newsItem {
  border-bottom: 1px solid #cecece;
  padding: 25px 0;
}
.newsList .Txt {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
}
.newsList .date {
  color: #9f9f9f;
  font-weight: 700;
  letter-spacing: 0.9px;
  padding-right: 31px;
}
.newsList .classTitle {
  position: relative;
  margin: 5px 0 5px 26px;
}
.newsList .classTitle::before {
  content: "";
  position: absolute;
  top: calc(50% - 7.5px);
  left: -26px;
  width: 1px;
  height: 15px;
  background-color: #cecece;
}
@media (max-width: 479px) {
  .newsList .classTitle {
    margin-left: 0;
  }
  .newsList .classTitle::before {
    content: none;
  }
}
.newsList .title {
  width: 100%;
  margin-top: 16px;
}
.newsList .title a {
  display: block;
  color: #3e3e3e;
  font-weight: 700;
  letter-spacing: 0.8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 1201px) {
  .newsList .title a:hover {
    color: #214e8b;
  }
}
.newsList .text {
  margin-top: 7px;
  font-size: 13px;
  color: #909090;
  line-height: 1.8;
}

.newsDate {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  padding: 5px 0;
  font-size: 13px;
  color: #818181;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.newsDate strong {
  font-weight: 400;
}
.newsDate strong i {
  margin-right: 2px;
  font-size: 14px;
  color: #AE4233;
}
.newsDate b {
  font-weight: 400;
  margin-left: 3px;
}

.classTitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  padding: 3.5px 23px;
  margin: 5px 10px 5px 0;
}

/*內頁*/
/****分享*****/
.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;
}
@media (min-width: 1201px) {
  .shareBox .back:hover {
    background: #398cb1;
  }
}