h4,h5,ul,li {
  margin-block-start: 0;
  margin-block-end: 0;
}

.product-select {
  width: 1192px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-inline-start: 0;
  padding-bottom: 48px;
}

.product-select-item {
  box-sizing: border-box;
  width: 588px;
  height: 400px;
  list-style: none;
  cursor: pointer;
  text-align: center;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(243, 245, 255, 0) 0%, rgba(243, 245, 255, 0.5) 56.65%, rgba(243, 245, 255, 1) 100%);
  border: 1px solid rgba(230, 236, 248, 1);
}
.product-select-item-img-box{
  width: 100%;
  height: 240px;
  border-radius: 8px, 8px, 0px, 0px;
  background: rgba(232, 237, 248, 1);
  margin-block-start: 0em;
  margin-block-end: 0em;
  text-align: center;
}

.product-select-item-title {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 700;
  color: rgba(24, 24, 24, 1);
}

.product-select-item:hover .product-select-item-title {
  color: rgba(98, 70, 232,1);
}

.product-select-item-desc{
  font-size: 14px;
  font-weight: 400;
  color: rgba(78, 89, 105, 1);
}
.product-select-item-button{
  display: inline-block;
  width: 540px;
  height: 44px;
  line-height: 44px;
  border-radius: 4px;
  background: rgba(98, 70, 232,1);
  text-align: center;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto;
  text-decoration: none;
  margin-top: 30px;
}
@media ((min-width: 1024px) and (max-width: 1439px)) {
  .product-select {
    width: 1000px;
  }
  .product-select-item{
    width: 494px;
  }
  .product-select-item-button{
    width: 462px;
    font-size: 18px;
  }
}

@media ((min-width: 750px) and (max-width: 1023px)) {
  .product-select {
    width: auto;
    padding: 0 12px;
  }
  .product-select-item{
    width: calc(50% - 6px);
    height: 360px;
  }
  .product-select-item-img-box{
    height: 212px;
  }
  .product-select-item-img {
    width: auto;
    height: 212px;
  }
  .product-select-item-title {
    margin-top: 8px;
    font-size: 18px;
  }
  .product-select-item-button{
    margin-top: 30px;
    width: calc(100% - 12px);
  }
}

@media (max-width: 749px) {
  .product-select {
    width: 100%;
    padding: 0 12px;
  }
  .product-select-item{
    width: 100%;
    height: 300px;
    margin-bottom: 12px;
  }
  .product-select-item-img-box{
    height: 180px;
  }
  .product-select-item-img {
    width: auto;
    height: 180px;
  }
  .product-select-item-title {
    margin-top: 8px;
    font-size: 16px;
  }
  .product-select-item-desc {
    margin-top: 8px;
    font-size: 12px;
  }
  .product-select-item-button{
    width: calc(100% - 12px);
    margin-top: 16px;
    height: 36px;
    line-height: 36px;
  }
  
}
