@charset "UTF-8";

/* CSS Document */
.contentBox.ins {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .contentBox.ins {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media (min-width: 768px) {
  .contentBox.ins .leftBox {
    width: 250px;
    padding-right: 40px;
    border-right: 1px solid #e6e6e6;
  }
}

@media (max-width: 767px) {
  .contentBox.ins .leftBox {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .contentBox.ins .rightBox {
    width: calc(100% - 250px);
    padding-left: 40px;
  }
}

@media (max-width: 767px) {
  .contentBox.ins .rightBox {
    width: 100%;
  }
}

.contentBox.ins .m_classLink {
  width: 100%;
  margin-bottom: 20px;
}

/*新訊列表*/
.newsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.newsList li {
  width: 33.3333%;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

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

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

.newsList .item {
  position: relative;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

@media (min-width: 1201px) {
  .newsList .item:hover .Txt::before {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    border-radius: 50%;
    -webkit-transition-delay: .4s;
    -o-transition-delay: .4s;
    transition-delay: .4s;
  }

  .newsList .item:hover .top,
  .newsList .item:hover h3,
  .newsList .item:hover p {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    opacity: 0;
  }

  .newsList .item:hover h3 {
    -webkit-transition-delay: .1s;
    -o-transition-delay: .1s;
    transition-delay: .1s;
  }

  .newsList .item:hover p {
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;
  }
}

@media (max-width: 1200px) {
  .newsList .item {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  }
}

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

@media (min-width: 1201px) {
  .newsList .Txt {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    padding: 35px;
    overflow: hidden;
    pointer-events: none;
  }

  .newsList .Txt::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 1;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
  }
}

@media (max-width: 1200px) {
  .newsList .Txt {
    padding: 20px;
  }
}

@media (min-width: 1201px) {

  .newsList .top,
  .newsList h3,
  .newsList p {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
  }
}

.newsList .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 25px;
}

.newsList .date {
  font-size: 14px;
  font-family: "Red Hat Text", "Noto Sans TC", sans-serif;
  color: #888;
}

.newsList h3 a {
  display: block;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: .05em;
  color: #323232;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dashed #cfcfcf;
}

.newsList p {
  max-height: 96px;
  font-size: 15px;
  letter-spacing: .05em;
  color: #757575;
  line-height: 1.6;
}

/*內頁*/
.newsDate {
  font-weight: 400;
  font-size: 14px;
  font-family: "Red Hat Text", "Noto Sans TC", sans-serif;
  color: #888;
}

.newsDate strong {
  font-weight: 400;
}

.recommendList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-left: -45px;
  margin-right: -45px;
}

@media (max-width: 1280px) {
  .recommendList {
    margin-left: -20px;
    margin-right: -20px;
  }
}

.recommendList li {
  width: 50%;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 30px;
}

@media (max-width: 1280px) {
  .recommendList li {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 480px) {
  .recommendList li {
    width: 100%;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 30px;
  }
}

.recommendList .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.recommendList .Img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
}

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

.recommendList .author {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: .05em;
}

.recommendList .author a {
  color: #5b4023;
}

@media (min-width: 961px) {
  .recommendList .author {
    padding-right: 50px;
  }
}

@media (max-width: 960px) {
  .recommendList .author {
    padding-bottom: 10px;
  }
}

.recommendList .author::after {
  content: '';
  position: absolute;
  width: 37px;
  height: 1px;
  background-color: #5b4023;
}

@media (min-width: 961px) {
  .recommendList .author::after {
    right: 0;
    top: 50%;
    margin-top: -0.5px;
  }
}

@media (max-width: 960px) {
  .recommendList .author::after {
    bottom: 0;
    left: 50%;
    margin-left: -15px;
    width: 30px;
  }
}

@media (min-width: 961px) {
  .recommendList .Txt {
    width: calc(100% - 140px);
    padding-left: 30px;
  }
}

@media (max-width: 960px) {
  .recommendList .Txt {
    width: 100%;
    padding-top: 20px;
    text-align: center;
  }
}

.recommendList h3 a {
  display: block;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .05em;
  color: #4c4c4c;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.recommendList h3 a:hover {
  color: #5b4023;
}

.recommendList p {
  margin-bottom: 12px;
  max-height: 48px;
  font-weight: 30;
  line-height: 1.6;
  font-size: 15px;
  letter-spacing: .05em;
  color: #7e7e7e;
}

/****分享*****/
.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;
}

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

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

.titleArea .title 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;
}

.titleArea .author {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding-right: 50px;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: .05em;
  color: #5b4023;
}

.titleArea .author::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.5px;
  width: 37px;
  height: 1px;
  background-color: #5b4023;
}













/*

.articleList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}

.articleList li {
  width: 33.333%;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .articleList li {
    width: 50%;
  }
}

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

.articleList .item {
  width: 100%;
  max-width: 385px;
  margin-left: auto;
  margin-right: auto;
  padding: 8px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.articleList .item:hover {
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
}

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

.articleList .Txt {
  padding: 30px 15px 15px;
}

@media (max-width: 480px) {
  .articleList .Txt {
    padding: 15px;
  }
}

.articleList h3 a {
  display: block;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: .05em;
  color: #323232;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dashed #cfcfcf;
}

.articleList p {
  max-height: 66px;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: .05em;
  color: #757575;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

*/



.articleList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}

.articleList li {
  width: 33.333%;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .articleList li {
    width: 50%;
  }
}

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

.articleList .item {
  width: 100%;
  max-width: 385px;
  margin-left: auto;
  margin-right: auto;
  padding: 8px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  border: 1px solid #f2ecdf;
}

.articleList .item:hover {
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
}

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

.articleList .Txt {
  padding: 20px 15px 20px;
}

@media (max-width: 480px) {
  .articleList .Txt {
    padding: 15px;
  }
}

.articleList h3 a {
  display: block;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: .05em;
  color: #323232;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dashed #cfcfcf;
}

.articleList p {
  max-height: 66px;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: .05em;
  color: #757575;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}



.articleList .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 15px;
}


.articleList .date {
  font-size: 14px;
  font-family: "Red Hat Text", "Noto Sans TC", sans-serif;
  color: #888;
}