/* CSS Document */
.newsList .item .emptyImg, .newsList .item .Img, .newsList .item {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.newsInfoBox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
  margin-bottom: 10px;
}
.newsInfoBox .date {
  color: #898989;
  font-size: 20px;
  font-weight: 600;
  line-height: calc(20 / 20 * 1.5);
  letter-spacing: calc(20 * 20 / 1000 * 1px);
  font-family: "Raleway", "Microsoft JhengHei", sans-serif;
}
.newsInfoBox .classTitle {
  height: 30px;
  background: #0e66a7;
  border-radius: 99px;
  padding: 0 15px;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: calc(15 / 15 * 1.5);
  letter-spacing: calc(15 * 20 / 1000 * 1px);
  font-family: "Raleway", "Microsoft JhengHei", sans-serif;
}

.newsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
}
.newsList .newsItem {
  width: 33.3333333333%;
  padding: 0 20px 40px;
}
@media (max-width: 1340px) {
  .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .newsList .newsItem {
    width: 100%;
  }
}
.newsList .item {
  max-width: 450px;
  background: #ffffff;
  border: solid 1px #dcdcdc;
  border-radius: 40px;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 20px 20px 40px;
  margin: 0 auto;
}
@media (min-width: 1181px) {
  .newsList .item:hover {
    -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  .newsList .item:hover .Img,
  .newsList .item:hover .emptyImg {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  .newsList .item:hover .Txt .title {
    color: #e27531;
  }
}
.newsList .item .Img {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.newsList .item .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.newsList .item .emptyImg {
  width: 100%;
  aspect-ratio: 1;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
}
.newsList .item .emptyImg img {
  width: 100%;
  max-width: 150px;
}
.newsList .item .Txt {
  margin-top: 20px;
}
.newsList .item .Txt .title {
  height: 54px;
  color: #0e66a7;
  font-size: 18px;
  font-weight: 500;
  line-height: calc(18 / 18 * 1.5);
  letter-spacing: calc(18 * 20 / 1000 * 1px);
  font-family: "Raleway", "Microsoft JhengHei", sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.newsList .item .Txt .title a::before {
  content: "";
  position: absolute;
  pointer-events: auto;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.newsList .item .Txt .text {
  height: 48px;
  margin-top: 10px;
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 400;
  line-height: calc(16 / 16 * 1.5);
  letter-spacing: calc(16 * 20 / 1000 * 1px);
  font-family: "Open Sans", "Microsoft JhengHei", sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.innerContentBox {
  margin-top: 80px;
}