@charset "UTF-8";
/* CSS Document */
.newsList .Txt .title a span:after, .newsList .item, .moreBox .plus:before, .moreBox .plus:after, .moreBox .plus {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes floating {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes loop-text {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loop-text {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.mainArea.list {
  padding-top: 40px;
}
@media (max-width: 768px) {
  .mainArea.list {
    padding-top: 0;
  }
}

.moreBox {
  text-align: center;
  margin: auto;
}
.moreBox a {
  padding: 20px;
  color: #9b9b9b;
  font-size: 13px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  letter-spacing: 0.65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.moreBox .plus {
  width: 27px;
  height: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #9b9b9b;
  border-radius: 50%;
  position: relative;
  margin-left: 10px;
}
.moreBox .plus:before, .moreBox .plus:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #ffffff;
}
.moreBox .plus:before {
  width: 9px;
  height: 1px;
}
.moreBox .plus:after {
  width: 1px;
  height: 9px;
}

/*新訊列表*/
.newsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
}
.newsList .newsItem {
  padding: 0 20px 40px;
  width: 33.3333333333%;
}
.newsList .item {
  height: 100%;
  padding: 15px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media (min-width: 1025px) {
  .newsList .item:hover {
    -webkit-box-shadow: 0px 2px 13px 0px rgba(4, 0, 0, 0.13);
            box-shadow: 0px 2px 13px 0px rgba(4, 0, 0, 0.13);
  }
  .newsList .item:hover .moreBox a {
    color: #dc2f34;
  }
  .newsList .item:hover .moreBox a .plus {
    background-color: #dc2f34;
  }
  .newsList .item:hover .moreBox a .plus:before, .newsList .item:hover .moreBox a .plus:after {
    background-color: #ffffff;
  }
}
.newsList .Img {
  margin-bottom: 25px;
}
.newsList .Img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.newsList .Txt {
  text-align: center;
}
.newsList .Txt .title {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.9px;
}
.newsList .Txt .title a {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #1a1a1a;
  display: block;
  padding-bottom: 2px;
}
.newsList .Txt .title a span {
  position: relative;
}
.newsList .Txt .title a span:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.5);
}
.newsList .Txt .title a:hover span:after {
  width: 100%;
}
.newsList .Txt .text {
  color: #484848;
  font-size: 15px;
  font-weight: 100;
  letter-spacing: 0.75px;
  line-height: 1.667;
  height: 51px;
  overflow: hidden;
  text-align: center;
  margin-bottom: 15px;
}
@media (max-width: 1180px) {
  .newsList {
    margin: 0 -10px;
  }
  .newsList .newsItem {
    padding: 0 10px 40px;
  }
}
@media (max-width: 992px) {
  .newsList {
    margin: 0 -10px;
  }
  .newsList .newsItem {
    padding: 0 10px 40px;
    width: 50%;
  }
}
@media (max-width: 600px) {
  .newsList {
    margin: 0;
  }
  .newsList .newsItem {
    padding: 0 0 40px;
    width: 100%;
  }
}

.newsDate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 5px;
}
.newsDate .left {
  color: #cdcdcd;
  font-size: 65px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
.newsDate .right {
  padding-left: 10px;
}
.newsDate .month {
  color: #4e4e4e;
  font-size: 17px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  letter-spacing: 1px;
}
.newsDate .dayYear {
  color: #4e4e4e;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  padding-top: 5px;
}
.newsDate strong {
  color: #4e4e4e;
  font-size: 15px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.newsDate strong i {
  margin-right: 2px;
  font-size: 14px;
  color: #AE4233;
}
.newsDate b {
  margin-left: 3px;
}
@media (max-width: 768px) {
  .newsDate .left {
    font-size: 55px;
  }
}

.classTitle {
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border-radius: 15px;
  background-color: #484848;
  padding: 5px 20px 6px 20px;
  margin: 20px 0 15px;
}

/*內頁*/
.classDateBox .newsDate {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.classDateBox .classTitle {
  display: block;
  margin: 0 15px 0 0;
}

/****分享*****/
.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;
}
/*# sourceMappingURL=news.css.map */