2026-07-14 10:31:17 +08:00
|
|
|
.container {
|
|
|
|
|
min-height: 100vh;
|
2026-07-24 15:57:20 +08:00
|
|
|
height: 100vh;
|
2026-07-14 10:31:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
|
height: 56px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
overflow: hidden;
|
2026-07-24 15:57:20 +08:00
|
|
|
color: #1a1a1a;
|
|
|
|
|
background: #fff;
|
2026-07-14 10:31:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logoText {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.trigger {
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: color 0.3s;
|
|
|
|
|
padding: 0 12px;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
color: #1677ff;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content {
|
|
|
|
|
margin: 16px;
|
|
|
|
|
border-radius: 8px;
|
2026-07-24 15:57:20 +08:00
|
|
|
flex: 1;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
overflow: hidden;
|
2026-07-14 10:31:17 +08:00
|
|
|
}
|
|
|
|
|
|
2026-07-24 15:57:20 +08:00
|
|
|
.main {
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-07-14 10:31:17 +08:00
|
|
|
}
|