    .bg {
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10000;
    }

    .loginPage {
        width: 800px;
        height: 400px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }

    /*账号登录*/

    .account {
        display: none;
        position: absolute;

    }

    /*图片*/

    .account .banner {
        display: inline-block;
        vertical-align: top;
        width: 475px;
        height: 365px;
        position: relative;
    }

    .account .banner img {
        max-width: 100%;
        max-height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }

    /*登录窗口*/

    .account .login_wicket {
        display: inline-block;
        vertical-align: top;
        width: 367px;
        height: 365px;
        background-color: #fff;
        padding: 83px 83px;
        box-sizing: border-box;
        margin-left: -2px;
    }
    .account .login_wicket .wicket_close{
        position: absolute;
        right: 12px;
        top: 12px;
    }
    .account .login_wicket h2 {
        font-size: 24px;
        color: #4B506E;
        margin-bottom: 40px;
    }

    .account .login_wicket div {
        margin-bottom: 25px;
    }

    .account .login_wicket input {
        border: none;
        border-bottom: 1px solid #E6E6E6;
        padding: 10px 0;
        width: 201px;
    }

    .account .login_wicket input[type='submit'] {
        background-color: #3C6DAD;
        color: #fff;
        font-size: 18px;
        height: 50px;
        border-radius: 4px;
        margin-top: 1px;
    }

    .account .login_wicket p {
        font-size: 12px;
        color: #FF2424;
        margin: 5px 0;
        position: absolute;
        display: none;
    }

    .account .login_wicket div.link {
        text-align: center;
        margin: 10px 0 0;
    }

    .account .login_wicket span {
        color: #B7BCD9;
        font-size: 14px;
        margin: 0 auto;
        cursor: pointer;
    }

    /*扫码登录*/

    .scan {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /*图片*/

    .scan .banner {
        display: inline-block;
        vertical-align: top;
        width: 475px;
        height: 369px;
        position: relative;
    }

    .scan .banner img {
        max-width: 100%;
        max-height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }

    .scan .login_scan {
        display: inline-block;
        vertical-align: top;
        width: 367px;
        height: 366px;
        background-color: #fff;
        box-sizing: border-box;
        padding: 83px 83px 0;
        position: relative;
    }
    .scan .login_scan .scan_close {
        display: inline-block;
        width: 22px;
        height: 22px;
        position: absolute;
        z-index: 99999;
        right: 12px;
        top: 12px;
    }

    .scan .login_scan .login_code {
        display: inline-block;
        width: 200px;
        height: 200px;
        position: relative;
    }

    .scan .login_scan .login_code img {
        max-width: 200px;
        max-height: 200px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }

    .scan .login_scan .hint {
        font-size: 18px;
        color: #9999B4;
        text-align: center;
        margin-top: 10px;
    }

    .scan .login_scan .link {
        font-size: 14px;
        color: #3C6DAD;
        text-align: center;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 16px;
        margin: auto;
    }

    .scan .login_scan .link span {
        cursor: pointer;
    }

    .scan .login_scan .succeed,.scan .login_scan .loser {
        display: none;
        font-size: 14px;
        color: #9999B4;
        text-align: center;
        margin-top: 10px;
    }

    .scan .login_scan .succeed i,.scan .login_scan .loser i {
        display: inline-block;
        width: 14px;
        height: 14px;
        background: url("images/logo/succeed.png") no-repeat;
        margin-right: 5px;
        position: relative;
        top: 2px;
    }

    .scan .login_scan .loser i {
        background: url("images/logo/loser.png") no-repeat;
    }