
.header_block{
height: 93px;
}
.form_head{
    background-color: rgb(242, 242, 242);
    width: 100%;
    min-height: 172px;
}
.form_head_container{
padding: 80px;
}
.form_head_container>h3{
font-weight: 500;
font-size: 34px;
color: #000;
}
.form_head_container>p{
    color: #000;
    font-style: 18px;
    margin-top: 10px;
}
.form_wrapper{
    display: flex;
    justify-content: space-between;
    flex-wrap:wrap;
    align-items: stretch;
}
.form_box{
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    width: 70%;
    justify-content: center;
}
.form_right_notice{
    flex: 1;
    background-color: rgb(242, 242, 242);
    padding: 48px;
    
}
.form_box>div{
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    margin-right: 40px;
}
.form_box>div>label{ 
width: 100px;
font-size: 16px;
font-weight: 600;
color: #606062;
position: relative;
line-height: 40px;
}
.form_box>div>label>span{
    position: absolute;
    color: red;
    font-size: 14px;
    left: -10px;
    top: 3px;
}
.form_box>div>input{ 
width: 460px;
outline: none;
border: 1px solid #ccc;
height: 40px;
border-radius: 6px;
padding-left: 10px;
}
.form_box>div>textarea{
width: 460px;
outline: none;
border: 1px solid #ccc;
height: 100px;
border-radius: 6px;
padding-left: 10px;
}
.send_btn{
    justify-content: center;
    margin-bottom: 0 !important;
    width:560px;
    margin-right: 0 !important;
    padding-top: 20px;
}
.send_btn>button{
    width: 100%;
    outline: none;
    border: none;
}
#reg_captcha{
    width: 170px;
}
.codebox{
    margin-left: 10px;
    width: 120px;
}
.codebox>img{
    width: 100%;
    cursor: pointer;
}
.danger_tips,.success_tips{
    position: fixed;
    top: 130px;
    width: 400px;
    left: 50%;
    margin-left: -200px;
    display: none;
    text-align: center;
}
.form_right_notice{
    padding: 30px;
}
.form_right_notice>h4{
    color: #000;
    font-size: 24px;
    font-weight: 600;
}
.form_right_notice>p{
    color: #666;
    font-size: 16px;
    line-height:30px;

}
.regCaptcha_wrapper{
    display: flex;
    align-items: center;
    width: 460px;
}
.regCaptcha_wrapper>input{
    border: 1px solid #ccc;
height: 40px;
border-radius: 6px;
padding-left: 10px;
}
.btn-submit-mobile:hover:after{
    transform: skewX(45deg) scale(3, 1) !important;
    width: 200px !important;
    height: 206px !important;
}

@media screen and (max-width: 966px) { 
    .header_block{
        height: 80px;
    }
    .form_head_container{
        padding: 20px;
    }
    .form_wrapper{
        display: block;
    }
    .form_box{
       width: 100%;
       padding-left: 55px;
    }
   .form_box>div{
    display: block;
   }
       .btn-submit-mobile {
        display: block;
    }
    .send_btn{
        margin-left: 0;
        width: 100%;
    }
    .form_box>div>textarea,.form_box>div>input{
        width: 300px;
    }
    .regCaptcha_wrapper{
        width: 300px;
    }
    
}