#signBoxTemplate{
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
  }
  .sign-mask{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100vw;
    height: 100vh;
    background-color: rgb(0, 0, 0, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }
  .sign-mask .box {
    width: 400px;
    background-color: #fff;
    border-radius: 6px;
    box-sizing: border-box;
    padding: 36px 31px;
  }
  .sign-mask .box .tabs{
    font-size: 18px;
    color: #999999;
    display: flex;
    justify-content: space-around;
    padding: 0px 11px;
  }
  .sign-mask .box .tabs .active{
    color: #333333;
    position: relative;
  }
  .sign-mask .box .tabs .active::after{
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #FF2044;
    position: absolute;
    bottom: -10px;
  }
  .sign-mask .box .fastSign, .sign-mask .box .pwdSign {
    margin-top: 48px;
  }
  .sign-mask .box .fastSign .phone,.sign-mask .box .fastSign .verification_code{
    margin: 14px;
    box-sizing: border-box;
    /*width: 100%;*/
    display: flex;
    border: 1px solid #DCDCDC;
    padding: 5px 6px;
    align-items: center;
  }
  .sign-mask .box .pwdSign .phone{
    margin: 14px;
    box-sizing: border-box;
    /*width: 100%;*/
    display: flex;
    border: 1px solid #DCDCDC;
    padding: 5px 6px;
    align-items: center;
  }
  .sign-mask .box .fastSign .verification_code{
    margin-top: 27px;
    padding: 0px !important;
  }
  .sign-mask .box .fastSign .phone img,.sign-mask .box .fastSign .verification_code img{
    width: 15px;
    height: 17px;
    flex-shrink: 0;
  }
  .sign-mask .box .fastSign .phone input,.sign-mask .box .fastSign .verification_code input,.sign-mask .box .pwdSign .phone input{
    border: 1px solid transparent;
    box-shadow: none;
    width: 100px;
  }
  .sign-mask .box .pwdSign .phone:nth-of-type(2){
    margin-top: 27px;
  }
  .sign-mask .box .fastSign .phone input::placeholder,.sign-mask .box .fastSign .verification_code input::placeholder,.sign-mask .box .pwdSign .phone input::placeholder{
    color: #999999;
    font-size: 14px;
  }
  .sign-mask .box .fastSign .verification_code #codeDescrible{
    padding: 0px 10px;
    height: 38px;
    border-left: 1px solid #DCDCDC;
    color: #FF2044;
    font-size: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
   }
  .sign-mask .box .fastSign .verification_code .disabled{
    color: #999999 !important;
  }
  .sign-mask .box .fastSign .verification_code .left{
    padding: 5px 6px;
    flex-grow: 1;
    display: flex;
    align-items: center;
  }
  .sign-mask .box .pwdSign {
      display: none;
  }
  .sign-mask .box .fastSign .agreement, .sign-mask .box .pwdSign .agreement{
    display: flex;
    align-items: center;
    padding: 6px 0px;
    margin: 0px 15px  14px;
  }
  .sign-mask .box .fastSign .agreement .desc,  .sign-mask .box .pwdSign .agreement .desc{
    font-size: 12px;
    color: #9FA19F;
  }
  .sign-mask .box .fastSign .agreement .desc a,  .sign-mask .box .pwdSign .agreement .desc a{
    color: #3A8BFF;
  }
  .sign-mask .box .fastSign .agreement input,  .sign-mask .box .pwdSign .agreement input{
    box-shadow: none;
    padding: 0;
    flex-grow: 0;
    width: 13px;
    height: 13px;
    margin-right: 10px;
    vertical-align: middle;
  }

  .sign-mask .box .btns {
    box-sizing: border-box;
    padding: 0px 14px;
  }
  .sign-mask .box .btns .btn{
    width: 100%;
    height: 44px;
    background-color: #FF2044aa;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
  }
  .sign-mask .box .describel{
    font-size: 12px;
    color: #999999;
    padding: 15px 0px 0px .7rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
  }
  .sign-mask .box .describel a{
    color: #3A8BFF;
    font-size: .6rem;
  }
  input[type="radio"]{
    box-shadow: none;
    padding: 0;
    flex-grow: 0;
    width: 13px;
    height: 13px;
    margin-right: 10px;
    vertical-align: middle;
  }

  input[type="checkbox"]{
    box-shadow: none;
    padding: 0;
    flex-grow: 0;
    width: 13px;
    height: 13px;
    margin-right: 10px;
    vertical-align: middle;
  }