style.less 5.0 KB

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