2025-04-28 23:10:33 +08:00
|
|
|
/* 主布局容器 */
|
2025-03-26 17:01:22 +08:00
|
|
|
.homeLayoutContainer {
|
|
|
|
|
width: 100vw;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
2025-05-09 17:47:50 +08:00
|
|
|
background-color: #eee;
|
2025-03-26 17:01:22 +08:00
|
|
|
}
|
|
|
|
|
|
2025-04-28 23:10:33 +08:00
|
|
|
/* 主内容区域 */
|
2025-03-26 17:01:22 +08:00
|
|
|
.main {
|
2025-05-09 17:47:50 +08:00
|
|
|
background-color: #fafafa;
|
|
|
|
|
flex: 1;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
/* height: 100vh; */
|
|
|
|
|
width: calc(100% - 1.2rem);
|
|
|
|
|
height: calc(100% - 1.2rem);
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
border-radius: 1.5rem 0 0 1.5rem;
|
|
|
|
|
margin-left: 0.6rem;
|
|
|
|
|
margin-top: 0.6rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mainContent {
|
2025-05-07 22:59:11 +08:00
|
|
|
padding: 1.5rem;
|
|
|
|
|
padding-left: 2rem;
|
2025-05-09 17:47:50 +08:00
|
|
|
flex: 1;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
background-color: #fafafa;
|
2025-03-26 17:01:22 +08:00
|
|
|
}
|