.recommended-news-container .content {
  justify-content: space-between;
}

/* 封面nes */
.cover-news-div {
  position: relative;
  max-width:9.4rem;
  width: 100%;
  /* width: 48.95849vw; */
  margin-right: 0.6rem;
  height: fit-content;
}

.cover-news-div::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 5.6rem;
  /* height: 29.16676vw; */
  content: '';
  border-radius: 20px;
  background: #f5f9f9;
}

.cover-news-img {
  max-width: 9.4rem;
  width: 100%;
  position: relative;
  /* width: 42.70847vw; */
  margin: auto;
  padding: 0 0.6rem;
  cursor: pointer;
  overflow: hidden;
}

.cover-news-img .img {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
}

.cover-news-img .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.cover-news-desc {
  padding: 30px 0.6rem 0.6rem;
}


.news-title {
  font-size: 0.24rem;
  font-family: 'Inter-Medium';
  -webkit-line-clamp: 2;
}

.news-time {
  color: #666;
  margin: .24rem 0 .16rem;
  font-size: .14rem;
}

.news-tags {
  flex-wrap: wrap;
}

.news-tags a {
  font-size: 0.14rem;
  display: block;
  padding: 8.5px 0.16rem;
  margin-right: 10px;
  border-radius: 20px;
  border: 1px solid #edefef;
  background: #fff;
}

.news-tags a:last-child {
  margin-right: 0;
}

.others-recommended-news li {
  padding-bottom: 0.36rem;
  margin-bottom: 0.36rem;
  border-bottom: 1px solid #edefef;
}

.others-recommended-news li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.others-recommended-news .item {
  display: flex;
}

.others-recommended-news .desc {
  max-width: 4rem;
  width: 100%;
  margin-right: 0.6rem;
}

.others-recommended-news .item .img {
  position: relative;
  max-width: 180px;
  display: block;
  overflow: hidden;
}

.others-recommended-news .item .img img {
  transition: all 0.4s;
}


/* news列表 */
.news-lists-container {
  margin: 1rem 0;
}


.search-news {
  max-width: 800px;
  margin: 0.6rem auto 1rem;
}

.search-news .input-div {
  position: relative;
}

.search-news input {
  border: none;
  background: none;
  padding: 0;
  border-bottom: 3px solid #242e2e;
}

.search-news input[type="submit"] {
  position: absolute;
  top: 50%;
  right: 0;
  width: 28px;
  height: 28px;
  margin: auto;
  border: none;
  transform: translateY(-50%);
  background: url(/lib/images/icon_search_black.svg) no-repeat center;
}

.search-news input:focus {
  box-shadow: none;
  outline: none;
}

.search-news input::placeholder {
  color: #999;
  font-size: 0.2rem;
}

.news-lists-div .row {
  margin: 0 -0.35rem;
}

.news-lists-div .row>div {
  margin-bottom: .4rem;
  padding: 0 0.35rem;
}

.news-img {
  position: relative;
  width: 100%;
}

.news-img .img {
  width: 100%;
  cursor: pointer;
  display: block;
  margin-bottom: 24px;
  overflow: hidden;
}

.news-img .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.news-item .news-img .more {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  width: .64rem;
  height: .64rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #084A91;
  transition: all 0.4s;
}

.news-item .news-img .more img {
  width: 16px;
}

.news-item .news-desc .news-title {
  margin: .3rem 0 14px;
  -webkit-line-clamp: 2;
}

.news-item .news-desc .news-text {
  color: #666;
  -webkit-line-clamp: 2;
}


.cover-news-img .img::after,
.others-recommended-news .item .img::after,
.news-img .img::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  opacity: 0;
  background: #242e2e10;
  transition: all 0.4s;
}



.cover-news-div:hover .cover-news-img img,
.others-recommended-news .item:hover .img img,
.news-item:hover .news-img .img img {
  transform: scale(1.1);
  transition: all 0.4s;
}


.cover-news-div:hover .cover-news-img .img::after,
.others-recommended-news .item:hover .img::after,
.news-item:hover .news-img::after {
  opacity: 1;
  transition: all 0.4s;
}


.cover-news-div:hover .news-title {
  color: #133e77;
}

.news-item:hover .more {
  width: 1.36rem;
  transition: all 0.4s;
}

.news-lists-div .more-news {
  width: 240px;
  height: 56px;
  margin: auto;
  border-radius: 30px;
  color: #133e77;
  border: 2px solid  #133e77;
  background: #fff;
  transition: all 0.4s;
}

.news-lists-div .more-news a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-lists-div .more-news:hover {
  color: #fff;
  background: #133e77;
  transition: all 0.4s;
}

.news-lists-div .more-news:hover a {
  color: #fff;
}



@media (max-width: 1740px) {
  .news-lists-div .row {
    margin: 0 -20px;
  }
  
  .news-lists-div .row > div {
    padding: 0 20px;
  }
}

@media (max-width: 1279px) {
  .news-title {
    font-size: 0.28rem;
  }

  .news-lists-div .row {
    margin: 0 -15px;
  }
  
  .news-lists-div .row > div {
    padding: 0 15px;
  }
}



@media(max-width: 767px) {
  .recommended-news-container .content {
    flex-direction: column;
  }

  .cover-news-div {
    margin-right: 0;
    margin-bottom: 0.8rem;
  }

  .others-recommended-news .desc {
    margin-right: 15px;
  }

  .news-lists-container {
    margin: 0.8rem 0;
  }

  .search-news {
    margin: 0.4rem auto 0.8rem;
  }

  .news-lists-div .row {
    margin: 0 -10px;
  }
  
  .news-lists-div .row > div {
    padding: 0 10px;
  }

  .news-title {
    font-size: 0.32rem;
  }
}

