.banner {
    background-image: url('../images/banner6.jpg');
}

.form-box {
    padding: 39px 0;
}

.page-line {
    position: relative;
    padding: 12px 0;
    border-bottom: 1px solid #DDDDDD;
}

.page-tit {
    position: absolute;
    padding: 12px 18px;
    font-size: 18px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #D3A838;
    border-bottom: 3px solid #D3A838;
    bottom: -2px;
}

.page-describe {
    margin-top: 30px;
    padding: 0 50px 0 30px;
}

.form-box p {
    margin-bottom: 0;
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #666666;
    line-height: 36px;
}

.form {
    width: 58.33%;
    max-width: 700px;
    margin: 65px auto 0;
}

.form-group {
    margin-bottom: 30px;
}

.input-name input,
.input-password input,
.input-tel input {
    width: 100%;
    height: 56px;
    padding: 0 22px;
    font-size: 16px;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 7px;
}

.input-remember {
    padding: 0 5px 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.input-remember a {
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    text-decoration: line-through;
    color: #CA0000;
}


.input-btn {
    width: 81.14%;
    max-width: 568px;
    margin: 57px auto 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.btn-login {
    cursor: pointer;
    width: 100%;
    height: 56px;
    background: #D4BE95;
    border-radius: 30px;
    font-size: 18px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    line-height: 56px;
}

.btn-login:hover {
    border: 1px solid #D4BE95;
    color: #D4BE95;
    background-color: #fff;
}

.to-register {
    margin-top: 27px;
    font-size: 18px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #7F7F7F;
}

.to-register a {
    color: #CA0000;
}


/* 修改复选框样式 */
.input-remember span {
    margin-left: 10px;
}

.checkbox-inline {
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #9F9F9F;
}

input[type="checkbox"]:hover,
input[type="checkbox"]:focus {
    outline: none;
}

.checkAll {
    width: 23px;
    height: 23px;
    appearance: none;
    position: relative;
}

.checkAll:before {
    content: "";
    width: 23px;
    height: 23px;
    background: #FFFFFF;
    display: inline-block;
    vertical-align: middle;
}

.checkAll:after {
    content: "";
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    border: 1px solid #B5B5B5;
    display: block;
    position: absolute;
    top: -5px;
    left: 0px;
    border-radius: 50%;
}

.checkAll:checked::before {
    content: "";
    width: 24px;
    height: 24px;
    border: 1px solid #B5B5B5;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    left: 0px;
}

.checkAll:checked::after {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    text-align: center;
    background: #D4BE95;
    display: block;
    position: absolute;
    top: -2px;
    left: 3px;
}


@media (max-width:970px) {
    .form {
        width: 95%;
        margin: 20px auto 0;
    }

    .page-describe {
        padding: 0 15px;
    }

    .input-name input,
    .input-password input,
    .input-tel input{
        height: 42px;
        line-height: 42px;
    }


    .form-box p,
    .btn-login,
    .to-register {
        font-size: 14px;
    }

    .form-box p {
        line-height: 28px;
    }

    .input-btn {
        margin-top: 20px;
    }

    /* 记住我复选框样式 */
    .input-remember span {
        margin-left: 0px;
    }

    .checkbox-inline {
        font-size: 14px;
    }

    .checkAll {
        width: 18px;
        height: 18px;
    }

    .checkAll:before {
        content: "";
        width: 18px;
        height: 18px;
    }

    .checkAll:after {
        width: 19px;
        height: 19px;
        top: -3px;
    }

    .checkAll:checked::before {
        width: 19px;
        height: 19px;
        top: -3px;
    }

    .checkAll:checked::after {
        width: 15px;
        height: 15px;
        top: -1px;
        left: 2px;
    }

}

.VerificationCode{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.input-number {
    width: 77.43%;
}
.getCode{
    width: 20.57%;
}
.getCode input{
    width: 100%;
    height: 56px;
    background: #D4BE95;
    border-radius: 7px;
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
}
/* 隐藏数字进步器 */

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance:textfield;
}

@media (max-width:970px) {
    .input-number {
        width: 68.43%;
    }
    .getCode{
        width: 29.57%;
    }
    .getCode input {
        height: 42px;
    }
}