/*
	*登录
	*注册
	*找回密码
*/
html,body{
	height:100%;
	margin:0;
	padding:0;
	box-sizing:border-box;
	-moz-box-sizing:border-box; /* Firefox */
	
}
.logrebg{
	background:#dedede;
	height:100%;
	padding-top:50px;
}
/*登录*/
.login{
	width:360px;
	padding:30px;
	background:#fff;
	border-radius:10px;
	box-shadow:0px 1px 3px rgba(0,0,0,0.16);
	margin:30px auto;
	padding-bottom:60px;
}
.login-logo{
	width:160px;
	margin:0 auto;
}
.login-logo img{
	width:160px;
	height:auto;
}
.login h2{
	font-weight:400;
	text-align:center;
color:#333;	
}
.login form {
	width:100%;
}
.login form label{
	display:block;
	font-size:16px;
	margin-bottom:8px;
}
.login form input{
	width:100%;
	padding:0 10px;
	border:1px #dedede solid;
	border-radius:8px;
	font-size:16px;
	height:42px;
	line-height:42px;
	display:block;
	box-sizing:border-box;
	-moz-box-sizing:border-box; /* Firefox */
	outline:none;
}
.login form div{
	margin-bottom:20px;
}
input::-webkit-input-placeholder{color: #ccc;}
input::-webkit-input-placeholder {color:#ccc;}
input:-moz-placeholder {color:#ccc;}
input::-moz-placeholder {color:#ccc;}
input:-ms-input-placeholder {color:#ccc;}

.login form p{
	text-align:right;
	margin-bottom:5px;
}
.login form p a{
	font-size:14px;
	color:#999;
	text-decoration:none;
}
.login form p a:hover{
	text-decoration:underline;
}
.login form button{
	width:100%;
	height:40px;
	border:none;
	background:#4766e8;
	border-radius:8px;
	color:#fff;
	font-size:18px;
	margin:0 auto;
	display:block;
	box-shadow:0px 1px 3px rgba(0,0,0,0.16);
	cursor:pointer;
}
.login form button:hover{
	opacity:0.8;
}
.registerbtn{
	text-align:center;
	font-size:14px;
	color:#999;
	margin-top:20px;
}
.registerbtn a{
	font-size:14px;
	color:#1ca9ed;
	text-decoration:none;
}
.registerbtn a:hover{
		text-decoration:underline;
		color:#4766e8;
}
.backhome{
	text-align:center;
	margin-top:-15px;
	font-size:14px;
	color:#999;
}
.backhome span{
	margin-left:10px;
	margin-right:10px;
}
.backhome a{
		font-size:14px;
	color:#999;
	text-decoration:none;
}
.backhome a:hover{
		text-decoration:underline;
}
/*注册*/
.login form .register-xy{
	position:relative;
	display:flex;
	justify-content:flex-start;
	align-items:center;
	margin-bottom:10px;
	margin-top:30px;
}
.login form .register-xy input{
	width:16px;
	height:16px;
	margin:0;
	
}
.login form .register-xy span{
	font-size:14px;
	color:#999;
	line-height:16px;
	margin-left:5px;
}
.login form .register-xy span a{
	color:#4766e8;
	text-decoration:none;	
}
.login form .register-xy span a:hover{
	text-decoration:underline;
}
/*lable标签的大小、位置、背景颜色更改，在css选择时，“+”代表相邻元素，即当前元素的下一元素*/
#color-input-red +label{
    display: block;
    width: 16px;
    height: 16px;
    cursor: pointer;
    position: absolute;
    top: 0;
    left:0;
    background: rgba(240, 84, 77, 1);
	background:#ddd;
	border-radius:50%;
	margin-bottom:0;
}
/*当input框为选中状态时，lable标签的样式，其中在css选择时，“：”表示当前input框的值，即checked；该部分主要对显示的“对号”的大限居中方式，显示颜色进行了设置*/
#color-input-red:checked + label::before{
	display: block;
	content: "\2714";
	text-align: center;
	font-size: 12px;
	color: white;
}
#color-input-red:checked + label{
	background:#4766e8;
}
input[type=checkbox]{
	visibility: hidden;
}
/*找回密码*/
.findpassword p.findpassword-ts{
	font-size:14px;
	margin-top:20px;
	color:#999;
}
button:active,button:visited,button:focus{
	outline:none;
}
/*自适应*/
@media (max-width:414px){
	.logrebg{
		padding-left:10px;
		padding-right:10px;
		padding-bottom:30px;
		min-height:100%;
		height:auto;
	}
	.login{
		width:100%;
		box-sizing:border-box;
	}
}

/*验证码*/
.hasyzm{
	position:relative;
}
.hasyzm img{
	position:absolute;
	bottom:1px;
	right:1px;
	height:40px;
	border-radius:0 8px 8px 0;
}

/*个人中心*/
.ucbg{
	background:#f4f4f6;
	height:100%;
	padding-top:50px;
	padding-bottom:50px;
}
.usercenter{
	width:1000px;
	border-radius:10px;
	box-shadow:0px 1px 3px rgba(0,0,0,0.16);
	background:#fff;
	margin:0 auto;
	padding:30px 50px;
}
 .usercenter h2{
	font-size: 24px;
    color: #6a849c;
    font-weight: 700;
	margin-bottom:0;
	width:100%;
	text-align:center;
}
.usercenter-title p{
	display: block;
    font-size: 14px;
    color: #b4b9cd;
    line-height: 21px;
	margin-top:5px;
	text-align:center;
}
.usercenter-title{
	margin-bottom:50px;
}
.usercenter-cnt{
	display:flex;
	justify-content:space-between;
	align-items: flex-start;
}
.usercenter-l{
	width:70%;
	padding-right:50px;
}

.usercenter-r{
	width:30%;
}
.usercenter-l h3{
	font-size:18px;
	font-weight:300;
	position:relative;
	margin-bottom:20px;
}
.usercenter-l h3:after{
	content:"";
	width:80%;
	height:1px;
	background:#ffbcbf;
	position:absolute;
	top:50%;
	right:0;
}
.username:first-child{
	padding-bottom:50px;
}
.username:last-child{
	padding-top:50px;
	padding-bottom:50px;
}
.username form label span{
	font-size:14px;
	color:#6a849c;
}
.username form input{
	display: block;
    width: 96%;
    font-size:14px;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius:6px;
    outline:none;
	height:36px;
	margin:10px 0;
	padding:0 10px;
}
.username form button{
	background-color: #4766e8;
    cursor: pointer;
    border: none;
    width: 130px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0;
	color:#fff;
	font-size:16px;
	border-radius:6px;
	margin-top:15px;
}
.username form button:hover{
	opacity:0.8;
}
 
/*---修改头像*/

 .usertx h3{
	font-size: 16px;
    color: #2f3f51;
	font-weight:400;
}
.usertx-img{
	position:relative;
	width:72px;
	height:72px;
	margin:0 auto;
}
.usertx-img a{
	display:block;
	
}
.usertx-img img{
	width:70px;
	height:70px;
	border-radius:50%;
	border:1px #bbb solid;
}
.usertx-img input{
	display:block;
	width:72px;
	height:72px;
	position:absolute;
	top:0;
	left:0;
	outline:none;
	cursor:pointer;
	opacity:0;
	z-index:9999;
}
.usertx-img p{
	background:rgba(0,0,0,0.5);
	color:#fff;
	text-align:center;
	padding:2px 0;
	width:99%;
	margin:0;
	margin-top:-42px;
	position:relative;
	z-index:999;
	display:none; 
	font-size:12px;
}
.usertx-img:hover p{
	display:block;
} 

/*自适应*/
@media (max-width:414px){
.ucbg{
	padding:10px;
}
.usercenter{
	width:100%;
	padding-left:10px;
	padding-right:10px;
	margin-bottom:50px;
}
.usercenter-cnt{
	display:flex;
	flex-direction:column-reverse;
}
.usercenter-l{
	width:100%;
	padding:0;
}
.usercenter-l h3:after {
    content: "";
    width: 70%;
    height: 1px;
    background: #da9b9d;
    position: absolute;
    top: 50%;
    right: 0;
}
.usercenter-l .username{
	font-size:16px;
}
.username form label {
		font-weight:400;
}
.username form label span{
	font-size:12px;

}
.username form button{
	height:36px;
	line-height:36px;
	width:100%;
}
.username form input{
	width:100%;
}
.usercenter-r{
	width:100%;
	text-align:center;
	margin-bottom:50px;
}
.usertx-img{
	margin-left:auto;
	margin-right:auto;
}
.username:first-child{
	padding-bottom:20px;
}
}

/*第三方登录*/
.login-dsf{
	text-align:center;
	margin-top:35px;
	padding:20px;
	border-top:1px #dedede dotted;
}
.login-dsf a img{
	width:38px;
	height:38px;
	cursor:pointer;
	
}
.login-dsf a {
	margin:0 20px;
}
.login-dsf a:hover{
	opacity:0.8;
}