/* 合作案例 */
@import url("./public.css"); /* 通用样式 */

.hzal-box {
  /* display: flex;
  flex-wrap: wrap; */
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 25px 20px;
  margin: 50px auto;
  width: 1200px;
}
.hzal-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}
.hzal-item .hzal-item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 10vw; */
  height: 100px;
  border-radius: 10px 10px 0 0;
}
.hzal-item-img .index-khal-list-item-text {
  font-weight: 600;
  max-width: 80%;
  font-size: 16px;
}

.hzal-item-img .hzal-item-img-logo {
  max-width: 80%;
  max-height: 80%;
}

.hzal-item .hzal-item-title {
  text-align: center;
  width: 100%;
  color: #ffffff;
  background-color: #2a82e4;
  padding: 10px 0;
  border-radius: 0 0 5px 5px;
}

.hzal-expand-box {
  margin-top: 20px;
}

/* 通用标题 */
.hzal-title {
  font-size: 30px;
  text-align: center;
}
/* 通用描述 */
.hzal-desc {
  font-size: 18px;
  text-align: center;
  color: #858e9b;
}

.hzal-memo {
  width: 1200px;
  /* height: 800px; */
  /* background-color: #465871; */
  margin: 20px auto;
}

/* 移动端 */
@media screen and (max-width: 768px) {
  .hzal-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 20px;
    margin: 30px 20px;
    width: auto;
  }
  .hzal-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  }
  .hzal-item .hzal-item-img {
    width: 100%;
    height: 100px;
    /* background-color: aqua; */
    border-radius: 10px 10px 0 0;
  }

  .hzal-item-img-logo {
    max-width: 80%;
    max-height: 80%;
  }
  .hzal-item .hzal-item-title {
    text-align: center;
    width: 100%;
    color: #ffffff;
    background-color: #2a82e4;
    padding: 5px 0;
    border-radius: 0 0 5px 5px;
    font-size: 13px;
  }

  .hzal-memo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
  }
  .hzal-memo-img {
    width: 100%;
    height: 100%;
  }
}
