itemManager.less 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. .container{
  2. width: 100%;
  3. height: 100%;
  4. overflow-y: auto;
  5. }
  6. ul,li{
  7. padding:0;
  8. margin:0;
  9. list-style:none;
  10. }
  11. h2{
  12. width: 100%;
  13. box-sizing: border-box;
  14. background-color: #fff;
  15. z-index: 20;
  16. height: 44px;
  17. line-height: 44px;
  18. padding: 0 0 0 35px;
  19. border-bottom: 1px solid #E2E5EF;
  20. font-size: 14px;
  21. font-weight: bold;
  22. letter-spacing: 1px;
  23. }
  24. .main-body{
  25. margin: 20px 40px;
  26. }
  27. table{
  28. width: 100%;
  29. border:1px solid #E2E5EF;
  30. border-collapse: collapse;
  31. thead{
  32. background: #EFF0F9;
  33. }
  34. th,td{
  35. height: 40px;
  36. box-sizing: border-box;
  37. padding: 10px;
  38. border:1px solid #E2E5EF;
  39. border-collapse: collapse;
  40. }
  41. th{
  42. font-size: 14px;
  43. font-weight: 500;
  44. }
  45. td{
  46. font-size: 14px;
  47. font-weight: 400
  48. }
  49. .moduleNumber{
  50. text-align: center;
  51. }
  52. }
  53. .filterBox{
  54. margin: 0 0 20px 0;
  55. }
  56. .filterItem{
  57. position: relative;
  58. display: inline-block;
  59. margin-right: 20px;
  60. height: 40px;
  61. line-height: 40px;
  62. }
  63. .filterDropList{
  64. position: absolute;
  65. right: 0;
  66. height: 200px;
  67. overflow-y: auto;
  68. background: #fff;
  69. display: none;
  70. border: 1px solid #e4e7ed;
  71. box-shadow: 0 2px 12px 0 #e4e7ed;
  72. z-index: 2;
  73. li{
  74. padding: 0 10px;
  75. }
  76. }
  77. .rejectList, .usedList{
  78. height: 120px;
  79. li{
  80. padding: 0 10px;
  81. }
  82. li:hover{
  83. background-color: #EEF4FF;
  84. cursor: pointer;
  85. }
  86. }
  87. .switchImg{
  88. width: 30px;
  89. }
  90. .selectModuleType,.moduleItemInp,.selectUsed, .selectReject{
  91. display: inline-block;
  92. position: relative;
  93. width:160px;
  94. padding: 0 10px;
  95. height:40px;
  96. border-radius:4px;
  97. border: 1px solid #E2E5EF;
  98. box-sizing: border-box;
  99. cursor: pointer;
  100. }
  101. .arrow{
  102. position: absolute;
  103. width: 10px;
  104. top: 16px;
  105. right: 10px;
  106. }
  107. .moduleItemInp{
  108. cursor: default;
  109. outline: none;
  110. }
  111. .moduleTypeList{
  112. width: 160px;
  113. }
  114. .selectUsed, .selectReject{
  115. width: 120px;
  116. }
  117. .modeTypeItem:hover{
  118. background-color: #EEF4FF;
  119. cursor: pointer;
  120. }
  121. .rejectList, .usedList {
  122. width: 120px;
  123. }
  124. .filter{
  125. display: inline-block;
  126. width:60px;
  127. height:36px;
  128. background:#5A8EEE;
  129. border-radius:4px;
  130. color: #fff;
  131. text-align: center;
  132. line-height: 36px;
  133. position: relative;
  134. top: -1px;
  135. cursor: pointer;
  136. }
  137. .editItem{
  138. color: #5A8EEE;
  139. cursor: pointer;
  140. }
  141. .ellipsis{
  142. overflow: hidden;
  143. text-overflow:ellipsis;
  144. white-space: nowrap;
  145. }
  146. .textCenter{
  147. text-align: center;
  148. }
  149. .pagination{
  150. margin: 35px 0 0 0 ;
  151. text-align: right;
  152. }
  153. .totalSum{
  154. font-size:12px;
  155. line-height:17px;
  156. color: #777777;
  157. margin-right: 20px;
  158. }
  159. .pageNum,.prePage,.nextPage, .more{
  160. display: inline-block;
  161. width: 20px;
  162. cursor: pointer;
  163. margin: 0 20px 0 0;
  164. text-align: center;
  165. color: #777;
  166. }
  167. .prePage,.nextPage{
  168. img{
  169. position: relative;
  170. top: 0px ;
  171. }
  172. }
  173. .more{
  174. cursor: not-allowed;
  175. }
  176. .arrowPage{
  177. width: 6px;
  178. }
  179. .activePage{
  180. color: #5A8EEE;
  181. }
  182. input::-webkit-outer-spin-button,
  183. input::-webkit-inner-spin-button {
  184. -webkit-appearance: none;
  185. }
  186. input[type="number"] {
  187. -moz-appearance: textfield;
  188. }