.newsBox {
  transition: all 0.5s;
}

.mainArea {
  margin-top: 80px;
}
.mainArea .wrap {
  max-width: 1540px;
}
@media (max-width: 768px) {
  .mainArea {
    padding-top: 0;
  }
}

.newsInfoBox .dateBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.newsInfoBox .dateBox .classTitle {
  color: #666666;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.2px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  padding-left: 20px;
}
.newsInfoBox .dateBox .date {
  font-size: 13px;
  border-radius: 17px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding-bottom: 20px;
}
@media (max-width: 1440px) {
  .newsInfoBox .dateBox .date {
    font-size: 12px;
  }
}
@media (max-width: 350px) {
  .newsInfoBox .dateBox .date {
    margin: 0 auto;
    max-width: calc(100% - 30px);
  }
}
.newsInfoBox .tagBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 0;
}
.newsInfoBox .tagBox .tagList {
  display: -ms-flexbox;
  display: flex;
}
.newsInfoBox .tagBox .sdgImgBox {
  display: -ms-flexbox;
  display: flex;
  border-radius: 99px;
  overflow: hidden;
  margin: 0 2px;
}
.newsInfoBox .tagBox .sdgImg {
  width: 56px;
  height: 56px;
}

.newsBox.ajaxDisabled {
  opacity: 0.15;
  pointer-events: none;
}

.newsList {
  margin: 0 -25px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1440px) {
  .newsList {
    margin: 0 -12px;
  }
}
@media (max-width: 1023px) {
  .newsList {
    padding-left: 0;
    padding-top: 40px;
  }
}
.newsList .newsItem {
  width: 33.33%;
  padding: 20px 25px;
}
@media (max-width: 1440px) {
  .newsList .newsItem {
    padding: 0 12px;
  }
}
.newsList .Img {
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1023px) {
  .newsList .Img {
    border-radius: 35px;
  }
}
.newsList .Img:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.5s;
  pointer-events: none;
}
@media (min-width: 1201px) {
  .newsList .Img:hover:before {
    opacity: 1;
  }
}
.newsList .imgBox {
  position: relative;
  margin-bottom: 24px;
}
.newsList .imgBox .newsVideo {
  position: absolute;
  bottom: 50%;
  right: 50%;
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
  width: 114px;
  height: 114px;
  background-color: rgba(196, 196, 196, 0.3);
  border-radius: 50%;
  padding: 13px;
  z-index: 4;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .newsList .imgBox .newsVideo {
    width: 84px;
    height: 84px;
  }
}
@media (max-width: 350px) {
  .newsList .imgBox .newsVideo {
    bottom: 60%;
  }
}
@media (min-width: 1201px) {
  .newsList .imgBox .newsVideo:hover .videoBtn {
    background-color: #ed0616;
  }
}
.newsList .imgBox .newsVideo::before {
  content: "";
  position: absolute;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  background: url(../images/circle.png) no-repeat center/100%;
  z-index: 0;
  top: 3px;
  left: 3px;
  -webkit-animation: rotate 50s linear forwards;
          animation: rotate 50s linear forwards;
}
.newsList .imgBox .newsVideo .videoBtn {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  cursor: pointer;
  background-color: #bb0511;
  position: relative;
  color: #fff;
  padding: 24px 15px;
  text-align: center;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .newsList .imgBox .newsVideo .videoBtn {
    padding: 15px 15px;
  }
}
.newsList .imgBox .newsVideo .videoBtn .icon {
  width: 15px;
  height: 15px;
  margin: 0 auto 12px;
}
@media (max-width: 767px) {
  .newsList .imgBox .newsVideo .videoBtn .icon {
    margin: 0 auto 5px;
  }
}
.newsList .imgBox .newsVideo .videoBtn .txt {
  font-size: 12px;
}
.newsList .imgBox .newsInfoBox {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  font-weight: 500;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 350px) {
  .newsList .imgBox .newsInfoBox {
    bottom: 10px;
    display: block;
  }
}
.newsList .imgBox .newsInfoBox .classTitle {
  min-width: 120px;
  max-width: calc(100% - 140px);
  padding: 7px 10px;
  background-color: #fff;
  height: 34px;
  border-radius: 17px;
  font-size: 14px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 1440px) {
  .newsList .imgBox .newsInfoBox .classTitle {
    font-size: 12px;
  }
}
@media (max-width: 350px) {
  .newsList .imgBox .newsInfoBox .classTitle {
    display: none;
  }
}
.newsList .imgBox .newsInfoBox .dateBox {
  height: 34px;
  font-size: 13px;
  width: 120px;
  background-color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  border-radius: 17px;
  -ms-flex-pack: center;
      justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
@media (max-width: 1440px) {
  .newsList .imgBox .newsInfoBox .dateBox {
    font-size: 12px;
  }
}
@media (max-width: 350px) {
  .newsList .imgBox .newsInfoBox .dateBox {
    margin: 0 auto;
    max-width: calc(100% - 30px);
  }
}
.newsList .title {
  font-size: 20px;
  color: #222222;
  letter-spacing: 1px;
  margin-bottom: 9px;
  height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.newsList .text {
  font-size: 16px;
  color: #666666;
  letter-spacing: 1.4px;
  line-height: 1.6;
  height: 53px;
}