﻿
#Login {
    width: 100%;
    height: 100%;
}
.container {
    width: 100%;
    height: 100%;
    position: relative;
    min-width: 926px;
    min-height:467px;
}
.bg {
    width:100%;
    height:100%;
    background-image: url("/img/background.png");
    background-size: cover;
    background-position: center;
    -webkit-font-smoothing: antialiased;
}
.center {
    display: flex;
    width: 926px;
    height: 467px;
    margin: 0 auto;
    border-radius: 15px;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
}

.c-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(32, 68, 159,.75);
}

.c-right {
    width: 393px;
    height: 100%;
    text-align: center;
    background-color: rgba(225, 227, 235,.85);
    padding: 20px 46px 0 46px;
    box-sizing: border-box;
}

p {
    color: #707172;
    margin: 18px 0 10px 0;
}

.input-content {
    margin: 0 12px;
    /*margin-bottom: 26px;*/
    height:200px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}   
    .input-content form.el-form div.el-form-item{
        margin-bottom:12px;
    }
    .el-form-item__content {
        margin: 0 auto !important;
        height: 50px;
    }
.identify img{
    width:100px;
    height:40px;
    cursor:pointer;
}
.identify span {
    font-size: 12px;
    color: #707172;
}
.identify{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:5px;
    margin-top:5px;
}
.input-content .el-input__inner:hover {
    border-color: #999;
}
.login-btn {
    width: 100%;
    margin: 8px 0 6px 0;
}

.switch {
    margin: 0 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-type {
    font-size: 14px;
    color: #3a62eb;
    cursor: pointer;
}

.agreement {
    display: flex;
    justify-content: center;
    flex-direction:column;
}
    .agreement span {
        font-size: 14px;
        color: #3a62eb;
        cursor: pointer;
    }
        .agreement p{
            font-size:12px;
            margin: 3px auto;
        }
        .icon-agree {
            color: #3166e7;
            vertical-align: top;
        }

.el-input__inner {
    border: none;
    border-radius: 0;
    background-color: transparent;
    border-bottom: 1px solid #999;
    color: #666;
    padding: 0 2px;
    color:#000;
}

input::-webkit-input-placeholder {
    /* placeholder颜色  */
    color: #666 !important;
}

.phone-style {
    margin-bottom: 35px;
}

    .phone-style .el-form-item__content {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #999;
    }

    .phone-style .send,
    .phone-style .countdown {
        width: 84px;
        height: 28px;
        line-height: 28px;
        box-sizing: border-box;
        border: 1px solid #3a62eb;
        border-radius: 5px;
        font-size: 14px;
        text-align: center;
        color: #3a62eb;
    }

    .phone-style .send {
        cursor: pointer;
    }

    .phone-style .el-input {
        flex: 1;
    }

    .phone-style .el-input__inner {
        border-bottom: none;
    }

    .phone-style .el-form-item__content {
        /*height: 50px;*/
        /*line-height:50px;*/
        box-sizing:border-box;
    }

    .phone-style .countdown {
    }
.c-right .el-form-item.is-error .el-input__inner{
    border-color:#999;
}
.c-right input:-internal-autofill-previewed,
.c-right input:-internal-autofill-selected {
    transition: background-color 5000s ease-in-out 0s !important;
}
.tip {
    text-align: center;
    margin-top: 15px;
    color: #F56C6C;
    font-size:12px;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:32px;
}
    .tip.phoneTip {
        /*margin-top: 105px;*/
    }
/*解决复选框选中时页面抖动的问题*/
.el-checkbox ::after {
    transition: none !important;
}

.el-checkbox__input.is-checked + .el-checkbox__label{
    color:#3262eb;
}
.el-checkbox__input.is-checked .el-checkbox__inner{
    background-color:#3262eb;
    border-color:#3262eb;
}

.el-checkbox__input.is-focus .el-checkbox__inner,
.c-right .el-checkbox__inner:hover,
.el-input__inner:focus {
    border-color: #3262eb;
}
