.subTitle {
  width: 1200px;
  height: 88px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  margin: 0 auto;
  position: relative;
  Z-index: 2;
}

.lineShu {
  width: 4px;
  height: 28px;
  background: #56CAC1;
}

.title {
  font-weight: 600;
  font-size: 28px;
  line-height: 40px;
  margin-left: 12px;
  color: #323233;
  flex: 1;
}

.title22 {
  font-weight: 600;
  font-size: 28px;
  line-height: 40px;
  color: #323233;
  flex: 1;
}

.more {
  width: 60px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #56CAC1;
  font-size: 14px;
  color: #56CAC1;
  float: right;
  cursor: pointer;
}

.list {
  width: 1280px;
  height: 360px;
  overflow-x: hidden;
  padding-left: 40px;
  margin: 0 auto;
  box-sizing: border-box;
  /* display: flex; */
  /* justify-content: flex-start; */
  /* flex-wrap: wrap; */
  overflow-y: hidden;
  position: relative;
  Z-index: 2;
}

.item {
  width: 270px;
  height: 328px;
  background: #FFFFFF;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 16px 32px rgb(8, 26, 61, 0.04) ;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  float: left;
  margin-right: 40px;
  margin-bottom: 32px;
}

/* .item:nth-child(4n) {
  margin-right: 0;
} */

.item:hover{
  box-shadow: 0px 16px 32px rgba(38, 45, 61, 0.12);
}

.itemImg {
  width: 270px;
  height: 240px;

}

.itemText {
  height: 72px;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 16px 0;
  font-size: 20px;
  line-height: 28px;
  color: #323233;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tips {
  height: 30px;
  width: 62px;
  position: absolute;
  left: 0px;
  top: 0px;
  border-bottom-right-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
}

.noMore {
  font-size: 20px;
  line-height: 28px;
  color: #8F95A5;
  width: 100%;
  text-align: center;
  margin-bottom: 100px;
}

/* 移动端响应式设计 */
@media (max-width: 768px) {
  .subTitle {
    width: 100%;
    height: auto;
    padding: 20px 15px;
    margin-top: 20px;
  }

  .title {
    font-size: 20px;
    line-height: 28px;
  }

  .title22 {
    font-size: 20px;
    line-height: 28px;
  }

  .more {
    width: 50px;
    height: 28px;
    font-size: 12px;
  }

  .list {
    width: 100%;
    height: auto;
    padding: 0 15px;
    overflow-x: visible;
    overflow-y: visible;
  }

  .item {
    width: calc(50% - 10px);
    height: auto;
    margin-right: 10px;
    margin-bottom: 20px;
    float: left;
  }

  .item:nth-child(2n) {
    margin-right: 0;
  }

  .itemImg {
    width: 100%;
    height: auto;
    aspect-ratio: 9/8;
    object-fit: cover;
  }

  .itemText {
    height: auto;
    min-height: 60px;
    padding: 12px;
    font-size: 14px;
    line-height: 20px;
    -webkit-line-clamp: 2;
  }

  .tips {
    height: 24px;
    width: 50px;
    font-size: 12px;
  }

  .noMore {
    font-size: 16px;
    margin-bottom: 50px;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .subTitle {
    padding: 15px 10px;
    margin-top: 15px;
  }

  .title {
    font-size: 18px;
    line-height: 24px;
  }

  .title22 {
    font-size: 18px;
    line-height: 24px;
  }

  .more {
    width: 45px;
    height: 26px;
    font-size: 11px;
  }

  .list {
    padding: 0 10px;
  }

  .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .itemText {
    font-size: 13px;
    line-height: 18px;
    padding: 10px;
  }

  .tips {
    height: 20px;
    width: 45px;
    font-size: 11px;
  }
}