.login-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.login-wrap {
  width: 100%;
  height: 763px;
  background: url("../img/login-bg.png") no-repeat;
  background-size: 1920px 100%;
  background-position: center center;
}

.login-wrap .login-inner {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
}

.login-wrap .login-form {
  width: 380px;
  box-sizing: border-box;
  padding: 40px 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 10px 22px 0px rgba(0,0,0,0.1);
  margin-bottom: 60px;
}

.login-wrap .login-form h2 {
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  color: #000A1C;
  margin-bottom: 30px;
}

.login-wrap .login-form .input-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.login-wrap .login-form .input-wrap input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: #F6F8FB;
  border: none;
  outline: none;
  border-radius: 6px;
  padding: 14px 20px;
}

.login-wrap .login-form .input-wrap input[name="code"] {
  width: 200px;
}


.login-wrap .login-form .input-wrap .btn {
  width: 100px;
  box-sizing: border-box;
  border: 1px solid #0065C8;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1;
  color: #0065C8;
  text-align: center;
  padding: 16px 0;
  cursor: pointer;
}

.login-wrap .login-form input::placeholder {
  color: #939697;
}

.login-wrap .login-form .read {
  font-size: 12px;
  /* line-height: 16px; */
	display: flex;
	flex-direction: row;
	align-items: center;
  color: #84868C;
  margin-bottom: 24px;
  cursor: pointer;
}

.login-wrap .login-form .read b {
  color: #222;
  font-weight: bold;
}

.login-wrap .login-form .read b a{
  color: #222;
  font-weight: bold;
}

.login-wrap .login-form .read::before {
  display: inline-block;
  content: "";
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  /* border: 1px solid #CFD3D9;
  background: #F7F8FA; */
  background: url("../img/icon-check-default.png") no-repeat;
  background-size: 100% 100%;
  margin-right: 4px;
  vertical-align: middle;
}

.login-wrap .login-form .read.checked::before {
  background: url("../img/icon-check.png") no-repeat;
  background-size: 100% 100%;
}

.login-wrap .login-form input[type="submit"] {
  width: 100%;
  background: #0065C8;
  font-size: 16px;
  line-height: 48px;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  border: none;
  margin-bottom: 24px;
  cursor: pointer;
}

.login-wrap .login-form .regin-btn {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  color: #000000;
  background: #F6F8FB;
  border-radius: 6px;
}

@media screen and (max-width: 751px) {
  .login-wrap{
    width: 1180px;
  }
}