_login.css 3.15 KB
.login-page {
    .yoho-logo {
        position: absolute;
        height: 31PX;
        width: 26PX;
        background: resolve('passport/yoho.png');
        background-size: 100% 100%;
        top: 10PX;
        left: 15PX;
    }

    .acc-container {
        padding-left: 45PX;
    }

    .op-container {
        position: relative;
        width: 100%;
        margin: 20PX 0;
        text-align: left;
        font-size: 16PX;

        .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: 16PX;
            color: #858585;
        }

        .tp-link {
            text-align: center;
            padding: 20PX 0;

            > a {
                display: inline-block;
                width: 44PX;
                height: 44PX;
                margin: 0 7PX;
                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: 200PX;
        padding: 5PX 10PX;
        background-color: #333;
        border: none;
        border-radius: 20PX;
        margin: 0 auto;
        font-size: 16PX;
        color: #d8d8d8;
    }

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

        .info-icon {
            display: inline-block;
            height: 12PX;
            width: 12PX;
            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: 5PX;
        left: 10PX;
        right: 10PX;
        font-size: 16PX;

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

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

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

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

}