43 lines
650 B
43 lines
650 B
.box { |
|
width: 100%; |
|
height: 100%; |
|
display: flex; |
|
background: #fff; |
|
font-size: 15px; |
|
color: black; |
|
} |
|
|
|
.leftbox { |
|
width: 100%; |
|
height: 100%; |
|
border-right: 1px solid #F2F2F2; |
|
box-sizing: border-box; |
|
display: flex; |
|
flex-direction: column; |
|
|
|
.cameraList { |
|
flex: 1; |
|
padding: 0 20px; |
|
|
|
.title { |
|
width: 100%; |
|
display: flex; |
|
justify-content: space-between; |
|
align-items: center; |
|
margin-bottom: 12px; |
|
} |
|
.footer{ |
|
width: 100%; |
|
display: flex; |
|
justify-content: center; |
|
margin: 12px 0; |
|
} |
|
} |
|
} |
|
|
|
.rightbox { |
|
flex: 1; |
|
box-sizing: border-box; |
|
padding: 20px; |
|
} |
|
|
|
|