.newsPage {
  position: relative;
  width: 100%;
}
.newsPage .newsPage-main {
  padding: 80px 110px 60px;
  background: url('../images/cur/new-back.png') no-repeat;
  background-size: 100% auto;
  background-position: top center;
}
.newsPage .newsPage-title {
  width: 100%;
  max-width: 1645px;
  margin: 0 auto 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.newsPage .newsPage-title .newsPage-text {
  width: 50%;
}
.newsPage .newsPage-title .newsPage-text .text {
  font-weight: bold;
  font-size: 72px;
  color: #000000;
  line-height: 87px;
  background: linear-gradient(254deg, rgba(68, 149, 167, 0.97) 0%, rgba(88, 147, 207, 0.97) 47.94921875%, rgba(110, 211, 179, 0.97) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'SourceHanSansSC-Medium';
}
.newsPage .newsPage-title .newsPage-text .line {
  width: 69px;
  height: 8px;
  background: linear-gradient(254deg, rgba(68, 149, 167, 0.97), rgba(88, 147, 207, 0.97), rgba(110, 211, 179, 0.97));
  border-radius: 4px;
  margin-top: 50px;
}
.newsPage .newsPage-title .newsPage-cur {
  width: 50%;
  text-align: right;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.newsPage .newsPage-title .newsPage-cur .dot {
  width: 8px;
  height: 8px;
  background: #000000;
  border-radius: 50%;
}
.newsPage .newsPage-title .newsPage-cur .text {
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  line-height: 24px;
  margin-top: 10px;
}
.newsPage .home-news-data {
  width: 100%;
  display: flex;
  justify-content: space-between;
  max-width: 1645px;
  margin: 0 auto;
}
.newsPage .home-news-data .home-news-slide {
  width: calc((100% - 40px) / 2);
}
.newsPage .home-news-data .home-news-slide .home-news-img {
  width: 100%;
}
.newsPage .home-news-data .home-news-slide .home-news-img img {
  width: 100%;
  display: block;
  transform: scale(1);
  transition: 0.5s;
}
.newsPage .home-news-data .home-news-slide .home-news-con {
  width: 100%;
}
.newsPage .home-news-data .home-news-slide .home-news-con .home-news-info-inner {
  display: block;
  width: 100%;
  padding-top: 25px;
}
.newsPage .home-news-data .home-news-slide .home-news-con .home-news-info-inner .name {
  font-weight: bold;
  font-size: 32px;
  color: #000000;
  line-height: 38px;
  transition: 0.5s;
  min-height: 76px;
}
.newsPage .home-news-data .home-news-slide .home-news-con .home-news-info-inner .line {
  width: 100%;
  height: 2px;
  margin: 15px 0;
  background: #C3C3C3;
  position: relative;
}
.newsPage .home-news-data .home-news-slide .home-news-con .home-news-info-inner .line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  transition: 0.5s;
  background: linear-gradient(254deg, rgba(68, 149, 167, 0.97) 0%, rgba(88, 147, 207, 0.97) 47.94921875%, rgba(110, 211, 179, 0.97) 100%);
}
.newsPage .home-news-data .home-news-slide .home-news-con .home-news-info-inner .desc {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  line-height: 37px;
}
.newsPage .home-news-data .home-news-slide:hover .home-news-img img {
  transform: scale(1.05);
}
.newsPage .home-news-data .home-news-slide:hover .home-news-con .home-news-info-inner .name {
  color: #6BD0B5;
}
.newsPage .home-news-data .home-news-slide:hover .home-news-con .home-news-info-inner .line::after {
  width: 100%;
}
.newsPage .newsPage-inner {
  width: 100%;
}
.newsPage .news-list {
  width: 90%;
  max-width: 1645px;
  margin: 0 auto;
}
.newsPage .item {
  width: 100%;
  position: relative;
  padding: 45px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px dashed #C3C3C3;
}
.newsPage .item .item-time {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.newsPage .item .item-time .day {
  font-weight: 400;
  font-size: 42px;
  color: #000000;
  line-height: 50px;
  font-family: 'SourceHanSansSC-Medium';
}
.newsPage .item .item-time .time {
  font-weight: 400;
  font-size: 22px;
  color: #666666;
  line-height: 27px;
  margin-top: 7px;
}
.newsPage .item .item-con {
  width: calc(100% - 200px);
}
.newsPage .item .item-con .name {
  font-weight: bold;
  font-size: 32px;
  color: #000000;
  line-height: 38px;
  font-family: 'SourceHanSansSC-Medium';
  transition: 0.5s;
}
.newsPage .item .item-con .desc {
  font-weight: 400;
  font-size: 16px;
  color: #5A5A5A;
  line-height: 33px;
  margin-top: 16px;
}
.newsPage .item::after {
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -2px;
  content: "";
  transition: 0.5s;
  background: linear-gradient(254deg, rgba(68, 149, 167, 0.97) 0%, rgba(88, 147, 207, 0.97) 47.94921875%, rgba(110, 211, 179, 0.97) 100%);
}
.newsPage .item:hover::after {
  width: 100%;
}
.newsPage .item:hover .item-con .name {
  color: #6BD0B5;
}
.newsPage .webPage {
  margin-top: 60px;
}
@media only screen and (max-width: 1918px) {
  .newsPage .newsPage-main {
    padding: 70px 5% 60px;
  }
  .newsPage .newsPage-title .newsPage-text .text {
    font-size: 56px;
    line-height: 74px;
  }
  .newsPage .newsPage-title .newsPage-text .line {
    width: 63px;
    height: 6px;
    margin-top: 35px;
  }
  .newsPage .home-news-data .home-news-slide .home-news-con .home-news-info-inner .name {
    font-size: 26px;
  }
  .newsPage .item .item-con .name {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1598px) {
  .newsPage .newsPage-title .newsPage-text .text {
    font-size: 46px;
    line-height: 62px;
  }
  .newsPage .home-news-data .home-news-slide .home-news-con .home-news-info-inner .name {
    font-size: 22px;
  }
  .newsPage .home-news-data .home-news-slide .home-news-con .home-news-info-inner .desc {
    font-size: 16px;
  }
  .newsPage .newsPage-main {
    padding: 65px 5% 25px;
  }
  .newsPage .item .item-con .name {
    font-size: 22px;
  }
  .newsPage .item {
    padding: 34px 0;
  }
  .newsPage .webPage {
    margin-top: 50px;
  }
}
@media (max-width: 1365px) {
  .newsPage .newsPage-main {
    padding: 45px 5% 24px;
  }
  .newsPage .home-news-data .home-news-slide .home-news-con .home-news-info-inner .name {
    font-size: 20px;
  }
  .newsPage .item .item-con .name {
    font-size: 20px;
  }
  .newsPage .home-news-data .home-news-slide {
    width: calc((100% - 30px) / 2);
  }
  .newsPage .item .item-con .desc {
    font-size: 15px;
    line-height: 32px;
    margin-top: 12px;
  }
  .newsPage .home-news-data .home-news-slide .home-news-con .home-news-info-inner .desc {
    font-size: 15px;
    line-height: 32px;
  }
}
@media (max-width: 1250px) {
  .newsPage {
    margin-top: 65px;
  }
  .newsPage .newsPage-title .newsPage-cur .text {
    font-size: 16px;
  }
  .newsPage .newsPage-title .newsPage-text .text {
    font-size: 36px;
    line-height: 54px;
  }
  .newsPage .newsPage-title .newsPage-text .line {
    width: 58px;
    height: 5px;
    margin-top: 28px;
  }
  .newsPage .home-news-data .home-news-slide .home-news-con .home-news-info-inner .name {
    font-size: 18px;
  }
  .newsPage .item {
    padding: 30px 0;
  }
  .newsPage .home-news-data .home-news-slide .home-news-con .home-news-info-inner {
    padding-top: 20px;
  }
  .newsPage .item .item-con .name {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .newsPage .newsPage-main {
    padding: 32px 5% 0;
  }
  .newsPage .newsPage-title .newsPage-text .text {
    font-size: 28px;
    line-height: 42px;
  }
  .newsPage .newsPage-title .newsPage-cur .text {
    font-size: 14px;
  }
  .newsPage .newsPage-title .newsPage-text .line {
    width: 50px;
    height: 3px;
    margin-top: 22px;
  }
  .newsPage .home-news-data {
    flex-wrap: wrap;
  }
  .newsPage .home-news-data .home-news-slide {
    width: 100%;
    margin-bottom: 25px;
  }
  .newsPage .item {
    padding: 20px 0;
    flex-wrap: wrap;
  }
  .newsPage .item .item-time {
    width: 100%;
  }
  .newsPage .webPage {
    margin-top: 36px;
  }
  .newsPage .item .item-con .desc {
    font-size: 14px;
    line-height: 30px;
    margin-top: 6px;
  }
  .newsPage .item .item-con {
    width: 100%;
    margin-top: 16px;
  }
  .newsPage .item .item-con .name {
    font-size: 16px;
  }
  .newsPage .home-news-data .home-news-slide .home-news-con .home-news-info-inner .desc {
    font-size: 14px;
    line-height: 30px;
  }
  .newsPage .home-news-data .home-news-slide .home-news-con .home-news-info-inner .name {
    font-size: 16px;
    line-height: 30px;
    min-height: 0;
  }
}
@media only screen and (max-width: 641px) {
  .newsPage {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 431px) {
  .newsPage {
    margin-top: 42px;
  }
}
@media only screen and (max-width: 396px) {
  .newsPage .newsPage-title .newsPage-text .text {
    font-size: 22px;
    line-height: 36px;
  }
  .newsPage .newsPage-title .newsPage-text .line {
    width: 47px;
    height: 3px;
    margin-top: 18px;
  }
}
