@charset "UTF-8";
.el-message--success {
  top: 20px !important;
}

.el-message-box {
  width: 70%;
}

.el-message__icon {
  font-size: 1.1rem;
}

body {
  width: 100%;
  height: 100vh;
}
body #acone-app {
  width: 100%;
  height: 100%;
  /* 设置背景颜色 */
  background-color: rgb(186, 175, 221);
}

.content {
  /* 设置整个页面的窗口宽度 */
  width: 100vw;
  /* 设置整个页面的窗口高度 */
  height: 100vh;
  /* 设置背景颜色 */
  background-color: rgb(186, 175, 221);
  /* 设置相对定位 */
  position: relative;
  font-family: "Aguazyuan", Courier, monospace;
}
.content .login-forms {
  width: 70vw;
  height: 80vh;
  /* 背景颜色 */
  background-color: #fff;
  /* 设置边框锐度 */
  border-radius: 40px;
  /* 绝对定位 */
  position: absolute;
  left: 50%;
  top: 50%;
  /* 将元素对齐 */
  transform: translate(-50%, -50%);
  /* 设置弹性布局 */
  display: flex;
}
.content .login-forms .left-img {
  border-radius: 40px;
  flex: 1;
  background: url(/static/my_web/img/user/login.jpg) no-repeat;
  background-size: cover;
  position: relative;
}
.content .login-forms .left-img .glass {
  width: 60%;
  padding: 20px;
  color: #fff;
  /* 设置绝对定位 */
  position: absolute;
  top: 20%;
  left: 50%;
  /* 将元素对齐 */
  transform: translate(-50%, -20%);
  /* 背景颜色 */
  background-color: rgba(255, 255, 255, 0.1);
  /* 设置阴影 */
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.7);
  /* 背景毛玻璃 */
  backdrop-filter: blur(10px);
  /* 针对内核浏览器是旧版浏览器的,设置 */
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.48);
}
.content .login-forms .left-img .glass .title {
  width: 30%;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  padding: 10px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 136, 0.37);
  /* 背景毛玻璃 */
  backdrop-filter: blur(10px);
  /* 针对内核浏览器是旧版浏览器的,设置 */
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.48);
}
.content .login-forms .left-img .glass h1 {
  margin: 15px 0;
}
.content .login-forms .left-img .glass span {
  margin: 5px 0;
  display: block;
}
.content .login-forms .right-login-form {
  flex: 1;
  /* 设置相对定位 */
  position: relative;
}
.content .login-forms .right-login-form .form-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.content .login-forms .right-login-form .form-wrapper h1 {
  font-size: 30px;
  text-align: center;
  color: rgb(128, 106, 196);
}
.content .login-forms .right-login-form .form-wrapper .input-items .input-tips {
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
  margin: 10px 0;
}
.content .login-forms .right-login-form .form-wrapper .input-items .inputs {
  width: 100%;
  height: 45px;
  border-radius: 10px;
  border: 1px solid rgb(227, 227, 227);
  padding: 20px;
  box-sizing: border-box;
  outline: none;
  transition: 0.5s;
}
.content .login-forms .right-login-form .form-wrapper .input-items .inputs:focus {
  border: 1px solid rgb(128, 106, 196);
}
.content .login-forms .right-login-form .form-wrapper .code {
  display: flex;
  flex-direction: row;
  margin-top: 32px;
  height: 45px;
  justify-content: space-between;
  width: 100%;
}
.content .login-forms .right-login-form .form-wrapper .code .disabled:hover {
  cursor: not-allowed;
}
.content .login-forms .right-login-form .form-wrapper .code .inputs {
  width: 57%;
  border: 1px solid rgb(227, 227, 227);
  border-radius: 10px;
  box-sizing: border-box;
  outline: none;
  transition: 0.5s;
  padding: 20px;
  margin-right: 10px;
  height: 30px;
}
.content .login-forms .right-login-form .form-wrapper .code .inputs:focus {
  border: 1px solid rgb(128, 106, 196);
}
.content .login-forms .right-login-form .form-wrapper .code img {
  width: 43%;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid #f0eeee;
}
.content .login-forms .right-login-form .form-wrapper .code .sms_login {
  border: 1px solid rgb(227, 227, 227);
  border-radius: 10px;
  cursor: pointer;
  background-color: whitesmoke;
  transition: 0.5s;
  box-sizing: border-box;
  font-size: 13px;
  width: 40%;
}
.content .login-forms .right-login-form .form-wrapper .code .sms_login:focus {
  border: 1px solid rgb(128, 106, 196);
}
.content .login-forms .right-login-form .form-wrapper .forgot {
  float: right;
  font-weight: 600;
  text-align: right;
  margin: 10px 0 0 0;
  font-size: 13px;
}
.content .login-forms .right-login-form .form-wrapper .forgot:hover {
  /* 鼠标放上变小手 */
  cursor: pointer;
}
.content .login-forms .right-login-form .form-wrapper .forgot:hover a {
  color: #263eae;
  border: 1px dashed #815ba4;
}
.content .login-forms .right-login-form .form-wrapper .btn {
  width: 100%;
  height: 50px;
  background-color: rgb(128, 106, 196);
  border: 0;
  border-radius: 10px;
  color: #fff;
  font-size: 25px;
  margin: 20px 0;
  /* 鼠标放上变小手 */
  cursor: pointer;
}
.content .login-forms .right-login-form .form-wrapper .siginup-tips {
  text-align: center;
  font-weight: 600;
  margin: 10px 0;
}
.content .login-forms .right-login-form .form-wrapper .siginup-tips a {
  color: rgb(110, 87, 179);
  /* 鼠标放上变小手 */
  cursor: pointer;
}
.content .login-forms .right-login-form .form-wrapper .other-login .divider {
  width: 100%;
  margin: 20px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content .login-forms .right-login-form .form-wrapper .other-login .divider .line {
  display: inline-block;
  max-width: 35%;
  width: 35%;
  flex: 1;
  height: 1px;
  background-color: rgb(162, 172, 185);
}
.content .login-forms .right-login-form .form-wrapper .other-login .divider .divider-text {
  vertical-align: middle;
  margin: 0 20px;
  display: inline-block;
  width: 50px;
  color: rgb(162, 172, 185);
  white-space: normal;
}
.content .login-forms .right-login-form .form-wrapper .other-login .other-login-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content .login-forms .right-login-form .form-wrapper .other-login .other-login-wrapper .other-login-item {
  width: 45px;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  color: rgb(51, 59, 116);
  margin: 0 10px;
  transition: 0.4s;
}
.content .login-forms .right-login-form .form-wrapper .other-login .other-login-wrapper .other-login-item img {
  width: 40px;
  height: 40px;
  /* 设置元素垂直对齐方式 */
  vertical-align: middle;
}
.content .login-forms .right-login-form .form-wrapper .other-login .other-login-wrapper .other-login-item:hover {
  width: 45px;
  height: 50%;
  background-color: #fff;
  border: 0;
  box-shadow: 1px 10px 32px 1px rgba(220, 208, 255, 0.37);
}

/* 媒体查询 */
@media (max-width: 1024px) {
  .login-forms {
    padding: 20px;
  }
  .left-img {
    display: none;
  }
  .right-login-form {
    padding: 20px;
  }
}

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