  .home-product {
    margin-top: 24px;
  }

  .section-title-sub-title {

    font-size: 18px;
    color: #101010;
    line-height: 35px;
    font-weight: lighter;
    text-align: center;
    margin-top: 3px;
  }

  .info {
    padding: 36px 24px 0 36px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    /* Firefox */
    -webkit-box-sizing: border-box;
    /* Safari */
  }

  .search {
    display: flex;
    align-items: center;
    padding: 0 6px;
    width: 160px;
    height: 30px;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 6px;
    text-align: center;
  }

  .search img {
    width: 14px;
  }

  /**
*input标签样式
*宽度适应外层div
*隐藏边框
*这里有个小技巧，height与line-height值相等，可保证文字垂直居中；但我发现文字比图标略偏下，进行了微调；
*/

  .search input {
    text-indent: 10px;
    width: 124px;
    height: 24px;
    line-height: 24px;
    border: none;
    outline: none;
  }

  .content {
    margin-top: 24px;
    min-height: 400px;
    display: flex;
    justify-content: space-between;
  }

  .content .left {
    padding: 0 15px;
    width: 25%;
  }

  .content .left .list {
    padding: 6px;
    width: 100%;
  }

  .content .left .list .list-li {
    /* margin-top: 12px; */
    margin-bottom: 2px;
    color: rgba(0, 0, 0, 0.8);
    font-family: Source Han Sans CN;
    font-weight: bold;
    /* font-size: 26px; */
    font-size: 18px;
    line-height: 52px;
    background: #f5f5f5;
    text-indent: 3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .content .left .list .list-li-title {
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    background: #1e50ae;
    color: #FFFFFF;
    font-size: 26px;
    height: 60px;
    line-height: 60px;
  }

  .content .left .list .pointer {
    /* font-weight: 400;
    font-size: 18px;
    text-indent: 2rem; */
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .content .left .list .checked {
    color: #1e50ae;
  }

  .content .right {
    /* width: 75%; */
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }


  .productDetail {
    display: flex;
    flex-wrap: wrap;
    min-height: 400px;
    color: rgba(0, 0, 0, 0.9);
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 3px;
  }

  .productDetail .no-data {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
    color: #c3c3c3;
  }

  .productDetail .product-item {
    /* width: 200px; */
    width: calc(25% - 12px);

    height: 220px;
    padding: 12px;
    text-align: center;
    margin-right: 12px;
    margin-bottom: 12px;
    font-size: 12px;
    border-radius: 12px;
    box-shadow: 0px 2px 52px -2px #D3DEF8;
    cursor: pointer;
  }

  .productDetail .product-item .product-image {
    height: 156px;
  }

  .productDetail .product-item .product-image img {
    height: 100%;
    width: auto;
    object-fit: contain; /* 保持宽高比，图片可能会有空白边框 */
  }

  .productDetail .product-item .product-name {
    margin-top: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .productDetail .paragraph {
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 12px;
    background: #FFFFFF;
    box-shadow: 0px 2px 52px -2px #D3DEF8;
  }

  .productDetail .paragraph .product-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .productDetail .paragraph img {
    width: 100%;
  }

  .productDetail .paragraph .product-image {
    margin: 0 auto;
    width: 150px
  }

  .productDetail .paragraph .product-sub-title {
    margin-top: 12px;
    margin-bottom: 6px;
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 3px;
  }

  .productDetail .paragraph .product-apply {
    margin-top: 12px;
    margin-bottom: 6px;
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 3px;
  }

  .productDetail .paragraph .product-desc {
    text-indent: 2rem;
  }

  .title-blue {
    color: #1e50ae;
  }

  @media only screen and (max-width: 750px) {
    .section-title-right {
      display: none;
    }

    .content {
      display: block;
      min-height: auto;
    }

    .content .left {
      width: 100%;
      padding: 0;
    }

    .content .left .list {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }

    .content .left .list .list-li-title {
      display: none;
    }

    .content .left .list .list-li {
      width: 33%;
      margin-bottom: 2px;
      /* font-size: 26px; */
      font-size: 18px;
      line-height: 32px;
      background: #f5f5f5;
      text-indent: 0;
      text-align: center;
    }

    .content .right {
      margin-top: 24px;
      width: 100%;
    }

    .productDetail {
      justify-content: space-between;
      min-height: auto;
    }

    .productDetail .product-item {
      width: 48%;
      margin-right: 0;
    }
  }