/*2017-08-08.LiuWei.用户登录*/
body, html {
  width: 100%;
  height: 100%;
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  background: url("../images/background.png") no-repeat center center;
  background-size: 100% 100%;
}

.loginBox {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30rem;
  height: 33.5rem;
  margin-top: -15rem;
  margin-left: -16.75rem;
  background: #fff;
  border-radius: 10px;
}

.loginBox .logoIcon {
  width: 9rem;
  height: 7.45rem;
  margin: 2.75rem auto 2.8rem;
}

.loginBox .logoIcon img {
  width: 100%;
  height: 100%;
}

/*登录表单部分*/
.loginForm {
  position: relative;
  width: 20rem;
  height: auto;
  margin: 0 auto;
}

.errorTips {
  display: none;
  position: absolute;
  top: -4rem;
  left: 0;
  width: 70%;
  height: 5rem;
}

.errorTips .tips {
  width: 100%;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  background: #E85D5D;
  border-radius: 5px;
}

.errorTips .triAngle {
  width: 1rem;
  height: 1rem;
  margin: 0 auto;
  border: 1rem solid transparent;
  border-top: 1rem solid #E85D5D;
}

.loginForm input,
.loginForm input {
  display: inline-block;
  width: 100%;
  height: 3rem;
  line-height: 3rem;
  margin-bottom: 1.5rem;
  padding:0 1.1rem;
  font-size: 1.2rem;
  border: 1px solid rgba(151, 151, 151, 0.30);
  border-radius: 4px;
  background: #fff;
}

/*input框特定样式*/
.loginForm input::-webkit-input-placeholder { /* WebKit browsers */
  　　color: #979797;
}

.loginForm input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  　　color: #979797;
}

.loginForm input::-moz-placeholder { /* Mozilla Firefox 19+ */
  　　color: #979797;
}

.loginForm input:-ms-input-placeholder { /* Internet Explorer 10+ */
  　　color: #979797;
}

.loginForm input.verifyCode {
  width: 12.5rem;
}

.loginForm .updateCode {
  float: right;
  width: 6rem;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  border: 1px solid rgba(151, 151, 151, 0.30);
}

.loginForm .updateCode img {
  width: 100%;
  height: 100%;
}

.loginForm button {
  width: 100%;
  height: 3rem;
  margin-top: 1rem;
  color: #fff;
  background: #00AAEE;
  border-radius: 4px;
  font-size: 1.4rem;
}

