.newsList .Txt .title, .newsInfoBox .dateBox,
.newsInfoBox .classTitle {
  transition: all 0.5s ease-in-out;
}

.insPage .contentBox {
  flex-direction: column;
  gap: 0;
}

@media (max-width: 1180px) {
  .contentBox {
    flex-direction: column;
    gap: 0;
  }
}

.newsInfoBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}
.newsInfoBox .dateBox,
.newsInfoBox .classTitle {
  padding: 0;
  color: #202020;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}
@media (max-width: 480px) {
  .newsInfoBox .dateBox,
  .newsInfoBox .classTitle {
    font-size: 13px;
  }
}
.newsInfoBox .dateBox .date {
  line-height: 1.2;
}
.newsInfoBox .classTitle {
  width: -moz-max-content;
  width: max-content;
  background: linear-gradient(90deg, rgba(0, 140, 215, 0.8) -0.43%, rgba(10, 186, 181, 0.8) 49.56%, rgba(47, 181, 75, 0.8) 99.56%);
  padding: 5px 10px;
  color: #fff;
}

.newsList {
  display: flex;
  flex-wrap: wrap;
  margin-top: clamp(30px, 5vw, 60px);
  --gap: 50px;
  gap: 40px var(--gap);
}
@media (max-width: 640px) {
  .newsList {
    --gap: 12px;
  }
}
.newsList .newsItem {
  width: 100%;
  display: flex;
}
.newsList .newsItem:nth-child(even) {
  margin-left: auto;
}
@media (max-width: 640px) {
  .newsList .newsItem {
    width: calc((100% - var(--gap)) / 2);
  }
}
@media (max-width: 480px) {
  .newsList .newsItem {
    width: 100%;
  }
}
.newsList .newsItem:has(.hasAlbum) .item, .newsList .newsItem:has(.hasVideo) .item {
  cursor: pointer;
}
.newsList .item {
  padding: clamp(20px, 2.5vw, 40px) 0px;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.newsList .item::after {
  content: "";
  width: 80%;
  height: 100%;
  border: 1px solid #1D9E75;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
  background-image: linear-gradient(90deg, rgba(47, 181, 75, 0.18) 0%, rgba(47, 181, 75, 0.18) 1.99%, rgba(10, 186, 181, 0.18) 16.91%, rgba(0, 140, 215, 0.18) 31.82%, rgba(0, 140, 215, 0.18) 33.33%, rgba(0, 140, 215, 0) 66.67%, rgba(0, 140, 215, 0) 100%);
  background-size: 300% 100%;
  background-position: 100% 0;
  transition: background-position 0.5s ease-in-out;
}
@media (max-width: 640px) {
  .newsList .item::after {
    width: 100%;
    height: 80%;
  }
}
@media (min-width: 1181px) {
  .newsList .item:hover::after {
    background-position: 0 0;
  }
  .newsList .item:hover .title {
    color: #1D9E75;
  }
  .newsList .item:hover .btnIcon::before {
    opacity: 1;
    animation: rotate 1.5s linear infinite;
  }
}
@media (max-width: 640px) {
  .newsList .item {
    flex-direction: column;
    padding: 0 16px;
    flex: 1;
  }
}
.newsList .item .linkWrap {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.newsList .Img {
  width: 31%;
  position: relative;
  aspect-ratio: 600/490;
  background-color: #f5f5f5;
}
@media (max-width: 992px) {
  .newsList .Img {
    width: 45%;
  }
}
@media (max-width: 640px) {
  .newsList .Img {
    width: 100%;
  }
}
.newsList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.newsList .Txt {
  flex: 1;
  height: 100%;
  padding: 30px clamp(30px, 3.5vw, 60px);
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .newsList .Txt {
    width: 55%;
  }
}
@media (max-width: 640px) {
  .newsList .Txt {
    width: 100%;
    padding: 16px 0;
    flex: 1;
  }
}
.newsList .Txt .title {
  font-size: clamp(18px, 2.3vw, 22px);
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #202020;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 414px) {
  .newsList .Txt .title {
    font-size: 16px;
  }
}
.newsList .Txt .text {
  color: #626262;
  font-size: clamp(14px, 1.5vw, 16px);
  letter-spacing: 0.5px;
  margin: 25px 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 992px) {
  .newsList .Txt .text {
    line-height: 1.6;
  }
}
@media (max-width: 640px) {
  .newsList .Txt .text {
    margin: 10px 0;
  }
}
.newsList .Txt:not(:has(.text)) .title {
  margin-bottom: 25px;
}
.newsList .Txt .btnBox {
  margin-top: auto;
}
@media (max-width: 640px) {
  .newsList .Txt .btnBox .btn {
    font-size: 15px;
  }
  .newsList .Txt .btnBox .btn svg {
    width: 13px;
  }
}
@media (max-width: 576px) {
  .newsList .Txt .btnBox .btn {
    min-width: unset;
    width: 100%;
  }
}
@media (max-width: 1180px) {
  .newsList .Txt .btnBox .btnIcon::before {
    opacity: 1;
    animation: rotate 1.5s linear infinite;
  }
}
@media (max-width: 640px) {
  .newsList .Txt .btnBox .btnIcon {
    width: 30px;
    height: 30px;
  }
}

.shareBox {
  float: right;
}
.shareBox .btn-fb {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.shareBox .back {
  display: inline-block;
  vertical-align: middle;
  padding: 3px 5px;
  border-radius: 3px;
  font-size: 12px;
  color: #fff;
  background: rgb(174, 66, 51);
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, rgb(174, 66, 51) 0%, rgb(196, 76, 76) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ae4233', endColorstr='#c44c4c', GradientType=0);
  /* IE6-9 */
  cursor: pointer;
}
@media (min-width: 1181px) {
  .shareBox .back:hover {
    background: #398cb1;
  }
}