@charset "UTF-8";
/* CSS Document */
.contentBox .leftBox {
  padding: 0 50px 0 0;
}

.contentBox .rightBox {
  padding: 0;
}

/*新訊列表*/
ul.newsList {
  width: 100%;
}

ul.newsList li {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px dashed #bfbfbf;
}

ul.newsList li .Img {
  /*訊息圖片*/
  float: left;
  margin-right: 10px;
  width: 150px;
  height: 150px;
  border: 4px solid #D2D2D2;
}

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

ul.newsList li .item {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 55px 0 45px;
  box-sizing: border-box;
}

ul.newsList li .newsDate {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 110px;
  height: 110px;
  font-family: "Prata", serif;
  text-align: center;
  color: #333;
  letter-spacing: .05em;
  font-size: 12px;
  border: 2px solid #981111;
  border-radius: 50%;
  box-sizing: border-box;
}

ul.newsList li .newsDate:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border: 1px solid #981111;
  border-radius: 50%;
  box-sizing: border-box;
}

ul.newsList li .newsDate .top {
  font-size: 40px;
}

ul.newsList li .Txt {
  position: relative;
  width: calc(100% - 110px);
  padding-left: 45px;
  box-sizing: border-box;
}

ul.newsList li .newIcon {
  position: absolute;
  right: 0;
  top: 0;
}

ul.newsList li h3 a {
  display: block;
  font-size: 22px;
  font-weight: normal;
  letter-spacing: .05em;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 5px 0 15px;
}

ul.newsList li h3 a:hover {
  color: #af1e1e;
}

ul.newsList li p {
  font-size: 14px;
  line-height: 25px;
  letter-spacing: .05em;
  color: #6a6a6a;
  max-height: 50px;
  height: auto;
}

ul.newsList li .btn a {
  position: relative;
  display: inline-block;
  margin-top: 25px;
  font-size: 13px;
  letter-spacing: .3em;
  color: #af1e1e;
}

ul.newsList li .btn a:after {
  content: '\f105';
  font-family: FontAwesome;
  display: inline-block;
  font-size: 16px;
  margin-left: 3px;
}

.newIcon {
  /*分類小圖示*/
  padding: 4px 10px;
  display: inline-block;
  letter-spacing: .05em;
  font-weight: normal;
  background-color: #fff;
}

/*內頁*/
/****分享*****/
.shareBox {
  float: right;
}

.shareBox .btn-fb {
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
}

.shareBox a.back {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 3px 5px;
  font-size: 12px;
  color: #FFF;
  border-radius: 3px;
  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 */
  transition: none;
}

.shareBox a.back:hover {
  background: #398cb1;
}

/********標題區*******/
.titleArea {
  clear: both;
  margin-bottom: 30px;
  border-bottom: 1px dashed #B6B6B6;
  /*下邊線*/
  padding: 15px 0;
  /*下邊線與標題距離*/
}

.titleArea h1 {
  /*標題區左-訊息標題*/
  font-size: 19px;
  font-weight: normal;
  color: #2f2f2f;
  overflow: hidden;
  margin-top: 8px;
}

.titleArea h1 strong {
  display: block;
  font-weight: normal;
}

.titleArea h1 b {
  /*標題區左-訊息日期*/
  font-size: 12px;
  color: #A3A3A3;
  font-weight: normal;
  margin-left: 5px;
}

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

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

.titleArea .newsDate {
  display: inline-block;
  vertical-align: middle;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  letter-spacing: .1em;
  margin-left: 5px;
}

.titleArea .newsDate strong {
  font-weight: 400;
}

@media (max-width: 1023px) {
  .contentBox .leftBox {
    padding: 0 0 30px 0;
  }
}

@media (max-width: 959px) {
  .sectionTitle {
    display: block;
  }
}

@media (max-width: 767px) {
  ul.newsList li .item {
    padding: 30px 0 0 0;
  }
}

@media (max-width: 640px) {
  ul.newsList li .newsDate {
    width: 80px;
    height: 80px;
  }
  ul.newsList li .newsDate:after {
    width: 70px;
    height: 70px;
  }
  ul.newsList li .newsDate .top {
    font-size: 20px;
  }
  ul.newsList li .Txt {
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  ul.newsList li .item {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  ul.newsList li .Txt {
    width: 100%;
    padding-left: 0;
  }
  ul.newsList li .newsDate {
    width: 100%;
    height: auto;
    border-radius: 0;
    border: none;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    letter-spacing: .1em;
  }
  ul.newsList li .newsDate .top {
    font-size: 13px;
  }
  ul.newsList li .newsDate .top:after {
    content: '.';
  }
  ul.newsList li .newsDate:after {
    display: none;
  }
}
