.cooperative_news_top {
  position: relative;
  height: 380px;
  border-radius: 8px;
  overflow: hidden;
}

.cooperative_news_top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cooperative_news_top .tip {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 24px;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 30px;
  color: #FFFFFF;
  line-height: 82px;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  box-sizing: border-box;
}

.cooperative_news_list {
  margin-top: 30px;
  display: grid;
  grid-column-gap: 20px;
  grid-row-gap: 30px;
  grid-template-columns: 1fr 1fr;
}

.cooperative_news_item {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.cooperative_news_item:hover .cooperative_news_img img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.cooperative_news_img {
  height: 240px;
  border-radius: 8px;
  overflow: hidden;
}

.cooperative_news_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cooperative_news_cont {

  padding: 24px;
  box-sizing: border-box;
}

.cooperative_news_cont_t {
  padding-bottom: 50px;
}

.cooperative_news_cont_t .title {
  margin-bottom: 12px;
  font-size: 24px;
  color: #333333;
  line-height: 33px;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;

}

.cooperative_news_cont_t .tip {
  font-size: 16px;
  color: #333333;
  line-height: 22px;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.cooperative_news_cont_b {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cooperative_news_cont_b span {
  font-size: 16px;
  color: #05B74B;
  line-height: 24px;
}

.cooperative_news_cont_b img {
  width: 20px;
}

@media screen and (max-width: 750px) {
  .cooperative_news_top {
    height: 2.92rem;
    border-radius: 0.08rem;
  }

  .cooperative_news_top .tip {
    padding: 0 0.2rem;
    font-size: 0.32rem;
    color: #FFFFFF;
    line-height: 0.84rem;
  }

  .cooperative_news_list {
    margin-top: 0.24rem;
    grid-column-gap: 0.22rem;
    grid-row-gap: 0.24rem;
  }

  .cooperative_news_item {
    border-radius: 0.08rem;
  }

  .cooperative_news_img {
    height: 1.94rem;
    border-radius: 0.08rem;
  }

  .cooperative_news_cont {
    padding: 0.24rem 0.2rem;
  }

  .cooperative_news_cont_t {
    padding-bottom: 0.6rem;
  }

  .cooperative_news_cont_t .title {
    margin-bottom: 0;
    font-size: 0.28rem;
    line-height: 0.4rem;
    -webkit-line-clamp: 2;
  }

  .cooperative_news_cont_t .tip {
    display: none;
  }

  .cooperative_news_cont_b {
    left: 0.2rem;
    bottom: 0.24rem;
    gap: 0.08rem;
  }

  .cooperative_news_cont_b span {
    font-size: 0.24rem;
    line-height: 0.34rem;
  }

  .cooperative_news_cont_b img {
    width: 0.24rem;
  }
}