@charset "UTF-8";
.pages {
  width: 100vw;
  height: 100vh;
  background: url("../images/login/bg.jpg") center;
  background-size: cover;
}
.pages .top {
  position: absolute;
  height: 64px;
  top: 0;
  width: 100vw;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.8);
}
.pages .top .ctrl {
  display: flex;
  align-items: center;
}
.pages .top .ctrl .btn {
  font-size: 16px;
  color: #fff;
  margin-right: 60px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.pages .top .ctrl .btn i {
  font-size: 18px;
}
.pages .warp {
  height: 100vh;
  max-width: 1440px;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
}
.pages .slogan {
  left: 30px;
  top: 30%;
  max-width: 689px;
  width: calc(100% - 380px);
  position: absolute;
}
.pages .loginBox {
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  right: 5%;
  width: 286px;
  height: 332px;
  margin: auto;
  top: 0;
  bottom: 0;
  box-shadow: 5px 9px 20px 1px rgba(0, 0, 0, 0.5);
}
.pages .loginBox .title {
  height: 60px;
  text-align: center;
  font-size: 18px;
  line-height: 60px;
  padding-top: 10px;
}
.pages .loginBox .btnChange {
  position: absolute;
  right: 0;
  top: 0;
  border-top-right-radius: 10px;
  height: 60px;
  width: 60px;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  background: #1aa58e;
  font-size: 50px;
  color: #fff;
  cursor: pointer;
}
.pages .loginBox .btnChange i {
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s;
}
.pages .loginBox .btnChange .login-qrcode {
  transform: scale(1);
  transform-origin: 100% 0;
}
.pages .loginBox .btnChange .login-form {
  transform: scale(0);
  transform-origin: 0 100%;
}
.pages .loginBox .btnChange.code .login-qrcode {
  transform: scale(0);
}
.pages .loginBox .btnChange.code .login-form {
  transform: scale(1);
}
.pages .loginBox .content {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.pages .loginBox .content .inputBox {
  width: 100%;
  left: 0;
  top: 0;
  padding: 15px 44px 44px;
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: all 0.3s;
}
.pages .loginBox .content .inputBox .ivu-input-wrapper {
  border-bottom: solid 1px #c4c4c4;
}
.pages .loginBox .content .inputBox .ivu-input-wrapper input {
  height: 36px;
  padding-left: 0;
  font-size: 14px;
}
.pages .loginBox .content .inputBox .remember {
  color: #b0b9c4;
}
.pages .loginBox .content .inputBox .remember .ivu-checkbox-wrapper {
  display: flex;
  align-items: center;
}
.pages .loginBox .content .inputBox .remember .ivu-checkbox-wrapper .ivu-checkbox {
  margin-right: 10px;
}
.pages .loginBox .content .codeBox {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s;
  transform: translate(100%, 0);
  -webkit-transform: translate(100%, 0);
}
.pages .loginBox .content .codeBox .qrCodeImg {
  width: 190px;
  height: 190px;
  margin: 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #cdcdcd;
}
.pages .loginBox .content .codeBox .qrCodeImg .codeImg {
  width: 156px;
}
.pages .loginBox .content .codeBox .txt {
  font-size: 14px;
  text-align: center;
}
.pages .loginBox .content.code .inputBox {
  transform: translate(-100%, 0);
  -webkit-transform: translate(-100%, 0);
}
.pages .loginBox .content.code .codeBox {
  transform: translate(0%, 0);
  -webkit-transform: translate(0%, 0);
}

.ivu-btn-primary {
  background-color: #1aa58e;
  border-color: #1aa58e;
}
.ivu-btn-primary:hover {
  background-color: #1BBAA0;
  border-color: #1BBAA0;
}

.ivu-checkbox-checked .ivu-checkbox-inner {
  border-color: #1BBAA0;
  background-color: #1BBAA0;
}

/* 中屏手机样式 */
@media (max-width: 480px) {
  .slogan {
    display: none;
  }
}
/* 大屏手机样式 */
@media (max-width: 768px) {
  .pages .top .ctrl {
    display: none;
  }
  .pages .loginBox {
    width: calc(100vw - 10%);
  }
  .pages .loginBox .btnChange {
    display: none;
  }
}

/*# sourceMappingURL=login.css.map */
