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.
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|