.login {
	height: calc(100vh - 186px);
	background: #5BBEC0;
}

.login .con-wrap {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.login .login-info {
	background: url(../img/login/login_info_bg.png) no-repeat;
	width: 420px;
	height: 361px;
	box-sizing: border-box;
	padding: 0 40px;
	display: flex;
	align-items: center;
}

.login .login-info .cover-wrap {
	height: 120px;
	width: 156px;
	top:-107px;
	left: 50%;
	margin-left: -78px;
	background: url("/static/img/login/cover_1.png");
	animation-timing-function:linear;/*播放速度*/
	animation-iteration-count:1;/*次数*/
	animation: .2s;
}

.login .login-info .cover-wrap.show {
	animation: myCoverShow .2s;
	animation-fill-mode: forwards;
}
.login .login-info .cover-wrap.hide {
	animation: myCoverHide .2s;
	animation-fill-mode: forwards;
}

@keyframes myCoverShow
{
	0%   {background: url("/static/img/login/cover_1.png");}
	25%  {background: url("/static/img/login/cover_2.png");}
	50%  {background: url("/static/img/login/cover_3.png");}
	100% {background: url("/static/img/login/cover_4.png");}
}

@keyframes myCoverHide
{
	0%   {background: url("/static/img/login/cover_4.png");}
	25%  {background: url("/static/img/login/cover_3.png");}
	50%  {background: url("/static/img/login/cover_2.png");}
	100% {background: url("/static/img/login/cover_1.png");}
}



.login .login-info li {
	width: 50%;
	box-sizing: border-box;
	font-size: 20px;
	color: #04A4AA;
	line-height: 28px;
	padding: 0 0 11px;
}

.login .login-info .layui-this::before {
	content: '';
	position: absolute;
	bottom: 0;
	height: 4px;
	width: 80px;
	background: #04A4AA;
	left: 50%;
	margin-left: -40px;
}

.login .layui-tab-title {
	border-bottom: 1px solid #EAEDF4;
}

.login .layui-tab-title .layui-this::after {
	display: none;
}

.login .layui-tab-content {
	padding: 0;
}

.login .login-info .other a {
	font-size: 12px;
	color: rgba(0, 0, 0, 0.40);
	line-height: 20px;
}


.login .login-info input {
	border: 0;
	box-sizing: border-box;
	background: #F9FBFB;
	border-radius: 4px;
	padding: 0 16px;
	line-height: 40px;
	height: 40px;
	width: 340px;
	font-size: 14px;
	color: rgba(0, 0, 0, 0.60);
}

.login .login-info .user {
	margin: 24px 0;
}

.login .login-info .other {
	margin: 16px 0 0;
}

.login .login-info .other .left-area a {
	color: #04A4AA;
}

.login .login-info .submit {
	background-image: linear-gradient(270deg, #34DC9F 8%, #2ACED1 85%);
	box-shadow: 0 0 16px 0 rgba(85, 109, 133, 0.20);
	border-radius: 4px;
	display: block;
	line-height: 40px;
	font-size: 20px;
	color: #fff;
	text-align: center;
	margin: 16px 0 0;
}

.btn-get-code {
	display: block;
	background: #04A4AA;
	right: 0;
	top: 0;
	color: #fff;
	line-height: 40px;
	padding: 0 16px;
	cursor: pointer;
}



.login+footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
}


@media only screen and (max-width:1200px) {
	.login {
		width: 1200px;
		margin: 0 auto;
	}
}
