.newsList .item .Img .arrow, .newsList .item .Img .classTitle, .newsList .item .Img img {
  transition: all 0.5s ease-in-out;
}

.newsList {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  margin: 0 -10px;
}
.newsList .newsItem {
  width: 33.3333333333%;
  padding: 0 10px 40px;
}
@media (max-width: 1180px) {
  .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .newsList .newsItem {
    width: 100%;
  }
}
.newsList .item {
  width: 100%;
  position: relative;
  margin: 0 auto;
}
@media (min-width: 1181px) {
  .newsList .item:hover .Img img {
    transform: scale(1.05);
  }
  .newsList .item:hover .classTitle,
  .newsList .item:hover .arrow {
    background: #0461A4;
    border-color: #0461A4;
  }
}
.newsList .item .Img {
  position: relative;
  overflow: hidden;
}
.newsList .item .Img img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.newsList .item .Img .classTitle {
  border: 1px solid #ffffff;
  border-radius: 99px;
  position: absolute;
  bottom: 20px;
  left: 25px;
  pointer-events: none;
  padding: 10px 30px;
  color: #ffffff;
  font-size: clamp(14px, 0.8vw, 15px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  font-family: "Poppins", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
.newsList .item .Img .arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
  bottom: 20px;
  right: 25px;
}
.newsList .item .Img .arrow::before {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: 0.5s all;
  width: 10px;
  height: 10px;
  border-left: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
  top: 50%;
  left: 56%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.newsList .item .Txt {
  display: flex;
  padding: 20px 0 30px;
}
.newsList .item .Txt .date {
  width: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  color: #000000;
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  font-family: "Poppins", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
.newsList .item .Txt .date span {
  width: 1px;
  height: 25px;
  background-color: #000000;
}
.newsList .item .Txt .textBox {
  flex: 1;
  padding-left: 20px;
}
.newsList .item .Txt .textBox .title {
  color: #000000;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.5px;
  font-family: "Poppins", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
@media (min-width: 1181px) {
  .newsList .item .Txt .textBox .title:hover {
    color: #0461A4;
  }
}
.newsList .item .Txt .textBox .title a {
  height: 3em;
  color: currentColor;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.newsList .item .Txt .textBox .text {
  margin-top: 10px;
  color: #7b7b7b;
  font-size: clamp(14px, 0.8vw, 15px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.5px;
  font-family: "Poppins", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
.newsList .item .Txt .textBox .text p {
  height: 4em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}