/**
 * 管理后台样式
 * @author Claude Code
 * @date 2026-06-04
 */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif; }
#app { height: 100%; }

/* 登录页 */
.login-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.login-card {
    width: 420px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.login-card h2 {
    text-align: center;
    margin: 0 0 30px;
    color: #303133;
}
.login-tip {
    text-align: center;
    color: #909399;
    font-size: 13px;
    margin: 10px 0 0;
}

/* 主界面 */
.main-container { height: 100vh; }
.header {
    background: #409eff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
.header-title { font-size: 18px; font-weight: bold; }
.header-right { display: flex; align-items: center; }
.aside {
    background: #f5f7fa;
    border-right: 1px solid #e6e6e6;
}
.toolbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
