* {
  margin: 0;
  padding: 0;
  list-style: none;
}
body {
  background-color: #efefef;
  font-family: '微软雅黑';
}
.login-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -508px;
  margin-top: -268px;
  width: 1016px;
  height: 536px;
  background: url(../images/login_bg.png) no-repeat;
}
.login-wrapper {
  position: relative;
  width: 1016px;
  height: 536px;
}
.logo {
  position: absolute;
  left: 40px;
  bottom: 40px;
}
.form-wrapper {
  position: absolute;
  top: 8px;
  right: 16px;
  width: 360px;
  height: 500px;
  background-color: #FFF;
  border-radius: 0 8px 8px 0;
}
.title {
  display: block;
  margin: 120px 0 46px;
  height: 25px;
  line-height: 25px;
  font-size: 24px;
  text-align: center;
}
input {
  font-family: '微软雅黑';
  display: block;
  margin: 0 auto;
  padding: 5px;
  width: 236px;
  height: 48px;
  color: #333;
  box-sizing: border-box;
  border: 1px solid #ededed;
  border-radius: 6px;
  outline: none;
}
.user {
  margin-bottom: 20px;
}
input:focus {
  border: 1px solid #3cb4ed;
}
.password {
  margin-bottom: 45px;
}
button {
  font-family: '微软雅黑';
  display: block;
  margin: 0 auto;
  width: 236px;
  height: 48px;
  color: #fff;
  font-size: 18px;
  line-height: 48px;
  background-color: #3cb4ed;
  border: 0;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
}
button:hover {
  opacity: .8;
}
.copyright {
  position: absolute;
  bottom: 20px;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  color: #333;
  text-align: center;
  z-index: -1;
}