﻿/* 登录页面 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.layout-login {
    font-family: SimSun;
    background: url(../../res/images/login-bg.jpg) no-repeat;
    background-size: 100% 100%;
    line-height: 1.15;
}

.layout-wrap {
    margin: 0 auto;
    position: relative;
    min-width: 1024px;
    max-width: 1920px;
}

.top-img {
    margin-left: 100px;
    height: 65px;
}

.top-header {
    /*line-height: 210px;*/
    margin-top: 3%;
}

.section-wrap {
    position: relative;
    margin-top: 3%;
}

.section-form {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    padding: 40px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 0px 3px 0px #e2e6ed;
}

    .section-form .form-title {
        font-size: 24px;
        letter-spacing: 1px;
        color: #333;
        font-weight: 800;
        font-family: none;
    }

    .section-form .login-btn {
        width: 378px;
        height: 46px;
        background-color: #3f82e7;
        font-size: 22px;
        letter-spacing: 2px;
        color: #ffffff;
        outline: none;
        border: 0;
        border-radius: 4px;
        text-align: center;
        font-family: none;
    }

        .section-form .login-btn:hover {
            width: 378px;
            height: 46px;
            border: 1px solid #00b8ff;
        }

.box-user {
    margin-top: 40px;
    margin-bottom: 33px;
    position: relative;
}

.box-pwd {
    position: relative;
}

.box-user .icon-user {
    background: url(../../res/images/userIcon.png) no-repeat;
    background-size: cover;
    width: 22px;
    height: 22px;
    opacity: 0.8;
    position: absolute;
    top: 13px;
    left: 13px;
}

.box-pwd .icon-pwd {
    background: url(../../res/images/pwdIcon.png) no-repeat;
    background-size: cover;
    width: 22px;
    height: 22px;
    opacity: 0.8;
    position: absolute;
    top: 13px;
    left: 13px;
}

.box-pwd .pwd-input {
    /*border: solid 1px #00b8ff;
    background-color: #ffffff00;*/
    width: 378px;
    height: 46px;
    line-height: 50px;
    border-radius: 6px;
    font-size: 20px;
    border: solid 0px;
    background-color: #e8f0fe;
    padding-left: 50px;
}

    .box-pwd .pwd-input:hover {
        border: solid 1px #00b8ff;
    }

    .box-pwd .pwd-input:focus {
        outline: none;
    }


    .box-pwd .pwd-input::-webkit-input-placeholder {
        color: #666;
        font-size: 15px;
        font-family: auto;
    }


.box-user .user-input {
    width: 378px;
    height: 46px;
    line-height: 50px;
    border-radius: 6px;
    font-size: 20px;
    border: solid 0px;
    background-color: #e8f0fe;
    padding-left: 50px;
}

    .box-user .user-input:hover {
        border: solid 1px #00b8ff;
    }

    .box-user .user-input:focus {
        outline: none;
    }

    .box-user .user-input::-webkit-input-placeholder {
        color: #666;
        font-size: 15px;
        font-family: auto;
    }

.pwd-min {
    margin-top: 20px;
    margin-bottom: 57px;
}

    .pwd-min .pwd-left {
        align-items: center;
        justify-content: center;
        display: flex;
        position: absolute;
        left: 48px;
    }

        .pwd-min .pwd-left input[type="checkbox"] + .rememberMe::before {
            content: "\a0";
            /*不换行空格*/
            display: inline-block;
            vertical-align: .2em;
            width: 1em;
            height: 1em;
            margin-right: .5em;
            border-radius: .2em;
            background-color: #ffffff00;
            border: solid 1px #00b8ff;
            color: #fff;
            text-indent: .15em;
            line-height: .65;
            /*行高不加单位，子元素将继承数字乘以自身字体尺寸而非父元素行高*/
        }

        .pwd-min .pwd-left input[type="checkbox"]:checked + .rememberMe::before {
            content: "\2713";
            background-color: #ffffff00;
            border: solid 1px #00b8ff;
            color: #fff;
        }

        .pwd-min .pwd-left span {
            color: #666;
            opacity: 0.8;
            font-size: 15px;
            font-family: auto;
            font-weight: 500;
        }

        .pwd-min .pwd-left input {
            position: absolute;
            clip: rect(0, 0, 0, 0);
        }

    .pwd-min .unpwd {
        color: #629cfc;
        font-size: 16px;
        position: absolute;
        right: 48px;
    }

input::-webkit-input-placeholder {
    /* WebKit browsers 适配谷歌 */
    color: #fff;
    opacity: 0.8;
    font-family: SimSun;
}

input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 适配火狐 */
    color: #fff;
    opacity: 0.8;
    font-family: SimSun;
}

input::-moz-placeholder {
    /* Mozilla Firefox 19+ 适配火狐 */
    color: #fff;
    opacity: 0.8;
    font-family: SimSun;
}

input:-ms-input-placeholder {
    /* Internet Explorer 10+  适配ie*/
    color: #fff;
    opacity: 0.8;
    font-family: SimSun;
}
