| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- // .B1collect {
- // :global {
- // }
- // }
- .TableListTopInfo {
- width: 100%;
- display: flex;
- align-items: center;
- gap: 20px;
- margin: 15px 15px 5px;
- .i1 {
- color: var(--txtColor);
- }
- }
- .TableListTop {
- border-radius: 10px;
- padding: 15px 15px 5px;
- background-color: var(--boxBcaColor);
- display: flex;
- justify-content: space-between;
- align-items: center;
- :global {
- .TableListTopll {
- display: flex;
- flex-wrap: wrap;
- & > div {
- padding-right: 10px;
- margin-bottom: 10px;
- & > div {
- width: 100%;
- }
- & > input {
- width: 100%;
- }
- }
- }
- .TableListToprr {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- .ant-btn {
- margin-bottom: 10px;
- }
- }
- }
- }
- .TableListTable {
- border-radius: 10px;
- overflow: hidden;
- margin-top: 15px;
- height: calc(100% - 77px);
- background-color: var(--boxBcaColor);
- }
- .TableListBottom {
- width: 100%;
- display: flex;
- justify-content: center;
- gap: 10px;
- margin-top: 15px;
- padding: 15px;
- background-color: var(--boxBcaColor);
- border-radius: 10px;
- }
|