*{
    margin: 0;
    padding: 0;
    list-style: none;
    direction: none;
}
html, body{
    min-width: 1200px;
    height: 100%;
    background-color: #FFFFFF;
}
.app{
    width: 100%;
    height: 100%;
    background: url("../img/denglubjt.jpg") no-repeat;
    background-size: cover;
    overflow-y: auto;
}
.app-content{
    width: 900px;
    height: 500px;
    background-color: #fff;
    position: absolute;
    top: 20vh;
    left: 50%;
    margin-left: -450px;
    box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.5); /* 增加模糊半径和扩张半径 */
    display: flex;
    align-items: center;
}

.app-content2{
    width: 900px;
    height: 600px;
    background-color: #fff;
    position: absolute;
    top: 10vh;
    left: 50%;
    margin-left: -450px;
    box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.5); /* 增加模糊半径和扩张半径 */
    display: flex;
    align-items: center;
    overflow-y: auto;
}


.content-left{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content-left > img{
    width: 80%;
}

.content-right{
    flex: 1;
    height: 100%;

}

.content-right .title{
    color: #130987;
    font-size: 30px;
    font-weight: 900;
}
.login-text{
    color: #575757;
    font-size: 18rpx;
    font-weight: 600;
    padding: 30px 0 20px;
}

.login-box{
    width: 90%;
}
.login-box > div{
    width: 100%;
    height: 45px;
    background: #efefef;
    margin-bottom: 40px;
    padding: 0 20px 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    border-radius: 5px;
}
.login-box > div input{
    background: none;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
}
.login-box > div img{
    width: 18px;
    margin-right: 15px;
}

.login-box .login-button{
    width: 100%;
    background-color: #130987;
    color: #fff;
    font-size: 20px;
    border: none;
    outline: none;
    padding: 10px 0;
}
.login-button{
    cursor: pointer;
}