.layout-header { display: flex; justify-content: space-between; align-items: center; background: #fff; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); padding: 0 24px; } .logo { display: flex; align-items: center; font-size: 20px; font-weight: 600; color: #1890ff; } .header-right { display: flex; align-items: center; gap: 24px; } .user-info { display: flex; align-items: center; gap: 8px; cursor: pointer; padding: 8px 12px; border-radius: 4px; transition: background-color 0.3s; } .user-info:hover { background-color: #f0f0f0; } .user-name { font-weight: 500; } .user-role { font-size: 12px; color: #999; padding: 2px 8px; background: #f0f0f0; border-radius: 4px; } .layout-sider { background: #fff; box-shadow: 2px 0 8px rgba(0, 0, 0, 0.05); } .layout-content { background: #f0f2f5; padding: 24px; min-height: calc(100vh - 64px); }