welcomem.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816
  1. * {
  2. padding: 0px;
  3. margin: 0px;
  4. }
  5. html,
  6. body {
  7. display: block;
  8. width: 100%;
  9. height: 100%;
  10. min-width: 1100px;
  11. background-color: #F2F2F2;
  12. overflow: auto;
  13. font-family: '微软雅黑', 'PingFang SC';
  14. box-sizing: border-box;
  15. }
  16. body {
  17. padding: 13px;
  18. -ms-scroll-chaining: chained;
  19. -ms-content-zooming: zoom;
  20. -ms-scroll-rails: none;
  21. -ms-content-zoom-limit-min: 100%;
  22. -ms-content-zoom-limit-max: 500%;
  23. -ms-scroll-snap-type: proximity;
  24. -ms-scroll-snap-points-x: snapList(100%, 200%, 300%, 400%, 500%);
  25. /*IE下隐藏滚动条*/
  26. -ms-overflow-style: none;
  27. /*火狐下隐藏滚动条*/
  28. /* scrollbar-width: none; */
  29. }
  30. body::-webkit-scrollbar {
  31. width: 4px;
  32. height: 4px;
  33. scrollbar-arrow-color: rgba(0, 0, 0, 0);
  34. /*三角箭头的颜色*/
  35. scrollbar-highlight-color: rgba(0, 0, 0, 0);
  36. /*滚动条空白部分的颜色*/
  37. scrollbar-track-color: #94d1ff;
  38. /*立体滚动条背景颜色*/
  39. }
  40. body::-webkit-scrollbar-track-piece {
  41. background-color: rgba(0, 0, 0, 0);
  42. }
  43. body::-webkit-scrollbar-button {
  44. background-color: rgba(0, 0, 0, 0);
  45. }
  46. body::-webkit-scrollbar-track {
  47. background-color: rgba(0, 0, 0, 0);
  48. }
  49. body::-webkit-scrollbar-thumb {
  50. background-color: #94d1ff;
  51. }
  52. body::-webkit-scrollbar-corner {
  53. background-color: rgba(0, 0, 0, 0);
  54. }
  55. body::-webkit-scrollbar-resizer {
  56. background-color: rgba(0, 0, 0, 0);
  57. }
  58. /*o内核*/
  59. body::-o-scrollbar {
  60. /* -moz-appearance: none !important; */
  61. background: rgba(0, 255, 0, 0) !important;
  62. }
  63. body::-o-scrollbar-button {
  64. background-color: rgba(0, 0, 0, 0);
  65. }
  66. body::-o-scrollbar-track {
  67. background-color: rgba(0, 0, 0, 0);
  68. }
  69. body::-o-scrollbar-track-piece {
  70. background-color: rgba(0, 0, 0, 0);
  71. }
  72. body::-o-scrollbar-thumb {
  73. background-color: #94d1ff;
  74. }
  75. body::-o-scrollbar-corne {
  76. background-color: rgba(0, 0, 0, 0);
  77. }
  78. body::-o-scrollbar-resizer {
  79. background-color: rgba(0, 0, 0, 0);
  80. }
  81. .header {
  82. width: 100%;
  83. height: 186px;
  84. background-color: #fff;
  85. border-radius: 4px;
  86. box-sizing: border-box;
  87. padding: 23px 20px;
  88. }
  89. .h_name {
  90. width: 100%;
  91. margin-bottom: 20px;
  92. }
  93. .h_name_1 {
  94. font-size: 18px;
  95. font-weight: 400;
  96. color: rgba(31, 35, 41, 1);
  97. }
  98. .h_name_2 {
  99. font-size: 14px;
  100. font-weight: 400;
  101. color: rgba(100, 106, 115, 1);
  102. margin-left: 7px;
  103. }
  104. .h_box_1 {
  105. width: 100%;
  106. display: flex;
  107. }
  108. .h_box_1>div {
  109. flex: 1;
  110. height: 96px;
  111. margin-right: 10px;
  112. display: flex;
  113. align-items: center;
  114. box-sizing: border-box;
  115. padding: 0px 23px 0px 17px;
  116. justify-content: space-between;
  117. cursor: pointer;
  118. }
  119. .h_box_1>div:nth-child(1) {
  120. border-radius: 4px;
  121. background-color: rgba(240, 245, 255, 1);
  122. }
  123. .h_box_1>div:nth-child(2) {
  124. border-radius: 4px;
  125. background-color: rgba(246, 240, 255, 1);
  126. }
  127. .h_box_1>div:nth-child(3) {
  128. border-radius: 4px;
  129. background-color: rgba(240, 245, 255, 1);
  130. }
  131. .h_box_1>div:nth-child(4) {
  132. border-radius: 4px;
  133. background-color: rgba(255, 242, 240, 1);
  134. margin-right: 0px !important;
  135. }
  136. .h_box_div {
  137. display: flex;
  138. align-items: center;
  139. }
  140. .h_box_div>img {
  141. width: 46px;
  142. height: 46px;
  143. }
  144. .h_box_div>.h_div_1 {
  145. margin-left: 13px;
  146. }
  147. .h_div_1>div:nth-child(1) {
  148. font-size: 18px;
  149. font-weight: 400;
  150. color: rgba(31, 35, 41, 1);
  151. margin-bottom: 4px;
  152. }
  153. .h_div_1>div:nth-child(2) {
  154. font-size: 14px;
  155. font-weight: 400;
  156. color: rgba(129, 134, 166, 1);
  157. }
  158. .middle {
  159. width: 100%;
  160. height: 303px;
  161. margin-top: 13px;
  162. display: flex;
  163. }
  164. .m_box_left {
  165. display: inline-block;
  166. width: 50%;
  167. height: 303px;
  168. background-color: #fff;
  169. margin-right: 13px;
  170. border-radius: 4px;
  171. box-sizing: border-box;
  172. padding: 19px 20px 23px 21px;
  173. }
  174. .ml_top {
  175. width: 100%;
  176. height: 56px;
  177. display: flex;
  178. }
  179. .ml_top_left {
  180. width: 55%;
  181. height: 56px;
  182. display: flex;
  183. align-items: center;
  184. }
  185. .mll_company {
  186. display: inline-block;
  187. margin-left: 14px;
  188. }
  189. .mllc_name {
  190. font-size: 18px;
  191. font-weight: 400;
  192. color: rgba(31, 35, 41, 1);
  193. }
  194. .mllc_name>span {
  195. padding: 4px 10px;
  196. background: rgba(238, 237, 255, 1);
  197. font-size: 12px;
  198. font-weight: 400;
  199. color: rgba(112, 106, 230, 1);
  200. border-radius: 4px;
  201. margin-left: 9px;
  202. }
  203. .mllc_date {
  204. font-size: 14px;
  205. font-weight: 400;
  206. color: rgba(100, 106, 115, 1);
  207. margin-top: 8px;
  208. }
  209. .ml_top_right {
  210. width: 45%;
  211. height: 56px;
  212. display: inline-block;
  213. }
  214. .mr_div {
  215. display: flex;
  216. justify-content: flex-end;
  217. align-items: center;
  218. }
  219. .mr_welcome {
  220. margin-right: 14px;
  221. }
  222. .mr_wechat {
  223. width: 102px;
  224. height: 32px;
  225. background-color: rgba(72, 118, 255, 1);
  226. border-radius: 4px;
  227. display: flex;
  228. color: #fff;
  229. align-items: center;
  230. justify-content: center;
  231. font-size: 14px;
  232. }
  233. .mr_wechat>span {
  234. margin-left: 2px;
  235. }
  236. .ml_middle {
  237. width: 100%;
  238. display: flex;
  239. margin-top: 46px;
  240. }
  241. .ml_middle>div {
  242. flex: 1;
  243. }
  244. .mlm_name {
  245. font-size: 14px;
  246. font-weight: 400;
  247. color: rgba(100, 106, 115, 1);
  248. }
  249. .mlm_num {
  250. font-size: 36px;
  251. font-weight: 700;
  252. color: rgba(31, 35, 41, 1);
  253. margin-top: 8px;
  254. }
  255. .mlm_day {
  256. font-size: 16px;
  257. color: rgba(56, 56, 56, 1)
  258. }
  259. .ml_bottom {
  260. width: 100%;
  261. display: flex;
  262. margin-top: 26px;
  263. }
  264. .ml_bottom>div {
  265. flex: 1;
  266. height: 60px;
  267. margin-right: 14.5px;
  268. border-radius: 4px;
  269. display: flex;
  270. box-sizing: border-box;
  271. padding: 15px 0px 15px 22px;
  272. align-items: center;
  273. }
  274. .ml_bottom>div>span {
  275. font-size: 14px;
  276. font-weight: 400;
  277. color: rgba(31, 35, 41, 1);
  278. margin-left: 14px;
  279. }
  280. .ml_bottom>div:nth-child(1) {
  281. background-color: rgba(240, 245, 255, 1);
  282. }
  283. .ml_bottom>div:nth-child(2) {
  284. background-color: rgba(240, 245, 255, 1);
  285. }
  286. .ml_bottom>div:nth-child(3) {
  287. background-color: rgba(240, 245, 255, 1);
  288. margin-right: 0px !important;
  289. }
  290. .m_box_right {
  291. display: inline-block;
  292. width: 50%;
  293. height: 303px;
  294. }
  295. .mr_box_top {
  296. width: 100%;
  297. height: 179px;
  298. background-color: #fff;
  299. border-radius: 4px;
  300. box-sizing: border-box;
  301. padding: 23px 0px 23px 19px;
  302. }
  303. .mt_name {
  304. font-size: 18px;
  305. font-weight: 400;
  306. color: rgba(31, 35, 41, 1);
  307. }
  308. .mt_data {
  309. width: 100%;
  310. margin-top: 22px;
  311. }
  312. .mtd_left {
  313. display: inline-block;
  314. width: calc(100% - 222px);
  315. white-space: nowrap;
  316. }
  317. .mtd_left>div {
  318. width: 19%;
  319. display: inline-block;
  320. position: relative;
  321. bottom: 11.5px;
  322. }
  323. .mtd_right {
  324. display: inline-block;
  325. width: 210px;
  326. border-left: 1px solid rgba(235, 235, 235, 1);
  327. }
  328. .mtd_right>div {
  329. text-align: center;
  330. }
  331. .mtd_right>div:nth-child(1) {
  332. font-size: 14px;
  333. font-weight: 400;
  334. color: rgba(100, 106, 115, 1);
  335. }
  336. .mtd_right>div:nth-child(2) {
  337. font-size: 24px;
  338. color: rgba(31, 35, 41, 1);
  339. font-weight: 700 !important;
  340. margin-top: 16px;
  341. }
  342. .mtd_right>div:nth-child(3) {
  343. font-size: 12px !important;
  344. color: rgba(143, 149, 158, 1) !important;
  345. margin-top: 4px;
  346. }
  347. .mtdr_gb {
  348. font-size: 14px;
  349. color: rgba(31, 35, 41, 1);
  350. font-weight: 400;
  351. }
  352. .mtdr_limit {
  353. color: rgba(214, 43, 43, 1);
  354. }
  355. .mtdl_name {
  356. font-size: 14px;
  357. font-weight: 400;
  358. color: rgba(100, 106, 115, 1);
  359. }
  360. .mtdl_num {
  361. font-size: 24px;
  362. color: rgba(31, 35, 41, 1);
  363. font-weight: 700;
  364. margin-top: 16px;
  365. }
  366. .mtdl_num>span {
  367. font-size: 14px;
  368. font-weight: 400 !important;
  369. }
  370. .mr_box_bottom {
  371. width: 100%;
  372. height: 111px;
  373. margin-top: 13px;
  374. background-color: #fff;
  375. border-radius: 4px;
  376. box-sizing: border-box;
  377. padding: 12px 20px;
  378. }
  379. .mrbb_left {
  380. width: 47.5%;
  381. display: inline-block;
  382. box-sizing: border-box;
  383. vertical-align: middle;
  384. }
  385. .mrbb_left>div:nth-child(1) {
  386. font-size: 16px;
  387. color: rgba(31, 35, 41, 1);
  388. }
  389. .mrbb_left>div:nth-child(2) {
  390. font-size: 13px;
  391. color: rgba(143, 149, 158, 1);
  392. margin-top: 2px;
  393. }
  394. .mrbb_right {
  395. width: 51.5%;
  396. height: 100%;
  397. display: inline-block;
  398. }
  399. .companyNumber {
  400. font-size: 24px;
  401. color: rgba(31, 35, 41, 1);
  402. font-weight: 700;
  403. }
  404. .footer {
  405. width: 100%;
  406. white-space: nowrap;
  407. margin-top: 13px;
  408. display: flex;
  409. }
  410. .f_left {
  411. width: 50%;
  412. height: 552px;
  413. background-color: #fff;
  414. border-radius: 4px;
  415. display: inline-block;
  416. margin-right: 13px;
  417. box-sizing: border-box;
  418. padding: 23px 20px;
  419. }
  420. .fl_header {
  421. width: 100%;
  422. height: 32px;
  423. }
  424. .fl_header>span {
  425. float: left;
  426. line-height: 32px;
  427. font-size: 18px;
  428. font-weight: 400;
  429. color: rgba(31, 35, 41, 1);
  430. }
  431. .fl_date_box {
  432. float: right;
  433. width: auto;
  434. height: auto;
  435. overflow: hidden;
  436. border: 1px solid rgba(245, 246, 247, 1);
  437. border-radius: 4px;
  438. cursor: pointer;
  439. }
  440. .fl_date_box>div {
  441. display: inline-block;
  442. padding: 5.5px 10px;
  443. font-size: 14px;
  444. color: rgba(128, 128, 128, 1);
  445. }
  446. .fl_active {
  447. background-color: rgba(245, 246, 247, 1);
  448. border-radius: 4px 0px, 0px, 4px;
  449. }
  450. .fl_data {
  451. width: 100%;
  452. height: auto;
  453. overflow: hidden;
  454. margin-top: 17px;
  455. cursor: pointer;
  456. }
  457. .fl_data>div:nth-child(1) {
  458. display: inline-block;
  459. width: 32%;
  460. height: 74px;
  461. margin-right: 2%;
  462. border-radius: 4px;
  463. box-sizing: border-box;
  464. padding: 8px 11px;
  465. }
  466. .fl_data>div:nth-child(2) {
  467. display: inline-block;
  468. width: 32%;
  469. margin-right: 2%;
  470. height: 74px;
  471. border-radius: 4px;
  472. box-sizing: border-box;
  473. padding: 8px 11px;
  474. }
  475. .fl_data>div:nth-child(3) {
  476. display: inline-block;
  477. width: 32%;
  478. height: 74px;
  479. border-radius: 4px;
  480. box-sizing: border-box;
  481. padding: 8px 11px;
  482. }
  483. .fl_data_active {
  484. background-color: rgba(245, 246, 247, 1);
  485. }
  486. .fld_name {
  487. font-size: 14px;
  488. font-weight: 400;
  489. color: rgba(143, 149, 158, 1);
  490. }
  491. .fld_num {
  492. font-size: 26px;
  493. font-weight: 700;
  494. color: rgba(31, 35, 41, 1);
  495. margin-top: 8px;
  496. }
  497. .fl_data_active > .fld_num {
  498. color: rgba(51, 112, 255, 1) !important;
  499. }
  500. .fl_echarts {
  501. width: 100%;
  502. height: 324px;
  503. }
  504. .fl_echarts_title {
  505. width: 100%;
  506. margin-top: 14px;
  507. margin-bottom: 26px;
  508. }
  509. .f_right {
  510. width: 50%;
  511. height: 552px;
  512. background-color: #fff;
  513. border-radius: 4px;
  514. display: inline-block;
  515. box-sizing: border-box;
  516. padding: 26px 19px;
  517. }
  518. .fr_title {
  519. width: 100%;
  520. font-size: 18px;
  521. font-weight: 400;
  522. color: rgba(31, 35, 41, 1);
  523. }
  524. .fr_box {
  525. width: 100%;
  526. }
  527. .fr_box_item {
  528. display: inline-block;
  529. width: 25%;
  530. }
  531. .fr_item_dsc {
  532. width: 100%;
  533. height: auto;
  534. text-align: center;
  535. white-space: normal !important;
  536. margin-top: 8px;
  537. display: -webkit-box;
  538. text-overflow: ellipsis;
  539. overflow: hidden;
  540. -webkit-box-orient: vertical;
  541. -webkit-line-clamp: 2;
  542. }
  543. .fr_item_icon {
  544. width: 80px;
  545. height: 80px;
  546. margin: auto;
  547. }
  548. .fr_item_icon > img {
  549. width: 100%;
  550. height: 100%;
  551. }
  552. .fr_pro_name {
  553. width: 100%;
  554. text-align: center;
  555. margin-top: 15px;
  556. }
  557. .fr_pro_tag {
  558. display: inline-block;
  559. padding: 3px 6px;
  560. background-color: rgba(212, 255, 230, 1);
  561. color: rgba(0, 145, 27, 1);
  562. border-radius: 10px 6px 6px 0px !important;
  563. font-size: 12px;
  564. position: relative;
  565. bottom: 4px;
  566. }
  567. .fr_pro_text {
  568. font-size: 14px;
  569. color:rgba(100, 106, 115, 1);
  570. }
  571. .fr_box > div:nth-child(1) {
  572. box-sizing: border-box;
  573. padding-right: 20px;
  574. }
  575. .fr_box > div:nth-child(2) {
  576. box-sizing: border-box;
  577. padding: 0px 12px;
  578. }
  579. .fr_box > div:nth-child(3) {
  580. box-sizing: border-box;
  581. padding: 0px 10px;
  582. }
  583. .fr_box > div:nth-child(4) {
  584. box-sizing: border-box;
  585. padding: 0px 13px;
  586. }
  587. .fr_top {
  588. margin-top: 30px;
  589. }
  590. .fr_box_top {
  591. margin-top: 32px;
  592. }
  593. .fb_box {
  594. margin-top: 42px;
  595. width: 100%;
  596. height: 50px;
  597. background-color: rgba(225, 234, 255, 1);
  598. box-sizing: border-box;
  599. padding: 15px 10px;
  600. }
  601. .fb_box_btn {
  602. padding: 3px 10px;
  603. background-color: rgba(51, 112, 255, 1);
  604. border-radius: 2px;
  605. font-size: 12px;
  606. color: #fff;
  607. margin-right: 4px;
  608. }
  609. .frimg11 {
  610. display: none;
  611. }
  612. .fr_box_item1:hover .frimg11 {
  613. display: block;
  614. }
  615. .fr_box_item1:hover .frimg1 {
  616. display: none;
  617. }
  618. .frimg22 {
  619. display: none;
  620. }
  621. .fr_box_item2:hover .frimg22 {
  622. display: block;
  623. }
  624. .fr_box_item2:hover .frimg2 {
  625. display: none;
  626. }
  627. .frimg33 {
  628. display: none;
  629. }
  630. .fr_box_item3:hover .frimg33 {
  631. display: block;
  632. }
  633. .fr_box_item3:hover .frimg3 {
  634. display: none;
  635. }
  636. .frimg44 {
  637. display: none;
  638. }
  639. .fr_box_item4:hover .frimg44 {
  640. display: block;
  641. }
  642. .fr_box_item4:hover .frimg4 {
  643. display: none;
  644. }
  645. .frimg55 {
  646. display: none;
  647. }
  648. .fr_box_item5:hover .frimg55 {
  649. display: block;
  650. }
  651. .fr_box_item5:hover .frimg5 {
  652. display: none;
  653. }
  654. .frimg66 {
  655. display: none;
  656. }
  657. .fr_box_item6:hover .frimg66 {
  658. display: block;
  659. }
  660. .fr_box_item6:hover .frimg6 {
  661. display: none;
  662. }
  663. .frimg77 {
  664. display: none;
  665. }
  666. .fr_box_item7:hover .frimg77 {
  667. display: block;
  668. }
  669. .fr_box_item7:hover .frimg7 {
  670. display: none;
  671. }
  672. .frimg88 {
  673. display: none;
  674. }
  675. .fr_box_item8:hover .frimg88 {
  676. display: block;
  677. }
  678. .fr_box_item8:hover .frimg8 {
  679. display: none;
  680. }