.page-serveice {
    margin-top: .7rem;

  }
  .service-list {
    width: 12rem;
    padding-bottom: .5rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
  }
  .service-item {
    margin-right: .38rem;
    margin-bottom: .5rem;
    width: 5.8rem;
    height: 5.09rem;
    padding: 0.3rem;
    background: rgba(255, 255, 255, 0.39);
    border: 1px solid #eeeeee;
    cursor: pointer;
  }

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

  .service-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .service-title-num {
    margin-right: .1rem;
    font-size: 0.3rem;

    font-weight: bold;
    color: #666666;
  }
  .service-title-text {
    font-size: 0.24rem;

    font-weight: 400;
    color: #333333;
  }
  .service-img-box {
    margin-top: 0.25rem;
    width: 5.2rem;
    height: 2.6rem;
    overflow: hidden;
  }
  .service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
  }
  .service-desc {
    margin: 0.25rem 0;
    height: 0.52rem;
    font-size: 0.14rem;

    font-weight: 400;
    line-height: 0.26rem;
    color: #333;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
  }
  .service-btn {
    width: 1.2rem;
    height: 0.36rem;
    line-height: 0.36rem;
    background: rgba(255, 255, 255, 0.39);
    border: 1px solid #999999;
    font-size: 0.14rem;
 
    font-weight: 400;
    color: #999999;

    text-align: center;
  }

  /* 悬浮效果 */
  .service-item:hover .service-title-num{
    color: #02928E;
  }
  .service-item:hover .service-title-text{
    color: #02928E;
  }
  .service-item:hover .service-img{
    transform: scale(1.05);
  }
  .service-item:hover .service-btn{
    color: #02928E;
    border-color: #02928E;
  }
  
  
  
  @media only screen and (max-width: 1024px) {
      .page-serveice {
         margin-top: 20px;   
      }
      .service-list {
          flex-direction: column;
          width: 100%;
          padding: 15px;
      }
      .service-item {
          width: 100%;
          height: auto;
      }
      
      .service-img-box {
        width: 100%;    
        height: 50vw;
      }
      .service-desc {
          height: auto;
      }
      .service-desc p{
          font-size: 14px;
          line-height: 1.5;
          height: auto;
      }
      
      .service-title-text {
          font-size: 14px;
      }
      
      .service-btn {
          margin: 0 auto;
          width:  80px;
          height: 30px;
          line-height: 28px;
          font-size: 14px;
      }
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  