quexianDetailHome.less 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  1. @import './reset.less';
  2. .quexianDetailHome{
  3. width: 100%;
  4. height: 100%;
  5. overflow-y: auto;
  6. .canJump{
  7. color: #00A1F0;
  8. cursor: pointer;
  9. }
  10. .filterDropList{
  11. position: absolute;
  12. right: 0;
  13. max-height: 200px;
  14. overflow-y: auto;
  15. background: #fff;
  16. display: none;
  17. border: 1px solid #e4e7ed;
  18. box-shadow: 0 2px 12px 0 #e4e7ed;
  19. z-index: 2;
  20. li{
  21. padding: 0 10px;
  22. }
  23. }
  24. .deptList{
  25. width: 160px;
  26. max-height: 400px;
  27. }
  28. .deptItem:hover{
  29. background-color: #EEF4FF;
  30. cursor: pointer;
  31. }
  32. .selectLevel,.selectDept{
  33. display: inline-block;
  34. position: relative;
  35. width:160px;
  36. padding: 0 10px;
  37. height:40px;
  38. border-radius:4px;
  39. border: 1px solid #E2E5EF;
  40. box-sizing: border-box;
  41. cursor: pointer;
  42. }
  43. .filterItem.deptListWrap {
  44. .selectDept,.deptList {
  45. width: 180px;
  46. }
  47. .selectDepts {
  48. min-width: 120px;
  49. background-color: #EFF1F6;
  50. width: auto;
  51. }
  52. }
  53. .filterItem{
  54. position: relative;
  55. display: inline-block;
  56. float: left;
  57. height: 40px;
  58. line-height: 40px;
  59. margin: 0 20px 15px 0;
  60. span{
  61. display: inline-block;
  62. line-height: 40px;
  63. position: relative;
  64. }
  65. input{
  66. width:120px;
  67. height:40px;
  68. border-radius:4px;
  69. border: 1px solid #E2E5EF;
  70. outline: none;
  71. margin-right: 10px;
  72. padding: 0 10px;
  73. box-sizing: border-box;
  74. }
  75. }
  76. .rejectList {
  77. height: 80px !important;
  78. }
  79. .selectUsed,.selectReject {
  80. float: right;
  81. }
  82. ul,li{
  83. padding:0;
  84. margin:0;
  85. list-style:none;
  86. }
  87. h2{
  88. width: 100%;
  89. box-sizing: border-box;
  90. background-color: #fff;
  91. z-index: 20;
  92. height: 44px;
  93. line-height: 44px;
  94. padding: 0 0 0 15px;
  95. border-bottom: 1px solid #E2E5EF;
  96. font-size: 16px;
  97. font-weight: bold;
  98. letter-spacing: 1px;
  99. }
  100. .main-body{
  101. // margin: 20px 40px;
  102. padding-bottom: 0px !important;
  103. margin-top: 0;
  104. }
  105. table{
  106. width: 100%;
  107. border:1px solid #E2E5EF;
  108. border-collapse: collapse;
  109. thead{
  110. background: #EFF0F9;
  111. }
  112. th[code]{
  113. cursor: pointer;
  114. &:after{
  115. content:"";
  116. display:inline-block;
  117. width: 11px;
  118. height: 14px;
  119. margin-left: 4px;
  120. vertical-align: middle;
  121. background-size: 100%;
  122. background-image: url("../images/grey.png");
  123. }
  124. &.asc:after{
  125. background: url("../images/up_blue.png");
  126. background-size: 100%;
  127. }
  128. &.desc:after{
  129. background: url("../images/down_blue.png");
  130. background-size: 100%;
  131. }
  132. }
  133. th,td{
  134. height: 30px;
  135. box-sizing: border-box;
  136. // padding: 10px;
  137. border:1px solid #E2E5EF;
  138. border-collapse: collapse;
  139. }
  140. th{
  141. font-size: 14px;
  142. font-weight: 500;
  143. }
  144. td{
  145. font-size: 14px;
  146. font-weight: 400
  147. }
  148. .moduleNumber{
  149. text-align: center;
  150. }
  151. }
  152. // .filterBox{
  153. // margin: 0 0 20px 0;
  154. // }
  155. .filterItem{
  156. position: relative;
  157. display: inline-block;
  158. margin-right: 20px;
  159. height: 40px;
  160. line-height: 40px;
  161. margin: 0 20px 20px 0;
  162. }
  163. .filterDropList{
  164. position: absolute;
  165. right: 0;
  166. max-height: 200px;
  167. overflow-y: auto;
  168. background: #fff;
  169. display: none;
  170. border: 1px solid #e4e7ed;
  171. box-shadow: 0 2px 12px 0 #e4e7ed;
  172. z-index: 2;
  173. li{
  174. padding: 0 10px;
  175. }
  176. }
  177. .rejectList, .usedList{
  178. height: 120px;
  179. li{
  180. padding: 0 10px;
  181. }
  182. li:hover{
  183. background-color: #EEF4FF;
  184. cursor: pointer;
  185. }
  186. }
  187. .switchImg{
  188. width: 30px;
  189. }
  190. .roleSelect {
  191. position: relative;
  192. top: 3px;
  193. cursor: pointer;
  194. }
  195. .selectModuleType,.moduleItemInp,.selectUsed, .selectReject{
  196. display: inline-block;
  197. position: relative;
  198. width:140px;
  199. padding: 0 10px;
  200. height:40px;
  201. border-radius:4px;
  202. border: 1px solid #E2E5EF;
  203. box-sizing: border-box;
  204. cursor: pointer;
  205. padding-right: 26px;
  206. }
  207. .arrow{
  208. position: absolute;
  209. width: 10px;
  210. top: 16px;
  211. right: 10px;
  212. }
  213. .moduleItemInp{
  214. cursor: text;
  215. outline: none;
  216. }
  217. .moduleTypeList{
  218. width: 160px;
  219. }
  220. .selectUsed, .selectReject{
  221. width: 140px;
  222. }
  223. .modeTypeItem:hover{
  224. background-color: #EEF4FF;
  225. cursor: pointer;
  226. }
  227. .rejectList, .usedList {
  228. width: 140px;
  229. }
  230. .filter{
  231. display: inline-block;
  232. width:60px;
  233. height:36px;
  234. background:@activeColor;
  235. border-radius:4px;
  236. color: #fff;
  237. text-align: center;
  238. line-height: 36px;
  239. position: relative;
  240. top: -1px;
  241. cursor: pointer;
  242. }
  243. .editItem{
  244. color: @activeColor;
  245. cursor: pointer;
  246. }
  247. .editItemDis{
  248. color: #aaa;
  249. cursor: not-allowed;
  250. }
  251. .ellipsis{
  252. overflow: hidden;
  253. text-overflow:ellipsis;
  254. white-space: nowrap;
  255. }
  256. .textCenter{
  257. text-align: center;
  258. }
  259. .pagination{
  260. margin: 35px 0 20px 0 ;
  261. text-align: right;
  262. }
  263. .totalSum{
  264. font-size:12px;
  265. line-height:17px;
  266. color: #777777;
  267. margin-right: 20px;
  268. }
  269. .pageNum,.prePage,.nextPage, .more{
  270. display: inline-block;
  271. width: 20px;
  272. cursor: pointer;
  273. margin: 0 20px 0 0;
  274. text-align: center;
  275. color: #777;
  276. }
  277. .prePage,.nextPage{
  278. img{
  279. position: relative;
  280. top: 0px ;
  281. }
  282. }
  283. .more{
  284. cursor: not-allowed;
  285. }
  286. .arrowPage{
  287. width: 6px;
  288. }
  289. .activePage{
  290. color: @activeColor;
  291. }
  292. input::-webkit-outer-spin-button,
  293. input::-webkit-inner-spin-button {
  294. -webkit-appearance: none;
  295. }
  296. input[type="number"] {
  297. -moz-appearance: textfield;
  298. }
  299. }
  300. .usrContain .selectReject,.usrContain .selectModuleType ,.managerContainer .selectModuleType {
  301. float: right;
  302. }
  303. .usrContain .rejectList,.usrContain .usedList{
  304. height: 200px;
  305. }
  306. .usrContain .selectModuleType, .usrContain .moduleItemInp, .usrContain .selectUsed, .usrContain .selectReject {
  307. width: 170px;
  308. }
  309. .managerContainer .moduleTypeList {
  310. width: 140px;
  311. }
  312. .managerContainer.usrContain .moduleTypeList {
  313. width: 170px;
  314. height: 400px;
  315. }
  316. .managerContainer.usrContain .selectReject {
  317. width: 140px;
  318. }