/*登录弹框*/
.login-dialog {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background: rgba(37, 40, 48, .7);
}

.login-dialog-wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 700px;
	height: 460px;
	border-radius: 10px;
	margin-top: -230px;
	margin-left: -350px;
	animation: bounceIn 0.3s;
}

@-webkit-keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.5);
		transform: scale(.5)
	}
	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.5);
		-ms-transform: scale(.5);
		transform: scale(.5)
	}
	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1)
	}
}

.login-dialog-wrap-side {
	float: left;
	width: 160px;
	height: calc(100% - 20px);
	padding: 20px 30px 0;
	border-radius: 10px 0 0 10px;
	background: linear-gradient(214deg,#fffaf3,#f2f2f2);
	overflow: hidden;
}

.login-dialog-wrap-side p {
	height: 40px;
	margin-top: 60px;
}

.login-dialog-wrap-side p img{
	float: left;
	width: 40px;
	height: 40px;
	border-radius: 6px;
	margin-right: 15px;
	opacity: .75;
}

.login-dialog-wrap-side p b,
.login-dialog-wrap-side p span{
	display: block;
    line-height: 1;
}

.login-dialog-wrap-side p b{
	padding: 2px 0 9px;
	font-size: 14px;
	font-weight: normal;
	color: #666;
}

.login-dialog-wrap-side p span{
	font-size: 12px;
	color: #bbb;
}

.login-dialog-wrap-main {
	float: right;
	width: 480px;
	height: 460px;
	border-radius: 0 10px 10px 0;
	background-color: #fff;
}

.login-dialog-wrap-main .switch {
	height: 60px;
}

.login-dialog-wrap-main .switch .tab{
	float: left;
	height: 60px;
}

.login-dialog-wrap-main .switch .tab i{
	float: left;
	width: 60px;
	height: 60px;
	background-repeat: no-repeat;
	background-position-x: 0;
	background-position-y: top;
	cursor: pointer;
}

.login-dialog-wrap-main .switch .tab.qr i{
	background-image: url(/img/login-dialog/change-qrcode.png);
}

.login-dialog-wrap-main .switch .tab.pc i{
	background: url(/img/login-dialog/change-pc.png);
}

.login-dialog-wrap-main .switch .tab i:hover{
	background-position-y: bottom;
}

.login-dialog-wrap-main .switch .tab span{
	position: relative;
	z-index: 1;
	float: left;
	height: 30px;
	padding: 0 10px;
	border-radius: 4px;
	margin: 16px 0 0 3px;
	font-size: 12px;
    color: #888;
    line-height: 30px;    
    box-shadow: 0 3px 8px 0 rgba(0,0,0,.1);
    cursor: default;
}

.login-dialog-wrap-main .switch .tab span:before{
	content: "";
	position: absolute;
    top: 50%;
    left: -5px;
    z-index: -1;
    width: 8px;
    height: 8px;
	background-color: #fff;
	transform: translateY(-50%) rotate(45deg);
    box-shadow: 0 6px 13px 0 rgba(0,0,0,.1); 
}

.login-dialog-wrap-main .switch .off{
	float: right;
	height: 60px;
}

.login-dialog-wrap-main .switch .off i{
	position: relative;
	display: block;
	width: 25px;
	height: 25px;
	border-radius: 3px;
	margin: 18px 18px 0 0;
	cursor: pointer;
}

.login-dialog-wrap-main .switch .off i:before,
.login-dialog-wrap-main .switch .off i:after{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1px;
	height: 12px;
	margin-top: -6px;
	background-color: #999;
	transform: skew(45deg);
}

.login-dialog-wrap-main .switch .off i:after{
	transform: skew(-45deg);
}

.login-dialog-wrap-main .switch .off i:hover{
	background-color: #e8e8e8;
}

.login-dialog-wrap-main .switch .off i:hover:before,
.login-dialog-wrap-main .switch .off i:hover:after{
	background-color: #666;
}

.login-dialog-wrap-main .other{
	padding-top: 15px;
	font-size: 12px;
	line-height: 22px;
	text-align: center;
}

.login-dialog-wrap-main .other a{
	display: inline-block;
	vertical-align: top;
	color: #666;
	text-decoration: none;
}

.login-dialog-wrap-main .other a:after{
	content: '';
	display: inline-block;
	vertical-align: top;
	width: 22px;
	height: 22px;
	margin-left: 4px;
	background: url(/img/login-dialog/login-weixin.png) no-repeat center / 22px 22px;
}

.login-dialog-wrap-main .other a:hover{
	color: #f70;
}

.login-dialog-wrap-main .box{
	position: relative;
	height: 400px;
	padding: 0 80px;
}

.login-dialog-wrap-main .box .title{
	padding: 26px 0 34px;
	line-height: 1;
	text-align: center;
}

.login-dialog-wrap-main .box .title i{
	display: inline-block;
	vertical-align: middle;
	width: 1px;
	height: 16px;
	margin: 3px 18px 0;
	background-color: #ddd;
}

.login-dialog-wrap-main .box .title b{
	display: inline-block;
	vertical-align: middle;
	font-size: 18px;
	color: #222;
}

.login-dialog-wrap-main .box.pc .title b{
	color: #999;
	cursor: pointer;
}

.login-dialog-wrap-main .box.pc .title b.active{
	color: #222;
}

.login-dialog-wrap-main .box.qr .code{
	padding-bottom: 40px;
}

.login-dialog-wrap-main .box.qr .code img{
	display: block;
	width: 160px;
	height: 160px;
	border: 0;
	margin: 0 auto;
}

.login-dialog-wrap-main .box.qr .help{
	line-height: 1;
	text-align: center;
}

.login-dialog-wrap-main .box.qr .help span{
	display: inline-block;
	vertical-align: top;
	margin: 0 18px;
	font-size: 14px;
	color: #666;
	cursor: default;
}

.login-dialog-wrap-main .box.qr .help span:after{
	content: '?';
	display: inline-block;
	vertical-align: top;
	width: 12px;
	height: 12px;
	border: 1px solid #999;
	border-radius: 50%;
	margin-left: 3px;
	font-family: arial;
	font-size: 12px;
	color: #999;
	
}

.login-dialog-wrap-main .box.qr .help span:hover{
	color: #f70;
}

.login-dialog-wrap-main .box.qr .help span:hover:after{
	border-color: #f70;
	color: #f70;
}

.login-dialog-wrap-main .box.qr .help-none{
	position: absolute;
	bottom: 66px;
	left: 380px;
	width: 200px;
	height: 210px;
	border-radius: 10px;
	background-color: #fff;
    box-shadow: 0 10px 30px 0 rgba(92,94,102,.1), 0 4px 16px 0 rgba(0,0,0,.08);  
}

.login-dialog-wrap-main .box.qr .help-none:before {
	content: "";
	position: absolute;
	left: -8px;
	bottom: 40px;
	width: 0;
	height: 0;
    border: 8px solid transparent;
    border-left: none;
    border-right-color: #fff;
}

.login-dialog-wrap-main .box.qr .help-none span{
	display: block;
	font-size: 14px;
	color: #666;
	line-height: 1;
	text-align: center;
}

.login-dialog-wrap-main .box.qr .help-none img{
	display: block;
	width: 100px;
	height: 100px;
	border: 0;
	margin: 40px auto 20px;
}

.login-dialog-wrap-main .box.qr .help-scan{
	position: absolute;
	bottom: 66px;
	left: 380px;
	width: 210px;
	padding: 30px 35px 0;
	border-radius: 10px;
	background: linear-gradient(180deg,#ffd6b3,#ffedde 28%,#fdfaf7);
    box-shadow: 0 10px 30px 0 rgba(92,94,102,.1), 0 4px 16px 0 rgba(0,0,0,.08);
    line-height: 1;
	text-align: center;
}

.login-dialog-wrap-main .box.qr .help-scan:before {
	content: "";
	position: absolute;
	left: -8px;
	bottom: 40px;
	width: 0;
	height: 0;
    border: 8px solid transparent;
    border-left: none;
    border-right-color: #fef8f3;
}

.login-dialog-wrap-main .box.qr .help-scan b{
	display: block;
	font-size: 18px;
	color: #222;
}

.login-dialog-wrap-main .box.qr .help-scan span{
	display: block;
	padding: 18px 0;
	font-size: 12px;
	color: #666;
}

.login-dialog-wrap-main .box.qr .help-scan img{
	display: block;
	width: 100%;
	border: 0;
}

.login-dialog-wrap-main .box.pc .form .input {
	margin-bottom: 19px;
	padding: 0 16px;
	border: 1px solid #e3e7ed;
	border-radius: 5px;
	font-size: 14px;
	line-height: 20px;
	overflow: hidden;
}

.login-dialog-wrap-main .box.pc .form .input input,
.login-dialog-wrap-main .box.pc .form .input span{
	float: left;
	height: 20px;
	padding: 12px 0;
	background-color: #fff;
}

.login-dialog-wrap-main .box.pc .form .input input{
	border: 0;
	color: #333;
}

.login-dialog-wrap-main .box.pc .form .input input::placeholder{
	color: #999;
}

.login-dialog-wrap-main .box.pc .form .input span{
	width: 72px;
	color: #f70;
	text-align: center;
	cursor: pointer;
}

.login-dialog-wrap-main .box.pc .form .button,
.login-dialog-wrap-main .box.pc .form .forget{
	margin-bottom: 19px;
	overflow: hidden;
}

.login-dialog-wrap-main .box.pc .form .button input{
	float: left;
	width: 100%;
	height: 44px;
	border: 0;
	border-radius: 5px;
	background-color: #f70;
	font-size: 16px;
	color: #fff;
}

.login-dialog-wrap-main .box.pc .form .forget a{
	float: right;
	font-size: 14px;
	color: #888;
	line-height: 1;
	text-decoration: none;
}

.login-dialog-wrap-main .box.pc .form .forget a:hover{
	color: #f70;
}

.login-dialog-wrap-main .box.pc .form .agree{
	height: 14px;
	margin-bottom: 19px;
	font-size: 12px;
	line-height: 14px;
	text-align: center;
}

.login-dialog-wrap-main .box.pc .form .agree input,
.login-dialog-wrap-main .box.pc .form .agree label,
.login-dialog-wrap-main .box.pc .form .agree a{
	display: inline-block;
	vertical-align: middle;
}

.login-dialog-wrap-main .box.pc .form .agree label{
	color: #999;
}

.login-dialog-wrap-main .box.pc .form .agree a{
	color: #f70;
	text-decoration: none;
}
