.clearfix:after {
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
  content: "";
}
* {
  padding: 0;
  margin: 0;
}
li {
  list-style: none;
}
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: auto;
}

.login {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  background-color: rgba(0, 0, 0, 0.8);
}
.login-box {
  width: 920px;
  height: auto;
  border-radius: 10px;
  background-color: #ffffff;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  z-index: 10;
}

.login-box-left {
  width: 460px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  overflow: hidden;
}
.login-box-left img {
  width: 100%;
  height: 100%;
}
.login-box-right {
  width: 380px;
  padding: 40px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.login-title {
  font-size: 26px;
  font-weight: 550;
  color: #2b2b2b;
  text-align: center;
}
.login-title img {
  height: 80px;
  width: auto;
}
.login-memo {
  color: #999999;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
}

.login-type {
  width: 100%;
  margin: 40px 0;
}
.login-type-flex {
  width: 100%;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.login-type-one {
  display: inline-block;
  margin-right: 20px;
  color: #999999;
  font-weight: 550;
  font-size: 15px;
  cursor: pointer;
}
.login-type-flex .login-type-active {
  color: #2b2b2b;
  font-size: 20px;
  border-bottom: 2px solid #2b2b2b;
}

.login-form-one {
  height: 50px;
  line-height: 50px;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 550;
  font-size: 14px;
  margin-top: 20px;
}
.login-form-one img:nth-child(1) {
  color: #999999;
  width: 20px;
  height: 20px;
  margin-left: 20px;
}
.login-form-one span:nth-child(2) {
  color: #999999;
  /* width: 40px; */
}
.login-form-one span,
.login-form-one input {
  margin-left: 20px;
  border: none;
  margin-bottom: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: auto;
}
.login-form-one:focus-within {
  /* border-color: #2b2b2b; */
  border: 1px solid #2b2b2b;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.login-form-one span:nth-child(3) {
  color: #999999;
  width: 50px;
  /* width: 40px; */
}

.autoLogin {
  margin-top: 20px;
}
.login-btn {
  height: 50px;
  margin-top: 20px;
  border-radius: 12px;
  width: 100%;
  background-color: #b12417;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
}
/* .login-form-one  */

.login-shadow {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: #2b2b2b;
  vertical-align: middle;
}
.login-shadow span {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(250, 250, 250, 0.45);
  position: absolute;
  opacity: 0.8;
  bottom: 10px;
  left: 0;
  /* // 执行动画：动画名字，时长，线性，无限次播放 */
  -webkit-animation-name: shadowMoving;
  -moz-animation-name: shadowMoving;
  -o-animation-name: shadowMoving;
  animation-name: shadowMoving;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  /* // animation:  20s linear infinite; */
}
.login-shadow span:nth-child(1) {
  left: 10%;
  bottom: 10%;
  width: 20px;
  height: 20px;
  -webkit-animation-duration: 16s;
  -moz-animation-duration: 16s;
  -o-animation-duration: 16s;
  animation-duration: 16s;
  background-color: rgba(250, 250, 250, 0.15);
}
.login-shadow span:nth-child(2) {
  left: 12%;
  bottom: 50%;
  -webkit-animation-duration: 10s;
  -moz-animation-duration: 10s;
  -o-animation-duration: 10s;
  animation-duration: 10s;
  background-color: rgba(250, 250, 250, 0.25);
}
.login-shadow span:nth-child(3) {
  left: 90%;
  bottom: 20%;
  width: 80px;
  height: 80px;
  -webkit-animation-duration: 20s;
  -moz-animation-duration: 20s;
  -o-animation-duration: 20s;
  animation-duration: 20s;
  background-color: rgba(250, 250, 250, 0.05);
}
.login-shadow span:nth-child(4) {
  left: 30%;
  bottom: 40%;
  width: 10px;
  height: 10px;
  -webkit-animation-duration: 16s;
  -moz-animation-duration: 16s;
  -o-animation-duration: 16s;
  animation-duration: 16s;
  background-color: rgba(250, 250, 250, 0.25);
}
.login-shadow span:nth-child(5) {
  left: 40%;
  bottom: 10%;
  width: 20px;
  height: 20px;
  -webkit-animation-duration: 30s;
  -moz-animation-duration: 30s;
  -o-animation-duration: 30s;
  animation-duration: 30s;
  background-color: rgba(250, 250, 250, 0.05);
}
.login-shadow span:nth-child(6) {
  left: 50%;
  bottom: 3%;
  width: 30px;
  height: 30px;
  -webkit-animation-duration: 40s;
  -moz-animation-duration: 40s;
  -o-animation-duration: 40s;
  animation-duration: 40s;
  background-color: rgba(250, 250, 250, 0.09);
}
.login-shadow span:nth-child(7) {
  left: 60%;
  bottom: 10%;
  -webkit-animation-duration: 26s;
  -moz-animation-duration: 26s;
  -o-animation-duration: 26s;
  animation-duration: 26s;
  width: 10px;
  height: 10px;
  background-color: rgba(250, 250, 250, 0.21);
}
.login-shadow span:nth-child(8) {
  left: 70%;
  bottom: 5%;
  width: 20px;
  height: 20px;
  -webkit-animation-duration: 18s;
  -moz-animation-duration: 18s;
  -o-animation-duration: 18s;
  animation-duration: 18s;
  background-color: rgba(250, 250, 250, 0.19);
}

/* //动画底部有块状网上走 */
@-webkit-keyframes shadowMoving {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100vh) rotate(600deg);
    transform: translateY(-100vh) rotate(600deg);
  }
}
@-moz-keyframes shadowMoving {
  0% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -moz-transform: translateY(-100vh) rotate(600deg);
    transform: translateY(-100vh) rotate(600deg);
  }
}
@-o-keyframes shadowMoving {
  0% {
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -o-transform: translateY(-100vh) rotate(600deg);
    transform: translateY(-100vh) rotate(600deg);
  }
}
@keyframes shadowMoving {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100vh) rotate(600deg);
    -moz-transform: translateY(-100vh) rotate(600deg);
    -o-transform: translateY(-100vh) rotate(600deg);
    transform: translateY(-100vh) rotate(600deg);
  }
}

.login-qr {
  width: 100%;
  margin: auto;
  text-align: center;
}

.login-qr img {
  width: 200px;
  height: 200px;
}

.login-qr .login-qr-memo {
  margin-top: 40px;
}

.login-note {
  width: 100%;
  text-align: center;
  line-height: 40px;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #b9b9b9;
  z-index: 10;
  word-spacing: 4;
}

.login_refresh {
  color: #b12417;
  text-decoration: underline;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  line-height: 40px;
}
.login_refresh:hover {
  color: rgba(177, 36, 23, 0.8);
}
