body, html {
	height: 100%
}
body {
	/* background: url(../images/bg.jpg); */
background-size: 100%;background-position-y: 53px;background: #0897e4;}
.user-login {
	position: relative;
	left: 0;
	top: 0;
	padding: 120px 0;
	min-height: 100%;
	box-sizing: border-box;
}
.user-login-main {
	width: 375px;
	margin: 0 auto;
	box-sizing: border-box;
	background: #ccc;
	background-color: rgb(0 0 0 / 3%);
	border-radius: 5px;
}
.user-login-header {
	text-align: center;
	padding-top: 20px;
}
.user-login-header h2 {
	margin-bottom: 10px;
	font-weight: 300;
	font-size: 25px;
	color: #fff;
	font-weight: bold;
}
.user-login-header p {
	font-weight: 300;
	color: #eee;
}
.user-login-box {
	padding: 20px;
}
.user-login-icon {
	position: absolute;
	left: 1px;
	top: 1px;
	width: 63px;
	line-height: 36px;
	text-align: center;
	color: #d2d2d2;
}
.user-login-box .layui-form-item {
	position: relative;
}
.user-login-box .layui-form-item .layui-input {
	padding-left: 68px;
}
.user-login-codeimg {
	height: 38px;
	width: 100%;
	cursor: pointer;
	box-sizing: border-box;
}
.user-login-footer {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	line-height: 1.5;
	padding: 20px;
	text-align: center;
	box-sizing: border-box;
	color: rgba(0,0,0,.5);
}
.user-login-footer span {
	padding: 0 5px;
}
.user-login-footer a {
	color: rgba(0,0,0,.5);
}
.user-login-footer a:hover {
	color: rgba(0,0,0,1);
}
input::placeholder {
  color: #fff; /* ç°è‰²çš„placeholderæ–‡æœ¬ */
}
#logo{    width: 74%;
    display: block;
    margin: 0 auto;}
@media screen and (max-width:768px) {
.user-login {
	padding-top: 24px;
}
.user-login-main {
	width: 300px;
	background: #ffffff2b;
	box-shadow: 0px 0px 5px -2px;
	margin-top: 246px;
	}
.user-login-box {
	padding: 10px;
}
}
#footer{position: absolute;
    bottom: 46px;
    width: 31%;
    left: 50%;
    transform: translateX(-50%);}
@media \0screen\,screen\9 {/* åªæ”¯æŒIE6ã€7ã€8 */
.user-login-header h2 {
	color: #000;
}
.user-login-header p {
	color: #999;
}
}

@keyframes lefteaseinAnimate {
 0% {
transform: translateX(-2000px);
opacity: 0;
}   /*在0%时设置文字在想X轴-2000px位移处（左边），透明度为0，也就是看不见文字*/
 100% {
transform: translateX(0px);
opacity: 1;
}         /*在100%时设置文字在想X轴0px位移处，也就是原始布局的位置，透明度为1，也就是文字可以看见了*/
}
@-webkit-keyframes lefteaseinAnimate {
 0% {
-webkit-transform: translateX(-2000px);
opacity: 0;
}
 100% {
-webkit-transform: translateX(0px);
opacity: 1;
}
}
@-o-keyframes lefteaseinAnimate {
 0% {
-webkit-transform: translateX(-2000px);
opacity: 0;
}
 100% {
-webkit-transform: translateX(0px);
opacity: 1;
}
}
@-ms-keyframes lefteaseinAnimate {
 0% {
-webkit-transform: translateX(-2000px);
opacity: 0;
}
 100% {
-webkit-transform: translateX(0px);
opacity: 1;
}
}
@-moz-keyframes lefteaseinAnimate {
 0% {
-webkit-transform: translateX(-2000px);
opacity: 0;
}
 100% {
-webkit-transform: translateX(0px);
opacity: 1;
}
}
.company_name {
	animation: lefteaseinAnimate 1s ease 1;    /*调用已定义好的动画lefteaseinAnimate，全程运行时间1S，进入的速度曲线为ease，只播放一次*/
	-webkit-animation: lefteaseinAnimate 1s ease 1;
	-ms-animation: lefteaseinAnimate 1s ease 1;
	-o-animation: lefteaseinAnimate 1s ease 1;
	-moz-animation: lefteaseinAnimate 1s ease 1;
	/*规定动画的最后状态为结束状态*/
	animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	-ms-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
}

/*定义一个名字为righteaseinAnimate动画，实现从页面的右边淡入页面效果*/
@keyframes righteaseinAnimate {
 0% {
transform: translateX(2000px);
opacity: 0;
}   /*在0%时设置文字在想X轴2000px位移处（右边），透明度为0，也就是看不见文字*/
 100% {
transform: translateX(0px);
opacity: 1;
}      /*在100%时设置文字在想X轴0px位移处，也就是原始布局的位置，透明度为1，也就是文字可以看见了*/
}
@-webkit-keyframes righteaseinAnimate {
 0% {
-webkit-transform: translateX(2000px);
opacity: 0;
}
 100% {
-webkit-transform: translateX(0px);
opacity: 1;
}
}
@-o-keyframes righteaseinAnimate {
 0% {
-webkit-transform: translateX(2000px);
opacity: 0;
}
 100% {
-webkit-transform: translateX(0px);
opacity: 1;
}
}
@-ms-keyframes righteaseinAnimate {
 0% {
-webkit-transform: translateX(2000px);
opacity: 0;
}
 100% {
-webkit-transform: translateX(0px);
opacity: 1;
}
}
@-moz-keyframes righteaseinAnimate {
 0% {
-webkit-transform: translateX(2000px);
opacity: 0;
}
 100% {
-webkit-transform: translateX(0px);
opacity: 1;
}
}
.company_introduce {
	animation: righteaseinAnimate 1s ease 1;    /*调用已定义好的动画righteaseinAnimate，全程运行时间1S，进入的速度曲线为ease，只播放一次*/
	-webkit-animation: righteaseinAnimate 1s ease 1;
	-moz-animation: righteaseinAnimate 1s ease 1;
	-ms-animation: righteaseinAnimate 1s ease 1;
	-o-animation: righteaseinAnimate 1s ease 1;
	/*规定动画的最后状态为结束状态*/
	animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	-ms-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
}