.register-section{
    width: 330px;
    height: 496px;
    padding: 40px 25px 10px 25px;
    background-color: hsla(0,0%,100%,.91);
    box-shadow: 0 0 10px rgba(0,0,0,.3);
}
.form-layout{
    width: 100%;
    height: 100%;
    /* background-color: red; */
}
.form-layout form{
    display: flex;
    flex-direction: column;
}
.form-layout .form-control{
    display: flex;
    width: 330px;
    height: 70px;
    /* background-color: pink; */
    flex-direction: column;
}
.form-layout .form-control .form-info{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.form-layout .form-control .form-gap{
    width: 330px;
    height: 30px;
    /* background-color: skyblue; */
}
.form-layout .form-control img{
    display: block;
    width: 126px;
    height: 40px;
}
.form-layout input,
.form-layout select{
    display: block;
    width: 100px;
    height: 40px;
    border: 1px solid #d7d7d7;
    color: #636363;
    outline: none;
}

/* 具体调节每个输入框的大小 */
.form-layout .form-control:nth-child(2) select{
    width: 78px;
    height: 40px;
    padding-left: 10px;
    padding-right: 24px;
}
.form-layout .form-control:nth-child(2) select::after {
    position: absolute;
    right: 6px;
    top: 50%;
    margin-top: -5px;
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background: url(data:image/svg+xml;base64,PHN2ZyBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iNDgiIGhlaWdodD0iNDgiPjxkZWZzPjxzdHlsZS8+PC9kZWZzPjxwYXRoIGQ9Ik04MDYuOTU1IDM2NC43MTVhMTQuMTY1IDE0LjE2NSAwIDAgMC0xMy4xNDItOC43OUgyMjQuOTRhMTQuMTY1IDE0LjE2NSAwIDEgMC0xMC4wNyAyNC4yNzhMNDk5LjMyOCA2NjQuNjZhMTQuMTY1IDE0LjE2NSAwIDAgMCAyMC4xMzkgMGwyODQuNDU4LTI4NC40NThhMTQuMjUgMTQuMjUgMCAwIDAgMy4wMy0xNS40ODh6IiBmaWxsPSIjNmU2ZTZlIi8+PC9zdmc+) 50% / 16px 16px no-repeat;
    transition: transform .2s ease;
}
.form-layout .form-control:nth-child(2) input{
    width: 232px;
    height: 32px;
    padding: 3px 7px;
}
.form-layout .form-control:nth-child(3) input,
.form-layout .form-control:nth-child(4) input{
    width: 184px;
    height: 32px;
    padding: 3px 7px;
}
.form-layout .form-control:nth-child(4) .btn-phone-code{
    width: 125px;
    height: 40px;
    padding: 0px 15px;
    margin-left: 4px;
    border-radius: 3px;
    background-color: #3f9f5f;
    color: #fff;
    line-height: 40px;
    font-size: 14px;
    cursor: pointer;
}
.form-layout .form-control:nth-child(4) .btn-phone-code:hover{
    background-color: #5cad77;
    text-decoration: none;
}
.form-layout .form-control:nth-child(1) input,
.form-layout .form-control:nth-child(5) input,
.form-layout .form-control:nth-child(6) input{
    width: 314px;
    height: 32px;
    padding: 3px 7px;
}

.form-layout .form-control:nth-child(7){
    height: 36px;
}
.form-layout .form-control:nth-child(7) input{
    width: 300px;
    height: 36px;
    padding: 0px 15px;
    margin: 0 auto;
    background-color: #3f9f5f;
    cursor: pointer;
    border-radius: 3px;
    color: #fff;
    border: 0;
    font-size: 16px;
}
.form-layout .form-control:nth-child(8) input:hover{
    background-color: #5cad77;
}


/* 底 */
.register-bottom{
    width: 330px;
    height: 20px;
    padding: 10px 0;
    color: #959595;
    font-size: 14px;
    line-height: 20px;
}
.register-bottom a{
    color: #3f9f5f;
}