@charset "UTF-8";
body {
  overflow: hidden;
}
a {
  text-decoration: none;
  color: #333;
}
* {
  outline: none;
}

/* 字体 */
@font-face {
  font-family: "righteous";
  src: url("/fonts/Righteous.ttf");
  font-weight: normal;
  font-style: normal;
}
.login-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  box-sizing: border-box;
  background-image: url("/img/login_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.login-container .login-logo {
  height: 80px;
}
.login-container .login-cnt {
  position: absolute;
  top: 120px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.login-container .login-card {
  width: 400px;
  height: 500px;
  box-sizing: border-box;
  padding: 30px;
  position: absolute;
  top: 120px;
  right: 200px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.login-header {
  width: 80%;
  margin: 0 auto 30px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #202122;
}
.login-header .login-header-item {
  position: relative;
  padding: 10px;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
}
.login-header .login-header-item.is-active {
  color: #00398f;
}
.login-header .login-header-item.is-active:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: #00398f;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.login-header .login-header-bar {
  opacity: 0.6;
}
.login-form {
  margin: 60px 0 0;
}
.login-form i {
  color: #333;
}
.login-form .el-form-item__content {
  width: 100%;
}
.login-form .el-form-item__content .el-col {
  margin-bottom: 0;
}
.login-form .el-form-item {
  margin-bottom: 30px;
}
.login-form .el-form-item__error {
  font-size: 14px;
  line-height: 22px;
}
.login-form .el-input input {
  height: 50px;
  line-height: 50px;
  text-indent: 5px;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  font-size: 16px;
  color: #333;
  background: transparent;
}
.login-form .el-input.verify-input input {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.login-form .el-input .el-input__prefix {
  line-height: 50px;
}
.login-form .el-input .el-input__prefix i {
  position: relative;
  top: 1px;
  padding: 0 5px;
  font-size: 18px !important;
}
.login-form .el-input .el-input-group__append {
  border-left: 1px solid #dcdfe6;
}
.login-form .login-submit {
  width: 100%;
  line-height: 30px;
  margin-top: 40px !important;
  background-color: #00398f !important;
  border-color: #00398f !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  letter-spacing: 2px;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}
.login-form .login-submit:hover {
  opacity: 0.9;
}
@media screen and (max-width: 1000px) {
.login-container .login-deco {
    opacity: 0.5;
}
.login-container .login-card {
    width: 500px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}
}
@media screen and (max-width: 600px) {
.login-container .login-deco {
    opacity: 0.3;
}
.login-container .login-card {
    width: 80%;
    height: 450px;
    top: 50px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}
.login-container .login-form .el-input input {
    font-size: 14px;
}
}
@media screen and (max-width: 450px) {
.login-container .login-deco {
    opacity: 0.3;
}
.login-container .login-card {
    width: 80%;
    height: 450px;
    top: 50px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}
.login-container .login-form .el-input input {
    font-size: 14px;
}
.login-container .login-header .login-header-item {
    font-size: 16px;
}
}
