newLogin.scss 2.6 KB
Newer Older
Mr.奇淼('s avatar
Mr.奇淼( 已提交
1 2 3
#userLayout {
    margin: 0;
    padding: 0;
4
    background-image: url("@/assets/login_background.jpg");
Mr.奇淼('s avatar
Mr.奇淼( 已提交
5 6 7 8
    background-size: cover;
    width: 100%;
    height: 100%;
    position: relative;
P
piexlmax 已提交
9 10 11 12
    .input-icon{
        padding-right: 6px;
        padding-top: 2px;
    }
Mr.奇淼('s avatar
Mr.奇淼( 已提交
13 14 15 16 17 18 19 20 21
    .login_panle {
        position: absolute;
        top: 3vh;
        left: 2vw;
        width: 96vw;
        height: 94vh;
        background-color: rgba(255, 255, 255, .8);
        backdrop-filter: blur(5px);
        border-radius: 10px;
D
Devil 已提交
22 23
        display: flex;
        align-items: center;
Mr.奇淼('s avatar
Mr.奇淼( 已提交
24 25
        justify-content: space-evenly;
        .login_panle_right {
26
            background-image: url("@/assets/login_left.svg");
Mr.奇淼('s avatar
Mr.奇淼( 已提交
27 28 29 30
            background-size: cover;
            width: 40%;
            height: 60%;
            float: right !important;
D
Devil 已提交
31
        }
Mr.奇淼('s avatar
Mr.奇淼( 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
        .login_panle_form {
            width: 420px;
            background-color: #fff;
            padding: 40px 40px 40px 40px;
            border-radius: 10px;
            box-shadow: 2px 3px 7px rgba(0, 0, 0, .2);
            .login_panle_form_title {
                display: flex;
                align-items: center;
                margin: 30px 0;
                .login_panle_form_title_logo {
                    width: 90px;
                    height: 72px;
                }
                .login_panle_form_title_p {
                    font-size: 40px;
                    padding-left: 20px;
                }
            }
            .vPic {
                width: 33%;
                height: 38px;
                float: right !important;
                background: #ccc;
                img {
                    width: 100%;
                    height: 100%;
                    cursor: pointer;
                    vertical-align: middle;
                }
            }
D
Devil 已提交
63
        }
Mr.奇淼('s avatar
Mr.奇淼( 已提交
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
        .login_panle_foot {
            position: absolute;
            bottom: 20px;
            .links {
                display: flex;
                align-items: center;
                justify-content: space-between;
                .link-icon {
                    width: 30px;
                    height: 30px;
                }
            }
            .copyright {
                color: #777777;
                margin-top: 5px;
            }
80 81 82
        }
    }
}
Mr.奇淼('s avatar
Mr.奇淼( 已提交
83

84 85
//小屏幕不显示右侧,将登陆框居中
@media (max-width: 750px) {
Mr.奇淼('s avatar
Mr.奇淼( 已提交
86 87 88 89 90 91 92 93 94 95 96 97
    .login_panle_right {
        display: none;
    }
    .login_panle {
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
    }
    .login_panle_form {
        width: 100%;
    }
98 99
}

Mr.奇淼('s avatar
Mr.奇淼( 已提交
100

101 102 103
/*
  powerBy : bypanghu@163.com
*/