.comForm1 {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 480px;
    height: 320px;
    border-radius: 10px;
    /* margin-left: -10px; */
    background-color: #fff;
    padding: 20px;
  }
  
  .comForm1 .head {
    display: flex;
    justify-content: space-around;
    position: relative;
  }
  
  header {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    font-weight: 700;
    padding-left: 10px;
  }
  
  .comForm1 .head span {
    position: absolute;
    right: 3px;
    top: 3px;
    width: 20px;
    height: 20px;
    background-color: #ff6131;
    text-align: center;
    color: #fff;
    line-height: 18px;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .inp {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
  }
  
  .inp input {
    width: 300px;
    height: 40px;
    line-height: 40px;
    background-color: #F9F9F9;
    border-radius: 10px;
    border: none;
    outline: none;
    padding-left: 10px;
  }
  
  .inp .phone {
    display: flex;
    align-items: center;
  
  }
  
  .inp .name {
    display: flex;
    align-items: center;
  
  }
  
  .inp .name div {
    margin-right: 8px;
  
  }
  
  .inp .phone div {
    margin-right: 8px;
  
  }
  
  .inp .phone,
  .inp .name,
  .address {
    padding-left: 32px;
  }
  
  .inp span {
    margin-right: 10px;
    color: #5F5E5E;
  }
  
  input::-webkit-input-placeholder {
    color: #5F5E5E;
    font-size: 15px;
  }
  
  .phone,
  .address,
  .organization {
    margin-bottom: 20px;
  }
  
  .inp .organization span {
    margin-right: 8px;
  }
  
  .comForm1 button {
    position: absolute;
    left: 112px;
    bottom: 20px;
    width: 156px;
    height: 46px;
    background-image: linear-gradient(#FF5C53, #FF6320);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    margin-left: 20px;
    cursor: pointer;
  }
 