/* 页面整体样式 */
body {
    margin: 0;
    padding: 0;
    background-image: url(./photograph/background.png);
    background-size: cover;/* 关键1：图片宽度/高度自适应视口，保持比例（不会拉伸） */
    background-attachment: fixed;/* 关键2：图片固定在背景，滚动页面不跟随 */
    background-position: center;/* 关键3：图片居中显示 */
    background-repeat: no-repeat;/* 关键4：不重复平铺 */
    /* 让登录框居中 */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: "微软雅黑", sans-serif;
}

/* 登录框容器 */
.login-box {
    width: 300px;
    padding: 30px;
    background-color: #dcdcdc;
    border-radius: 20px;
    text-align: center;
}

/* 系统标题样式 */
.system-title {
    font-size: 18px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.system-title .icon {
    font-size: 22px;
}
/* 错误提示样式 */
.message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    border-radius: 4px;
    display: none;
    z-index: 1000;
}
/* 输入项样式 */
.input-item {
    margin-bottom: 20px;
}
.input-item label {
    display: inline-block;
    width: 40px;
    font-size: 16px;
}
.input-item input {
    width: 180px;
    height: 24px;
    border: 1px solid #999;
    outline: none;
}

/* 登录按钮样式 */
.login-btn {
    width: 80px;
    height: 36px;
    background-color: #409eff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
}
.login-btn:hover {
    background-color: #3a8ee6;
}

/* 提示信息样式 */
.tips {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}