    .itemBox {
      margin-bottom: 45px;
      padding: 30px;
      display: grid;
    }

    .item {
      padding: 30px 0;
      width: 100%;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid #f0f2f5;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
    }

    .item .img {
      width: 300px;
    }

    .item .img img {
      width: 100%;
    }

    .item .text {
      width: calc(100% - 300px);
      height: 100%;
      padding-left: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
    }

    .item h1 {
      font-size: 20px;
      line-height: 1.5;
      color: #333;
    }

    .item .desc {
      width: 100%;
      display: flex;
      justify-content: space-between;
    }

    .item h2 {
      color: var(--color);
      font-size: 16px;
    }

    .item h2 i {
      margin-left: 5px;
    }

    .item span {
      display: flex;
      width: auto;
    }

    .item span p {
      margin: 0 5px;
      color: #999;
      font-size: 14px;
      text-align: center;
    }


    @media (max-width: 1200px) {
      .item .img {
        width: 180px;
      }

      .item .text {
        width: calc(100% - 180px);
      }
    }


    @media (max-width:460px) {
      .item .img {
        width: 100%;
      }

      .item .text {
        width: 100%;
        height: auto;
        padding: 0;
        padding-top: 15px;
      }
    }

    @media (max-width:380px) {}