body {
  width: 100%;
  height: 100vh;
  background: url("/static/my/img/login/background.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
body #app {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.logo {
  width: 20%;
  box-sizing: border-box;
  position: absolute;
  top: 40px;
  margin-left: 40px;
}
.logo img {
  width: 100px;
}

.sign_in {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}
.sign_in main {
  width: 900px;
  min-height: 600px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
}
.sign_in main .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sign_in main .left img {
  margin-left: 10px;
}
.sign_in main .right {
  padding: 20px;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sign_in main .right .phone_logo {
  display: none;
  width: 0;
}
.sign_in main .right .right_contents {
  width: 100%;
  box-shadow: 0 4px 8px 6px rgba(7, 17, 27, 0.06);
  transition: all 0.3s;
}
.sign_in main .right .right_contents:hover {
  box-shadow: 0px 0px 12px 6px rgba(7, 17, 27, 0.15);
}
.sign_in main .right .right_contents .title {
  margin-top: 20px;
  text-align: center;
}
.sign_in main .right .right_contents .title a {
  color: #808595;
}
.sign_in main .right .right_contents .title a.active {
  color: #ff9808;
}
.sign_in main .right .right_contents .login_forms {
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}
.sign_in main .right .right_contents .login_forms .input_pwd {
  position: relative;
}
.sign_in main .right .right_contents .login_forms .checkCaps {
  font-size: 12px;
  color: #808595;
  position: absolute;
  top: 15px;
  right: 30px;
}
.sign_in main .right .right_contents .login_forms > form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.sign_in main .right .right_contents .login_forms input {
  width: 100%;
  margin: 0 20px 20px 20px;
  border: none;
  outline: none;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #f0eeee;
  padding-left: 20px;
  transition: all 0.3s;
}
.sign_in main .right .right_contents .login_forms input:focus {
  border: 1px solid #ff9808;
}
.sign_in main .right .right_contents .login_forms input.sign_input {
  margin-bottom: 15px;
}
.sign_in main .right .right_contents .login_forms .code {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.sign_in main .right .right_contents .login_forms .code > input {
  width: 55%;
}
.sign_in main .right .right_contents .login_forms .code img {
  width: 45%;
  height: 42px;
  margin-right: 20px;
  cursor: pointer;
  border: 1px solid #f0eeee;
}
.sign_in main .right .right_contents .login_forms > button {
  margin: 0 20px 20px 20px;
  height: 40px;
  background-color: #ff9808;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.other_login {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.other_login > p {
  margin-bottom: 20px;
  font-size: 14px;
  color: #808595;
}
.other_login::before {
  position: absolute;
  content: "";
  display: block;
  width: 90px;
  height: 1px;
  background-color: #808595;
  left: 35px;
  top: 10px;
}
.other_login::after {
  position: absolute;
  content: "";
  display: block;
  width: 90px;
  height: 1px;
  background-color: #808595;
  right: 35px;
  top: 10px;
}
.other_login > div {
  margin-top: 10px;
  margin-bottom: 20px;
}
.other_login > div img {
  width: 30px;
  margin-right: 10px;
  cursor: pointer;
}
.other_login > div img:last-child {
  margin-right: 0;
}

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