html,body,div,form,img,p,h2,h3,h4,span,input,label {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
form, input,button {
	border: none;
	outline: 0;
	background: transparent;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #999;
    font-weight: normal;
}
.page {
	position: relative;
	width: 100vw;
	height: 100vh;
	background: #060A2B;
}
/* 背景 */
.bg {
	position: fixed;
	left: 0;
	top: 0;
	width: 1506px;
	height: 100vh;
}
.bg .bg-img {
	width: 100%;
	height: 100%;
}
/* 标题*/
.title-wrapper {
	position: absolute;
	top: 90px;
	left: 120px;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
	color: #fff;
	font-weight: 500;
}
.title-wrapper h3 {
	font-size: 28px;
	text-shadow:0px 0px 8px rgba(255,255,255,0.66)
}
.title-wrapper h2 {
	font-size: 36px;
	text-shadow:0px 0px 8px rgba(255,255,255,0.66)
}
/* 表单 */
.sign {
	position: absolute;
	top: 225px;
	right: 154px;
	padding: 80px 50px 40px;
	width:500px;
	height: auto;
	background:rgba(39,48,80,0.9);
	border-radius:8px;
	z-index: 90;
}
.logo-row {
	text-align: center;
	margin-bottom: 1.947rem;
}
.logo {
	width: 184px;
}
.form-row {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	width: 100%;
	height:68px;
	padding: 0 30px;
	background:rgba(245,245,245,1);
	border-radius:4px;
	margin-bottom: 10px;
}
.row-icon {
	width: 24px;
	margin-right: 12px;
}
.row-inp {
	width: 0;
	padding-left: 20px;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	   -moz-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	height: 100%;
	font-size: 18px;
	font-weight: bold;
}
.check-row {
	position: relative;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	   -moz-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.tips {
	text-align: center;
	color: #fff;
	margin: 10px 0 60px;
	line-height: 20px;
	height: 20px;
	color: #f00;
}
.code-row {
	width: 0;
	padding: 0 0 0 30px;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	   -moz-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	margin-right: 10px;
	margin-bottom: 0;
}
.check {
	width: 165px;
	height: 68px;
}
.check img {
	width: 100%;
	height: 100%;
	border-radius: 4px;
}

#btnSubmit {
	width: 100%;
	height:68px;
	line-height: 68px;
	font-size: 18px;
	text-align: center;
	color: #fff;
	font-weight: 500;
	background:-webkit-gradient(linear,left top, left bottom,from(rgba(62,117,244,1)),to(rgba(32,79,229,1)));
	background:-webkit-linear-gradient(top,rgba(62,117,244,1) 0%,rgba(32,79,229,1) 100%);
	background:-o-linear-gradient(top,rgba(62,117,244,1) 0%,rgba(32,79,229,1) 100%);
	background:linear-gradient(180deg,rgba(62,117,244,1) 0%,rgba(32,79,229,1) 100%);
	border-radius:8px;
}
.form-row.error {
	border: 2px solid #f00;
	-webkit-animation: tada .1s 2;
	        animation: tada .1s 2;
}
.transition {
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}
.copy {
	position: absolute;
	left: 120px;
	bottom: 63px;
	font-size: 18px;
	color: #999;
}

/* 中屏 */
@media (max-width: 1200px) {
	.title-wrapper {
		top: 65px;
		width: 600px;
		left: 50%;
		margin-left: -300px;
	}
	.sign {
		top: 190px;
		right: 50%;
		margin-right: -250px;
	}
	.copy {
		left: 60px;
		bottom: 40px;
	}
}

/* 小屏 */
@media (max-width: 992px) {
	.bg {
		left: -160px;
	}
	.title-wrapper {
		top: 50px;
		width: 550px;
		left: 50%;
		margin-left: -275px;
	}
	.title-wrapper h2 {
		font-size: 32px;
	}
	.title-wrapper h3 {
		font-size: 24px;
	}
	.sign {
		top: 165px;
	}
	.copy {
		left: 60px;
		bottom: 30px;
		font-size: 14px;
	}
}

/* 手机 */
@media (max-width: 767px) {
	.bg {
		width: 200vw;
		height: auto;
		left: -40vw;
	}
	.title-wrapper {
		width: 100%;
		padding-left: 40px;
		left: 0;
		top: 50px;
		margin: 0;
	}
	.title-wrapper h2 {
		font-size: 18px;
	}
	.title-wrapper h3 {
		font-size: 14px;
	}
	.sign {
		top: 140px;
		width: 315px;
		right: 50%;
		margin-right: -157.5px;
		padding: 40px 20px 30px;
	}
	.logo-row {
		margin-bottom: 40px;
	}
	.logo {
		width: 124px;
	}
	.form-row {
		padding: 0 0 0 15px;
		height: 46px;
	}
	.row-icon {
		width: 16px;
	}
	.row-inp {
		padding: 0;
		font-size: 14px;
	}
	.check {
		width: 120px;
		height: 46px;
	}
	.tips {
		font-size: 14px;
		margin: 10px 0 40px;
	}
	#btnSubmit {
		height: 46px;
		line-height: 46px;
	}
	.copy {
		left: 0;
		width: 100%;
		padding: 0 40px;
		font-size: 14px;
	}
}
/* iphone5 iphone6 */
@media (max-width: 321px) {
	.title-wrapper {
		padding-left: 15px;
		top: 20px;
	}
	.sign {
		padding: 20px;
		top: 80px;
		width: 300px;
		margin-right: -150px;
	}
	.copy {
		left: 0;
		width: 100%;
		bottom: 10px;
		padding: 0 20px;
		font-size: 12px;
	}
}
@media screen and (max-width: 414px) and (min-height: 736px) {
	.title-wrapper {
		top: 60px;
	}
  .sign {
  	top: 190px;
  }
}
/* x xs */
@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
	.title-wrapper {
		top: 60px;
	}
  .sign {
  	top: 190px;
  }
}
/* xr */
@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
	.title-wrapper {
		top: 60px;
	}
  .sign {
  	top: 190px;
  }
}

/* xs max */
@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3) {
	.title-wrapper {
		top: 60px;
	}
  .sign {
  	top: 190px;
  }
}
/* 表单动画 */
@-webkit-keyframes tada {
	0% {
		-webkit-transform: translate3d(-5px, 0, 0);
		        transform: translate3d(-5px, 0, 0);
	}
	50% {
		-webkit-transform: translate3d(5px, 0, 0);
		        transform: translate3d(5px, 0, 0);
	}
	/*50% {
		transform: translate3d(5px, 0, 0);
	}
	75% {
		transform: translate3d(5px, 0, 0);
	}*/
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
}
@keyframes tada {
	0% {
		-webkit-transform: translate3d(-5px, 0, 0);
		        transform: translate3d(-5px, 0, 0);
	}
	50% {
		-webkit-transform: translate3d(5px, 0, 0);
		        transform: translate3d(5px, 0, 0);
	}
	/*50% {
		transform: translate3d(5px, 0, 0);
	}
	75% {
		transform: translate3d(5px, 0, 0);
	}*/
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
}