
  .pet-options-section{
    max-width:1200px;
    margin:40px auto 60px;
    padding:0 15px;
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"PingFang SC","Microsoft YaHei",sans-serif;
    color:#fff;
  }
  .pet-options-title{
    text-align:center;
    font-size:28px;
    letter-spacing:2px;
    margin-bottom:35px;
    color:#000;
    font-weight:600;
  }
  .pet-options-grid{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    justify-content:center;
  }
  .pet-option-item{
    position:relative;
    flex:1 1 calc(25% - 20px);
    min-width:230px;
    height:260px;
    overflow:hidden;
    border-radius:6px;
  }
  .pet-option-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    transform:scale(1);
    transition:transform .5s ease;
  }
  .pet-option-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom,rgba(0,0,0,.1),rgba(0,0,0,.55));
  }
  .pet-option-content{
    position:relative;
    z-index:2;
    height:100%;
    padding:26px 26px 22px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    text-align:left;
  }
  .pet-option-title{
    font-size:26px;
    font-weight:500;
    margin-bottom:10px;
  }
  .pet-option-text{
    font-size:14px;
    line-height:1.6;
  }
  .pet-option-item:hover .pet-option-bg{
    transform:scale(1.05);
  }

  /* 手机端适配 */
  @media (max-width:768px){
    .pet-options-title{
      font-size:22px;
      margin-bottom:20px;
    }
    .pet-option-item{
      flex:1 1 100%;
      height:220px;
    }
    .pet-option-content{
      padding:20px 18px;
    }
    .pet-option-title{
      font-size:22px;
    }
    .pet-option-text{
      font-size:13px;
    }
  }
