 /*top改修@20260129*/
  .machine_nav{
    display: grid;
    gap: 50px; 
    justify-content: center;
    grid-template-columns: repeat(3, 260px);
    align-items: center;
  }
  .machine_block{
  }
  .machine_block a {
    display: block;
  }
  .machine_wp{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .machine_photo{
    width: 200px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
  }
  .machine_photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .machine_text{
    margin-top: 10px;
  }
  .machine_text p{
    position: relative;
    text-align: center;
  }
  .machine_text p:after{
    content: "";
    display: inline-block;
    padding: 0 20px 1px 0;
    background: url(../imgs/common/arrow_r.svg) no-repeat right center / 8px auto;
    line-height: 1;
    width: 10px;
    height: 10px;
  }
  @media only screen and (max-width: 750px){
    .machine_nav{
        grid-template-columns: repeat(2, 1fr);
        align-items: flex-start;
    }
    .machine_photo{
        width: auto;
    }
    .machine_text p{
        font-size: 13px;
    }
  }