html,
body {
  padding: 0;
  margin: 0;
}

.container {
  width: 100%;
  height: 100%;
}

 
.login-bg {
    background: url('../Images/img/login_bg_h5.png') no-repeat;
    background-size: 100% auto;
    background-position: top;
    height: 171px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .login-bg .logo {
        width: 125px;
        height: 101px;
    }

        .login-bg .logo .logo-image {
            background: url('../Images/img/mlogo.png') no-repeat;
            background-position: 0% 0%;
            background-size: 100% 100%;
            background-repeat: no-repeat;
            width: 100%;
            height: 100%;
        }

.login-form {
  padding: 50px 33px 0;
}

.login-form-group {
  background: #f8f8f8;
  border-radius: 24px;
  margin-bottom: 17px;
  padding: 11px 27px;
  position: relative;
}

/* 输入框 */
.login-form .login-form-group .login-form-input {
  width: 100%;
  height: 100%;
  font-weight: 400;
  font: inherit;
  outline: 0;
  border: 0;
  background-color: transparent;
}

.login-form .login-form-group .login-form-input::placeholder {
  font-size: 14px;
  color: #999;
  font-weight: 400;
}

/* 验证码 */
.login-form .v-code {
  display: flex;
  align-items: center;
}

/* 验证码输入框 */
.login-form .v-code .login-form-input {
  padding-right: 20px;
}

/* 验证码文字 */
    .login-form .v-code .v-code-text {
        display: flex;
        position: relative;
        flex-shrink: 0;
        opacity: 1;
        color: #ea3131;
        font-size: 12px;
    }

/* 验证码文字伪类 竖线 */
.login-form .v-code .v-code-text::before {
  content: "";
  display: block;
  width: 0.5px;
  height: 19px;
  background: #cbcbcb;
  position: absolute;
  left: -7px;
}

/* 提交按钮 */
.login-form-submit {
  height: 47px;
  line-height: 47px;
  border-radius: 24px;
  letter-spacing: 2px;
  background: linear-gradient(270deg, #e51d1d, #ea3131);
  color: hsla(0, 0%, 100%, .5);
  text-align: center;
  font-size:18px;
  color:#fff;
}

/* 登录 校验 */
.login-rules {
  padding: 15px 25px 25px 40px;
  display: inline-block;
  text-align: left;
  line-height: 20px;
}

.login-rules .label-agree {
  display: flex;
}

.login-rules .agree-text {
  font-size: 12px;
  margin:-2px 0px 0px 5px;
}

/*重新写一个复选框圆角样式*/
.login-rules #agree {
  /*取消默认的复选框样式*/
  appearance: none;
  width: 14px;
  height: 14px;
  border: 1px solid #aaaaaa;
  border-radius: 50%;
  flex-shrink: 0;
}

    .login-rules #agree:checked {
        background-image: url('../Images/img/login_checked.png');
        background-repeat: no-repeat;
        background-size: 14px 14px;
        background-position: center;
        border: 0;
    }

.login-rules .tips {
  font-size: 12px;
  -webkit-transform: scale(.91);
  transform: scale(.91);
  -webkit-transform-origin-x: 0;
  margin-left: 22px;
}


/* 弹窗 */
#modal {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: #000000b0;
}
#modal .modal-box {
  position: relative;
  width: 300px;
  min-height: 300px;
  border-radius: 9px;
  background-color: #fff;
}
#modal .modal-title {
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  color: #000;
}
/* 模态窗重写form样式 */
#modal .login-form {
  padding: 27px 22px;
}
#modal .modal-skip {
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px;
  font-size: 13px;
  color: rgb(205, 104, 50);
}
#modal .group-password {
  display: flex;
}
#modal .group-password .login-form-input {
  padding-right: 10px;
}