36 lines
547 B
SCSS
36 lines
547 B
SCSS
.serveMain{
|
|
display: flex;
|
|
flex-direction: column;
|
|
.serveTitle{
|
|
font-size: 14px;
|
|
position: relative;
|
|
}
|
|
.serveTitle:before{
|
|
content: "";
|
|
position: absolute;
|
|
left: 4px;
|
|
top: calc(50% - 8px);
|
|
width:3px;
|
|
height: 16px;
|
|
border-radius: 4px;
|
|
background: var(--el-color-primary);
|
|
}
|
|
.searchMain{
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 20px;
|
|
.searchItem{
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 10px 10px 0 0;
|
|
.name{
|
|
width: 70px;
|
|
}
|
|
}
|
|
}
|
|
.mainTable{
|
|
flex: 1;
|
|
overflow: hidden;
|
|
}
|
|
}
|