.other_body .module_title {
  margin-bottom: 20px;
}

.module6 {
  background-color: #f6f8fd;
}

.module6 .cooperation_list {
  margin-top: 60px;
  display: grid;
  grid-column-gap: 45px;
  grid-row-gap: 45px;
  grid-template-columns: 1fr 1fr;
}

.module6 .cooperation_item {
  position: relative;
  background-color: #ffffff;
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  overflow: hidden;
}

.module6 .cooperation_item:hover::after {
  display: block;
}

.module6 .cooperation_item::after {
  display: none;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.module6 .cooperation_item .top {
  position: relative;
  height: 195px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.module6 .cooperation_item .img_bg {
  position: absolute;
  left: -2px;
  top: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  object-fit: cover;
  z-index: 1;
}

.module6 .cooperation_item .icon_body {
  position: relative;
  z-index: 2;
  text-align: center;
}

.module6 .cooperation_item .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  background-color: #EEF4FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.module6 .cooperation_item h4 {
  margin-top: 22px;
  font-weight: 400;
  font-size: 24px;
  color: #EEF4FF;
}

.module6 .cooperation_item .text_body {
  padding: 38px;
  padding-top: 18px;
}

.module6 .cooperation_item .text_body p {
  line-height: 32px;
}

@media screen and (max-width: 750px) {
  .module6 {
    background-color: #ffffff;
  }

  .module6 .cooperation_list {
    margin-top: 0.7rem;
    grid-column-gap: 0.3rem;
    grid-row-gap: 0.3rem;
    grid-template-columns: 1fr;
  }

  .module6 .cooperation_item .top {
    height: 1.65rem;
  }

  .module6 .cooperation_item .icon {
    width: 0.64rem;
    height: 0.64rem;
  }

  .module6 .cooperation_item h4 {
    margin-top: 0.21rem;
    font-size: 0.32rem;
    line-height: 0.32rem;
  }

  .module6 .cooperation_item .text_body {
    padding: 0.46rem 0.36rem;
    padding-bottom: 0.64rem;
  }

  .module6 .cooperation_item .text_body p {
    line-height: 0.46rem;
  }
}