*{
	margin: 0;
	padding: 0;
}

input::-ms-clear { display: none; }

.sm_clear_fix::before,.sm_clear_fix::after{
	content: "";
	display: table;
	clear: both;
}

.sm_m_bom_10{
	margin-bottom: 10px;
}

.sm_m_bom_12{
	margin-bottom: 10px;
}

.sm_m_bom_18{
	margin-bottom: 14px;
}

.sm_m_bom_14{
	margin-bottom: 14px;
}

.sm_m_bom_20{
	margin-bottom: 20px;
}

.sm_m_bom_24{
	margin-bottom: 24px;
}

.sm_m_bom_26{
	margin-bottom: 26px;	
}

.sm_m_bom_30{
	margin-bottom: 30px;
}

.sm_select_dis{
	user-select: none;
}

html,body{
	width: 100%;
	height: 100%;
}

.sm_register_box{
	width: 100%;
	height: 100%;
	background-color: #f7f9fc;
}

.sm_register_swiper{
	float: left;
	width: 400px;
	height: 100%;
}
.pagination{
	height: 40px;
	width: 100%;
	/*background-color: red;*/
	float: right;
	position: absolute;
	top: 575px;
	left: 0px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.sm_register_content{
	float: left;
	width: calc(100vw - 430px);
	height: 100vh;
	position: relative;
	overflow: hidden;
}

.sm_register_explain{
	font-size: 12px;
	color: #8A8A99;
	text-align: center;
}

.sm_register_logo{
	width: 200px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.sm_register_form{
	padding: 32px 40px;
	box-sizing: border-box;
	border: 1px solid #EBEBEB;
	border-radius: 3px;
	width: 400px;
	background-color: #fff;
}

.sm_register_item_title{
	font-size: 14px;
	color: #323133;
}

.sm_register_input{
	width: 320px;
	height: 38px;
	box-sizing: border-box;
	border: 1px solid #E0E0E0;
	border-radius: 3px;
	outline: none;
	padding-left: 18px;
	padding-right: 18px;
}

.sm_register_ver_box{
	position: relative;
	width: 320px;
	cursor: pointer;
}

.sm_register_ver{
	height: 38px;
	width: 80px;
	position: absolute;
	right: 1px;
	top: 1px;
}

.sm_register_agr{
	color: #4B484C;
	font-size: 12px;
	vertical-align: 1px;
	cursor: pointer;
}

.sm_register_agr_link{
	cursor: pointer;
	color: #3291FD;
	font-size: 12px;
	vertical-align: 1px;
}

.sm_register_checkbox{
	box-sizing: border-box;
	border: 1px solid #D1D2D4;
	border-radius: 1px;
	cursor: pointer;
	width: 16px;
	height: 16px;
	margin-right: 10px;
}

.sm_register_checkbox_active{
	width: 4px;
	height: 8px;
	border-color: #6565fb;
	border-style: solid;
	border-width: 0 2px 3px 0;
	transform: rotate(45deg);
	position: relative;
	left: 4px;
}

.sm_register_submit{
	width: 320px;
	height: 40px;
	background-color: #6565FB;
	border-radius: 3px;
	border: none;
	color: #fff;
	cursor: pointer;
}

.sm_register_submit:hover{
	background-color: #6E7AEA;
}

.sm_register_submit:active{
	background-color: #6E7AEA;
}

.sm_register_form_main{
	width: 400px;
	height: 490px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.sm_popup_box{
	position: fixed;
	z-index: 10;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,0.4);

	top: 0;
	left: 0;
}

/* 弹窗的动画开始 */
.sm_popup_box_open {
    -webkit-animation: fadeleftIn .4s;
    animation: fadeleftIn .4s;
    -webkit-animation-name: popIn;
    animation-name: popIn;
}

@-webkit-keyframes popIn {
    0% {
        -webkit-transform: scale3d(0, 0, 0);
        transform: scale3d(0.5, 0.5, 0.5);
        opacity: 0;
    }
    50% {
        -webkit-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
        animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
        animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
        opacity: 1;
    }
}

@keyframes popIn {
    0% {
        -webkit-transform: scale3d(0, 0, 0);
        transform: scale3d(0.5, 0.5, 0.5);
        opacity: 0;
    }
    50% {
        -webkit-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
        animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
        animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
        opacity: 1;
    }
}

.sm_popup_box_hide {
	-webkit-animation: fadeleftIn .5s;
	animation: fadeleftIn .5s;
	-webkit-animation-name: noPopIn;
	animation-name: noPopIn;
}

@-webkit-keyframes noPopIn {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale3d(0, 0, 0);
        transform: scale3d(0, 0, 0);
        opacity: 0;
    }
}

@keyframes noPopIn {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale3d(0, 0, 0);
        transform: scale3d(0, 0, 0);
        opacity: 0;
    }
}
/* 弹窗的动画结束 */

.sm_popup_content{
	background-color: #fff;
	/*padding: 40px;*/
	box-sizing: border-box;
	/*width: 360px;*/
	/*height: 278px;*/
	position: absolute;
	top: 0;
	bottom: 0;
	/* 为了不让页面出现滚动条，右侧区域空出了30个像素 */
	/*left: -30px;*/
	right: 0;
	margin: auto;
	border-radius: 6px;

	width: 382px;
	height: 264px;
	left: -393px;
	right: 0;
}

.sm_popup_btn{
	height: 40px;
	width: 280px;
	background-color: #6565FB;
	box-sizing: border-box;
	color: #fff;
	border: none;
	border-radius: 4px;
	outline: none;
	font-size: 14px;
	cursor: pointer;
}

.sm_popup_btn:hover{
	background-color: #6E7AEA;
}

.sm_popup_btn:active{
	background-color: #6E7AEA;
}

.sm_popup_input{
	height: 40px;
	width: 280px;
	border: 1px solid #E1E1E1;
	border-radius: 4px;
	box-sizing: border-box;
	outline: none;
	padding-left: 16px;
	padding-right: 100px;
}

.sm_popup_item{
	width: 280px;
}

.sm_popup_var_box{
	position: relative;
}

.sm_popup_var_send{
	cursor: pointer;
	position: absolute;
	right: 16px;
	top: 10px;
	color: #0080FF;
	font-size: 14px;
	background-color: transparent;
	border: none;
}

.sm_popup_var_send::before{
	content: "";
	width: 1px;
	height: 20px;
	background-color: #E7E7E7;
	position: absolute;
	left: -10px;
}

.sm_phone_var_title{
	font-weight: bold;
	font-size: 14px;
	text-align: center;
}

.sm_target_phone{
	font-size: 14px;
	text-align: center;
}

.sm_popup_box_close{
	color: #D2D2D2;
	position: absolute;
	top: 15px;
	right: 15px;
	cursor: pointer;
	user-select: none;
}

.sm_copy_right{
	position: absolute;
	text-align: center;
	color: #babcc2;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	white-space:nowrap;
	width: 100%;
}
.sm_copy_right_l{
	float: left;
	margin-left: 30px;
}
.sm_copy_right_r{
	float: right;
}

.sm_disable_btn{
	/*color: #a6a6a7;*/
	/*v2.5修改*/
	color: #5D6BE8 !important;
}

.sm_register_error_tips{
	color: red;
}

.sm_landing{
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,0.4);
	/*position: relative;*/
	z-index: 9999;

	/*v2.5*/
	position: absolute;
	top: 0;
	right: 0;
}

.sm_landing_gif{
	width: 240px;
	height: 140px;
	position: absolute;
	top: 0;
	right: 0;
	left: -30px;
	bottom: 0;
	margin: auto;
}
.lyx-register-check{
	display: flex;
	align-items: center;
}
.lyx_popup_var_send{
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 10px;
	background-color: transparent;
	border: none;
	font-size: 12px;
	text-align: left;
	color: #5d6be8;
	line-height: 22px;
}
.lyx-password1{
	position: absolute;
	right: 10px;
	bottom: 22px;
	color: #ACB6BF;
}
.lyx-password2{
	position: absolute;
	right: 10px;
	bottom: 5px;
	color: #ACB6BF;
}
/*.sm_popup_box img{*/
/*	width: 100%;*/
/*}*/

/*.sm_layer_box{*/
/*	display: none;*/
/*	box-sizing: border-box;*/
/*	padding: 24px;*/
/*	padding-bottom: 0;*/
/*}*/

/*.sm_wx_login_tip_icon{*/
/*	width: 24px;*/
/*	height: 24px;*/
/*	margin-right: 10px;*/
/*}*/

/*.sm_wx_login_tip_text{*/
/*	font-size: 12px;*/
/*	color: #333333;*/
/*	line-height: 24px;*/
/*}*/

/*.sm_wx_login_tip_text_2{*/
/*	font-size: 12px;*/
/*	color: #8c8c8c;*/
/*	margin-top: 10px;*/
/*	width: 246px;*/
/*	height: 40px;*/
/*	background-color: #edf2ff;*/
/*	border-radius: 3px;*/
/*	line-height: 40px;*/
/*	text-align: center;*/
/*}*/

/*.sm_wx_login_tip_text_2 > span{*/
/*	color: #5D6BE8;*/
/*	cursor: pointer;*/
/*}*/

/*.sm_wx_login_tip_text_3{*/
/*	font-size: 12px;*/
/*	cursor: pointer;*/
/*	color: #8c8c8c;*/
/*	margin-top: 12px;*/
/*}*/

/*#bind_wx_code > iframe {*/
/*	width: 100%;*/
/*	height: 100%;*/
/*}*/