/* 全站扁平化简约样式 */
:root {
    --theme-color: #8195FC;
    --bg-color: #f5f7fa;
    --text-color: #333;
    --white: #fff;
    --border: #e5e7eb;
}
* {margin:0;padding:0;box-sizing:border-box;font-family:Arial,sans-serif;}
body {background:var(--bg-color);color:var(--text-color);line-height:1.6;}
.header {background:var(--theme-color);color:var(--white);padding:15px 30px;display:flex;justify-content:space-between;align-items:center;}
.header a {color:var(--white);margin-left:15px;text-decoration:none;}
.container {max-width:1200px;margin:20px auto;padding:0 15px;}
.avatar {width:30px;height:30px;border-radius:50%;object-fit:cover;}
/* 后台样式 */
.admin-container {display:flex;min-height:calc(100vh - 60px);}
.sidebar {width:200px;background:var(--white);border-right:1px solid var(--border);padding:20px;}
.sidebar a {display:block;padding:10px;color:var(--text-color);text-decoration:none;margin-bottom:5px;border-radius:4px;}
.sidebar a:hover {background:var(--theme-color);color:var(--white);}
.content {flex:1;padding:20px;background:var(--white);margin:10px;border-radius:8px;}
/* 通用按钮 */
button {background:var(--theme-color);color:var(--white);border:none;padding:8px 15px;border-radius:4px;cursor:pointer;}