body {
    background-color: #f8f8f8;
}

.container {
    position: relative;
    margin: 20px auto 35px auto;
    width: 1200px;
    padding-bottom: 56px;
    background-color: #fff;
}

.container .header {
    position: relative;
    padding-top: 50px;
    text-align: center;
}

.container .header p {
    font-size: 22px;
    color: #333;
}

.container .header p:first-of-type {
    padding-bottom: 15px;
}

.container .header p:last-of-type {
    position: absolute;
    right: 87px;
    top: 52px;
    font-size: 14px;
    line-height: 1;
    color: #999;
}

.go-to-login {
    color: #3696fa;
}

.container .content {
    position: relative;
    margin: 0 auto;
    padding-top: 47px;
    width: 320px;
}

.content .input-wrap {
    position: relative;
    box-sizing: border-box;
    margin-bottom: 17px;
    width: 320px;
    height: 40px;
    border-radius: 2px;
    border: solid 1px #e8e8e8;
    font-size: 14px;
    color: #333;
}

.input-wrap input {
    padding-left: 16px;
    width: calc(100% - 30px);
    border: none;
    height: 38px;
    line-height: 38px;
}

input:focus {
    outline: none;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

.account-icon {
    position: absolute;
    width: 18px;
    height: 18px;
    background: url(../images/login-close.png) no-repeat;
    right: 8px;
    top: 11px;
    cursor: pointer;
}

.pwd-show-icon {
    position: absolute;
    width: 24px;
    height: 24px;
    background: url(../images/pwd_hide.png) no-repeat;
    background-size: 100%;
    right: 5px;
    top: 8px;
    cursor: pointer;
}

.pwd-hide-icon {
    position: absolute;
    right: 5px;
    top: 8px;
    width: 24px;
    height: 24px;
    background: url(../images/pwd_show.png) no-repeat;
    background-size: 100%;
    cursor: pointer;
}

.err-msg {
    position: absolute;
    top: 20px;
    padding-left: 20px;
    width: 300px;
    height: 20px;
    font-size: 12px;
    color: #df3028;
}

.err-msg::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    background: url(../images/login-icon.png) no-repeat center;
    background-size: 100%;
}

.code-wrap {
    position: relative;
    height: 40px;
}

.code-wrap:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    border: solid 1px #e8e8e8;
    box-sizing: border-box;
    pointer-events: none;
}

.code-input-wrap {
    float: left;
    width: 220px;
    height: 40px;
}

.code-input-wrap input {
    padding-left: 16px;
    width: 220px;
    height: 40px;
    border: none;
    line-height: 40px;
}

#sendCodeBtn {
    float: right;
    width: 100px;
    height: 40px;
    background-color: #ff7200;
    border-radius: 2px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    cursor: pointer;
}

#sendCodeBtn:hover {
    background-color: #ff831f;
}

.protocol-wrap {
    margin-top: 18px;
}

.protocol-wrap p {
    float: left;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: #333;
    pointer-events: none;
    height: 20px;
    line-height: 20px;
}

.protocol-wrap p::after {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    background: url("../images/register/unagree.png") no-repeat;
    background-size: 100%;
    pointer-events: auto;
    cursor: pointer;
}

.protocol-wrap p.agree::after {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    background: url("../images/register/agree.png") no-repeat;
    background-size: 100%;
    pointer-events: auto;
    cursor: pointer;
}

.protocol-wrap .protocol {
    float: left;
}

.protocol-wrap .protocol a {
    display: block;
    font-size: 14px;
    color: #ff7200;
    height: 20px;
    line-height: 20px;
}

.protocol-wrap .protocol a:first-of-type {
    margin-bottom: 3px;
}

#registerBtn {
    margin-top: 14px;
    width: 320px;
    height: 40px;
    background-color: #ff7200;
    border-radius: 2px;
    cursor: pointer;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    color: #fff;
}

#registerBtn:hover {
    background-color: #ff831f;
}

#protocolModal {
    display: none;
}

.protocol-container {
    width: 849px;
    height: 514px;
    background-color: #fff;
    border-radius: 6px;
}

.protocol-container .title {
    position: relative;
    height: 92px;
    font-size: 22px;
    color: #333;
    line-height: 92px;
    text-align: center;
}

.protocol-container .title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 48px;
    right: 48px;
    height: 1px;
    background-color: #e8e8e8;
}

.protocol-container .content {
    margin: 37px auto 0;
    width: 706px;
}

.protocol-container .content p {
    font-size: 16px;
    color: #666;
    line-height: 30px;
}

.protocol-container .content p a {
    color: #ff7200;
}

#protocolModalAgreeBtn {
    margin: 48px auto 0;
    width: 300px;
    height: 40px;
    background-color: #ff7200;
    border-radius: 2px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    cursor: pointer;
}

#protocolModalAgreeBtn:hover {
    background-color: #ff831f;
}

#nc {
    margin-top: 16px;
    width: 320px;
    height: 40px;
}

/* 阿里滑动验证码样式自定义 */
.nc_scale {
    height: 40px !important;
}

.nc-lang-cnt {
    line-height: 40px !important;
}

.nc_iconfont.btn_slide,
.nc_iconfont.btn_ok {
    height: 40px !important;
    line-height: 40px !important;
}

#tipModal {
    display: none;
}

#tipModal .content {
    padding: 30px;
}

#sureBtn {
    margin-top: 20px;
    height: 40px;
    background-color: #ff7200;
    border-radius: 2px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    cursor: pointer;
}