* {
    margin: 0;
    padding: 0;
}

body {
    background: url("../../images/mallbg.jpg") no-repeat;
}

.loginMain {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 8px;
    padding: 40px 50px;
}

.loginImg {
    height: 25px;
    width: 25px;
}

.systemTitle {
    text-align: center;
    color: #009688;
    font-family: 微软雅黑;
    font-size: 26px;
    letter-spacing: 1px;
    font-weight: 550;
    margin-bottom: 50px;
}

.login_user, .login_pwd, .login_verify {
    display: flex;
    justify-content: start;
    align-items: center;
    border-bottom: 1px solid lightgray;
    margin-bottom: 25px;
    padding-bottom: 6px;
    width: 380px;
}

.login_user {
    margin-bottom: 32px;
}

.login_user input, .login_pwd input, .login_verify input {
    border: none;
    outline: none;
    margin-left: 8px;
    font-size: 18px;
    color: #443f3f;
    width: 90%;
    box-shadow: none;
}

.login_verify input {
    width: 250px;
}

.loginButton {
    margin: 0 auto;
    border: none;
    border-radius: 4px;
    background-color: #009688;
    color: white;
    font-size: 22px;
    text-align: center;
    font-family: 微软雅黑;
    letter-spacing: 4px;
    padding: 10px 2px;
    width: 380px;
    cursor: pointer;
}

a {
    text-decoration: none;
}

.logo {
    position: absolute;
    left: 15px;
    top: 15px;
}

.copyRight {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: white;
}

.website {
    position: absolute;
    top: 15px;
    right: 15px;
}

.website img {
    width: 15px;
    height: 15px;
}

.popmenu {
    position: absolute;
    right: 3px;
    top: 34px;
    width: 70px;
    border-radius: 4px;
    background-color: #eae9e9;
    font-size: 13px;
    text-align: center;
    display: none;
    transition: all 0.5s;
}

.popmenu a dd {
    display: inline-block;
    white-space: nowrap;
    color: #1c1a1a;
    padding: 8px 0px;
}

.errmsg {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    background-color: #FFE69F;
    font-size: 13px;
    color: black;
    padding: 4px 2px;
    text-align: center;
    width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.errmsg i {
    margin-right: 4px;
}