@charset "UTF-8";
/* CSS Document */
.contentBox .leftBox {
  padding: 0 50px 0 0;
}

.contentBox .rightBox {
  padding: 0;
}

/*新訊列表*/
ul.newsList {
  width: 100%;
}

ul.newsList li {
  padding: 0 0 35px 0;
}

ul.newsList li .item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #f9f9f9;
  transition: all .5s;
}

ul.newsList li .item:hover {
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

ul.newsList li .item:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

ul.newsList li .Img {
  /*訊息圖片*/
  -webkit-flex: 200px 0 0;
      -ms-flex: 200px 0 0px;
          flex: 200px 0 0;
  overflow: hidden;
}

ul.newsList li .Img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}

ul.newsList li .Txt {
  /*文字區*/
  padding: 20px 30px;
  box-sizing: border-box;
}

ul.newsList li .Txt h3 {
  /*訊息標題*/
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 3px;
  letter-spacing: .1em;
}

ul.newsList li .Txt h3 a {
  /*訊息標題*/
  color: #1f2639;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

ul.newsList li .Txt h3 a:hover {
  /*訊息標題滑過效果*/
  color: #f6c959;
}

ul.newsList li .Txt p {
  /*列表說明*/
  margin: 10px 0;
  font-size: 13px;
  color: #909090;
  line-height: 1.8;
  height: 47px;
}

ul.newsList li .btn a {
  position: relative;
  display: inline-block;
  margin-top: 8px;
  color: rgba(31, 38, 57, 0.8);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

ul.newsList li .btn a:hover {
  color: #f6c959;
}

ul.newsList li .btn a:hover:after {
  content: '';
  left: 20px;
  width: 100%;
}

ul.newsList li .btn a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: #f6c959;
  transition: all .5s;
}

.newsDate {
  /*發布日期*/
  padding: 5px 0;
  font-size: 12px;
  color: #818181;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.newsDate strong {
  font-weight: normal;
}

.newsDate strong i {
  margin-right: 2px;
  font-size: 14px;
  color: #AE4233;
}

.newsDate b {
  margin-left: 3px;
}

/*內頁*/
/****分享*****/
.shareBox {
  float: right;
}

.shareBox .btn-fb {
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
}

.shareBox a.back {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 3px 5px;
  font-size: 12px;
  color: #FFF;
  border-radius: 3px;
  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 */
  transition: none;
}

.shareBox a.back:hover {
  background: #398cb1;
}

/********標題區*******/
.titleArea {
  clear: both;
  margin-bottom: 30px;
  border-bottom: 1px solid #B6B6B6;
  /*下邊線*/
  padding: 15px 0;
  /*下邊線與標題距離*/
}

.titleArea h1 {
  /*標題區左-訊息標題*/
  font-size: 19px;
  font-weight: normal;
  color: #2f2f2f;
  overflow: hidden;
}

.titleArea h1 strong {
  display: block;
  font-weight: normal;
}

.titleArea h1 b {
  /*標題區左-訊息日期*/
  font-size: 12px;
  color: #A3A3A3;
  font-weight: normal;
  margin-left: 5px;
}

.titleArea .btn-fb {
  /*fb*/
  float: left;
}

.titleArea a.back {
  /*回上頁*/
  cursor: pointer;
  display: block;
  float: right;
  margin-left: 5px;
  color: #06F;
  font-size: 10pt;
}

@media (max-width: 1023px) {
  .contentBox .leftBox {
    padding: 0 0 30px 0;
  }
  .side_contactInfo {
    display: none;
  }
}
