/* css */
/* 登录左图 */
.leftimg{
    padding-top: 80px;
}
.leftimg img{
    display: block;
    width: 514px;
}

/* 登录框 */
.logonRight{
    width: 520px;
    height: 410px;
    box-shadow: 0 0 6px 0 rgba(204, 204, 204, 1);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    margin-top: 110px;
    padding: 30px 80px;
}
.logonRight h1{
    font-size: 26px;
    color: #e8232d;
    text-align: center;
    margin-bottom: 20px;
}
.logonForm .formlist{
    width: 100%;
    position: relative;
    padding-bottom: 8px;
}
.logonForm .formlist .input{
    width: 100%;
    height: 50px;
    line-height: 50px;
    border-bottom: 1px solid #ddd;
} 
.formlist .input i.iconfont{
    float: left;
    font-size: 22px;
    vertical-align: middle;
    width: 36px;
    text-align: center;
    color: #d7dee3;
    margin-right: 2px;
}
.formlist .input input{
    float: left;
    width: 314px;
    border: none;
    line-height: 50px;
    background-color: transparent;
    font-size: 15px;
    color: #333;
}
.formlist .input input::placeholder{
    color: #a0a7ad;
}
/* 验证码 */
.formlist .input.v-code input{
    width: 190px;
}
.formlist .input.v-code img{
    width: 120px;
    height: 40px;
    margin-top: 5px;
    cursor: pointer;
}
.formlist p{
    position: absolute;
    left: 44px;
    bottom: -12px;
    color: #e8232d;
    font-size: 13px;
}
.formlist.error .input{
    border-color: #e8232d;
}
/* 登录按钮 */
.logonForm .logbtn > a{
    display: block;
    width: 100%;
    height: 46px;
    line-height: 46px;
    background-color: #e8232d;
    color: #fff;
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
    margin-bottom: 6px;
}
.logonForm .logbtn > a:hover{
    background-color: #d9000b;
}
.logonForm .forget{
    color: #888;
}
.logonForm .forget:hover{
    color: #ff8f0e;
}

/*-------- 注册 --------*/
.regbg{
    width: 100%;
	height: 100%;
	background: url(../images/regbg.png) center center;
    background-size: cover;
	background-attachment: fixed;
}
.regbox{
	display: block;
	width: 600px;
	height: auto;
	position: absolute;
	left: 50%;
	margin-left: -300px;
	margin-top: 60px;
    background-color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 10px solid rgba(0, 0, 0, 0.1);
    padding: 6px 20px 40px;
}
.regbox h1{
    font-size: 30px;
    line-height: 60px;
    text-align: center;
    margin-bottom: 6px;
}

/* 协议 */
.RiskAgreement {
	width: 100%;
	height: 150px;
    background-color: #f2f2f2;
	border-radius: 2px;
	margin: 0 auto 10px;
	overflow-y: scroll;
	cursor: pointer;
}
.RiskAgreement p{
	color: #333;
	line-height: 22px;
    padding: 0 10px;
}
.RiskAgreementtitle{
	text-align: center;
	font-weight: bold;
    margin: 8px 0;
}
::-webkit-scrollbar{
	width: 4px;
}
/* 这是针对缺省样式 (必须的) */
::-webkit-scrollbar-track{
	background-color: #eee;
}
/* 滚动条的滑轨背景颜色 */
::-webkit-scrollbar-thumb{
	background-color: rgba(232, 35, 45, 0.8);
}
/* 滑块颜色 */
::-webkit-scrollbar-button{
	background-color: #ececec;
}


/* 协议单选 */
.identified{
    padding: 0 10px;
}
.identified .model{
    width: 100%;
    padding-bottom: 14px;
}
.model label{
    margin-left: 10px;
    cursor: pointer;
}
.radio{
    display: none;
}
.radio-style{
    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 100%;
    display: inline-block;
    height: 15px;
    width: 15px;
    margin-right: 6px;
    vertical-align: middle;
    margin-top: -2px;
}
.radio:checked + .radio-style:after{
    position: absolute;
    background-color: #e8232d;
    border-radius: 100%;
    content: "";
    display: inline-block;
    height: 9px;
    width: 9px;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #e8232d;
}
.regbox .logonForm{
    padding: 10px 20px 20px;
    border: 1px solid #eee;
}


/* 找回密码 */