@charset "UTF-8";
/* CSS Document */
.newsList li .item,
.newsList li .newIcon {
  transition: all 0.4s ease;
}

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

/*新訊列表*/
.newsList {
  width: 100%;
}
.newsList li {
  margin-bottom: 10px;
}
.newsList li:hover {
  cursor: pointer;
}
.newsList li:hover .Txt {
  background-color: #ffffff;
  background-image: none;
}
.newsList li:hover .item {
  box-shadow: 2px 2px 16px 0px rgba(0, 0, 0, 0.1);
}
.newsList li:hover .newIcon {
  color: #ffffff;
  background-color: #293189;
}
.newsList .Img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsList .Txt {
  overflow: hidden;
  padding: 20px;
  background-color: #fafafa;
  background-image: url(../images/bg.png);
}
.newsList .Txt p {
  color: #414141;
  height: 80px;
  line-height: 26px;
  letter-spacing: 0.28px;
}
.newsList h3 {
  font-size: 19px;
  line-height: 29px;
  letter-spacing: 0.38px;
  margin-bottom: 15px;
  font-weight: 400;
  height: 36px;
  color: #000000;
}
.newsList h3 a {
  display: inline-block;
  vertical-align: middle;
}
.newsList .more {
  font-size: 16px;
  color: #292929;
  margin-top: 20px;
  text-align: right;
}

.tagDateBox {
  display: flex;
  align-items: center;
  margin-top: 5px;
  margin-bottom: 20px;
}
.tagDateBox .date {
  color: #575757;
  font-family: "Lato";
  border-left: 1px solid #d8d8d8;
  padding-left: 12px;
}

/*內頁*/
/****分享*****/
.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;
}
.shareBox .back:hover {
  background: #398cb1;
}

/********標題區*******/
.titleArea {
  clear: both;
}
.titleArea .articleTitle {
  text-align: left;
}
.titleArea .articleTitle:after {
  margin-left: 0;
}
.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;
  }
}
@media (max-width: 640px) {
  ul.newsList li {
    padding: 0;
    margin-bottom: 30px;
  }
}