
.news-page  .news-video {
  position: absolute;
  top: 0;
  left: 0;
  /* z-index: -1; */
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0,1); */
}

.banner-bg::before {
  z-index: 1;
  content: none;
}

.news-page  .news-video video {
  width: 100%;
  height: 100%;
}

/* news 页面 */
.news-conatiner {
  padding: 80px 0;
}

.news-lists,
.more-lists {
  width: 100%;
  max-width: 1000px;
}

.news-lists .row,
.more-lists .row {
  margin: 0 -20px;
}

.news-lists li,
.more-lists li {
  padding: 0 20px;
  /* width: auto; */
}

.news-item {
  max-width: 480px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
  transition: all 1s;
}

.news-img {
  max-width: 480px;
  width: 100%;
  height: 300px;
  position: relative;
  transition: all 1s;
}

.news-img>img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.news-img .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  font-family: 'Poppins-Bold';
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: all 1s;
}

.news-img .mask p span {
  margin-right: 10px;
}

.news-desc {
  padding: 30px;
}

.news-time {
  font-size: 14px;
  color: #666;
}

.news-title {
  -webkit-line-clamp: 2;
  margin: 10px 0 15px;
  line-height: 27px;
  font-family: 'Raleway-Bold';
  color: #12bc66;
  font-size: 20px;
}

.news-text {
  -webkit-line-clamp: 3;
  line-height: 24px;
}

/* hover */

.news-item:hover .news-img .mask {
  opacity: 1;
  transition: all 1s;
}

/* 加载更多列表 */
.more-lists {
  display: none;
}

.load-more p,
.no-more p {
  height: 72px;
  width: 230px;
  align-items: center;
  justify-content: center;
  margin: auto;
  color: #fff;
  border-radius: 36px;
  background: linear-gradient(to right, #55ba4a, #1ab370);
  transition: all 0.5s;
  cursor: pointer;
}

.no-more {
  display: none;
}

.no-more p {
  cursor: not-allowed;
}

.load-more p:hover {
  background: linear-gradient(to left, #55ba4a, #1ab370);
  transition: all 0.5s;
}

.load-more p:hover img {
  transform: rotate(-90deg);
  transition: all 0.5s;
}

.load-more p img {
  margin-left: 10px;
  transition: all 0.5s;
  transform: rotate(90deg);
}


@media (max-width: 1023px) {
  .news-conatiner {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .news-conatiner {
    padding: 40px 0;
  }

  .news-lists .row,
  .more-lists .row {
    margin: 0 -15px;
  }

  .news-lists .row li,
  .more-lists .row li {
    padding: 0 15px;
  }

  .news-item {
    margin: auto auto 40px;
  }

  .news-desc {
    padding: 30px 15px;
  }

  .load-more p,
  .no-more p {
    height: 60px;
  }
}


/* subscribe */
.subscribe {
  background: #f7f7f7;
}

.subscribe .row {
  justify-content: space-between;
  align-items: center;
}

.subscribe .content {
  padding: 4.03647125vw 7.812525vw;
}

.subs-title {
  font-size: 40px;
  font-family: 'Raleway-Bold';
  line-height: 1.5;
}

.subs-title span {
  color: #12bc66;
}

.subs-input {
  position: relative;
}

.subs-input {
  max-width: 590px;
}

.subs-input input {
  height: 72px;
  width: 590px;
  padding: 0 30px;
  border-radius: 36px;
}

.subs-input input[type="submit"] {
  width: 160px;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(to right, #55ba4a, #1ab370);
  color: #fff;
  cursor: pointer;
  transition: all 0.5s;
}

.subs-input input[type="submit"]:hover {
  background: linear-gradient(to left, #55ba4a, #1ab370);
  transition: all 0.5s;
}

@media (max-width: 1023px) {
  .subs-title {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
  }

  .subscribe .content {
    padding: 60px 7.812525vw;
  }
}

@media (max-width: 767px) {
  .subs-title {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .subscribe .content {
    padding: 40px 0;
  }

  .subs-input input {
    width: 100%;
    height: 60px;
  }
}

/* subscribe end */


/* news 页面 end */


/* news details 页面 */




/* news details 页面 end */