.bannerBox {
  background-color: #fafafa;
  overflow: hidden;
}
.bannerBox .banner:after {
  content: '';
  width: 10%;
  aspect-ratio: 244/900;
  position: absolute;
  top: 30%;
  left: 0;
  background-image: url(../images/news/banner_img-2.jpg);
  background-size: cover;
  background-position: center;
}
.bannerBox .banner i {
  text-align: left;
  display: block;
  width: 100%;
  transform: translateY(20px);
}
.bannerBox .banner .Txt {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  z-index: 50;
}
.bannerBox .banner .ImgBox {
  text-align: right;
  padding: 10% 0 5%;
}
.bannerBox .banner .ImgBox .InnerImg {
  width: 70%;
  display: inline-block;
  padding-top: 30%;
}

.bannerBox .banner .ImgBox .InnerImg .image {
  background-size: cover;
  background-position: bottom;
}

@media (max-width: 768px) {
  .bannerBox .banner .ImgBox {
    height: auto;
    padding: 0;
  }
  .bannerBox .banner .ImgBox .InnerImg {
    padding-top: 100%;
  }
}

/*newsArea*/
.newsArea {
  width: 100%;
  padding: 10% 0;
  background-color: #fafafa;
}

.newsArea:after {
  content: '';
  width: 80px;
  height: 80px;
  position: absolute;
  right: 0;
  top: 70%;
  border: 1px solid;
  border-style: solid;
  border-width: 100px 80px 100px 0;
  border-color: transparent #47A5C2 transparent transparent;
}
.newsArea .titleBox {
  z-index: 10;
  margin-top: 25%;
}

.newsArea .titleBox:after {
  content: '';
  width: 0;
  height: 300px;
  background-color: rgba(186, 91, 58, 0.75);
  position: absolute;
  top: 19px;
  left: 10%;
  z-index: -1;
  transition: all 1s;
}
.newsArea.active .titleBox:after {
  width: 90%;
}

.newsArea .titleBox h3 {
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
  transform: translateX(-50%);
  opacity: 0;
  transition: all 1s;
}

.newsArea.active .titleBox h3 {
  opacity: 1;
  transform: translateX(0%);
}

.newsArea .titleBox h3:after {
  content: '趨勢與觀點';
  font-family: 'Noto Serif TC', serif;
  font-size: 1.4rem;
  position: absolute;
  color: #231815;
  background-color: #fff;
  padding: 0px;
  letter-spacing: -1px;
  top: 100%;
  left: 50%;
  transition: all 1s;
}
.newsArea.active .titleBox h3:after {
  padding: 10px;
  letter-spacing: 2px;
}

.newsArea ol.NewsList li {
  counter-increment: questionNumber;
  padding-bottom: 10%;
}

.newsArea ol.NewsList li:last-child {
  padding-bottom: 0;
}
.newsArea ol.NewsList li.Item .title {
  border-bottom: 1px solid #eee;
}
.newsArea ol.NewsList li.Item .title:after {
  content: '';
  width: 0%;
  height: 1px;
  background-color: #eee;
  display: block;
  transition: all 1s;
}
.newsArea ol.NewsList li.Item:hover .title:after {
  background-color: #cc846b;
  width: 100%;
}

.newsArea ol.NewsList li.Item .title b {
  display: block;
  white-space: nowrap;
  width: 80%;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-family: 'Noto Serif TC', serif;
  letter-spacing: 0;

  transition: all 0.5s;
}

.newsArea ol.NewsList li.Item:hover .title b {
  letter-spacing: 3px;
  width: 95%;
}

.newsArea ol.NewsList li.Item .title i.date {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0.9rem;
  width: 100%;
  text-align: right;
  color: #999;
  line-height: 1;
  font-style: normal;
  opacity: 1;
  transition: all 0.5s;
}
.newsArea ol.NewsList li.Item:hover .title i.date {
  opacity: 0;
  right: -1%;
}

.newsArea ol.NewsList li:before {
  content: counters(questionNumber, '.', decimal-leading-zero) ' ';
  font-family: 'Roboto', sans-serif;
  color: #dedede;
  display: block;
  float: left;
  line-height: 22px;
  margin-left: -30px;
  text-align: center;
  height: 22px;
  width: 10%;
  font-size: 4rem;
  transition: all 1s;
  display: none;
}
.newsArea ol.NewsList li:hover:before {
  color: #cc846b;
}
.newsArea ol.NewsList li a {
  display: block;
  /*padding-left: 3.5rem;*/
}

.newsArea ol.NewsList li.Item p {
  overflow: hidden;
  width: 80%;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 300;
  color: #999;
}

@media (max-width: 768px) {
  .newsArea {
    background-image: none;
    /*background: -webkit-linear-gradient(bottom, #dbdcdc 0%, #ffffff 50%, #ffffff 100%);
        background: -o-linear-gradient(bottom, #dbdcdc 0%, #ffffff 50%, #ffffff 100%);
        background: linear-gradient(to bottom, #dbdcdc 0%, #ffffff 50%, #ffffff 100%);*/
  }

  .newsArea .titleBox {
    left: 10%;
    width: 50%;
    margin: 0;
    margin-bottom: 12%;
  }

  .newsArea .titleBox h3:after {
    width: 70%;
    text-align: center;
  }

  .newsArea .titleBox:after {
    height: 100px;
  }

  .newsArea .titleBox i {
    position: relative;
  }

  .newsArea ol.NewsList {
    padding: 0 15%;
  }
  .newsArea ol.NewsList li.Item p {
    width: 100%;
  }
  .aside {
    padding-top: 2rem;
  }
}

@media (max-width: 500px) {
  .newsArea .titleBox {
    width: 75%;
  }

  .newsArea .titleBox h3:after {
    width: 60%;
  }

  .newsArea ol.NewsList li:before {
    font-size: 2.6rem;
  }

  .newsArea ol.NewsList {
    padding: 0 10px;
  }

  .newsArea ol.NewsList li a {
    padding-left: 0;
    top: -20px;
  }

  .newsArea ol.NewsList li.Item .title b {
    width: 100%;
  }

  .newsArea ol.NewsList li.Item .title i.date {
    position: relative;
  }
}

.aside {
  padding-left: 8%;
}

.aside .title {
  border-bottom: 1px solid #ced4da;
  padding-bottom: 1rem;
  margin-bottom: 1.3rem;
}
.side-link-list li {
  margin-bottom: 1rem;
}

.side-link-list a {
  display: inline-block;
  position: relative;
  margin-left: 14px;
  padding-left: 15px;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.side-link-list a::before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 3px;
  margin-top: -1px;
  border: 0px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
