/* CSS Document */
.newsList .item .Txt .linkWrap span, .newsList .item .Img img, .newsList .item {
  transition: all 0.5s ease-in-out;
}

.mainArea {
  padding-top: 40px;
}

.insPage {
  padding-top: 0;
}
.insPage .contentBox {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 70px;
}
@media (max-width: 1180px) {
  .insPage .contentBox {
    padding-top: 50px;
  }
}
@media (max-width: 480px) {
  .insPage .contentBox {
    padding-top: 40px;
  }
}

.contentBox .wrap {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 1536px) {
  .contentBox .wrap {
    max-width: 100%;
  }
}
@media (max-width: 1360px) {
  .contentBox .wrap {
    gap: 30px;
  }
}
@media (max-width: 1180px) {
  .contentBox .wrap {
    flex-direction: column;
  }
}
.contentBox .wrap .leftBox {
  width: 100%;
  max-width: 300px;
  flex-shrink: 0;
}
@media (max-width: 1180px) {
  .contentBox .wrap .leftBox {
    max-width: 100%;
    padding: 0;
  }
}
.contentBox .wrap .rightBox {
  width: 100%;
}

.newsInfoBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.newsInfoBox .dateBox .date {
  color: #2a2727;
  font-size: 15px;
  font-weight: 600;
  line-height: calc(15 / 15 * 1.5);
  letter-spacing: calc(15 * 0 / 1000 * 1px);
  font-family: "Open Sans", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
.newsInfoBox .classTitle {
  color: #c48ccd;
  font-size: 18px;
  font-weight: 500;
  line-height: calc(18 / 18 * 1.5);
  letter-spacing: calc(18 * 0 / 1000 * 1px);
  font-family: "Oswald", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}

.newsList {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.newsList .newsItem {
  width: 33.3333333333%;
  padding: 0 10px 30px;
}
@media (max-width: 1360px) {
  .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .newsList .newsItem {
    width: 100%;
  }
}
.newsList .item {
  background: #ffffff;
  border: solid 1px #e5e5e5;
  border-radius: 40px;
  position: relative;
  padding: 10px;
}
@media (min-width: 1181px) {
  .newsList .item:hover {
    border-color: #8a199c;
  }
  .newsList .item:hover .Txt .title {
    color: #8a199c;
  }
  .newsList .item:hover .Txt .linkWrap span {
    border-color: #8a199c;
    color: #8a199c;
  }
  .newsList .item:hover .Img img {
    transform: scale(1.05);
    filter: brightness(0.8);
  }
}
.newsList .item .Img {
  border-radius: 30px;
  overflow: hidden;
}
.newsList .item .Img img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.newsList .item .Txt {
  margin-top: 20px;
  padding: 0 20px 30px;
}
.newsList .item .Txt .title {
  height: 48.5px;
  color: #000000;
  font-size: 17px;
  font-weight: 600;
  line-height: calc(17 / 17 * 1.5);
  letter-spacing: calc(17 * 0 / 1000 * 1px);
  font-family: "Open Sans", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1180px) {
  .newsList .item .Txt .title {
    height: 43.5px;
    font-size: 15px;
  }
}
.newsList .item .Txt .title a {
  color: currentColor;
}
.newsList .item .Txt .title a::before {
  content: "";
  position: absolute;
  pointer-events: auto;
  transition: 0.5s all;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: unset;
}
.newsList .item .Txt .linkWrap {
  display: flex;
  align-items: center;
  position: relative;
  gap: 20px;
  flex-shrink: 0;
  pointer-events: none;
  margin-top: 20px;
}
.newsList .item .Txt .linkWrap span {
  border-bottom: solid 1px #000000;
  padding-bottom: 5px;
  color: #000000;
  font-size: 17px;
  font-weight: 400;
  line-height: calc(17 / 17 * 1.5);
  letter-spacing: calc(17 * 0 / 1000 * 1px);
  font-family: "Oswald", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
.newsList .item .Txt .linkWrap i {
  display: block;
  width: 14px;
  height: 14px;
  border: solid 2px #141414;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
  margin-top: -5px;
}