deptConsole.less 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532
  1. @import './reset.less';
  2. body.console {
  3. overflow: auto;
  4. background-color: @themeColor;
  5. }
  6. .echarts {
  7. width: 100%;
  8. height: 300px;
  9. padding: 0 15px;
  10. }
  11. .barChartPay {
  12. width: 100%;
  13. height: 300px;
  14. }
  15. .emptyCircle {
  16. width: 35%;
  17. height: 200px;
  18. float: left;
  19. margin-top: 32px;
  20. }
  21. #emptyCircleB {
  22. margin-top: 50px;
  23. }
  24. .partAll {
  25. background-color: #fff;
  26. }
  27. .partWrap {
  28. // overflow: auto;
  29. height: auto;
  30. background: @activeBg;
  31. min-width: 1185px;
  32. padding: 10px;
  33. ul {
  34. padding: 0 40px;
  35. }
  36. .partLi {
  37. float: left;
  38. margin: 15px 0;
  39. width: 20%;
  40. height: 100px;
  41. overflow: hidden;
  42. .partIn {
  43. height: 100px;
  44. box-sizing: border-box;
  45. border-radius: 3px;
  46. padding: 10px 15px;
  47. border: 1px solid #E2E5EF;
  48. margin: 0 6px;
  49. }
  50. p {
  51. padding-bottom: 10px;
  52. color: #51649C;
  53. }
  54. .top {
  55. margin-bottom: 12px;
  56. }
  57. .btm {
  58. padding-bottom: 4px;
  59. img {
  60. float: left;
  61. width: 40px;
  62. }
  63. span {
  64. float: right;
  65. font-size: 28px;
  66. color: #51649C;
  67. }
  68. }
  69. }
  70. .title {
  71. font-size: 16px;
  72. // font-weight: bold;
  73. border-bottom: 1px solid @themeBorderClr;
  74. height: 36px;
  75. line-height: 36px;
  76. padding-left: 15px;
  77. }
  78. }
  79. .swiperWrap {
  80. width: 300px;
  81. border: 1px solid #ccc;
  82. }
  83. .grayLine {
  84. height: 10px;
  85. background-color: @activeBg;
  86. }
  87. .partTitleT {
  88. height: 44px;
  89. }
  90. .partTitle {
  91. position: absolute;
  92. top: 0px;
  93. left: 0;
  94. width: 100%;
  95. min-width: 1080px;
  96. box-sizing: border-box;
  97. background-color: @themeColor;
  98. z-index: 20;
  99. height: 44px;
  100. line-height: 44px;
  101. padding-left: 15px;
  102. font-size: 14px;
  103. // font-weight: bold;
  104. letter-spacing: 1px;
  105. p {
  106. display: inline-block;
  107. font-size: 16px;
  108. color: @fstColor;
  109. span,i {
  110. color: @fstColor;
  111. font-size: 16px;
  112. }
  113. }
  114. .dateDetail {
  115. font-size: 12px;
  116. color: @secColor;
  117. margin-right: 30px;
  118. font-weight: normal;
  119. }
  120. .monthYear {
  121. float: right;
  122. margin-right: 20px;
  123. height: 30px;
  124. line-height: 30px;
  125. cursor: pointer;
  126. margin-top: 7px;
  127. border: 0 none;
  128. span {
  129. width: 48px;
  130. height: 28px;
  131. line-height: 28px;
  132. display: inline-block;
  133. text-align: center;
  134. font-weight: normal;
  135. float: left;
  136. }
  137. .year {
  138. background-color: @activeColor;
  139. border: 1px solid @activeColor;
  140. color: @fstColor;
  141. border-left: 0 none;
  142. border-radius:0 4px 4px 0;
  143. overflow: hidden;
  144. }
  145. .mon {
  146. border: 1px solid @secColor;
  147. border-radius: 4px 0 0 4px;
  148. border-right: 0 none;
  149. color: @secColor;
  150. }
  151. }
  152. }
  153. .partTitles {
  154. height: 44px;
  155. line-height: 44px;
  156. padding-left: 10px;
  157. margin-right: 0;
  158. }
  159. .pubEchart {
  160. width: 100%;
  161. display: inline-block;
  162. margin-bottom: 10px;
  163. background-color: #fff;
  164. border-top: 10px solid @activeBg;
  165. }
  166. .pubEchartB {
  167. width: 55%;
  168. display: inline-block;
  169. margin-bottom: 10px;
  170. background-color: #fff;
  171. border-top: 10px solid @activeBg;
  172. border-left: 10px solid @activeBg;
  173. box-sizing: border-box;
  174. }
  175. .paymoney {
  176. box-sizing: border-box;
  177. position: relative;
  178. }
  179. .dept {
  180. box-sizing: border-box;
  181. }
  182. .circle {
  183. height: 304px;
  184. width: 100%;
  185. display: inline-block;
  186. background-color: @themeColor;
  187. box-sizing: border-box;
  188. position: relative;
  189. }
  190. .circleB {
  191. height: 350px;
  192. width: 100%;
  193. display: inline-block;
  194. background-color: @themeColor;
  195. box-sizing: border-box;
  196. border-top: 10px solid @activeBg;
  197. position: relative;
  198. .title {
  199. cursor: pointer;
  200. color: @fstColor;
  201. }
  202. }
  203. .btmWrap {
  204. width: 100%;
  205. overflow: hidden;
  206. }
  207. .explainPan {
  208. width: 60%;
  209. float: right;
  210. position: absolute;
  211. top: 50%;
  212. right: 0;
  213. padding-right: 30px;
  214. box-sizing: border-box;
  215. max-height: 250px;
  216. overflow: auto;
  217. table {
  218. width: 100%;
  219. }
  220. .explainLi {
  221. height: 22px;
  222. line-height: 22px;
  223. span {
  224. display: inline-block;
  225. }
  226. .tip {
  227. display: inline-block;
  228. width: 10px;
  229. height: 10px;
  230. border-radius: 50%;
  231. background-color: red;
  232. margin-right: 10px;
  233. }
  234. .deptName {
  235. color: @secColor;
  236. p {
  237. width: 110px;
  238. overflow: hidden;
  239. text-overflow: ellipsis;
  240. white-space: nowrap;
  241. color: @secColor;
  242. }
  243. .smp {
  244. width: 100px;
  245. }
  246. }
  247. .deptNum {
  248. color: @secColor;
  249. font-size: 16px;
  250. font-weight: bold;
  251. padding-right: 10px;
  252. width: 40px;
  253. text-align: right;
  254. }
  255. .percent {
  256. color: @secColor;
  257. width: 40px;
  258. }
  259. }
  260. }
  261. .circleBSingle .explainPan .deptName p {
  262. width: 220px;
  263. }
  264. .detailGo {
  265. width: 16px;
  266. position: relative;
  267. top: 3px;
  268. left: 7px;
  269. }
  270. .part01 {
  271. width: 38%;
  272. background-color: @themeColor;
  273. border-right: 10px solid @activeBg;
  274. box-sizing: border-box;
  275. ul {
  276. padding: 40px 20px;
  277. border-bottom: 10px solid @activeBg;
  278. li {
  279. width: 50%;
  280. float: left;
  281. color: #fff;
  282. }
  283. .lis {
  284. border-left: 3px solid #F2637B;
  285. height: 72px;
  286. box-sizing: border-box;
  287. padding-left: 12px;
  288. margin-left: 60px;
  289. &.li02 {
  290. border-left: 3px solid #FAD336;
  291. }
  292. }
  293. }
  294. .defect {
  295. background-color: @themeColor;
  296. height: 455px;
  297. overflow: hidden;
  298. /*border-bottom: 10px solid @activeBg;*/
  299. .list {
  300. padding: 15px 5px;
  301. width: 100%;
  302. box-sizing: border-box;
  303. overflow: auto;
  304. height: 405px;
  305. }
  306. .thead {
  307. td {
  308. color: @fstColor;
  309. }
  310. }
  311. .qtable {
  312. width: 100%;
  313. overflow: auto;
  314. }
  315. td {
  316. padding: 7px 10px;
  317. color: @fstColor;
  318. i {
  319. width: 17px;
  320. height: 17px;
  321. line-height: 17px;
  322. border-radius: 8px;
  323. background-color: #999;
  324. color: @fstColor;
  325. display: inline-block;
  326. text-align: center;
  327. font-size: 12px;
  328. }
  329. }
  330. tr {
  331. // border-bottom: 1px solid @themeBorderClr;
  332. box-sizing: border-box;
  333. }
  334. tr:nth-child(2n+1) {
  335. background: #283B69;
  336. /*border-bottom: 1px solid @activeBg;
  337. box-sizing: border-box;*/
  338. }
  339. .td01 {
  340. width: 30px;
  341. }
  342. .td02 {
  343. }
  344. .td03 {
  345. width: 40px;
  346. }
  347. .td04 {
  348. width: 40px;
  349. }
  350. }
  351. }
  352. .part02{
  353. // border-right: 10px solid #f5f5f5;
  354. box-sizing: border-box;
  355. width: 62%;
  356. background-color: @themeColor;
  357. .bingli {
  358. padding: 20px;
  359. cursor: pointer;
  360. li {
  361. float: left;
  362. width: 23%;
  363. text-align: center;
  364. border-right: 1px solid @themeBorderClr;
  365. }
  366. .fst {
  367. // border-right: 1px solid #E2E5EF;
  368. box-sizing: border-box;
  369. width: 30%;
  370. }
  371. .four {
  372. border-right: 0 none;
  373. }
  374. }
  375. .bingliLis {
  376. border-top: 1px solid @themeBorderClr;
  377. padding: 20px 30px;
  378. cursor: pointer;
  379. p {
  380. text-align: center;
  381. // font-weight: bold;
  382. font-size: 16px;
  383. padding-bottom: 2px;
  384. margin-bottom: 10px;
  385. cursor: pointer;
  386. color: @secColor;
  387. img {
  388. top: 1px;
  389. }
  390. }
  391. }
  392. .panPartPub {
  393. width: 33.33%;
  394. height: 130px;
  395. float: left;
  396. position: relative;
  397. p {
  398. text-align: center;
  399. font-size: 12px;
  400. font-weight: normal;
  401. width: 100px;
  402. position: absolute;
  403. bottom: 0;
  404. left: 50%;
  405. margin-left: -50px;
  406. }
  407. .fen {
  408. width: 100px;
  409. height: 100px;
  410. position: absolute;
  411. left: 50%;
  412. margin-left: -50px;
  413. }
  414. }
  415. }
  416. .partTitlePub {
  417. height: 44px;
  418. line-height: 44px;
  419. padding: 0 15px;
  420. box-sizing: border-box;
  421. border-bottom: 1px solid @themeBorderClr;
  422. // font-weight: bold;
  423. font-size: 16px;
  424. color: @fstColor;
  425. cursor: pointer;
  426. .name {
  427. float: left;
  428. font-size: 16px;
  429. color: @fstColor;
  430. }
  431. .personNum {
  432. float: right;
  433. color: #51649C;
  434. color: @fstColor;
  435. }
  436. }
  437. .numShow {
  438. font-size: 28px;
  439. display: inline-block;
  440. height: 36px;
  441. line-height: 40px;
  442. font-weight: bold;
  443. color: @fstColor;
  444. }
  445. .explainNum {
  446. margin-top: 8px;
  447. color: @secColor;
  448. }
  449. .toggleSlide {
  450. cursor: pointer;
  451. margin-right: 20px;
  452. margin-top: 6px;
  453. p {
  454. width: 170px;
  455. height: 30px;
  456. line-height: 28px;
  457. border: 1px solid #E2E5EF;
  458. padding-right: 20px;
  459. padding-left: 10px;
  460. position: relative;
  461. font-size: 14px;
  462. border-radius: 4px;
  463. font-weight: normal;
  464. span {
  465. width: 155px;
  466. height: 30px;
  467. line-height: 30px;
  468. display: inline-block;
  469. overflow: hidden;
  470. text-overflow: ellipsis;
  471. white-space: nowrap;
  472. font-size: 14px;
  473. color: @fstColor;
  474. }
  475. img {
  476. width: 10px;
  477. position: absolute;
  478. right: 10px;
  479. top: 12px;
  480. }
  481. }
  482. ul {
  483. display: none;
  484. background-color: #203463;
  485. font-weight: normal;
  486. border: 1px solid @darkLightBorderColor;
  487. z-index: 100;
  488. padding: 0;
  489. position: relative;
  490. top: -15px;
  491. li {
  492. height: 30px;
  493. line-height: 30px;
  494. padding: 0 10px;
  495. width: 180px;
  496. overflow: hidden;
  497. text-overflow: ellipsis;
  498. white-space: nowrap;
  499. font-size: 14px;
  500. color: @fstColor;
  501. &:hover {
  502. background-color: #142753;
  503. }
  504. }
  505. }
  506. }
  507. .circleBLis {
  508. // display: none;
  509. position: relative;
  510. .homePage {
  511. width: 45%;
  512. border-right: 10px solid @activeBg;
  513. box-sizing: border-box;
  514. }
  515. .homePageNo {
  516. width: 55%;
  517. }
  518. }
  519. .emptyLineCircle {
  520. width: 100%;
  521. height: 300px;
  522. margin-top: 0;
  523. }