* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  height: 100%;
}

#login {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #f4f9fd;
  display: flex;
  min-width: 1520px;
  min-height: 720px;
  flex-direction: column;
  justify-content: space-between;
  background: url(../../images/login_last/login-background.png);
  background-size: cover;
  background-repeat: no-repeat;
}



.header-box {
  width: 100%;
  height: 30px;
  color: #fff;
  font-size: 12px;
  line-height: 30px;
  background-color: #282B33;
}

.header-box-center {
  width: 1190px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.content-box {
  width: 100%;
  height: calc(100% - 110px);
}

.content-box-center {
  width: 1190px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.login-img {
  width: calc(100% - 400px);
  height: 100%;
}

.login-img-logo {
  margin-top: 57px;
}

    .login-img-logo img {
        width: 142px;
        height: 28px;
    }



.login-img-text {
  margin-top: 95px;
}
.login-img-text img{
  width: 702px;
}
.login-con {
  width: 400px;
  box-shadow: 0px 9px 28px rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}

    .login-con .login-box {
        width: 100%;
        background: url(../../images/login_last/login-form.png);
        background-size: contain;
        background-repeat: no-repeat;
        padding: 35px;
    }

.title-box {
  margin-top: 10px;
  margin-bottom: 30px;
}

.title-box h1 {
  font-size: 32px;
  color: #000000D9;
  margin-bottom: 4px;
}

.title-box div {
  font-size: 18px;
  color: #000000D9;
}

.input-box {
  width: 100%;
}

    .input-box input[type="text"],
    .input-box input[type="password"] {
        outline: none;
        height: 40px;
        width: 330px;
        margin: 13px 0;
        padding-left: 18px;
        font-size: 13px;
        background: rgb(255, 255, 255);
        border: 1px solid rgb(216, 224, 240);
        box-shadow: 0px 1px 3px rgba(184, 200, 224, 0.22) !important;
        
        border-radius: 4px !important;
        
    }

.input-box input[type="text"]:focus,
.input-box input[type="password"]:focus {
  border: 1px solid rgb(63, 140, 255);
}

.input-box label {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  padding-left: 5px;

}

#form1>div {
  position: relative;
  width: 100%;
}

.btn-box>div {
  width: 100px;
  margin-left: auto;
  text-align: right;
}

.btn-box .checkTip {
  color: #7d8592;
  padding-left: 5px;
  user-select: none;
}

.btn-box button {
  display: inline-block;
  border: none;
  width: 330px;
  height: 50px;
  background: #1A6CBE;
  color: #fff;
  border-radius: 4px;
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 18px;
}
.btn-box button:hover{
  background: #1762AC;
  cursor:pointer;
}

.btn-box input[type="checkbox"] {
  width: 12px;
  height: 12px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  line-height: 12px;
  position: relative;
}

.btn-box input[type="checkbox"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  width: 12px;
  height: 12px;
  border: 1px solid #c8deef;
}

.btn-box input[type="checkbox"]:checked::before {
  content: "\2714";
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border: 1px solid #0a1629;
  color: #3f8cff;
  font-size: 12px;
  font-weight: bolder;
}

.maBox {
  /* display: none; */
  position: absolute;
  right: 10px;
  bottom: 90px;
  background: #fff;
  text-align: center;
  padding: 12px 20px;
}

.maBox .tipQR {
  font-size: 12px;
  color: #7d8592;
  margin-bottom: 10px;
}

.maBox>div img {
  border: 1px dashed #7d8592;
}



.tipBox {
    position: fixed;
    right: 29px;
    bottom: 36px;
    width: 53px;
    height: 80px;
}

    .tipBox > div {
        width: 51px;
        height: 51px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.maBox img {
    width: 120px;
}

.login-footer {
  width: 100%;
  height: 80px;
  padding-top: 25px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  background-color: #7A7E87;
}

.login-footer .textXian {
}

.login-footer>div {
  font-size: 12px;
  color: #fff;
  margin-top: 5px;
}


/* 媒体查询适配一下1536屏幕大小的小屏幕 */
@media screen and (max-device-width: 1540px) {
  body{
    zoom: 0.8;
  }
}