@charset "UTF-8";
.fullBox {
  position: relative;
  width: calc(100vw - 17px);
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* CSS Document */
/*新訊列表*/
ul.newsList li {
  border-bottom: 1px solid #eee;
  /*訊息分隔線*/
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.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;
}

ul.newsList li .Img {
  /*訊息圖片*/
  float: left;
  margin-right: 10px;
  width: 250px;
  border: 2px solid #eee;
}

ul.newsList li .Img img {
  display: block;
  width: 100%;
}

ul.newsList li .Txt {
  /*文字區*/
  overflow: hidden;
}

ul.newsList li .Txt h3 {
  /*訊息標題*/
  font-size: 19px;
  font-weight: normal;
  color: #2f2f2f;
  margin-bottom: 3px;
}

ul.newsList li .Txt h3 a {
  /*訊息標題*/
  display: inline-block;
  vertical-align: middle;
  color: #000;
}

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

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

/*內頁*/
/****分享*****/
.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 #dadada;
  /*下邊線*/
  padding: 0 0px 15px 0px;
  /*下邊線與標題距離*/
}

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

.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: 640px) {
  ul.newsList li .Img {
    width: 100%;
    margin-bottom: 20px;
  }
  ul.newsList li .Txt {
    overflow: visible;
  }
}
