2024-03-11 19:13:42 +08:00
|
|
|
.head {
|
|
|
|
width: 100%;
|
2024-03-12 18:53:51 +08:00
|
|
|
height: var(--height-head);
|
2024-03-11 19:13:42 +08:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2024-03-11 23:33:03 +08:00
|
|
|
background-color: var(--color-dark);
|
2024-03-11 19:13:42 +08:00
|
|
|
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
|
|
|
|
z-index: 0;
|
2024-03-11 23:33:03 +08:00
|
|
|
color: var(--color-light)
|
2024-03-11 19:13:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.head .center {
|
|
|
|
margin: 0 auto;
|
2024-03-12 18:53:51 +08:00
|
|
|
width: var(--width-workspace);
|
2024-03-11 19:13:42 +08:00
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.head .center .left {
|
2024-03-11 23:33:03 +08:00
|
|
|
min-width: 180px;
|
2024-03-11 19:13:42 +08:00
|
|
|
height: 100%;
|
2024-03-11 23:33:03 +08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 20px;
|
|
|
|
font-weight: 800;
|
|
|
|
}
|
|
|
|
|
|
|
|
.head .center .left .logo {
|
|
|
|
width: 38px;
|
|
|
|
height: 38px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.head .center .left .sys-title {
|
|
|
|
margin-left: 5px;
|
2024-03-11 19:13:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.head .center .right {
|
|
|
|
height: 100%;
|
2024-03-11 23:33:03 +08:00
|
|
|
display: flex;
|
|
|
|
justify-content: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.head .center .head-item {
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
padding: 0 15px;
|
|
|
|
font-size: var(--font-size-head);
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
2024-03-11 19:13:42 +08:00
|
|
|
}
|