body{
	overflow-y: scroll;
	background: #F2F2F2;
}
.naver{
	position: fixed;
	right: 0;
	left: 0;
	z-index: 99;
}
.content{
	width: 1200px;
	margin: 0 auto;
	color: #4A4A4A;
	position: relative;
	top: 70px;
	padding: 60px 0;
}
.loginBox{
    background: #fff;
    width: 1200px;
}
.loginBox .titleBox{
	border-bottom: 1px solid #eeeeee;
	padding-left: 40px;
	padding-top: 40px;
	padding-bottom: 30px;
}
.loginBox .titleBox p{
	font-size: 32px;
	line-height: 32px;
}
.loginMain{
    display: flex;
    padding: 80px 0;
    flex-direction: column;
    align-items: center;
}

/* step */
.stepBox{
	display: -ms-flexbox;
	width: 800px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.stepBox:before{
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    background: #E8E8E8;
    top: 25px;
    z-index: 1;
}
.stepBox .step{
	position: relative;
	z-index: 9;
}
.step .dot{
    width: 50px;
    height: 50px;
    background: #E8E8E8;
    border-radius: 50%;
    text-align: center;
    line-height: 54px;
    font-size: 18px;
    color: #fff;	
}
.step .dot.active{
	background: #059FCC;
}
.step p{
    font-size: 18px;
    margin-top: 20px;
    text-align: center;	
}

.ie10 .step , .ie11 .step{
	width: 33.3%;
	float: left;
}
.ie10 .step:last-child, .ie11 .step:last-child{
	width:auto;
	float: right;
}
.ie10 .step:first-child p, .ie11 .step:first-child p{
	width: 50px;
}
.ie10 .step:nth-of-type(2), .ie11 .step:nth-of-type(2){
	margin: 0 auto;
}

.ie10 .step:nth-of-type(2) p, .ie11 .step:nth-of-type(2) p{
	width: 50px;
}
/* form */
.formBox{
    display: flex;
    flex-direction: column;
    padding-top: 25px;
    align-items: flex-end;
}
.formGroup{
	display: flex;
	align-items: center;
	margin-top: 25px;
}
.formGroup .iptName{
	font-size: 15px;
	margin-right: 20px;
}
.formGroup .ipt{
	height: 48px;
    background: #f8f8f8;
    border: none;
    text-indent: 10px;
    width: 400px;
    font-size: 14px;
}
.formGroup .codeBox{
	position: relative;
	width: 400px;
}
.formGroup .codeBox img{
    position: absolute;
    right: 0;
    top: 0;
    height: 48px;
    cursor: pointer;
}
.formGroup .subBtn{
    display: block;
    width: 400px;
    height: 48px;
    background: #059FCC;
    color: #FFFFFF;
    text-align: center;
    line-height: 48px;
    border-radius: 4px;
    font-size: 16px;
    margin-top: 15px;
}
.formBox .erroTxt{
    color: #FF2121;
    font-size: 14px;
    display: block;
    text-align: left;
    width: 400px;
    margin-top: 15px;
}
.formGroup .codeBox .notice{
	border-top: 1px solid #eeeeee;
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    font-size: 14px;	
}
.formGroup .codeBox .notice a{
	color: #059FCC;
	margin-left: 10px;
}



/* ipad横屏 */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape){
	.content{
		width: 964px;
	}
	.loginBox{
		width: 100%;
	}
}


/* width 768 */

@media (max-width: 1023px) {
	.content{
		width: 708px;
	}
	.loginBox{
		width: 100%;
	}
	.stepBox{
		width: 548px;
	}
}


/* width 480 */

@media (max-width: 767px) {
	.content{
		width: 440px;
	}
	.loginBox{
		width: 100%;
	}
	.loginMain{
		padding: 40px 0;
	}
	.stepBox{
	    width: auto;
	}
	.stepBox .step:nth-of-type(2),.stepBox .step:nth-of-type(3){
		display: none;
	}
	.stepBox .step{
		display: flex;
		flex-direction: row;
		align-items: center;
	}
	.step p{
		margin-top: 0;
		margin-left: 20px;
	}
	.stepBox:before{
		display: none;
	}
	.formGroup .ipt,.formBox .erroTxt,.formGroup .codeBox,.formGroup .subBtn{
		width: 300px;
	}
	.formGroup:nth-last-child(2){
		width: 100%;
	}
	.formGroup:nth-last-child(2) .codeBox{
		margin:0 auto;
	}
	.formGroup:last-child{
		width: 100%;
	}
	.formGroup:last-child .codeBox{
		width: 100%;
	}
}


/* width 320 */

@media (max-width: 479px) {
	.content{
		width: 300px;
		padding: 30px 0;
	}
	.loginBox{
		width: 100%;
	}
	.loginMain{
		padding: 30px 0;
	}
	.loginBox .titleBox{
		padding: 30px 20px;
	}
	.loginBox .titleBox p {
	    font-size: 20px;
	    line-height: 20px;
	}
	.formGroup{
	    flex-direction: column;
    	align-items: baseline;
	}
	.formGroup .ipt, .formBox .erroTxt, .formGroup .codeBox, .formGroup .subBtn {
	    width: 280px;
	}
	.formGroup .codeBox .notice{
	    margin-top: 20px;
	    padding-top: 20px;
	    font-size: 14px;	
	}
	.formGroup .subBtn{
		width: 100px;
		height: 40px;
		line-height: 40px;
		font-size: 14px;
		margin: 0 auto;
	}
}


