@charset "UTF-8";
/* CSS Document */
.newsList .Txt {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.contentBox .leftBox {
  padding: 0 50px 0 0;
}

.contentBox .rightBox {
  padding: 0;
}

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

.newsList .item {
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.27);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.27);
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.newsList .item:hover {
  -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.27);
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.27);
}

.newsList .Img {
  position: relative;
}

.newsList .Img:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  z-index: 20;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  pointer-events: none;
}

.newsList .Img:hover:before {
  border-color: #f0f5fd;
  width: calc( 100% - 20px);
  height: calc( 100% - 20px);
}

.newsList .Img img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  object-fit: cover;
  height: 250px;
}

.newsList .Txt {
  position: relative;
  padding: 30px 20px 70px;
  background-color: #fff;
}

.newsList .Txt p {
  height: 70px;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

.ellipsis {
  height: 70px !important;
  overflow: hidden;
}


.newsList .newIcon {
  position: absolute;
  left: 15px;
  top: 8px;
  color: #d1bc86;
}

.newsList h3 a {
  display: block;
  padding-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  letter-spacing: 1px;
}

.newsList h3 a:hover {
  color: #d1bc86;
}

.newsList .date {
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
}

.newsList .newsBtn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70px;
  height: 70px;
  overflow: hidden;
}

.newsList .newsBtn:before {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 14px;
  width: 13px;
  height: 1px;
  background-color: #fff;
  z-index: 1;
}

.newsList .newsBtn:after {
  content: "";
  position: absolute;
  bottom: 14px;
  right: 20px;
  height: 13px;
  width: 1px;
  background-color: #fff;
  z-index: 1;
}

.newsList .newsBtn a {
  position: absolute;
  top: 30%;
  left: 30%;
  display: inline-block;
  border: 50px solid #27003d;
  border-color: #27003d transparent transparent transparent;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

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

.newsDate strong {
  font-weight: 400;
}

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

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

.newIcon {
  display: inline-block;
  padding: 3px 5px;
  margin-right: 3px;
  border-radius: 3px;
  font-weight: 400;
  font-size: 12px;
  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: #ae4233;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ae4233 0%, #c44c4c 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ae4233), color-stop(100%, #c44c4c));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #ae4233 0%, #c44c4c 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #ae4233 0%, #c44c4c 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #ae4233 0%, #c44c4c 100%);
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(#ae4233), to(#c44c4c));
  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;
}

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

/********標題區*******/
.titleArea {
  clear: both;
  margin-bottom: 30px;
  padding: 15px 10px;
  border-bottom: 1px dashed #b6b6b6;
}

.titleArea h1 {
  font-size: 19px;
  font-weight: 400;
  color: #2f2f2f;
  overflow: hidden;
}

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

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

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

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

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

/*# sourceMappingURL=news.css.map */