/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* 防止横向滚动 */
}


.overlay {
    position: fixed; /* 使覆盖层固定在视口 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 半透明黑色 */
    display: none; /* 初始状态隐藏 */
    z-index: 999; /* 确保覆盖层在其他内容之上 */
}


.sidebar {
    width: 200px;
    height: 100%;
    background-color: #292929; /* 侧边栏背景颜色 */
    color: white;
    position: fixed;
    left: -200px; /* 初始隐藏 */
    transition: left 0.3s ease; /* 动画效果 */
	z-index: 1000
}
.sidebar.active {
    left: 0; /* 激活时显示 */
}
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    padding: 15px;
}

.sidebar-menu li a {
    color: white;
    text-decoration: none;
}

