html,body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
input{
    border: none;
    outline: none;
    font-size: 16px;
    height: 80%;
    width: 80%;
}
#app{
    width: 100%;
    height: 100%;
    background-image: url('/pages/images/bg.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}
#box{
    width: 470px;
    height: 440px;
    position: absolute;
    left: 75%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.title{
    /* color: #009cfc; */
    /* font-size: 30px; */
    width: 100%;
    height: 150px;
    background-image: url('/pages/images/login_title.png');
    background-repeat: no-repeat;
    background-size: 100%;
    margin-bottom: 20px;
}
.title2{
    color: #fff;
    font-size: 16px;
    margin-top: 10px;
}
.inp{
    /* background-color: #fff; */
    background-color: transparent;
    width: 440px;
    height: 40px;
    border-radius: 20px;
    margin-top: 35px;
    line-height: 40px;
    padding-left: 10px;
    display: flex;
    align-items: center;
}
.login_input {
    background-color: transparent;
    border: 1px solid #6384a5;
    border-radius: 2px;
    color: #fff;
    text-indent:6px
}
.login_input::-webkit-input-placeholder { 
    color:#c4d0d7;
} 
.iconfont{
    color: #949494;
}
.btn{
    width:350px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.button{
    background-color: #0099ff;
    color: #fff;
    font-size: 16px;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: none;
    border-radius: 2px;
    margin-top: 80px;
    cursor: pointer;
    outline: none;
}