* {
  margin: 0;
  padding: 0;
}
html,
body {
  width: 100%;
  height: 100%;
}
.clearfix {
  content: "";
  display: block;
  clear: both;
}
#login {
  width: 100%;
  height: 100%;
  position: relative;
}
#login .bg {
  width: 100%;
  height: 100%;
  background: url("../image/xiyue.jpg") no-repeat;
  position: relative;
  background-size: cover;
}
#login .box {
  width: 500px;
  margin: auto;
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  transform: translateY(-45%);
}
#login .box h2 {
  text-align: center;
  font-size: 40px;
  color: #fff;
  padding-bottom: 40px;
  font-family: Arial;
}
#login .box .boxInput {
  width: 100%;
  background: rgba(249, 249, 249, 0.24);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.49);
  padding: 35px;
  box-sizing: border-box;
}
#login .box .boxInput input {
  display: inline-block;
  width: 100%;
  border: none;
  padding: 18px 15px;
  box-sizing: border-box;
  background: #ffffff;
  outline: none;
  font-size: 18px;
  color: #000;
}
#login .box .boxInput input::-webkit-input-placeholder {
  color: #888;
  font-family: Arial;
}
#login .box .boxInput .username {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom: 1px solid #c2c5ca;
}
#login .box .boxInput .password {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
#login .box .boxInput button {
  margin-top: 30px;
  width: 100%;
  padding: 12px 15px;
  box-sizing: border-box;
  background: #073374;
  border-radius: 20px;
  border: 1px solid #073374;
  color: #fff;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: all 0.2s;
}
#login .box .boxInput button:hover {
  background: none;
  border-color: #fff;
}
#login .footer {
  width: 100%;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 0;
  bottom: 0;
  color: #666;
  font-size: 13px;
}
#login .footer a {
  text-decoration: none;
  color: #000;
}
#login .footer a:hover {
  border-bottom: 1px solid #000;
}
