@charset "utf-8";

/* CSS Document */
* {
	margin: 0;
	padding: 0;
}

body {
	overflow: hidden;
}

.hui-login {
	width: 100%;
	height: 100%;
	background: url(/static/images/login-bg.jpg) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	overflow: hidden;
}

.hui-login-bg-top {
	width: 100%;
	height: 300px;
	background: url(/static/images/login-bg-top.jpg) no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	opacity: 0;
	transform: translateY(-20%);
	animation: flash 2s infinite alternate;
}

.hui-login-bg-bottom {
	width: 100%;
	height: 540px;
	background: url(/static/images/login-bg-bottom.jpg) no-repeat bottom;
	background-size: contain;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	animation: anim-bottom-in .5s both;
	transform: translateY(20%);
}

@keyframes anim-bottom-in {
	0% {
		opacity: 0;
		transform: translateY(20%);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes anim-bottom-in-alternate {
	0% {
		opacity: 1;
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		transform: translateY(20%);
	}
}

.hui-login-box {
	text-align: center;
	position: absolute;
	top: 8%;
	left: 50%;
	z-index: 9999;
	transform: translateX(-50%);
}

.hui-login-logo {
	transform: scale(0.3, 0.3);
	transform-origin: center bottom;
	animation: anim-top-in .5s both;
}

.hui-login-box h3 {
	display: flex;
	align-items: center;
	font-size: 32px;
	color: #ffffff;
	padding: 50px 0;
	animation: anim-top-in .5s both;
	transform: scale(0.3, 0.3);
}

.hui-login-box h3 span {
	padding: 0 12px;
}

@keyframes anim-top-in {
	0% {
		opacity: 0;
		transform: translateY(-20%);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes anim-top-in-alternate {
	0% {
		opacity: 1;
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		transform: translateY(-20%);
	}
}

.hui-login-box p {
	position: relative;
	margin-bottom: 36px;
}

.hui-icon-us {
	width: 20px;
	height: 20px;
	background: url(/static/images/icon-user.png) no-repeat;
	display: block;
	position: absolute;
	left: 16px;
	top: 14px;
}

.hui-icon-pwd {
	width: 20px;
	height: 20px;
	background: url(/static/images/icon-pwd.png) no-repeat;
	display: block;
	position: absolute;
	left: 16px;
	top: 14px;
}
.hui-icon-code {
	width: 20px;
	height: 20px;
	background: url(/static/images/icon-code.png) no-repeat;
	display: block;
	position: absolute;
	left: 16px;
	top: 14px;
}

.hui-form-login {
	width: 420px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 16px;
	animation: flash .5s both;
	opacity: 0;
	padding: 48px 50px 12px;
	box-sizing: border-box;
}

.hui-login-box input {
	width: 100%;
	background: none;
	outline: none;
	border: none;
	border: 1px solid rgba(255, 255, 255, 0.4);
	padding: 14px 16px 14px 44px;
	border-radius: 8px 8px 8px 8px;
	box-sizing: border-box;
	color: #ffffff;
	font-size: 14px;
}

.hui-form-login button {
	width: 100%;
	height: 48px;
	border: none;
	background: #FFFFFF;
	color: #134BB2;
	font-size: 14px;
	border-radius: 20px;
	outline: none;
	cursor: pointer;
	transition: all .32s;
	border-radius: 24px 24px 24px 24px;
}

.hui-form-login button:hover {
	background: #407fff;
}

.hui-copyright {
	color: #fff;
	font-size: 12px;
	text-align: center;
	position: absolute;
	bottom: 2%;
	left: 0;
	right: 0;
	animation: move-bottom .32s both;
}

@keyframes move-bottom {
	0% {
		bottom: 0;
		opacity: 0;
	}

	100% {
		bottom: 2%;
		opacity: 1;
	}
}

@keyframes move-bottom-alternate {
	0% {
		bottom: 2%;
		opacity: 1;
	}

	100% {
		bottom: 0;
		opacity: 0;
	}
}


@keyframes flash {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes flash-alternate {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

.hui-alternate .hui-login-bg-bottom {
	animation: anim-bottom-in-alternate .5s both;
}

.hui-alternate .hui-login-logo {
	animation: anim-top-in-alternate .5s both;
}

.hui-alternate .hui-login-box h3 {
	animation: anim-top-in-alternate .5s both;
}

.hui-alternate .hui-form-login {
	animation: flash-alternate .5s both;
}

.hui-alternate .hui-copyright {
	animation: move-bottom-alternate .5s both;
}

.hui-login-box input::-webkit-input-placeholder {
	/*Webkit browsers*/
	color: #fff;
}

.hui-login-box input:-moz-placeholder {
	/*Mozilla Firefox 4 to 8*/
	color: #fff;
}

.hui-login-box input::moz-placeholder {
	/*Mozilla Firefox 19+*/
	color: #fff;
}

.hui-login-box input:-ms-input-placeholder {
	/*Internet Explorer 10+*/
	color: #fff
}