style.less 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. .MonthlyInfoCheck {
  2. display: flex;
  3. flex-direction: row;
  4. // height: 100%;
  5. background: #F5F7FA;
  6. .leftTree {
  7. position:fixed;
  8. top:64px;
  9. width: 220px;
  10. height: calc(100vh - 80px);
  11. background: #FFF;
  12. border-radius: 4px;
  13. padding: 16px;
  14. overflow: hidden;
  15. margin-right: 16px;
  16. // border-right:16px solid #F5F7FA;
  17. .searchInput {
  18. border: 1px solid #CFD7E6;
  19. }
  20. .bms-ant-tree.bms-ant-tree-directory .bms-ant-tree-treenode-selected:hover::before,.bms-ant-tree.bms-ant-tree-directory .bms-ant-tree-treenode-selected::before {
  21. border-radius: 4px;
  22. background: rgb(240 242 245 / 100%);
  23. }
  24. .bms-ant-tree.bms-ant-tree-directory .bms-ant-tree-treenode .bms-ant-tree-node-content-wrapper.bms-ant-tree-node-selected {
  25. font-weight: bold;
  26. }
  27. }
  28. .rightContent {
  29. position: relative;
  30. border-radius: 4px;
  31. width: calc(100% - 220px);
  32. padding: 16px;
  33. margin-left: 236px;
  34. background: #FFF;
  35. .checkBtn {
  36. position: absolute;
  37. cursor: pointer;
  38. top: 0;
  39. right:0;
  40. padding: 0 14px;
  41. height: 24px;
  42. line-height: 24px;
  43. background: #3376FE;
  44. border-radius: 4px;
  45. text-align: center;
  46. font-size: 14px;
  47. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  48. font-weight: 400;
  49. color: #FFF;
  50. }
  51. .midLine {
  52. display: flex;
  53. flex-direction: row;
  54. justify-content: center;
  55. align-items: center;
  56. height: 24px;
  57. line-height: 24px;
  58. background: #F0FCFC;
  59. font-size: 12px;
  60. color: #515866;
  61. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  62. font-weight: 400;
  63. margin-top: 12px;
  64. margin-bottom: 15px;
  65. &>span {
  66. cursor: pointer;
  67. font-size: 12px;
  68. font-family: SourceHanSansCN-Medium, SourceHanSansCN;
  69. font-weight: 500;
  70. color: #00B3B3;
  71. padding-right: 4px;
  72. }
  73. }
  74. .bms-ant-tabs-nav {
  75. &::before {
  76. border-bottom: none !important;
  77. }
  78. }
  79. .tabContent {
  80. display: flex;
  81. flex-direction: column;
  82. .tableToolbar {
  83. display: flex;
  84. flex-direction: row;
  85. justify-content: space-between;
  86. align-items: center;
  87. margin-bottom: 16px;
  88. .search {
  89. display: flex;
  90. flex-direction: row;
  91. justify-content: flex-start;
  92. align-items: center;
  93. .searchInput {
  94. width: 167px;
  95. height: 24px;
  96. background: #FFF;
  97. border-radius: 4px;
  98. border: 1px solid #CFD7E6;
  99. }
  100. &>span {
  101. font-size: 14px;
  102. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  103. font-weight: 400;
  104. color: #17181A;
  105. }
  106. }
  107. .btnGroup {
  108. &>span {
  109. display: inline-block;
  110. text-align: center;
  111. width: 56px;
  112. height: 24px;
  113. line-height: 21px;
  114. background: #FAFCFF;
  115. border-radius: 4px;
  116. cursor: pointer;
  117. border: 1px solid #DAE2F2;
  118. margin-right: 8px;
  119. &:last-child {
  120. margin-right: 0;
  121. }
  122. }
  123. &.disabled {
  124. &>span {
  125. cursor:not-allowed;
  126. color: rgb(0 0 0 / 50%);
  127. background-color:#f0f2f5;
  128. }
  129. }
  130. }
  131. }
  132. }
  133. }
  134. }