.left{float: left;}
.right{float: right;}
.clear{clear:both;}
.red{color: #f60;}

.ececk_warning{
	font-size: 13px;
	color: red;
	width: 300px;
	margin: 0 auto;
	display: none;
}

/*--------------------------------------------------------------
# Login Popup
--------------------------------------------------------------*/
body.locked {
    overflow: hidden;
}
.login-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-110%);
    transition: transform 500ms ease, opacity 500ms ease;
}

.login-popup.active {
    transform: translateY(0%);
}

.login-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.75;
    cursor: pointer;
}

.login-popup__content {
    width: 100%;
    max-width: 560px;
    /* background-color: #fff; */
}

.login-popup__content .login_form {
    margin: 0 auto;
    position: relative;
    background-color: #fff;
    border-radius: 0px;   
    width: 500px;
}

.login-popup__content .register_form{
    margin: 0 auto;
    position: relative;
    background-color: #fff;
    border-radius: 0px;   
    width: 500px;	
	display: none;
}

.login_title{
	font-size: 25px;
	text-align: center;
	color: #FF7F50;
	padding: 15px 0;
	width: 500px;
	margin: 0 auto;
	border-bottom: solid 1px #CCCCCC;
}

.form_text_ipt{
	width: 300px;
	height: 40px;
	border: solid 1px #CCCCCC;
	margin: 20px auto 0 auto;
	background: #FFFFFF;
}

.form_check_ipt{
	width: 300px;
	margin:  10px auto;
	overflow: hidden;
}
.form_text_ipt input{
	width: 290px;
	height: 30px;
	margin: 5px;
	border: none;
	font-size: 15px;
	color: #666;
}

.form_text_verify{
	width: 300px;
	height: 40px;
	margin: 20px auto 0 auto;
	background: #FFFFFF;	padding: 0;	border: solid 1px #CCCCCC; display: flex; justify-content: space-between;
}

.verify-code{
	width: 160px;	
	height: 30px;
	border: none;
	font-size: 15px;
	color: #666;	margin: 5px; 
	display: inline-block;
}
.verify_img{
	width: 120px; height: 40px; display: inline-block;
}

.check_left label{
	cursor: pointer; font-size: 12px;
}
.check_left label input{
	position: relative;
	top: 2px;
}
.check_right a{
    font-size: 12px; color: #3cf;
}
.form_btn{
	width: 300px;
	height: 40px;
	margin:  10px auto;
}
.form_btn button{
	width: 100%;
	height: 100%;
	border: none;
	color: #FFFFFF;
	font-size: 14px;
	background: #FF7F50;
	cursor: pointer;
}

.form_reg_btn{
	width: 300px;
	margin: 0 auto;
	font-size: 14px;
	color: #666;
}
.form_reg_btn a {
    font-size: 14px; color: #3cf;
}
.other_login{
	overflow: hidden;
	width: 300px;
	height: 80px;
	line-height: 80px;
	margin: 0px auto;
}
.other_left{
	font-size: 14px;
	color: #999;
}

.other_right a{
	margin:5px;
	color:#636363; 
}

.other_right a:hover{
	color:#AEEEEE;
}

/* .login-popup__content form {
    display: flex;
    position: relative;
    border-radius: 0px;
} 

.login-popup__content form input[type="search"],
.login-popup__content form input[type="text"] {
    width: 100%;
    background-color: #fff;
    font-size: 16px;
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
}*/