﻿* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

div {
  font-size: 0;
}

.container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url("../images/login-bg.jpg");
  background-size: 100% 100%;
}

.login {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.login-title {
  color: #fff;
  font-weight: bold;
  font-size: 0.2rem;
  line-height: 0.8rem;
}

.login-mode {
  display: flex;
  align-content: center;
  justify-content: space-evenly;
  width: 2.8rem;
  color: #fff;
  font-size: 0.17rem;
  cursor: pointer;
  column-gap: 100px;
  user-select: none;
}
.login-mode .login-mode_active {
  color: #07c160;
  font-weight: 600;
}

.login-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 3rem;
}

.login-account {
  margin-top: 0.2rem;
}

.login-password {
  margin-top: 0.1rem;
}

.login-yzm-box {
  display: flex;
  align-content: center;
  justify-content: space-between;
  margin-top: 0.1rem;
  width: 2.8rem;
}
.login-yzm-box .login-yzm-input {
  width: 1.9rem;
}
.login-yzm-box .login-yzm-btn {
  width: 0.8rem;
  height: 0.3rem;
}
.login-yzm-box .login-yzm-btn_active {
  background: #ccc;
  color: #333333;
}

.qrcode-wrapper{    
  margin-top: 0.2rem;
  font-size:0.15rem;
}
.qrcode-login{    
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
}
.login-code {
  width: 1.5rem;
  height: 1.5rem;
}

.qrcode-expire{
  width: 1.5rem;
  height: 1.5rem;
  position:absolute;
  font-size:0.15rem;
  top:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,0.65);
  color: #fff;
  gap:0.1rem 0;
}

.login-tip {
  margin-top:0.05rem;
  text-align:center;
  color:#fff;
}
.expire-btn{
  width: 0.8rem;
  height: 0.3rem;  
  background: #ff4649;
}

.login-btn {
  margin-top: 0.1rem;
  width: 2.8rem;
  height: 0.3rem;
}

button {
  outline: none;
  border: none;
  border-radius: 0.05rem;
  background: #07c160;
  color: #fff;
  text-align: center;
  font-size: 0.12rem;
  cursor: pointer;
}

input {
  padding: 0 0.1rem;
  width: 2.8rem;
  height: 0.3rem;
  outline: none;
  border: 1px solid #fff;
  border-radius: 0.05rem;
  background-color: transparent;
  color: #fff;
  font-size: 0.12rem;
  appearance: none;
}
input::placeholder {
  color: #999;
}

.footer {
  position: fixed;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 1rem;
  color: #ccc;
  font-size: 0.12rem;
}
