.login-page {
    width: 100%;
    height: 100vh;
    background: url(../images/login-bg.jpg) center top no-repeat;
    background-size: cover;
    overflow: auto;
}

.login-container {
    height: 100vh;
    width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.logo-box {
    width: 100%;
    margin: 40px 0 0 60px;
}

.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    padding-bottom: 160px;
}

.login-wrapper .app-box img {
    width: 500px;
}

.login-wrapper .login-box {
    padding: 30px 90px;
    margin-left: 120px;
    background-color: #fff;
    border-radius: 4px;
    /*box-shadow: 0 0 10px 3px #c7c9cb;*/
    box-shadow: 0 0 10px 3px #2a2d36;
}

.login-wrapper .login-box .login-title {
    width: 100%;
    margin-bottom: 25px;
    text-align: center;
    font-size: 20px;
    color: #586578;
}

.login-wrapper .login-box .qrcode {
    width: 170px;
    height: 170px;
    padding: 10px;
    border-radius: 2px;
    border: 1px solid #d4d6d9;
    display: flex;
    justify-content: center;
}

.login-wrapper .login-box .qrcode img {
    width: 160px;
    height: 160px;
    margin-top: 5px;
}

.login-wrapper .login-box .qrcode-out {
    width: 160px;
    height: 160px;
    margin-top: 5px;
    line-height: 160px;
    display: none;
    background-color: #f1f2f5;
    color:  #9299a6;
    text-align: center;
}

.login-wrapper .login-box .login-text {
    color: #c4c4c4;
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
}

.login-wrapper .login-box .login-text i {
    font-size: 14px;
}

.login-wrapper .login-box .login-text .reload {
    color: #7167c1;
    font-size: 14px;
    cursor: pointer;
}

.login-container .login-footer {
    line-height: 28px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    padding-bottom: 40px;
}

.login-container .login-footer a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}