welcome.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772
  1. html,body{
  2. display: block;
  3. width: 100%;
  4. height: 100%;
  5. min-width: 950px;
  6. background-color: #f2f2f2;
  7. overflow: auto;
  8. font-family: '微软雅黑','PingFang SC';
  9. }
  10. body{
  11. padding: 80px 12px 32px;
  12. }
  13. body {
  14. -ms-scroll-chaining: chained;
  15. -ms-content-zooming: zoom;
  16. -ms-scroll-rails: none;
  17. -ms-content-zoom-limit-min: 100%;
  18. -ms-content-zoom-limit-max: 500%;
  19. -ms-scroll-snap-type: proximity;
  20. -ms-scroll-snap-points-x: snapList(100%, 200%, 300%, 400%, 500%);
  21. /*IE下隐藏滚动条*/
  22. -ms-overflow-style: none;
  23. /*火狐下隐藏滚动条*/
  24. /* scrollbar-width: none; */
  25. }
  26. body::-webkit-scrollbar {
  27. width: 4px;
  28. height: 4px;
  29. scrollbar-arrow-color: rgba(0, 0, 0, 0); /*三角箭头的颜色*/
  30. scrollbar-highlight-color: rgba(0, 0, 0, 0); /*滚动条空白部分的颜色*/
  31. scrollbar-track-color: #94d1ff; /*立体滚动条背景颜色*/
  32. }
  33. body::-webkit-scrollbar-track-piece {
  34. background-color: rgba(0, 0, 0, 0);
  35. }
  36. body::-webkit-scrollbar-button {
  37. background-color: rgba(0, 0, 0, 0);
  38. }
  39. body::-webkit-scrollbar-track {
  40. background-color: rgba(0, 0, 0, 0);
  41. }
  42. body::-webkit-scrollbar-thumb {
  43. background-color: #94d1ff;
  44. }
  45. body::-webkit-scrollbar-corner {
  46. background-color: rgba(0, 0, 0, 0);
  47. }
  48. body::-webkit-scrollbar-resizer {
  49. background-color: rgba(0, 0, 0, 0);
  50. }
  51. /*o内核*/
  52. body::-o-scrollbar {
  53. /* -moz-appearance: none !important; */
  54. background: rgba(0, 255, 0, 0) !important;
  55. }
  56. body::-o-scrollbar-button {
  57. background-color: rgba(0, 0, 0, 0);
  58. }
  59. body::-o-scrollbar-track {
  60. background-color: rgba(0, 0, 0, 0);
  61. }
  62. body::-o-scrollbar-track-piece {
  63. background-color: rgba(0, 0, 0, 0);
  64. }
  65. body::-o-scrollbar-thumb {
  66. background-color: #94d1ff;
  67. }
  68. body::-o-scrollbar-corne {
  69. background-color: rgba(0, 0, 0, 0);
  70. }
  71. body::-o-scrollbar-resizer {
  72. background-color: rgba(0, 0, 0, 0);
  73. }
  74. *{
  75. box-sizing: border-box;
  76. margin: 0;
  77. padding: 0;
  78. }
  79. .clearfix::after {
  80. clear: both;
  81. }
  82. .clearfix::before, .clearfix::after {
  83. content: ' ';
  84. display: table;
  85. }
  86. .left{
  87. float: left;
  88. }
  89. .right{
  90. float: right;
  91. }
  92. .width50_{
  93. width: 50%;
  94. }
  95. .tcenter{
  96. text-align: center;
  97. }
  98. .tleft {
  99. text-align: left;
  100. }
  101. .relative{
  102. position: relative;
  103. }
  104. .ellipsis {
  105. overflow: hidden;
  106. text-overflow: ellipsis;
  107. white-space: nowrap;
  108. }
  109. .inline-block{
  110. display: inline-block;
  111. }
  112. .topdatabox{
  113. display: block;
  114. width: 100%;
  115. }
  116. .topdatabox .tit{
  117. font-size: 20px;
  118. font-weight: normal;
  119. font-stretch: normal;
  120. line-height: 24px;
  121. letter-spacing: 0px;
  122. color: #333333;
  123. }
  124. .titlebox{
  125. display: block;
  126. width: calc(100% - 28px);
  127. position: fixed;
  128. background-color: #f2f2f2;
  129. top: 0px;
  130. left: 12px;
  131. padding-top: 24px;
  132. z-index: 9;
  133. padding-bottom: 16px;
  134. }
  135. .everydatabox {
  136. display: block;
  137. /* height: 150px; */
  138. background-color: #ffffff;
  139. /* box-shadow: 3px 2px 5px 0px rgba(210, 210, 210, 0.36); */
  140. border-radius: 5px;
  141. border: solid 1px #eeeef5;
  142. padding: 16px;
  143. }
  144. .topleftdata{
  145. width: 60%;
  146. }
  147. .toprightdata {
  148. width: calc(40% - 10px);
  149. }
  150. .iconimg{
  151. width: 16px;
  152. position: relative;
  153. top: 2px;
  154. }
  155. .toptitbox{
  156. margin-left: 8px;
  157. line-height: 20px;
  158. font-size: 16px;
  159. }
  160. .monthaddnum{
  161. margin-left: 4%;
  162. }
  163. .rightadd{
  164. margin-right: 8px;
  165. font-size: 16px;
  166. font-weight: bold;
  167. line-height: 22px;
  168. color: #F51231;
  169. }
  170. .righticonimg{
  171. width: 24px;
  172. position: relative;
  173. top: -4px;
  174. margin: 0 24px;
  175. }
  176. .topnum{
  177. display: block;
  178. font-size: 24px;
  179. font-family: DIN;
  180. font-weight: bold;
  181. color: #333333;
  182. letter-spacing: 1px;
  183. margin-bottom: 24px;
  184. }
  185. .signmoney{
  186. width: 35%;
  187. }
  188. .signnum{
  189. width: 15%;
  190. }
  191. .signtext{
  192. font-size: 16px;
  193. font-weight: 400;
  194. color: #6B7D8E;
  195. }
  196. .alldatatoprightbox .signpt{
  197. width: 25%;
  198. }
  199. .numtablebox{
  200. display: block;
  201. width: 200px;
  202. color: #000;
  203. font-size: 14px;
  204. border: 1px solid #E4E4E4;
  205. }
  206. .topnumtit{
  207. border-bottom: 1px solid #E4E4E4;
  208. background: #F6FAFD;
  209. line-height: 24px;
  210. font-size: 16px;
  211. color: #333;
  212. }
  213. .everynumtable{
  214. padding: 12px 0;
  215. line-height: 24px;
  216. }
  217. .mr52{
  218. margin-right: 48px;
  219. }
  220. .cluept {
  221. width: 25%;
  222. }
  223. .ml160{
  224. margin-left: 160px;
  225. }
  226. .mr10{
  227. margin-right: 9%;
  228. }
  229. .leftbdr{
  230. border-left: 1px solid #e4e4e4;
  231. }
  232. .center{text-align: center;}
  233. .mt16{
  234. margin-top: 8px;
  235. }
  236. .mt32 {
  237. margin-top: 32px;
  238. }
  239. .color249efb {
  240. color: #249efb;
  241. }
  242. .mr24{
  243. margin-right: 24px;
  244. }
  245. .pointer {
  246. cursor: pointer;
  247. }
  248. .width50_{
  249. width: 50%;
  250. }
  251. .cluetext{
  252. font-size: 16px;
  253. font-weight: 400;
  254. color: #6B7D8E;
  255. }
  256. .height170 {
  257. height: 200px;
  258. }
  259. .height180{
  260. height: 180px;
  261. }
  262. .leftlinecloseimgbox,.rightlinecloseimgbox{
  263. position: absolute;
  264. top: 4px;
  265. left: 4px;
  266. width: 20px;
  267. z-index: 999;
  268. }
  269. .crmallnum{
  270. font-size: 24px;
  271. font-family: DIN;
  272. font-weight: bold;
  273. color: #333333;
  274. /* font-family: Impact, Haettenschweiler,'Arial Narrow Bold', sans-serif; */
  275. margin-bottom: 4px;
  276. }
  277. .levelcrm{
  278. margin-top: 20px;
  279. width: 20%;
  280. }
  281. .crmpiebox{
  282. padding-left: 100px;
  283. width: 100%;
  284. }
  285. .everycrmbox{
  286. margin-top: 20px;
  287. }
  288. .everycrmbox .alev{
  289. display: block;
  290. background-color: #ff0000;
  291. width: 20px;
  292. height: 12px;
  293. position: relative;
  294. top: 4px;
  295. margin-right: 8px;
  296. }
  297. .everycrmbox .blev {
  298. display: block;
  299. background-color: #249efb;
  300. width: 20px;
  301. height: 12px;
  302. position: relative;
  303. top: 4px;
  304. margin-right: 8px;
  305. }
  306. .everycrmbox .clev {
  307. display: block;
  308. background-color: #f5dc00;
  309. width: 20px;
  310. height: 12px;
  311. position: relative;
  312. top: 4px;
  313. margin-right: 8px;
  314. }
  315. .everycrmbox .dlev{
  316. display: block;
  317. background-color: #5EC530;
  318. width: 20px;
  319. height: 12px;
  320. position: relative;
  321. top: 4px;
  322. margin-right: 8px;
  323. }
  324. .looktit{
  325. padding-left: 11px;
  326. font-size: 16px;
  327. font-weight: 400;
  328. color: #333333;
  329. position: relative;
  330. }
  331. .looktit::after{
  332. content: ' ';
  333. display: block;
  334. width: 4px;
  335. height: 14px;
  336. background: #85A1B8;
  337. position: absolute;
  338. left: 0;
  339. top: 4px;
  340. border-radius: 2px;
  341. }
  342. .echartlinebox{
  343. display: block;
  344. height: 526px;
  345. background-color: #ffffff;
  346. border-radius: 10px;
  347. }
  348. .rightmainbox{
  349. display: block;
  350. height: 526px;
  351. background-color: #ffffff;
  352. border-radius: 10px;
  353. }
  354. .achievement{
  355. float: left;
  356. z-index: 1;
  357. font-size: 16px;
  358. color: #333333;
  359. padding-left: 12px;
  360. position: relative;
  361. }
  362. .achievement::after{
  363. content: ' ';
  364. display: block;
  365. width: 4px;
  366. height: 14px;
  367. background-color: #85A1B8;
  368. position: absolute;
  369. top: 4px;
  370. left: 0;
  371. border-radius: 4px;
  372. }
  373. .rightmainbox{
  374. padding: 12px;
  375. }
  376. .maintypebox{
  377. display: block;
  378. float: right;
  379. }
  380. .maintypebox div{
  381. float: right;
  382. margin: 0 8px;
  383. width: 60px;
  384. height: 28px;
  385. position: relative;
  386. cursor: pointer;
  387. font-size: 14px;
  388. background-color: #fff;
  389. color: #555;
  390. border: 1px solid #c9c9c9;
  391. line-height: 28px;
  392. text-align: center;
  393. }
  394. .maintypebox div.nowtit{
  395. position: relative;
  396. background-color: #28a1ff;
  397. border-color: #28a1ff;
  398. color: #fff;
  399. }
  400. .rankingbox{
  401. display: block;
  402. width: 100%;
  403. background-color: #fbfbfb;
  404. margin-top: 48px;
  405. border-radius: 10px;
  406. height: 460px;
  407. padding-top: 45px;
  408. }
  409. .rankingbox .borderbt{
  410. border-bottom: 1px solid #f2f2f2;
  411. }
  412. .ranktitbox{
  413. display: block;
  414. width: 100%;
  415. height: 45px;
  416. position: absolute;
  417. top: 0;
  418. left: 0;
  419. }
  420. .ranklistbox{
  421. display: block;
  422. width: 100%;
  423. height: 100%;
  424. overflow-y: auto;
  425. }
  426. .ranklistbox .ranknum{
  427. font-size:16px;
  428. }
  429. .firstbox .ranknum{
  430. color: #F51231;
  431. font-size:20px;
  432. font-style: italic;
  433. }
  434. .secondbox .ranknum {
  435. color: #249efb;
  436. font-size:20px;
  437. font-style: italic;
  438. }
  439. .thirdbox .ranknum{
  440. color: #FAC858;
  441. font-size:20px;
  442. font-style: italic;
  443. }
  444. .ranklistbox {
  445. -ms-scroll-chaining: chained;
  446. -ms-content-zooming: zoom;
  447. -ms-scroll-rails: none;
  448. -ms-content-zoom-limit-min: 100%;
  449. -ms-content-zoom-limit-max: 500%;
  450. -ms-scroll-snap-type: proximity;
  451. -ms-scroll-snap-points-x: snapList(100%, 200%, 300%, 400%, 500%);
  452. /*IE下隐藏滚动条*/
  453. -ms-overflow-style: none;
  454. /*火狐下隐藏滚动条*/
  455. /* scrollbar-width: none; */
  456. }
  457. .ranklistbox::-webkit-scrollbar {
  458. width: 4px;
  459. /* height: 0px; */
  460. scrollbar-arrow-color: rgba(0, 0, 0, 0); /*三角箭头的颜色*/
  461. scrollbar-highlight-color: rgba(0, 0, 0, 0); /*滚动条空白部分的颜色*/
  462. scrollbar-track-color: #94d1ff; /*立体滚动条背景颜色*/
  463. }
  464. .ranklistbox::-webkit-scrollbar-track-piece {
  465. background-color: rgba(0, 0, 0, 0);
  466. }
  467. .ranklistbox::-webkit-scrollbar-button {
  468. background-color: rgba(0, 0, 0, 0);
  469. }
  470. .ranklistbox::-webkit-scrollbar-track {
  471. background-color: rgba(0, 0, 0, 0);
  472. }
  473. .ranklistbox::-webkit-scrollbar-thumb {
  474. background-color: #94d1ff;
  475. }
  476. .ranklistbox::-webkit-scrollbar-corner {
  477. background-color: rgba(0, 0, 0, 0);
  478. }
  479. .ranklistbox::-webkit-scrollbar-resizer {
  480. background-color: rgba(0, 0, 0, 0);
  481. }
  482. /*o内核*/
  483. .ranklistbox::-o-scrollbar {
  484. /* -moz-appearance: none !important; */
  485. background: rgba(0, 255, 0, 0) !important;
  486. }
  487. .ranklistbox::-o-scrollbar-button {
  488. background-color: rgba(0, 0, 0, 0);
  489. }
  490. .ranklistbox::-o-scrollbar-track {
  491. background-color: rgba(0, 0, 0, 0);
  492. }
  493. .ranklistbox::-o-scrollbar-track-piece {
  494. background-color: rgba(0, 0, 0, 0);
  495. }
  496. .ranklistbox::-o-scrollbar-thumb {
  497. background-color: #94d1ff;
  498. }
  499. .ranklistbox::-o-scrollbar-corne {
  500. background-color: rgba(0, 0, 0, 0);
  501. }
  502. .ranklistbox::-o-scrollbar-resizer {
  503. background-color: rgba(0, 0, 0, 0);
  504. }
  505. .ranknum{
  506. display: block;
  507. float: left;
  508. width: 15%;
  509. text-align: center;
  510. }
  511. .ranklistbox div.bgfff{
  512. background-color: #ffffff !important;
  513. height: 53px;
  514. }
  515. .namebox{
  516. display: block;
  517. float: left;
  518. width: 30%;
  519. text-align: center;
  520. }
  521. .departbox{
  522. display: block;
  523. float: left;
  524. width: 20%;
  525. text-align: center;
  526. }
  527. .workbox{
  528. display: block;
  529. float: left;
  530. width: 17%;
  531. text-align: center;
  532. }
  533. .complete{
  534. display: block;
  535. float: left;
  536. width: 18%;
  537. text-align: center;
  538. }
  539. .ranktitbox .ranknum,.ranktitbox .namebox,.ranktitbox .workbox,.ranktitbox .complete,.ranktitbox .departbox{
  540. line-height: 45px;
  541. }
  542. .ranklistbox .ranknum,.ranklistbox .namebox,.ranklistbox .workbox,.ranklistbox .complete,.ranklistbox .departbox{
  543. line-height: 53px;
  544. height: 53px;
  545. position: relative;
  546. z-index: 3;
  547. }
  548. .ranknum{
  549. border-width: 0;
  550. }
  551. .namebox img{
  552. width: 24px;
  553. height: 24px;
  554. border-radius: 12px;
  555. position: relative;
  556. top: 14px;
  557. margin-right: 8px;
  558. }
  559. .personamebox{
  560. width: calc(61% - 30px);
  561. }
  562. .firstbox{
  563. height: 72px !important;
  564. }
  565. .firstbox .ranknum,
  566. .firstbox .namebox,
  567. .firstbox .workbox,
  568. .firstbox .complete,
  569. .firstbox .departbox{
  570. line-height: 72px;
  571. height: 72px;
  572. position: relative;
  573. z-index: 3;
  574. }
  575. .firstbox .namebox img {
  576. width: 48px;
  577. height: 48px;
  578. border-radius: 24px;
  579. position: relative;
  580. top: 10px;
  581. margin-right: 8px;
  582. }
  583. .secondbox{
  584. height: 64px !important;
  585. }
  586. .secondbox .ranknum,
  587. .secondbox .namebox,
  588. .secondbox .workbox,
  589. .secondbox .complete,
  590. .secondbox .departbox {
  591. line-height: 64px;
  592. height: 64px;
  593. position: relative;
  594. z-index: 3;
  595. }
  596. .secondbox .namebox img {
  597. width: 40px;
  598. height:40px;
  599. border-radius: 20px;
  600. position: relative;
  601. top: 12px;
  602. margin-right: 8px;
  603. }
  604. .rankimg{
  605. display: block;
  606. position: absolute;
  607. top: 0;
  608. left: 0;
  609. width: 38px;
  610. height: 38px;
  611. z-index: 2;
  612. }
  613. .commontool{
  614. display: block;
  615. width: 100%;
  616. margin-top: 24px;
  617. background-color: #ffffff;
  618. border-radius: 10px;
  619. padding: 30px 38px;
  620. }
  621. .tooltitbox{
  622. font-size: 20px;
  623. color: #333;
  624. }
  625. .everytoolbox{
  626. width: 146px;
  627. height: 58px;
  628. background-color: #60b9ff;
  629. /* box-shadow: 3px 2px 5px 0px rgba(210, 210, 210, 0.36); */
  630. border-radius: 8px;
  631. margin-top: 16px;
  632. margin-right: 64px;
  633. cursor: pointer;
  634. }
  635. .toolimg{
  636. display: block;
  637. height: 20px;
  638. margin-right: 10px;
  639. position: relative;
  640. top: 19px;
  641. }
  642. .tooltext{
  643. font-size: 16px;
  644. color: #ffffff;
  645. line-height: 58px;
  646. }
  647. .addtoolbox{
  648. display: block;
  649. width: 146px;
  650. height: 58px;
  651. background-color: #ffffff;
  652. /* box-shadow: 3px 2px 5px 0px
  653. rgba(210, 210, 210, 0.36); */
  654. border-radius: 8px;
  655. margin-top: 16px;
  656. margin-right: 64px;
  657. cursor: pointer;
  658. }
  659. .addtoolbox .tooltext{
  660. color: #60b9ff;
  661. }
  662. .addimg{
  663. display: block;
  664. width: 20px;
  665. height: 20px;
  666. border-radius: 5px;
  667. border: solid 2px #60b9ff;
  668. line-height: 16px;
  669. text-align: center;
  670. font-size: 16px;
  671. color: #60b9ff;
  672. float: left;
  673. margin-right: 10px;
  674. position: relative;
  675. top: 19px;
  676. }
  677. @media screen and (max-width: 1366px) {
  678. .numboldbox{
  679. font-size: 32px;
  680. }
  681. }
  682. /* 饼状图 */
  683. .echartpiebox{
  684. display: block;
  685. width: 100%;
  686. margin-top: 16px;
  687. border-radius: 10px;
  688. height: 428px;
  689. }
  690. #echartpie{
  691. display: block;
  692. width: 100%;
  693. height: 100%;
  694. }
  695. .ranknumbox{
  696. position: absolute;
  697. top: 50%;
  698. left: 50%;
  699. z-index: 99;
  700. transform: translate(-50%,-50%);
  701. }
  702. .ranknumbox div.num{
  703. font-family: Impact;
  704. font-size: 80px;
  705. letter-spacing: 1px;
  706. color: #249efb;
  707. line-height: 88px;
  708. }
  709. .ranknumbox div.text{
  710. font-size: 18px;
  711. color: #aaa;
  712. }
  713. #echartpie1{
  714. display: block;
  715. width: 100%;
  716. height: 100%;
  717. }