/*登录页*/
* {
    margin: 0;
    padding: 0;
}

body, html {
    font-family: PingFangSC-Regular, PingFang SC;
}

.login-wrapper {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.bg-img{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.login-wrap2{
    background: url("../imgs/bg2.png");
}

.logo {
    height: 14vh;
    background-size: 100% 100%;
    position: relative;
    background: rgba(18,70,71,.8);
    color: #fff;
    font-size: 32px;
    text-align: center;
    line-height: 14vh;
    z-index: 2;
}
.login-wrap2 .logo{
    background: rgba(35, 67, 132, 0.8);
}
.login-wrap2 .login-title{
    color: #2a4a8d;
}
.login-wrap2 .login-btn{
    background: linear-gradient(to bottom,#4168b5,#264c96);
}
.login-wrap2 .logo span{
    background: #5483e4;
}
.logo img {
    width: 188px;
    min-width: 188px;
    max-width: 188px;
    height: 37px;
    margin-left: 60px;
}

.logo span {
    background: #14b9af;
    padding: 3px 10px;
    color: #fff;
    font-size: 13px;
    border-radius: 2px;
    margin-left: 10px;
    vertical-align: top;
}

.login-div {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    justify-content: center;
    width: 590px;
    height: 326px;
    margin-left: -295px;
    margin-top: -163px;
    z-index: 2;
}

.login-left{
    float: left;
    width: 45%;
    height: 376px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background: linear-gradient(to bottom,#6fe7ca,#07a49a);
}

.login-left span{
    display: block;
    background: #f0f5fb;
    border-radius: 50%;
    width: 53%;
    padding: 20px;
}

.login-right{
    float: right;
    width: 80%;
    height: 376px;
    padding: 0 40px;
    background: #fff;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.login-title {
    font-size: 30px;
    color: #07a49a;
    font-weight: 200;
    text-align: center;
    margin: 30px 0 20px 0;
}

.login-tips{
    width: 94%;
    display: flex;
    align-items: center;
    padding-left: 20px;
    border: 1px solid #c1c1c1;
    height: 50px;
    margin-bottom: 24px;
}

.login-tips input{
    width: 83%;
    border: none;
    padding-left: 25px;
    height: 50px;
    color: #07a49a;
    font-size: 16px;
}

.login-tips input:focus{
    outline: none;
}

.login-btn{
    padding: 7px 12px;
    font-size: 30px;
    border-radius: 0;
    border: 1px solid transparent;
    white-space: nowrap;
    box-shadow: none;
    height: 58px;
    color: #fff;
    width: 100%;
    margin-top: 20px;
    background: linear-gradient(to bottom,#4dd2bb,#14b9af);
}

.login-user{
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    width: 420px;
    height: 400px;
    margin-left: -210px;
}

.log-user{
    width: 300px;
}

.footer{
    height: 16%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 0 0/100% 100% #133b4f;
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 2;
}
.footer-user{
    background: 0 0/100% 100% #21345a;
}
.footer p{
    padding: 0 15px;
    color: #8d97a3;
    font-size: 14px;
}
.footer-user p{
    color: #267398;
}

.c-red {
    color: red;
}