body, html, p, div, ul, li, a, img, h1, h2, h3, h4, h5, h6, input {
    margin: 0;
    padding: 0;
    font-family: Helvetica Neue,Helvetica,Arial,Hiragino Sans GB,Heiti SC,Microsoft YaHei,sans-serif;
    text-decoration: none;
    list-style-type: none;
}
body{

}
.header{
    background-color: #2C3D99;
}
.header img{
    width: 100%;
    height: 100%;
}
.content{
    background: #FFFFFF;
    border-radius: 30px 30px 0 0;
    padding: 0 30px;
    margin-top: -80px;
    z-index: 999;
    position: relative;
}
.title{
    padding:24px 0;
}
.title p{
    font-size: 25px;
    color: hsla(210, 9%, 13%, 1);
    line-height: 35px;
}
.title span{
    font-size: 18px;
    color: hsla(210, 9%, 27%, 1);
    line-height: 25px;
}

form>div{
    display: flex;
    flex-direction: column;
}
form>div span{
    font-size: 16px;
    color: hsla(210, 9%, 13%, 1);
    line-height: 22px;
    margin-bottom: 6px;
}

form>div span a{
    font-size: 14px;
    color: rgba(29, 32, 35, 1);
    line-height: 22px;
}
form>div span a em{
    font-style: normal;
    color: rgba(74, 144, 226, 1);
    font-size: 14px;
}

form>div span img{
    margin-right:4px;
}
form>div input{
    outline: none;
    border:none;
    background: hsla(220, 27%, 98%, 1);
    padding: 13px 15px;
    border-radius: 10px;
    color: hsla(210, 9%, 13%, 1);
    font-size: 14px;
}
::-webkit-input-placeholder {
    font-size: 14px;
    line-height: 20px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #9CA3A9;
}
form>div input:-webkit-autofill{
    -webkit-box-shadow: 0 0 0 1000px transparent  inset !important;
    background-color:transparent;
    background-image: none;
    transition: background-color 50000s ease-in-out 0s;
}

.submit_btn{
    margin: 25px 0;
}
.submit_btn p{
    width:315px;
    background: linear-gradient(90deg, #DF87C6 0%, #8393F4 100%);
    box-shadow: 0 5px 30px 0 rgba(57, 8, 159, 0.3);
    border-radius: 57px;
    text-align: center;
    font-size: 20px;
    color: #fff;
    line-height: 45px;
    margin: 0 auto;
}
.errortip{
    font-size: 14px;
    color: hsla(352, 99%, 45%, 1);
    padding:10px;
}
.succeedBox, .errortips{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    z-index: 1000;
}
.succeedBoxin, .errortipsin{
    width:310px;
    top: 50%;
    left: 0;
    margin: -68px auto 0 auto;
    position: relative;
    background: #F7F8F8;
    border-radius:6px;
    padding: 20px 0 20px 0;
}
.succeedBoxin h3{
    font-size: 16px;
    color: hsla(210, 9%, 13%, 1);
}
.succeedBoxin span{
    font-size: 14px;
    color: hsla(210, 9%, 27%, 1);
    display: block;
    padding: 15px 0;
}
.succeedBoxin em{
    font-style: normal;
    font-size: 16px;
    background-color: hsla(232, 84%, 74%, 1);
    color: #fff;
    padding: 5px 30px;
    border-radius: 5px;
    display: inline-block;
}