#app {
    width: 100vw;
    height: 100vh;
    background: url("../images/loginbg.png");
    background-size: cover;
    position: relative;
}

/*默认样式*/
* {
    padding: 0;
    margin: 0;
    list-style: none;
}

body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.loginForm {
    width: 375px;
    position: absolute;
    padding: 15px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: white;
    height: 330px;
    border-radius: 10px;
}

.loginFormTitle {
    font-size: 16px;
    margin: 15px 0;
    font-family: fangsong;
    font-weight: bold;
}

.action {
    margin-bottom: 10px;
    display: block;
    color: black;
}

.action:hover {
    color: #fc6500;
    text-decoration: underline;
}
