  /* inquiry样式 */
  .inquiry-form {
    padding: 40px 24px;
    width: 100%;
    background-image: url("../image/home/img-form-bg@2x.png");
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .inquiry-form-box {
    width: 100%;
    max-width: 1400px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .if-up {
    display: flex;
    align-items: center;
  }
  .if-up>div {
    font-size: 16px;
color: #FFFFFF;
margin-right: 20px;
  }
  .if-tel{
    display: flex;
    align-items: center;
  }
  .if-tel>img{
    width: 36px;
    height: 36px;
    margin-right: 12px;
  }
  .if-tel>span{
    font-size: 36px;
    color: #FFFFFF;
    font-weight: 700;
    line-height: 52px;
  }
  .if-form {
    width: 100%;
    display: flex;
    margin-top: 20px;
    position: relative;
  }
.i-group{
  position: relative;
  display: flex;
}
  .if-input {
    width: 240px;
    height: 50px;
    background: #FFFFFF;
    box-shadow: 0px 5px 8px 0px rgba(139, 142, 136, 0.15);
    border-radius: 6px;
    font-size: 14px;
    flex-shrink: 0;
    margin-right: 20px;
    box-sizing: border-box;
    padding: 0 18px;
    border: none;
    color: #333333;
  }
  .if-input::placeholder {
    color: #999999;
  }
  .if-input:focus-visible {
    outline: none;
  }

  .if-input.c {
    width: 100%;
  }
  .i-group.c{
    width: 50%;
    flex-shrink: 1;
    margin-right: 20px;
  }

  .if-btn {
    width: 188px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 6px;
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    color: #7CBD26;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
  }
  .if-tip{
    font-size: 16px;
    color: #FFFFFF;
    line-height: 24px;
    margin-top: 18px;
  }

  @media (max-width:1200px){
    .if-form {
      width: 809px;
      flex-direction: column;
    }
    .i-group{
      flex-direction: column;
    }
    .i-group.c{
      width: 100%;
    }
    .if-input,.if-input.c {
      width: 100%;
      margin-bottom: 20px;
      margin-right: 0;
    }
    .if-btn {
      width: 100%;
    }
    .if-tel>span{
      font-size: 30px;
      line-height: 40px;
    }
    .if-tel>img{
      width: 30px;
      height: 30px;
    }
  }
  @media (max-width:867px){
    .if-form {
      width: 100%;
    }
    .if-up{
      flex-direction: column-reverse;
    }
    .if-up>div{
      margin-right: 0;
      text-align: center;
    }
    .if-tip{
      text-align: center;
    }
  }
  @media (max-width: 500px){
    .if-tip{
      font-size: 12px;
      margin-top: 12px;
    }
    .if-input,.if-input.c{
      margin-bottom: 12px;
    }
    .inquiry-form{
      padding-left: 12px;
      padding-right: 12px;
    }
  }

  .input-tip {
    content: "";
    position: absolute;
    background-color: #ffffff;
    color: #333333;
    box-shadow: 0 0 8px 0 rgba(97, 97, 97, 0.3);
    z-index: 999;
    padding: 10px 15px;
    border-radius: 12px !important;
    cursor: default;
  }
  
  .input-tip::before {
    content: "";
    display: block;
    border: 8px solid #ffffff;
    border-color: transparent transparent #ece3e3 transparent;
    position: absolute;
    left: 30%;
    top: 0px;
    transform: translate(-50%, -100%);
  }
  
  .input-tip::after {
    content: "";
    display: block;
    border: 8px solid #ffffff;
    border-color: transparent transparent #ece3e3 transparent;
    position: absolute;
    left: 30%;
    top: 0;
    transform: translate(-50%, -100%);
    z-index: 1;
  }