|
|
|
.recordsbox {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search {
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 0 36px;
|
|
|
|
width: 100%;
|
|
|
|
height: 32px;
|
|
|
|
margin: 20px 0px;
|
|
|
|
|
|
|
|
form {
|
|
|
|
width: 100%;
|
|
|
|
height: 32px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-around;
|
|
|
|
|
|
|
|
.searchParams {
|
|
|
|
width: 22%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
width: 5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
nz-select {
|
|
|
|
color: rgba(145, 204, 255, 0.95);
|
|
|
|
}
|
|
|
|
|
|
|
|
nz-range-picker {
|
|
|
|
background-color: rgba(0, 0, 0, 0);
|
|
|
|
width: 97%;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
.title {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
width: 100%;
|
|
|
|
height: 64px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 0 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chartsbox {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
.charts {
|
|
|
|
width: 98%;
|
|
|
|
height: 300px;
|
|
|
|
border: 1px solid white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.tablebox {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
.table {
|
|
|
|
color: white;
|
|
|
|
flex: 1;
|
|
|
|
width: 96%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
.th {
|
|
|
|
height: 38px;
|
|
|
|
line-height: 38px;
|
|
|
|
background: #054783;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tbody {
|
|
|
|
flex: 1;
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
|
|
.tr {
|
|
|
|
height: 38px;
|
|
|
|
line-height: 38px;
|
|
|
|
border-bottom: 1px solid #0d3761;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.pagination {
|
|
|
|
margin: 15px 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|