body {/*login背景颜色定义*/
    background-color: #f1f1f1;
}

.login-wrapper {/*登陆框大小等定义*/
    position: absolute;
    left: 50%;
    top: 50%;
    width: 700px;
    height: 350px;
    padding: 10px;
    background: url('../img/login-logo.jpg') no-repeat 40px center #fff;
    border-radius: 10px;
    -webkit-transform: translate(-50%, -60%);
       -moz-transform: translate(-50%, -60%);
        -ms-transform: translate(-50%, -60%);
        -o-transform: translate(-50%, -60%);
           transform: translate(-50%, -60%);
    -webkit-box-shadow: 0 0 20px 10px rgba(0, 0, 0, .075);
           -moz-box-shadow: 0 0 20px 10px rgba(0, 0, 0, .075);
           -o-box-shadow: 0 0 20px 10px rgba(0, 0, 0, .075);
              box-shadow: 0 0 20px 10px rgba(0, 0, 0, .075);
}

.login-wrapper-heading {/*login主题文字定义*/
    margin-bottom: 15px;
    font-size: 16px;
    text-align: center;
    letter-spacing: 1px;
}

.login-footer {/*login底部定义*/
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    text-align: center;
}
/* 新增：系统标题样式 */
.system-title {
    color: #e74c3c; /* 类似原红色 */
    font-size: 18px;
    margin-bottom: 5px;
    text-align: center; /* 根据原布局调整为居左 */
}

/* 新增：分隔线样式 */
.separator {
    height: 2px;
    background-color: #e74c3c; /* 类似原红色 */
    margin-bottom: 10px;
}

/* 新增：标语样式 */
.slogan {
    color: #3498db; /* 类似原蓝色 */
    font-size: 14px;
    margin-bottom: 20px;
    text-align: left; /* 根据原布局调整为居左 */
}