| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 | .wrap {    width: 100%;    height: 100%;    min-height: 700px;    margin: 0 auto;    position: relative;    background-image: url(../../../image/bg.jpg);    background-size: cover;    .login-header {        background: #fff;        .login-logo {            padding: 20px;            overflow: hidden;            width: 960px;            margin: 0 auto;            .logo {                width: 200px;                padding-top: 60px;                float: left;                border-right: 1px solid #eee;                position: relative;                overflow: hidden;                img {                    position: absolute;                    top: 0;                    left: 0;                    height: 60px;                }            }            .erweima{                width: 80px;                padding-top: 80px;                float: right;                border-right: 1px solid #eee;                position: relative;                overflow: hidden;                img {                    position: absolute;                    top: 0;                    left: 0;                    height: 80px;                }            }            .logo-text {                width: 660px;                float: left;                line-height: 60px;                font-size: 24px;                .back {                    float: right;                    font-size: 16px;                    line-height: 60px;                    a {                        color: #333;                    }                }                span {                    margin-left: 24px;                }            }        }    }    .content {        width: 340px;        margin: 0 auto;        margin-top: 212px;        box-shadow: 1px 4px 10px 2px rgba(0, 0, 0, 0.15);        .login-left {            display: none;            float: left;            margin-top: 54px;            background: #fff;            img {                width: 520px;                height: 340px;            }        }        .login-right {            opacity: 0.7;            width: 340px;            .tabtwo {                margin-left: 40px;            }            .ant-tabs {                background: #fff;            }        }        .login-form {            .ant-checkbox-wrapper {                width: 50%;                margin-right: 0;            }            button {                width: 100%;                margin: 20px 0;            }            .login-form-forgot {                float: right;            }            .antd-spin {                position: fixed;                left: 0;                top: 0;                height: 100%;                width: 100%;            }            #phone {                width: 268px;            }            #password {                width: 268px;            }        }        .login-other {            padding: 0 20px;            border-top: 1px solid #eee;            background: #fff;            ul {                width: 100%;                float: left;                li {                    cursor: pointer;                    width: 22%;                    float: left;                    padding: 14px 10px 14px 0px;                    img {                        height: 18px;                        vertical-align: middle;                        float: left;                    }                    p {                        font-size: 14px;                        line-height: 18px;                        float: left;                        margin-left: 4px;                    }                }                .join {                    width: 34%;                    padding: 14px 0 14px 12px;                    ;                    p {                        margin-left: 6px;                        font-size: 16px;                        color: #ea0862;                    }                }            }        }    }    .footer {        position: absolute;        bottom: 0;        left: 0;        width: 100%;        padding-top: 20px;        text-align: center;        background: #fff;        p {            margin: 10px 0;        }    }    .ant-tabs-nav {        .ant-tabs-ink-bar {            display: none!important        }    }}
 |