﻿.mid_all {
    width: 100%;
    background-color: #f7f6f4;
}

.mid {
    width: 1100px;
    margin: auto;
    overflow: hidden;
}

.login {
    width: 1000px;
    height: 400px;
    margin: 20px auto 30px auto;
}

.loginLeft {
    width: 500px;
    height: 400px;
    float: left;
    background-color: #fff;
}

    .loginLeft p {
        margin-left: 50px;
        color: red;
    }

.user, .psw {
    width: 392px;
    padding-left: 8px;
    height: 45px;
    border-radius: 8px;
    border: 1px solid #dbdbdb;
    outline: none;
    display: block;
    font-size: 15px;
}

.user {
    margin: 65px auto 0 auto;
}

.psw {
    margin: 30px auto 0 auto;
}

.bar {
    width: 400px;
    margin: 20px auto 0 auto;
    font-size: 15px;
}

    .bar label {
        cursor: pointer;
    }

    .bar input {
        vertical-align: middle;
        margin: -2px 2px 0px 2px;
    }

    .bar a {
        float: right;
    }

.loginBtn {
    width: 400px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: #e10121;
    cursor: pointer;
    border-radius: 8px;
    margin: 20px auto 0 auto;
    color: #fff;
    font-family: OpenSans;
    font-size: 20px;
    letter-spacing: 1px;
    transition: all 1s;
}

    .loginBtn:hover {
        background: #3c00b5;
    }




.loginRight {
    width: 460px;
    height: 400px;
    float: left;
    padding-left: 40px;
    background-color: rgba(225,1,33,0.6);
    color: #fff;
}

    .loginRight h3 {
        margin-top: 50px;
        font-size: 22px;
    }

    .loginRight p {
        margin-top: 50px;
    }

.openReg {
    width: 180px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 8px;
    margin-top: 50px;
    cursor: pointer;
    background: none;
    transition: all 0.5s;
}

    .openReg:hover {
        background: #3c00b5;
    }


.reg_all {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    position: fixed;
    top: 0px;
    left: 0px;
    pointer-events: none;
    opacity: 0;
    transition: all 0.5s;
}

.showRegAll {
    pointer-events: auto;
    opacity: 1;
    transition: all 0.5s;
}

.reg_box {
    width: 354px;
    padding: 50px;
    background-color: #fff;
    position: fixed;
    top: 50%;
    margin-top: -163.5px;
    left: 50%;
    margin-left: -227px;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s;
}

.close {
    position: absolute;
    top: -5px;
    right: 5px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.showRegBox {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s;
}

.reg_box input {
    width: 342px;
    padding-left: 8px;
    height: 35px;
    margin-top: 25px;
    border-radius: 5px;
    border: 2px solid #ccc;
    outline: none;
}

    .reg_box input:nth-child(1) {
        margin-top: 0px;
    }

.regBtn {
    width: 354px;
    height: 35px;
    line-height: 35px;
    margin-top: 25px;
    text-align: center;
    cursor: pointer;
    color: #fff;
    border-radius: 5px;
    background: #e8500e;
    transition: all 0.5s;
}

    .regBtn:hover {
        background: #3c00b5;
    }

.reg_box p {
    color: red;
}
