/*
*@Description: login
*@Author:      Hanli
*@Update:      Hanli(2020-08-20)
*/
@charset "utf-8";

/* 防止用户自定义背景颜色对网页的影响 */
html {
    color: #333333;
    background: #fff;
}

/* 始终不显示滚动条 */
body {
    overflow-x: hidden; /*隐藏水平滚动条*/
    overflow-y: hidden; /*隐藏垂直滚动条*/
    line-height: 1.5;
}
*{
	margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body, button, input, select, textarea {
    font-family: 'Hiragino Sans GB', 'Hiragino Sans GB W3', 'Microsoft Yahei', '微软雅黑', Tahoma, Arial, Helvetica, STHeiti;
    font-size: 14px;
    word-wrap: break-word;
    color: #333333;
}

input, select, textarea {
    font-size: 100%;
}
input:foucs, select:foucs, textarea:foucs{
    outline: 0;
}

div:focus {
    outline: none;
}


.flex{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}


.container-login{
	width: 970px;
	margin: 0 auto;
	max-width: 100%;
}
/*account_header*/
.account_header{
	padding: 15px 0;
	line-height: 1;
}
.account_header .logo_box img{
	max-height: 45px;
	max-width: 100%;
	line-height: 1;
}
/*account_header END*/


/*account_main*/
.account_main{
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
}

.account_wrapper{
	width: 970px;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	margin: 0 auto;
	justify-content: flex-end;
}

.account_wrapper .account_right{
	padding: 10px;
	width: 48%;
	position: relative;
}

.account_wrapper .account_right .box{
	width: 100%;
}


.account_wrapper .account_right{
	background-color: rgba(255,255,255,.5);
	max-width: 480px;
}
.account_wrapper .account_right .box{
	padding: 30px;
	background: #fff;
}
.account_wrapper .form_item{
	margin-bottom: 25px;
}
.account_wrapper .account_title{
	font-size: 20px;
	text-align: center;
	margin-bottom: 30px;
	color: #000;
	justify-content: space-between;
	align-items: center;
}





/*account_footer*/
.account_footer{
	padding: 15px 0;
}
.account_footer .flex{
	justify-content: space-between;
	font-size: 12px;
}
.account_footer .flex span{
	display: inline-block;
	max-width: 48%;
	color: #ccc;
}



.account{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}
.account_main{
	-webkit-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	-o-flex: 1;
	flex: 1;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	position: relative;
}

/*account_footer END*/
@media screen and (min-width: 1200px) {
	.container-login,
	.account_wrapper{
		width: 1170px;
	}
}
@media screen and (min-width: 1600px) {
	.container-login,
	.account_wrapper{
		width: 1300px;
	}
}
@media screen and (max-width: 991px) { 
	.account_wrapper{
		width: 100%;
		max-width: 90%;
	}
	.container-login{
		max-width: 90%;
	}
	.account_wrapper .account_right{
		width: 100%;
		margin: 0 auto;
		background: rgba(255,255,255,.75)
	}
	.account_wrapper .account_right .box{
		padding: 30px;
		background: none;
	}
	.account_footer .flex{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.account_footer .flex span{
		max-width: 100%;
		margin-bottom: 10px;
	}
	
}

@media screen and (max-width: 767px) {
	.account_wrapper,
	.container-login{
		padding: 0 15px;
		width: 100%;
		max-width: 100%;
	}
	.account_wrapper .account_title{
		margin-bottom: 20px;
	}
	.account_wrapper .account_right .box{
		padding: 10px;
	}
}
