29 lines
634 B
CSS
Raw Permalink Normal View History

2025-03-03 18:59:57 +08:00
/* 基本样式重置 */
body, html {
2025-03-26 14:09:25 +08:00
margin: 0;
padding: 0;
2025-03-26 13:52:39 +08:00
font-family: Arial, sans-serif; /* 默认字体 */
2025-03-03 18:59:57 +08:00
background-color:#f4f4f4;
}
/* 禁用页面滚动样式 */
body.no-scroll {
2025-03-26 13:52:39 +08:00
overflow: hidden;
2025-03-03 18:59:57 +08:00
}
/* 主内容区 */
.main-content {
margin-left: 270px;
margin-right: 20px;
2025-03-26 13:52:39 +08:00
margin-top: 14px; /* 主内容区的上边距 */
2025-03-03 18:59:57 +08:00
padding: 20px;
display: flex;
flex-direction: column;
justify-content: space-between;
z-index: 1; /* 确保内容在侧边栏下方 */
2025-03-26 13:52:39 +08:00
position: relative;
2025-03-03 18:59:57 +08:00
}
.content {
flex: 3 1 600px; /* 允许内容区域在可用空间内缩放 */
}