@charset "UTF-8";
/* CSS Document */
/*通用212121*/
:root {
  --width: 1440;
}

.newsList .newsItem:before {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.mainArea:not(.ins) .contentBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mainArea:not(.ins) .contentBox .leftBox {
  width: 250px;
}
.mainArea:not(.ins) .contentBox .rightBox {
  width: calc(100% - 250px);
  padding-left: 50px;
}
@media (max-width: 992px) {
  .mainArea:not(.ins) .contentBox .rightBox {
    padding-left: 30px;
  }
}
@media (max-width: 1024px) {
  .mainArea:not(.ins) .contentBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mainArea:not(.ins) .contentBox .leftBox {
    width: 100%;
  }
  .mainArea:not(.ins) .contentBox .rightBox {
    width: 100%;
    padding-left: 0;
  }
}

/*新訊列表*/
.newsList .newsItem {
  padding: 30px 0;
  position: relative;
}
.newsList .newsItem:before, .newsList .newsItem:after {
  content: "";
  position: absolute;
  left: 0;
  pointer-events: none;
}
.newsList .newsItem:before {
  top: 0;
  width: 0;
  height: 4px;
  background-color: #0081cc;
}
.newsList .newsItem:after {
  top: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(93, 93, 93, 0.3);
}
@media (min-width: 1201px) {
  .newsList .newsItem:hover:before {
    width: 300px;
  }
  .newsList .newsItem:hover .Txt .title a {
    color: #0081cc;
  }
}
.newsList .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.newsList .Img {
  width: 300px;
}
.newsList .Img img {
  width: 100%;
}
.newsList .Txt {
  width: calc(100% - 300px);
  padding: 10px 0 10px 30px;
}
.newsList .Txt .title {
  margin-bottom: 3px;
  font-size: 19px;
  font-weight: bold;
  color: #2f2f2f;
}
.newsList .Txt .title a {
  display: block;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 1201px) {
  .newsList .Txt .title a:hover {
    color: #0081cc;
  }
}
.newsList .Txt .text {
  margin-top: 7px;
  font-size: 17px;
  color: #777777;
  line-height: 1.5;
  max-height: 77px;
}
@media (max-width: 667px) {
  .newsList .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .newsList .Img {
    width: 100%;
  }
  .newsList .Txt {
    width: 100%;
    padding: 25px 0 0 0;
  }
}

.newsDate {
  font-size: 12px;
  color: #818181;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 15px;
}
.newsDate strong {
  font-weight: 400;
}
.newsDate strong i {
  margin-right: 2px;
  font-size: 14px;
  color: #AE4233;
}
.newsDate b {
  margin-left: 3px;
}
.newsDate .classTitle {
  margin-right: 15px;
}

.date {
  font-size: 15px;
  color: #a5a5a5;
}

.classTitle {
  display: inline-block;
  padding: 7px 12px;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  background-color: #606060;
}

/*內頁*/
/****分享*****/
.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: rgb(174, 66, 51);
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(174, 66, 51)), to(rgb(196, 76, 76)));
  background: linear-gradient(to bottom, rgb(174, 66, 51) 0%, rgb(196, 76, 76) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ae4233", endColorstr="#c44c4c", GradientType=0);
  /* IE6-9 */
  cursor: pointer;
}
.shareBox .back:hover {
  background: #398cb1;
}