@import '../../app/app.css';

.header{
    position: relative;
}
.header .hcontent{
    line-height: 100px;
    height: 100px;
    margin: 0 auto;
    width: 1180px;
}
.header .hcontent .logo{
    display: inline-block;
    user-select: none;
    width: 266px;
    background: url(/static/image/logo.png) no-repeat left center;
    background-size: contain;
    cursor: pointer;
    vertical-align: middle;
    height: 100px;
}
.header .hcontent .toIndex{
    display: inline-block;
    float: right;
    color: #59bd91;
    font-size: 15px;
    user-select: none;
    cursor: pointer;
    text-decoration: none;
}
.bgBox{
    height: calc(100% - 100px);
    background: url("/static/image/login/login_bg.png") no-repeat center;
    background-size: cover;
}
.bgBox .hcontent{
    height: 100%;
    width: 1180px;
    margin: 0 auto;
    position: relative;
    color: #ffffff;
    line-height: 1;
    font-size: 0;
    padding-top: 170px;
}
.bgBox .hcontent h1{
    font-weight: 900;
    font-size: 86px;
    line-height: 1;
}
.bgBox .hcontent .ling{
    margin-top: 185px;
    height: 6px;
    background-color: #ffffff;
    width: 200px;
}
.bgBox .hcontent p{
    font-size: 50px;
    font-weight: 500;
    margin-top: 90px;
}
.bgBox .hcontent .beiAn{
    position: absolute;
    font-size: 18px;
    bottom: 8%;
    width: 100%;
    text-align: center;
}
.bgBox .hcontent .loginBox{
    position: absolute;
    background-color: rgba(255,255,255,.9);
    height: 500px;
    width: 460px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 8px;
    animation: loginBox 1s ;
    transition: all 0.5s linear;
}
@keyframes loginBox {
    0%   {opacity: 0;right: -30px;}
    100% {opacity: 1;right: 0;}
}
.bgBox .hcontent .loginBox .logo{
    width: 100%;
    height: 154px;
    background: url("/static/image/logo.png") no-repeat center;
}
.loginBox .form{
    padding: 0 8.7%;
}
.loginBox .form .ui,.loginBox .form .ti{
    position: relative;
    border: 1px solid #dddddd;
    border-radius: 8px;
    overflow: hidden;
    font-size: 0;
}
.loginBox .form .ti{
    margin-top: 20px;
}
.loginBox .form .ui:before,.loginBox .form .ti:before{
    content: '';
    position: absolute;
    display: inline-block;
    height: 26px;
    width: 27px;
    top: 10px;
    left: 13px;
}
.loginBox .form .ui:before{
    background: url("/static/image/login/user.png") no-repeat center;
    background-size: cover;
}
.loginBox .form .ui.fouce:before{
    background: url("/static/image/login/user_s.png") no-repeat center;
    background-size: cover;
}
.loginBox .form .ti:before{
    background: url("/static/image/login/pw.png") no-repeat center;
    background-size: contain;
}
.loginBox .form .ti.fouce:before{
    background: url("/static/image/login/pw_s.png") no-repeat center;
    background-size: contain;
}
.loginBox .form .fouce{
    border: 1px solid #59bd91;
}
.loginBox .form input{
    height: 46px;
    line-height: 46px;
    background-color: #ffffff;
    padding-left: 54px;
    box-sizing: border-box;
    width: 100%;
    outline:none;
    color: #333333;
    font-size: 14px;
    border: none;
}
.loginBox .form input:focus {
    background-color: #ffffff;
}
.loginBox .form .ti input.ip{
    width: calc(100% - 120px);
}
.loginBox .form .ti #code{
    display: inline-block;
    height: 46px;
    width: 120px;
    text-align: center;
    color: #999999;
    background-color: #e2e2e2;
    vertical-align: middle;
    font-size: 14px;
    line-height: 46px;
    padding-left: 0;
}
.loginBox .form .ti #code:hover{
    opacity: 0.8;
}
.loginBox .form .ci{
    margin-top: 62px;
}
.loginBox .form .ci input{
    font-size: 18px;
    height: 20px;
    width: 20px;
    color: #59bd91;
    margin-top: 0;
}
.loginBox .form .ci span{
    font-size: 16px;
    color: #999999;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}
.loginBox .form .ci span a{
    color: #59bd91;
    opacity: .8;
}
.loginBox .form .ci span a:hover{
    text-decoration: none;
    opacity: 1;
}
.loginBox .form .subBtn{
    width: 100%;
    height: 56px;
    border-radius: 8px;
    background-color: #59bd91;
    color: #ffffff;
    line-height: 56px;
    font-size: 24px;
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
    user-select: none;
    opacity: .9;
    letter-spacing: 2px;
    border: none;
}
.loginBox .form .subBtn:hover{
    opacity: 1;
}
.alert-danger{
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    background-color: rgba(0,0,0,.8);
    color: #ffffff;
    border: 1px solid #333333;
    user-select: none;
}
.out{
    opacity: 0;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type="number"]{
    -moz-appearance: textfield;
}
@media (max-width: 1679px){
    .header .hcontent{
        width: 980px;
        height: 80px;
        line-height: 80px;
    }
    .header .hcontent .logo{
        height: 80px;
        width: 213px;
    }
    .bgBox .hcontent{
        width: 980px;
    }
    .bgBox .hcontent h1{
        font-weight: 700;
        font-size: 70px;
    }
    .bgBox .hcontent .ling{
        margin-top: 145px;
        height: 5px;
        background-color: #ffffff;
        width: 166px;
    }
    .bgBox .hcontent p{
        font-size: 42px;
        margin-top: 74px;
    }
    .bgBox .hcontent .beiAn{
        font-size: 16px;
    }
    .bgBox .hcontent .loginBox{
        height: 380px;
        width: 320px;
    }
    .bgBox .hcontent .loginBox .logo{
        height: 110px;
    }
    .loginBox .form .ti #code{
        width: 100px;
    }
    .loginBox .form .ti input.ip{
        width: calc(100% - 100px);
    }
    .loginBox .form .ci{
        margin-top: 50px;
    }
    .loginBox .form .subBtn{
        height: 40px;
        line-height: 40px;
        font-size: 18px;
    }
    .loginBox .form .ci span{
        font-size: 15px;
    }
}

