/*
	*登录
	*注册
	*找回密码
*/
html,body{
	height:100%;
	margin:0;
	padding:0;
	box-sizing:border-box;
	-moz-box-sizing:border-box; /* Firefox */
	
}
.logrebg{
	height:100%;
	padding-top:50px;
	background: #f4f4f4;
}
/*登录*/
.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;
	color:#333;
}
.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:44px;
	border:none;
	background:#e93274;
	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:#2f3f51;
	text-decoration:none;
}
.registerbtn a:hover{
		text-decoration:underline;
}
.backhome{
	text-align:center;
	margin-top:-15px;
	font-size:14px;
	color:#ccc;
}
.backhome span{
	margin-left:10px;
	margin-right:10px;
}
.backhome a{
	font-size:14px;
	color:#ccc;
	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;
}
.login 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;
}

/*个人中心*/
.ucpage {
	background:#f4f4f4;
	padding-top:25px;
}
.uctop{
	background:#fff;
	position:relative;
	padding:30px 60px;
	display:flex;
	justify-content:flex-start;
	align-items:center;
	border-radius:10px;
	overflow:hidden;
	/*box-shadow: 0 2px 16px rgba(0,0,0,0.1);*/
}
.uctop:before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:url(../images/ucbg.png) no-repeat  center;
	background-size:cover;
	opacity:0.15;
}
.uctop-tx{
	margin-right:20px;
	position:relative;
	z-index:9;
}
.uctop-tx img{
	width:80px;
	height:80px;
	border-radius:50%;
	background:#eee;
}
.uctop-ctn{
	position:relative;
	z-index:9;
}
.ucname{
	font-size:18px;
	font-weight:600;
	margin-bottom:10px;
}
.ucname span{
	font-size:12px;
	font-weight:400;
	background:#eee;
	display:inline-block;
	padding:2px 10px;
	border-radius:50px;
	margin-left:10px;
}
.ucname .ucname-vip{
	background:#fdbe3d;
	font-weight:600;
}
.vipms span{
	opacity:0.7;
	font-size:13px;
}
.vipms a{
	font-size:12px;
	font-weight:400;
	display:inline-block;
	padding:3px 10px;
	margin-left:10px;
	background-image: linear-gradient(135deg,#e1b271,#fce5aa);
    border-radius: 20px;
    color: #5b3301;
	cursor:pointer;
}
/*个人中心*/
.ucerrow{
	text-align:center;
	color:#888;
	margin-top:15px;
	margin-bottom:15px;
	padding-top:15px;
	padding-bottom:15px;
	background:rgb(255,147,133,0.16);
	border-radius:10px;
}
.ucctn{
	padding:30px;
	background:#fff;
	border-radius:10px;
	margin-top:20px;
	margin-bottom:30px;
	/*box-shadow: 0 2px 16px rgba(0,0,0,0.1);*/
} 
.ucctn-nav ul{
	display:flex;
	justify-content:flex-start;
	align-items:center;
	border-bottom:1px #dedede solid;
}
.ucctn-nav ul li{
	width:160px;
	height:54px;
}
.ucctn-nav ul li a{
	padding:0 30px;
	color:#333;
	font-size:16px;
	display:inline-block;
	height:54px;
	line-height:54px;
	position:relative;
	overflow:hidden;
	opacity:0.7;
}
.ucctn-nav ul li a:before{
	content:"";
	position:absolute;
	bottom:0;
	left:-100%;
	width:100%;
	height:2px;
	background:#e93274;
	transition:0.3s;
	-webkit-transition:0.3s;
}
.ucctn-nav ul li:hover a:before,.ucctn-nav ul li a.active:before{
	left:0;
}
.ucctn-nav ul li:hover a,.ucctn-nav ul li a.active{
	opacity:1;
}
.ucctn-ctn{
	margin-top:30px;
	padding:30px;
	min-height: 350px;
}
.pslinfo{
	display:flex;
	justify-content:space-between;
	align-items:flex-start;
	padding-top:50px;
	padding-bottom:50px;
	border-bottom:1px #dedede dotted;
}
.ucctn-title h3{
	font-size: 22px;
    color: #333;
    font-weight: 700;
}
.ucctn-title p{
	opacity:0.6;
	margin-top:10px;
}

.pslinfo form{
	width:45%;
}
.pslinfo .form-group label{
	font-size:16px;
	font-weight:600;
	
}
.pslinfo .form-group label span{
	font-size:14px;
	font-weight:400;
	opacity:0.6
}
.changetx-f{
	width:40%;
	text-align:center;
}
.changetx{
	position:relative;
	display:inline-block;
	width:auto;
}
.changetx img{
	width:90px;
	height:90px;
	border-radius:50%;
	margin-bottom:15px;
	background:#eee;
}
.changetx input{
	position:absolute;
	top:0;
	left:0;
	display:block;
	width:100%;
	height:100%;
	opacity:0;
	cursor:pointer;
	z-index:99;
}
.changetx span{
	display:block;
	width:100%;
	height:28px;
	line-height:28px;
	position:absolute;
	top:50%;
	left:0;
	color:#fff;
	background:rgba(35,35,43,0.5);
	margin-top:-14px;
	display:none;
}
.wp-btn{
	background:#e93274;
	border:none;
	padding-left:25px;
	padding-right:25px;
	transition:0.3s;
	-webkit-transition:0.3s;
}
.wp-btn:hover{
	opacity:0.8;
}
.ghtx{
	opacity:0.6;
	text-align:center;
}
.changetx:hover span{
	display:block;
}
.pslinfo-sq .pslinfo-sfsq{
	display:flex;
	justify-content:flex-start;
	align-items:center;
	margin-top:15px;
}
.pslinfo-sq .pslinfo-sfsq div{
	width:180px;
	text-align:center;
}
.pslinfo-sq .pslinfo-sfsq div i{
	font-size:30px;
	display:inline-block;
	width:60px;
	height:60px;
	line-height:60px;
	background:rgba(255,255,255,0.15);
	border-radius:50%;
}
.pslinfo-sq .pslinfo-sfsq div i.icon-qq{
	color:#00B2FE;
}
.pslinfo-sq .pslinfo-sfsq div i.icon-weixin{
	color:#66D020;
}
.pslinfo-sq .pslinfo-sfsq div i.icon-weibo{
	color:#ff6249;
}
.pslinfo-sq .pslinfo-sfsq div a{
	display:block;
	color:#fff;
	background:#e93274;
	text-align:center;
	width:120px;
	margin:15px auto;
	height:34px;
	line-height:34px;
	border-radius:5px;
	transition:0.3s;
	-webkit-transition:0.3s;
}
.pslinfo-sq .pslinfo-sfsq div a:hover{
	opacity:0.8;
}
/*个人中心收藏*/
.uc-collect{
	display:flex;
	justify-content:flex-start;
	align-items:stretch;
	flex-wrap:wrap;
	width:100%;
	padding:0;
	
}
.uccolt-item{
	position:relative;
	width:20%;
	padding:10px;
	margin-bottom:15px;
}
.uccolt-item-img{
	width:100%;
	overflow:hidden;
}
.uccolt-item img{
	width:100%;
	height:117px;
	transition:0.3s;
	-webkit-transition:0.3s;
}
.uccolt-item h3{
	color:#fff;
	font-size:14px;
	 text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top:5px;
  line-height:1.3;
  
}
.uccolt-del{
	position:absolute;
	top:-6px;
	right:-6px;
	color:#fff;
	background:#555;
	width:20px;
	height:20px;
	line-height:20px;
	text-align:center;
	display:block;
	border-radius:50%;
	display:none;cursor:pointer;
}
.uccolt-del i{
	font-size:12px;
}
.uccolt-item:hover{
	background:#343c4c;
}
.uccolt-item:hover img{
	 -webkit-transform: scale(1.1,1.1);
	transform: scale(1.1,1.1);
}
.uccolt-item:hover .uccolt-del{
	display:block;
}
.uccolt-del:hover{
	color:#fff;
	background:#777;
}

/*验证码*/
.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;
} 
/*第三方登录*/
.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;
}
/*-个人中心-我发布的文章*/
.screen-reader-text, .screen-reader-text span, .ui-helper-hidden-accessible {
    border: 0;
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal!important;
}
/*-个人中心-我发布的文章*/

.uc-postlist table{
	width:100%;
	text-align:center;
	line-height:1.5;
}
.uc-postlist table thead{
	font-size:15px;
	border-bottom:1px #dedede solid;
}
.uc-postlist table thead th{
	padding-top:15px;
	padding-bottom:15px;
}
.uc-postlist table tbody tr{
	border-bottom:1px #eee dotted;
}
.uc-postlist table tbody td{
	padding-top:25px;
	padding-bottom:25px;
}
.uc-postlist table tbody td.post-firsttd{
	width:65%;
}
.uc-postlist table a.posttitle{
	/*color:#333;*/
	padding-left:15px;
	background:url(../images/list.gif) no-repeat 5px 10px;
	font-size:15px;
	text-align:left;
	display:block;
	width:100%;
	transition:0.3s;
	-webkit-transition:0.3s;
	
}
.uc-postlist table tbody tr:hover{
	background:#fafafa;
}
.uc-postlist table tbody tr:hover  a.posttitle{
	margin-left:5px;
}
.uc-postlist table a.postedit,.uc-postlist table button{
	display:block;
	border:none;
	background:#f4f4f4;
	border-radius:20px;
	padding:3px 10px;
	font-size:13px;
	color:#999;
	width:80px;
	margin:0 auto;
	transition:0.3s;
	-webkit-transition:0.3s;
}
.uc-postlist table i{
	margin-right:5px;
}
.uc-postlist table a.postedit:hover,.uc-postlist table button:hover{
	color:#333;
	background:#eee;
	
}
/*-个人中心-编辑文章-*/
.uc-sendpost button.sendpost-btn{
	width:120px;
	background-color:#e93274;
	border:none;
}
.uc-sendpost .sendpost-title{
	font-size:17px;
	font-weight:600;
	
}


/*********************************************自适应*********************************/
@media (max-width:768px){
	.uc-postlist{
		padding:0;
	}
	.uc-postlist table tbody td.post-firsttd {
		width: 50%;
	}
}
@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;
	}
	/*个人中心*/
	.uctop{
		padding: 30px;
		display:block;
		text-align:center;
		border-radius:0;
	}
	.uctop-tx{
		margin-bottom:15px;
		margin-right:0;
	}
	.ucctn{
		border-radius:0;
		padding: 30px 10px;
	}
	.ucctn-nav ul li a{
		padding:0 8px;
	}
	.ucctn-ctn{
		padding: 20px 10px;
	}
	.ucname span{
		display:block;
		margin:5px auto;
		width:80px;
	}
	.pslinfo{
		display:block;
	}
	.pslinfo form{
		width:100%;
	}
	.changetx-f{
		margin:25px auto 0 auto;
	}
	.wp-btn{
		width:100%;
	}
	.pslinfo-sq .pslinfo-sfsq{
		justify-content:space-between;
	}
	.pslinfo-sq .pslinfo-sfsq div{
		width:30%;
	}
	.pslinfo-sq .pslinfo-sfsq div a{
		width:100%;
	}
	.uccolt-del{
		display:block;
	}
	.uc-postlist{
		overflow-x:auto;
	}
	.uc-postlist table {
		width: 800px;
	}
}






