index.module.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. // .B1collect {
  2. // :global {
  3. // }
  4. // }
  5. .TableListTopInfo {
  6. width: 100%;
  7. display: flex;
  8. align-items: center;
  9. gap: 20px;
  10. margin: 15px 15px 5px;
  11. .i1 {
  12. color: var(--txtColor);
  13. }
  14. }
  15. .TableListTop {
  16. border-radius: 10px;
  17. padding: 15px 15px 5px;
  18. background-color: var(--boxBcaColor);
  19. display: flex;
  20. justify-content: space-between;
  21. align-items: center;
  22. :global {
  23. .TableListTopll {
  24. display: flex;
  25. flex-wrap: wrap;
  26. & > div {
  27. padding-right: 10px;
  28. margin-bottom: 10px;
  29. & > div {
  30. width: 100%;
  31. }
  32. & > input {
  33. width: 100%;
  34. }
  35. }
  36. }
  37. .TableListToprr {
  38. display: flex;
  39. flex-wrap: wrap;
  40. justify-content: space-between;
  41. .ant-btn {
  42. margin-bottom: 10px;
  43. }
  44. }
  45. }
  46. }
  47. .TableListTable {
  48. border-radius: 10px;
  49. overflow: hidden;
  50. margin-top: 15px;
  51. height: calc(100% - 77px);
  52. background-color: var(--boxBcaColor);
  53. }
  54. .TableListBottom {
  55. width: 100%;
  56. display: flex;
  57. justify-content: center;
  58. gap: 10px;
  59. margin-top: 15px;
  60. padding: 15px;
  61. background-color: var(--boxBcaColor);
  62. border-radius: 10px;
  63. }