You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
862 B
52 lines
862 B
.box { |
|
width: 100%; |
|
height: 100%; |
|
display: flex; |
|
flex-direction: column; |
|
color: #303133; |
|
|
|
.header { |
|
width: 100%; |
|
height: 56px; |
|
display: flex; |
|
justify-content: space-between; |
|
align-items: center; |
|
padding: 0 20px; |
|
border-bottom: 1px solid #E4E7EC; |
|
|
|
span { |
|
color: #303133; |
|
font-weight: 500; |
|
font-size: 16px; |
|
} |
|
} |
|
|
|
.searchbox{ |
|
height: 70px; |
|
display: flex; |
|
justify-content: space-between; |
|
padding: 0 20px; |
|
align-items: center; |
|
.search{ |
|
width: 60%; |
|
display: flex; |
|
input{ |
|
margin-right: 16px; |
|
} |
|
button{ |
|
margin-right: 16px; |
|
} |
|
} |
|
} |
|
.content { |
|
flex: 1; |
|
box-sizing: border-box; |
|
padding: 18px; |
|
padding-top: 0px; |
|
.operation { |
|
a { |
|
margin-right: 16px; |
|
} |
|
} |
|
} |
|
}
|
|
|