itemManager.less 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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. margin: 0 20px 20px 0;
  63. }
  64. .filterDropList{
  65. position: absolute;
  66. right: 0;
  67. height: 200px;
  68. overflow-y: auto;
  69. background: #fff;
  70. display: none;
  71. border: 1px solid #e4e7ed;
  72. box-shadow: 0 2px 12px 0 #e4e7ed;
  73. z-index: 2;
  74. li{
  75. padding: 0 10px;
  76. }
  77. }
  78. .rejectList, .usedList{
  79. height: 120px;
  80. li{
  81. padding: 0 10px;
  82. }
  83. li:hover{
  84. background-color: #EEF4FF;
  85. cursor: pointer;
  86. }
  87. }
  88. .switchImg{
  89. width: 30px;
  90. }
  91. .selectModuleType,.moduleItemInp,.selectUsed, .selectReject{
  92. display: inline-block;
  93. position: relative;
  94. width:160px;
  95. padding: 0 10px;
  96. height:40px;
  97. border-radius:4px;
  98. border: 1px solid #E2E5EF;
  99. box-sizing: border-box;
  100. cursor: pointer;
  101. }
  102. .arrow{
  103. position: absolute;
  104. width: 10px;
  105. top: 16px;
  106. right: 10px;
  107. }
  108. .moduleItemInp{
  109. cursor: default;
  110. outline: none;
  111. }
  112. .moduleTypeList{
  113. width: 160px;
  114. }
  115. .selectUsed, .selectReject{
  116. width: 120px;
  117. }
  118. .modeTypeItem:hover{
  119. background-color: #EEF4FF;
  120. cursor: pointer;
  121. }
  122. .rejectList, .usedList {
  123. width: 120px;
  124. }
  125. .filter{
  126. display: inline-block;
  127. width:60px;
  128. height:36px;
  129. background:#5A8EEE;
  130. border-radius:4px;
  131. color: #fff;
  132. text-align: center;
  133. line-height: 36px;
  134. position: relative;
  135. top: -1px;
  136. cursor: pointer;
  137. }
  138. .editItem{
  139. color: #5A8EEE;
  140. cursor: pointer;
  141. }
  142. .ellipsis{
  143. overflow: hidden;
  144. text-overflow:ellipsis;
  145. white-space: nowrap;
  146. }
  147. .textCenter{
  148. text-align: center;
  149. }
  150. .pagination{
  151. margin: 35px 0 0 0 ;
  152. text-align: right;
  153. }
  154. .totalSum{
  155. font-size:12px;
  156. line-height:17px;
  157. color: #777777;
  158. margin-right: 20px;
  159. }
  160. .pageNum,.prePage,.nextPage, .more{
  161. display: inline-block;
  162. width: 20px;
  163. cursor: pointer;
  164. margin: 0 20px 0 0;
  165. text-align: center;
  166. color: #777;
  167. }
  168. .prePage,.nextPage{
  169. img{
  170. position: relative;
  171. top: 0px ;
  172. }
  173. }
  174. .more{
  175. cursor: not-allowed;
  176. }
  177. .arrowPage{
  178. width: 6px;
  179. }
  180. .activePage{
  181. color: #5A8EEE;
  182. }
  183. input::-webkit-outer-spin-button,
  184. input::-webkit-inner-spin-button {
  185. -webkit-appearance: none;
  186. }
  187. input[type="number"] {
  188. -moz-appearance: textfield;
  189. }