_login.css 3.15 KB
.login-page {
    .yoho-logo {
        position: absolute;
        height: 62px;
        width: 52px;
        background: resolve('passport/yoho.png');
        background-size: 100% 100%;
        top: 20px;
        left: 30px;
    }

    .acc-container {
        padding-left: 90px;
    }

    .op-container {
        position: relative;
        width: 100%;
        margin: 40px 0;
        text-align: left;
        font-size: 32px;

        .go-register {
            text-decoration: underline;
            color: #858585;
        }

        .forget-pwd {
            position: absolute;
            right: 0;
            text-decoration: underline;
            color: #858585;
        }
    }

    .third-party-login {
        text-align: left;

        > span {
            font-size: 32px;
            color: #858585;
        }

        .tp-link {
            text-align: center;
            padding: 40px 0;

            > a {
                display: inline-block;
                width: 88px;
                height: 88px;
                margin: 0 14px;
                border-radius: 50%;
                background-color: #333;
                background-repeat: no-repeat;
                background-size: 100% 100%;
            }

            .alipay {
                background-image: resolve('passport/alipay.png');
            }

            .weibo {
                background-image: resolve('passport/weibo.png');
            }

            .weixin {
                background-image: resolve('passport/weixin.png');
            }

            .qq {
                background-image: resolve('passport/qq.png');
            }
        }
    }

    .international {
        display: block;
        width: 400px;
        padding: 10px 20px;
        background-color: #333;
        border: none;
        border-radius: 40px;
        margin: 0 auto;
        font-size: 32px;
        color: #d8d8d8;
    }

    .login-tip {
        font-size: 16px;
        position: relative;
        color: #d8d8d8;
        margin: 30px 0;

        .info-icon {
            display: inline-block;
            height: 24px;
            width: 24px;
            background-image: resolve('passport/info.png');
            background-size: 100% 100%;
        }
    }

    .mask {
        position: fixed;
        display: none;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        background-color: rgba(0,0,0,.5);
    }

    .retrive-pwd-ways {
        position: fixed;
        display: none;
        bottom: 10px;
        left: 20px;
        right: 20px;
        font-size: 32px;

        li {
            background-color: #fff;
            width: 100%;
            height: 80px;
            line-height: 80px;
            text-align: center;

            &:nth-child(1) {
                border-top-left-radius: 10px;
                border-top-right-radius: 10px;
                border-bottom: 1px solid #9f9f9f;
            }

            &:nth-child(2) {
                border-bottom-left-radius: 10px;
                border-bottom-right-radius: 10px;
            }

            &:last-child {
                margin-top: 10px;
                border-radius: 10px;
            }
        }
    }

}