/* CSS Document */
.newsList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.newsList .newsItem {
  width: 50%;
  padding: 0 25px 50px;
}
.newsList .newsItem .item {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .newsList .newsItem {
    padding: 0 15px 40px;
  }
}
@media (max-width: 640px) {
  .newsList .newsItem {
    width: 100%;
    padding: 0 0 40px;
  }
}
.newsList .Img {
  overflow: hidden;
}
.newsList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all 1s cubic-bezier(0.1, 0.7, 0.1, 1);
  transition: all 1s cubic-bezier(0.1, 0.7, 0.1, 1);
}
.newsList .Img a::after {
  content: "";
  width: 100%;
  height: 100%;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media (min-width: 1181px) {
  .newsList .Img a:hover::after {
    opacity: 1;
  }
  .newsList .Img a:hover img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.newsList .Txt {
  padding: 10px 0;
}
.newsList .Txt .title {
  font-size: 18px;
  font-weight: 400;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: #495056;
  letter-spacing: 0.63px;
}
.newsList .Txt .title a {
  color: #495056;
}
.newsList .Txt .title a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #606e7c;
  position: absolute;
  bottom: -5px;
  left: 0;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
@media (min-width: 1181px) {
  .newsList .Txt .title a:hover::after {
    width: 20px;
  }
}