1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- .box {
- width: 100%;
- display: flex;
- flex-flow: column nowrap;
- }
- .top {
- width: 100%;
- display: flex;
- flex-flow: row;
- background-color: #fff;
- padding:15px;
- // margin-bottom: 15px;
- border-bottom: 1px solid #efefef;
- >div{
- margin-right: 20px;
- }
- .select {
- width: 180px;
- display: flex;
- }
- .selectAll{
- width: 240px;
- display: flex;
- }
- }
- .content {
- width: 100%;
- display: flex;
- flex-flow: row nowrap;
- .list {
- width: 180px;
- height: calc(100vh - 170px);
- display: flex;
- flex-flow: column nowrap;
- background-color: #fff;
- opacity: 1;
- transition: all .1s;
- padding-top: 10px;
- border-right: 1px solid #efefef;
- img {
- width: 25px;
- }
- }
- .listHide{
- width: 0px;
- height: calc(100vh - 170px);
- display: flex;
- flex-flow: column nowrap;
- background-color: #fff;
- transition: all .1s;
- opacity: 0;
- img {
- width: 25px;
- }
- }
- .table {
- flex-grow: 1;
- flex-shrink: 2;
- }
- }
- .action {
- background-color: rgb(230, 247, 255);
- color: #1890ff;
- border-right: 3px solid #1890ff;
- }
|