* {
    margin: 0;
    padding: 0;
}
html, body{
    width: 100%;
    height: 100%;
    /*background: #f3f3f3;*/
    font-family: 'Avenir', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: none;
}
.login {
    width: 100%;
    height: 100%;
    min-width: 1100px;
    min-height: 600px;
}
.login .body {
    height: 600px;
    position: relative;
    top: calc(50% - 320px);
}
.login .title {
    height: 50px;
    line-height: 50px;
    text-align: left;
    margin-left: 20px;
    font-size: 40px;
    font-weight: bolder;
    color: #0C76BF;
    letter-spacing: 3px;
    margin-bottom: 40px;
}
.login .cont {
    width: 100%;
    height: calc(100% - 150px);
    padding: 30px 0;
    /*background-image: linear-gradient(90deg, #0C76BF 2%, #050A3C 100%);*/
}
.login .cont > div {
    height: calc(100% - 40px);
    padding: 20px 0;
    /*background: #080718;*/
    background: url("../img/full.png") no-repeat 0 0/100% 100%;
}
.login .cont .main {
    width: 1100px;
    height: 100%;
    margin: 0 auto;
    text-align: center;
}
.login .main .logo,
.login .main form {
    display: inline-block;
    vertical-align: top;
    position: relative;
    top: calc(50% - 166.5px);
}
.login .main .logo {
    width: 662px;
    height: 333px;
    /*background: url("../img/bg.png") no-repeat 0 0/100% 100%;*/
    margin-right: 100px;
}
.login .main .form {
    width: 338px;
    background: #FFF;
    border-radius: 4px;
    padding-bottom: 50px;
}
.login .form .name{
    line-height: 80px;
    font-size: 24px;
    font-weight: bolder;
    color: #1383D0;
    text-align: center;
    margin-bottom: 10px;
}
.login .form .account,
.login .form .password{
    width: 80%;
    height: 50px;
    margin: 0 auto 15px;
    position: relative;
}
.login .form .account i,
.login .form .password i{
    color: #666;
    font-size: 22px;
    position: absolute;
    left: 10px;
    top: 10px;
}
.login .form .password{
    margin-bottom: 30px;
}
.login .form input {
    width: calc(100% - 40px);
    height: 40px;
    padding-left: 40px;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 2px;
}
input::-webkit-input-placeholder,
input:-moz-placeholder,
input:-ms-input-placeholder {
    color: #999;
    font-size: 16px;
}
.login .form .submit {
    width: 80%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    color: #FFFFFF;
    background: #1383D0;
    border-radius: 2px;
    margin: 0 auto;
}