html,body{
	width: 100%;
	height: 100%;
	background: url("../img/body_bg.jpg") no-repeat center/100% 100%;
	overflow: hidden;
}
::-webkit-input-placeholder { /* WebKit browsers */
	color: #999;
	font-size: 12px;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
	color: #999;
	font-size: 12px;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
	color: #999;
	font-size: 12px;
}
.ele03{
	position: absolute;
	top: -35px;
	right: 50px;
	width: 250px;
	animation: rate 20s linear infinite;
	-webkit-animation: rate 20s linear infinite;
	z-index: 1;
}
.ele03 img{
	width: 100%;
}
.login{
	position: absolute;
	width: 1200px;
	height: 640px;
	background-color: rgba(255, 255, 255, 0.6);
	top: 50%;
	left: 50%;
	border-radius: 40px;
	transform: translate(-50%, -50%);
	box-shadow: 10px 0px 30px 0px rgba(0, 0, 0, 0.1);
	z-index: 1;
}
.login .ele01{
	position: absolute;
	top: -55px;
	left: 10px;
	width: 140px;
	animation: move 2.5s linear infinite;
	-webkit-animation: move 2.5s linear infinite;
	z-index: 2;
}
.login .ele01 img{
	width: 100%;
}
.login_l{
	position: relative;
	float: left;
	width: 700px;
	height: 100%;
	border-radius: 40px;
	background: url("../img/login_l_bg.jpg") no-repeat center/100% 100%;
	box-shadow: 10px 0px 30px 0px rgba(239, 134, 66, 0.3);
	z-index: 1;
}
.login_l_box{	
    position: relative;
	width: 500px;
	height: 440px;
	margin: 100px;
	border-radius: 30px;
    background: url("../img/login_l_bg.jpg") center center/100% 100%;
	box-shadow: 0px 6px 35px 0px rgba(0, 0, 0, 0.39);
    z-index:1;
}
.login_l_box::after{
	content: "";
    width:100%;
    height:100%;
    position: absolute;
    left:0;
    top:0;
    background: inherit;
    filter: blur(3px);
	border-radius: 30px;
    z-index: 2;
}
.login_l_box .ele02{
	position: absolute;
	right: 10px;
	bottom: -82px;
	width: 180px;
	animation: move 1.5s linear infinite;
	-webkit-animation: move 1.5s linear infinite;
	z-index: 4;
}
.login_l_box .ele02 img{
	width: 100%;
}
.login_l_txt{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
}
.login_l_box .logo{
	width: 200px;
	margin-top: 60px;
	margin-left: 60px;
}
.login_l_box .logo img{
	width: 100%;
}
.login_l_box .slogan{
	margin-top: 80px;
	color: #fff;
	font-size: 32px;
	font-weight: bold;
	text-align: center;
}
.login_l_box .support{
	position: absolute;
	left: 60px;
	bottom: 60px;
}
.login_l_box .support a{
	display: block;
	color: #fff;
	font-size: 13px;
	margin-bottom: 5px;
}
.login_l_box .support a:hover{
	color: #ca191d;
}
.login_l_box .support p{
	display: block;
	font-size: 16px;
	color: #fff;
}
.login_r{
	float: left;
	width: 300px;
	padding: 100px 100px 0 100px;
}
.login_r .login_tit{
	margin-bottom: 50px;
}
.login_r .login_tit h2{
	font-size: 42px;
	font-weight: bold;
	letter-spacing: 6px;
	background-image: linear-gradient(45deg, #f46b45, #ca191d);
	-webkit-background-clip: text;
	color: transparent;
}
.login_r .login_tit p{
	font-size: 12px;
	color: #a6a6a6;
	text-transform: uppercase;
}
.login_info .item{
	margin-bottom: 30px;
}
.login_info .item p{
	font-size: 18px;
}
.login_info input{
	display: block;
	width: 100%;
	height: 42px;
	font-size: 12px;
	border-bottom: 1px solid #e6e6e6;
}
.login_info .code{
	margin-bottom: 5px;
	overflow: hidden;
}
.login_info .code_ipt{
	float: left;
	width: 65%;
}
.login_info .code_img{
	float: left;
	width: 35%;
	height: 48px;
	background-color: #ca191d;
}
.login_info .code_img a{
	display: block;
	width: 100%;
	height: 100%;
}
.login_info .code_img img{
	width: 100%;
	height: 100%;
}
.login_info .tip{
	color: #ff2626;
	font-size: 12px;
}
.login_info .btn{
	width: 100%;
	height: 48px;
	color: #fff;
	margin: 20px 0;
	border-radius: 50px;
	background-image: -moz-linear-gradient( -90deg, rgb(244,107,69) 0%, rgb(202,25,29) 100%);
	background-image: -webkit-linear-gradient( -90deg, rgb(244,107,69) 0%, rgb(202,25,29) 100%);
	background-image: -ms-linear-gradient( -90deg, rgb(244,107,69) 0%, rgb(202,25,29) 100%);
}
.login_info .btn:hover{
	cursor: pointer;
}



/*运动*/
@keyframes move {
	25% {
		transform: translateY(-4px);
	}
	50%, 100% {
		transform: translateY(0);
	}
	75% {
		transform: translateY(4px);
	}
}
@-webkit-keyframes move {
	25% {
		-webkit-transform: translateY(-4px);
	}
	50%, 100% {
		-webkit-transform: translateY(0);
	}
	75% {
		-webkit-transform: translateY(4px);
	}
}

@keyframes moveto{
	25% {
		transform: translateY(-4px) translateX(-4px);
	}
	50%, 100% {
		transform: translateY(0) translateX(0px);
	}
	75% {
		transform: translateY(4px) translateX(-4px);
	}
}
@-webkit-keyframes moveto{
	25% {
		transform: translateY(-4px) translateX(-4px);
	}
	50%, 100% {
		transform: translateY(0) translateX(0px);
	}
	75% {
		transform: translateY(4px) translateX(-4px);
	}
}

@keyframes rate{
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
@-webkit-keyframes rate{
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

