<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */
/*新訊列表*/
.newsList {
  width: 100%;
}

@media (max-width: 767px) {
  .newsList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: auto;
    margin-left: -8px;
    margin-right: -8px;
  }
}

.newsList li {
  margin-bottom: 35px;
}

@media (max-width: 767px) {
  .newsList li {
    width: 50%;
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 480px) {
  .newsList li {
    width: 100%;
  }
}

.newsList .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .newsList .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.newsList .Img {
  width: 35%;
}

@media (max-width: 767px) {
  .newsList .Img {
    width: 100%;
  }
}

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

.newsList .Txt {
  width: 65%;
  padding-left: 25px;
}

@media (max-width: 767px) {
  .newsList .Txt {
    width: 100%;
    padding-left: 0;
  }
}

.newsList .title a {
  display: block;
  padding-top: 3px;
  font-weight: 500;
  color: #111;
  font-size: 21px;
  margin-bottom: 13px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.newsList .text {
  font-size: 15px;
  letter-spacing: .05em;
  color: #626262;
  line-height: 1.6;
  max-height: 72px;
  margin-bottom: 20px;
}

.newsDate {
  padding: 5px 0;
  color: #818181;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", "Noto Sans TC", sans-serif;
}

.newsDate strong {
  font-weight: 400;
}

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

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

/*內頁*/
/****分享*****/
.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 {
  margin-bottom: 30px;
  padding: 15px 0;
  border-bottom: 1px solid #111;
}

.titleArea h1 {
  font-weight: 500;
  letter-spacing: .05em;
  font-size: 24px;
  color: #111;
}

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

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