.main{
    width: 100%;    
}

.content{
    width:25rem;
    margin: 5rem auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.left {
    width: 47%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 1rem 0.8rem;
    background-color: #F5F5F5;
  }
  .left .t1 {
    font-size: 0.6rem;
    font-weight: 700;
  }
  .left .t2 {
    color: #535353;
    font-size: 0.3rem;
    margin: 0.5rem 0;
  }
  .left .input {
    width: 95%;
    border: none;
    border-bottom: 1px solid #c7c7c7;
    font-size: 0.4rem;
    background-color: #ffffff00;
    margin: 0.5rem 0;
    padding: 0.3rem 0.2rem;
  }
  .left textarea {
    height: 1.8rem;
  }
  .left .bt {
    height: 1.3rem;
    width: 3rem;
    box-sizing: border-box;
    position: relative;
    margin: 0.5rem 0 0 0.3rem;
    font-size: 0.3rem;
    font-weight: 600;
    z-index: 1;
    cursor: pointer;
    line-height: 1.3rem;
    padding-left: 0.7rem;
  }
  .bt::before {
    position: absolute;
    z-index: -1;
    content: "";
    top: 0;
    left: 0;
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50% 50% 50% 50%;
    background-color: #d6d6d6;
    transition: 0.4s;
  }
  .bt:hover::before {
    width: 3.5rem;
    border-radius: 0.8rem;
  }
  .right {
    width: 50%;
    box-sizing: border-box;
    /* padding-top: 1.5rem; */
    display: flex;
    flex-direction: column;
  }
  .right .t {
    margin: 0.4rem 0;
  }
  .right .t1 {
    color: #FF7425;
    font-size: 0.3rem;
    font-weight: 700;
  }
  .right .t2 {
    font-weight: 700;
    font-size: 0.9rem;
  }
  .right .t3 {
    color: #6e6e6e;
    font-size: 0.45rem;
  }
  .right .line {
    display: flex;
    font-size: 0.4rem;
    margin: 0.3rem 0;
  }
  .right .line .p1 {
    font-weight: 700;
  }
  .right .line .p2 {
    color: #535353;
  }
  .right .line .iconfont {
    cursor: pointer;
    margin-right: 1rem;
    transition: all 0.3s;
  }
  .right .line2 {
    flex-direction: column;
  }
  .right .line2 .p2 {
    margin: 0.2rem 0;
  }
  
.iconfont:hover{
    color: #FF7425;
}
@media screen and (max-width: 992px) {
    
    .content {
        width: 100%;
        flex-direction: column;
        padding: 0 1rem;
        box-sizing: border-box;
      }
      .left {
        width: 100%;
      }
      .left .input {
        font-size: 0.8rem;
      }
      .left .t1 {
        font-size: 1.5rem;
      }
      .left .t2 {
        font-size: 0.8rem;
      }
      .left .bt {
        width: 6rem;
        font-size: 0.6rem;
      }
      .left .bt::before {
        width: 5.6rem;
        border-radius: 2rem;
      }
      .right {
        width: 100%;
      }
      .right .t1 {
        font-size: 0.7rem;
      }
      .right .t2 {
        font-size: 1.2rem;
      }
      .right .t3 {
        font-size: 0.9rem;
      }
      .right .line {
        font-size: 0.9rem;
      }
      
}