@charset "utf-8";
* {
  margin: 0;
  padding: 0
}
html {
  height: 100%;
}
input {
  outline: none
}
body {
	width: 100%;
  height: 100%;
}

.login-wrap {
  width: 100%;
	height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: url(../image/bg.jpg) no-repeat center center;
	background-size: cover;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column nowrap;
}
.login-box {
	color: #333;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-end;
	border-radius: 10px;
	width: 1000px;
	height: 550px;
	background: url(../image/sf.png) no-repeat left top #fff;
	background-size: 480px;
	overflow: hidden;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .6);
	        box-shadow: 0 0 20px rgba(0, 0, 0, .6);
}
.login-box>div {
	height: 100%;
	width: 564px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column nowrap;
}
.login-box h2 {
	text-align: center;
  font-size: 44px;
}
.login-box form {
	padding: 20px 0 10px;
}
.input-item {
  width: 360px;
  height: 70px;
  margin-top: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	border-bottom: 2px solid #EEEEEE;
}
.code {
}
.input-item .icon {
	display: block;
	width: 28px;
	height: 30px;
	margin-left: 10px;
}
.input-item .icon-name {
	background: url(../image/name.png) no-repeat center center;
	background-size: cover;
}
.input-item .icon-pwd {
	background: url(../image/pwd.png) no-repeat center center;
	background-size: cover;
}
.input-item .icon-phone {
	background: url(../image/phone.png) no-repeat center center;
	background-size: 22px;
}
.input-item input {
	margin-left: 10px;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
  height: 70px;
  line-height: 70px;
  border: none;
	background: #fff;
  font-size: 20px;
}
.input-item input.code-text {
  height: 70px;
  line-height: 70px;
	margin-right: 10px;
}
.code-img {
	width: 90px;
  height: 43px;
  background: red;
}
.btn-login {
  width: 320px;
  border: none;
  height: 66px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 28px;
  background: #C51821;
  margin: 50px auto 0;
	border-radius: 33px;
	display: block;
}

.footer {
	position: fixed;
	left: 0;
	bottom: 0;
	height: 40px;
	width: 100%;
	background: #fff;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.footer p {
	font-size: 12px;
	color: #595959;
	margin-right: 5px;
}
.footer img {
	width: 22px;
}
.secret {
	width: 100%;
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 11px;
	margin-left: 3px;
	font-size: 16px;
}

.secret span {
	text-decoration: underline;
	color: #1b8ad9;
	cursor: pointer;
}

.secret input {
	height: 16px;
}

.text-safe {
	padding: 20px;
	text-indent: 2em;
}

.text-safe .text-import {
	font-weight: 700;
	color: #333;
}

input:-webkit-autofill
{
	-webkit-box-shadow: 0 0 0 1000px white inset;  //使用足够大的纯色内阴影覆盖黄色背景
}