newIndex.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890
  1. html,
  2. body {
  3. width: 7168px !important;
  4. min-height: 2576px;
  5. height: 100%;
  6. font-size: 20px;
  7. color: #fff;
  8. font-family: 'Microsoft YaHei';
  9. background-image: url("../images/indexBg.png");
  10. background-repeat: no-repeat;
  11. background-size: 100% 100%;
  12. /* overflow-y: hidden; */
  13. }
  14. /* 强制去掉滚动条 */
  15. /* html {
  16. overflow-x: hidden !important;
  17. } */
  18. * {
  19. -webkit-user-select: none;
  20. -moz-user-select: none;
  21. -ms-user-select: none;
  22. user-select: none;
  23. }
  24. img *,
  25. *,
  26. *:before,
  27. *:after {
  28. padding: 0;
  29. margin: 0;
  30. box-sizing: border-box;
  31. }
  32. a {
  33. text-decoration: none;
  34. cursor: pointer;
  35. }
  36. [v-cloak] {
  37. display: none;
  38. }
  39. .app_box {
  40. width: 100%;
  41. height: 100%;
  42. }
  43. .box_item_title {
  44. width: 100%;
  45. height: 145px;
  46. background: url("../images/indexittle@2x.png") no-repeat;
  47. background-size: 100% 100%;
  48. display: flex;
  49. justify-content: center;
  50. align-items: center;
  51. }
  52. .box_item_title span {
  53. font-size: 72px;
  54. font-weight: bold;
  55. background: linear-gradient(-3deg, #99eeff 0%, #99eeff 30%, #ffffff 91%);
  56. -webkit-background-clip: text;
  57. -webkit-text-fill-color: transparent;
  58. }
  59. .box_item_main {
  60. width: 100%;
  61. height: calc(100% - 145px);
  62. display: flex;
  63. justify-content: space-between;
  64. align-items: center;
  65. padding: 30px 50px;
  66. box-sizing: border-box;
  67. }
  68. .box_left,
  69. .box_right {
  70. width: calc(40% - 30px);
  71. height: 100%;
  72. display: flex;
  73. flex-direction: column;
  74. justify-content: space-between;
  75. align-items: center;
  76. }
  77. .box_main {
  78. width: 20%;
  79. height: 100%;
  80. display: flex;
  81. flex-direction: column;
  82. justify-content: space-between;
  83. align-items: center;
  84. }
  85. .left_item {
  86. width: 100%;
  87. height: calc(20% - 15px);
  88. }
  89. .main_item_one {
  90. width: 100%;
  91. height: calc(65% - 10px);
  92. position: relative;
  93. }
  94. .main_item_one img {
  95. width: 250%;
  96. height: 100%;
  97. position: absolute;
  98. bottom: -10%;
  99. left: -72%;
  100. z-index: 0;
  101. }
  102. .svg_box {
  103. width: 100%;
  104. height: 100%;
  105. position: absolute;
  106. left: 0;
  107. top: 0;
  108. transform-origin: center bottom;
  109. transform-style: preserve-3d;
  110. }
  111. .svg_box_item {
  112. width: 700px;
  113. height: 700px;
  114. transform-origin: center top;
  115. transform: rotateX(70deg) scale(1.95);
  116. text-align: center;
  117. position: absolute;
  118. bottom: -337px;
  119. left: 360px;
  120. }
  121. .main_item {
  122. width: 100%;
  123. height: calc(20% - 10px);
  124. background: url("../images/rt-back.png") no-repeat;
  125. background-size: 100% 100%;
  126. padding: 30px;
  127. box-sizing: border-box;
  128. }
  129. .title {
  130. width: 200px;
  131. height: 65px;
  132. font-size: 35px;
  133. font-weight: bolder;
  134. text-align: center;
  135. line-height: 57px;
  136. box-sizing: border-box;
  137. border-radius: 10px;
  138. margin-bottom: 10px;
  139. }
  140. .left_main {
  141. width: 100%;
  142. height: calc(100% - 65px);
  143. }
  144. .left_main_else {
  145. width: 100%;
  146. height: calc(100% - 65px);
  147. display: flex;
  148. flex-direction: column;
  149. justify-content: space-between;
  150. }
  151. .left_main_top {
  152. width: 100%;
  153. height: 87%;
  154. display: flex;
  155. justify-content: space-between;
  156. align-items: center;
  157. }
  158. .left_main_top_left {
  159. width: calc(60% - 0px);
  160. height: calc(100% - 30px);
  161. background: url("../images/lb-back.png") no-repeat;
  162. background-size: 100% 100%;
  163. padding: 30px;
  164. box-sizing: border-box;
  165. }
  166. .left_main_top_right {
  167. width: calc(40% - 10px);
  168. height: calc(100% - 30px);
  169. background: url("../images/lb-back.png") no-repeat;
  170. background-size: 100% 100%;
  171. padding: 30px;
  172. box-sizing: border-box;
  173. }
  174. .left_main_btm {
  175. width: 100%;
  176. height: 13%;
  177. }
  178. .left_user_top {
  179. width: 100%;
  180. height: calc(14% - 10px);
  181. display: flex;
  182. justify-content: space-between;
  183. align-items: center;
  184. }
  185. .left_user_number {
  186. width: 25%;
  187. height: 100%;
  188. }
  189. .text_box {
  190. width: 100%;
  191. height: 100%;
  192. /* background: url("../images/man.png") no-repeat; */
  193. display: flex;
  194. flex-direction: column;
  195. justify-content: center;
  196. align-items: flex-start;
  197. position: relative;
  198. padding-left: 310px;
  199. box-sizing: border-box;
  200. }
  201. .text_box img {
  202. width: 60%;
  203. height: 100%;
  204. position: absolute;
  205. top: 50%;
  206. left: 50%;
  207. transform: translate(-50%, -50%);
  208. }
  209. .text_num {
  210. font-size: 40px;
  211. font-weight: bolder;
  212. font-style: italic;
  213. margin-top: -15px;
  214. color: #69C0FF;
  215. }
  216. .text_num span {
  217. font-size: 24px !important;
  218. }
  219. .text_title {
  220. font-size: 24px;
  221. }
  222. .left_user_main {
  223. width: 100%;
  224. height: calc(43% - 10px);
  225. display: flex;
  226. justify-content: space-between;
  227. }
  228. .left_user_main_item {
  229. width: calc(33% - 10px);
  230. height: 100%;
  231. padding: 20px;
  232. box-sizing: border-box;
  233. background: url("../images/rt-back.png") no-repeat;
  234. background-size: 100% 100%;
  235. display: flex;
  236. flex-direction: column;
  237. justify-content: space-between;
  238. align-items: center;
  239. }
  240. .left_salary_box,
  241. .left_salary_box_else {
  242. width: 100%;
  243. height: calc(50% - 10px);
  244. }
  245. .left_salary_box {
  246. background: url("../images/lb-back.png") no-repeat;
  247. background-size: 100% 100%;
  248. padding: 10px;
  249. box-sizing: border-box;
  250. }
  251. .left_salary_box_else {
  252. display: flex;
  253. justify-content: space-between;
  254. }
  255. .left_salary_item {
  256. width: calc(50% - 10px);
  257. height: 100%;
  258. background: url("../images/rt-back.png") no-repeat;
  259. background-size: 100% 100%;
  260. padding: 10px 30px;
  261. box-sizing: border-box;
  262. position: relative;
  263. }
  264. .title_box {
  265. position: absolute;
  266. right: 50px;
  267. top: 10px;
  268. font-size: 30px;
  269. z-index: 99;
  270. }
  271. .right_item {
  272. width: 100%;
  273. height: calc(25% - 10px);
  274. /* display: flex;
  275. justify-content: space-between;
  276. align-items: center; */
  277. }
  278. .right_item_else {
  279. width: 100%;
  280. height: calc(25% - 10px);
  281. /* display: flex;
  282. flex-direction: column;
  283. justify-content: space-between; */
  284. }
  285. .right_item_item_top {
  286. width: 100%;
  287. height: 100px;
  288. background-color: blueviolet;
  289. }
  290. .right_item_item_btm {
  291. width: 100%;
  292. height: calc(100% - 110px);
  293. display: flex;
  294. justify-content: space-between;
  295. }
  296. .right_item_item {
  297. width: calc(33% - 10px);
  298. height: 100%;
  299. background: url("../images/rt-back.png") no-repeat;
  300. background-size: 100% 100%;
  301. padding: 10px 30px;
  302. box-sizing: border-box;
  303. }
  304. .right_item_main {
  305. width: 100%;
  306. height: calc(100% - 70px);
  307. }
  308. .right_item_item_else {
  309. width: calc(50% - 10px);
  310. height: 100%;
  311. }
  312. .scroll_board_bg {
  313. width: 100%;
  314. height: 80%;
  315. background: url("../images/rt-back.png") no-repeat;
  316. background-size: 100% 100%;
  317. padding: 30px;
  318. box-sizing: border-box;
  319. }
  320. .right_echarts {
  321. width: calc(50% - 10px);
  322. height: 100%;
  323. background: url("../images/rt-back.png") no-repeat;
  324. background-size: 100% 100%;
  325. padding: 30px;
  326. box-sizing: border-box;
  327. }
  328. .right_echarts_else {
  329. width: calc(50% - 10px);
  330. height: 100%;
  331. background: url("../images/rt-back.png") no-repeat;
  332. background-size: 100% 100%;
  333. padding: 30px;
  334. box-sizing: border-box;
  335. }
  336. .three_box {
  337. width: 100%;
  338. height: calc(100% - 65px);
  339. display: flex;
  340. justify-content: space-between;
  341. align-items: center;
  342. }
  343. .left_main_btm .dv-scroll-board div {
  344. font-size: 32px !important;
  345. }
  346. .right_btm_item {
  347. width: 100%;
  348. height: calc(100% - 65px);
  349. }
  350. .right_btm_item_else {
  351. width: 100%;
  352. height: 100%;
  353. display: flex;
  354. justify-content: center;
  355. align-items: center;
  356. }
  357. .right_item_btm_box {
  358. width: calc(40% - 10px);
  359. height: 100%;
  360. background: url("../images/rt-back.png") no-repeat;
  361. background-size: 100% 100%;
  362. padding: 20px;
  363. box-sizing: border-box;
  364. }
  365. .image_box_else {
  366. width: 280px;
  367. height: 280px;
  368. position: relative;
  369. }
  370. .image_box_else span {
  371. font-size: 60px;
  372. font-weight: bolder;
  373. position: absolute;
  374. top: 50%;
  375. left: 50%;
  376. transform: translate(-50%, -50%);
  377. z-index: 999;
  378. }
  379. .image_box_else img {
  380. animation: fadenum 8s infinite linear;
  381. }
  382. .image_box {
  383. width: calc(50% - 10px);
  384. height: 70%;
  385. display: flex;
  386. flex-direction: column;
  387. justify-content: space-around;
  388. align-items: center;
  389. }
  390. .box_item {
  391. width: 100%;
  392. height: 100px;
  393. display: flex;
  394. align-items: center;
  395. justify-content: flex-start;
  396. margin-left: 100px;
  397. font-size: 40px;
  398. text-indent: 50px;
  399. }
  400. .box_item img {
  401. width: 100px;
  402. height: 100px;
  403. }
  404. .box_item div span {
  405. font-size: 50px;
  406. font-weight: bolder;
  407. color: #69c0ff;
  408. font-style: italic;
  409. font-weight: bold;
  410. margin: 0 10px;
  411. }
  412. .top {
  413. width: 100%;
  414. height: 140px;
  415. font-size: 40px;
  416. }
  417. .flex {
  418. display: flex;
  419. }
  420. .justify-between {
  421. justify-content: space-between;
  422. }
  423. .items-center {
  424. align-items: center;
  425. }
  426. .top-img {
  427. width: 127px;
  428. height: 127px;
  429. margin-right: 15px;
  430. }
  431. .top-text {
  432. font-size: 60px;
  433. color: #69c0ff;
  434. font-style: italic;
  435. font-weight: bold;
  436. display: inline-block;
  437. margin: 0 15px;
  438. }
  439. .right_bg_item {
  440. width: calc(33% - 20px);
  441. height: 100%;
  442. background-image: url("../images/bottom-right.png");
  443. background-repeat: no-repeat;
  444. background-size: 100% 100%;
  445. display: flex;
  446. flex-direction: column;
  447. justify-content: center;
  448. align-items: center;
  449. padding-top: 50px;
  450. box-sizing: border-box;
  451. }
  452. .bg_item_gif {
  453. width: 230px;
  454. height: 300px;
  455. }
  456. .bg_item_gif img {
  457. width: 100%;
  458. height: 100%;
  459. }
  460. .bg_item_num {
  461. font-size: 48px;
  462. font-weight: bolder;
  463. margin-bottom: -90px;
  464. z-index: 9;
  465. }
  466. .bg_item_title {
  467. font-size: 28px;
  468. font-weight: 600;
  469. }
  470. .right_item_item_else_title {
  471. width: 100%;
  472. height: 20%;
  473. display: flex;
  474. justify-content: center;
  475. align-items: center;
  476. position: relative;
  477. }
  478. .right_item_item_else_title img {
  479. width: 32%;
  480. height: 85%;
  481. }
  482. .title_right {
  483. width: 100%;
  484. height: 100%;
  485. position: absolute;
  486. display: flex;
  487. justify-content: center;
  488. align-items: center;
  489. font-size: 30px;
  490. }
  491. .title_right span {
  492. color: rgb(69, 218, 209);
  493. }
  494. .big_color {
  495. display: inline-block;
  496. font-size: 40px;
  497. font-weight: bolder;
  498. margin: 0 0 0 25px;
  499. }
  500. .echarts {
  501. width: 100%;
  502. height: 100%;
  503. }
  504. .echarts_else {
  505. width: 100%;
  506. height: calc(100% - 65px);
  507. }
  508. .echarts_else_top {
  509. width: 100%;
  510. height: calc(20%px);
  511. display: flex;
  512. justify-content: space-around;
  513. align-items: center;
  514. }
  515. .echarts_else_top_item {
  516. width: calc(50% - 150px);
  517. height: 100%;
  518. background: rgba(0, 179, 254, 0.25);
  519. border: 1px solid #69C0FF;
  520. border-radius: 10px;
  521. display: flex;
  522. justify-content: center;
  523. align-items: center;
  524. }
  525. .item_left_t {
  526. width: 65px;
  527. height: 65px;
  528. }
  529. .item_right_t {
  530. padding-left: 30px;
  531. display: flex;
  532. flex-direction: column;
  533. justify-content: space-around;
  534. align-items: flex-start;
  535. }
  536. .item_right_t div:nth-child(1) {
  537. font-size: 26px;
  538. font-family: Source Han Sans CN;
  539. font-weight: 400;
  540. color: #FFFFFF;
  541. }
  542. .item_right_t div:nth-child(2) {
  543. font-size: 30px;
  544. font-family: HelveticaNeueLT;
  545. font-weight: bolder;
  546. color: #69C0FF;
  547. }
  548. .item_right_t div:nth-child(2) span {
  549. font-size: 24px;
  550. font-family: Source Han Sans CN;
  551. font-weight: 400;
  552. color: #69C0FF;
  553. }
  554. .echarts_else_btm {
  555. width: 100%;
  556. height: calc(80% - 20px);
  557. }
  558. .left_user_title {
  559. width: 100%;
  560. height: 40px;
  561. display: flex;
  562. flex-direction: column;
  563. justify-content: space-between;
  564. align-items: flex-start;
  565. }
  566. .icon_title .title {
  567. width: calc(100% - 40px);
  568. height: 100%;
  569. text-align: left;
  570. text-indent: 20px;
  571. }
  572. .icon {
  573. width: 20px;
  574. height: 70%;
  575. }
  576. img {
  577. width: 100%;
  578. height: 100%;
  579. }
  580. .icon_title {
  581. width: 100%;
  582. height: calc(100% - 10px);
  583. display: flex;
  584. justify-content: flex-start;
  585. align-items: center;
  586. }
  587. .line {
  588. width: 100%;
  589. height: 5px;
  590. }
  591. .echarts_90 {
  592. width: 100%;
  593. height: 80%;
  594. }
  595. .flex_column {
  596. display: flex;
  597. flex-direction: column;
  598. justify-content: space-between;
  599. align-items: flex-start;
  600. }
  601. .main_item_echarts {
  602. width: 100%;
  603. height: calc(100% - 90px);
  604. }
  605. .right_item_item_else_top {
  606. width: 100%;
  607. height: calc(20% - 10px);
  608. }
  609. .right_item_item_else_main {
  610. width: 100%;
  611. height: calc(80%);
  612. background: url("../images/rt-back.png") no-repeat;
  613. background-size: 100% 100%;
  614. padding: 30px;
  615. box-sizing: border-box;
  616. }
  617. .w_100 {
  618. width: 100%;
  619. height: calc(100% - 65px);
  620. }
  621. .w_100_right {
  622. width: 100%;
  623. height: calc(100% - 60px);
  624. display: flex;
  625. justify-content: space-between;
  626. align-items: center;
  627. }
  628. .flex_sb {
  629. display: flex;
  630. justify-content: space-between;
  631. }
  632. .right_echarts_item {
  633. width: 100%;
  634. height: calc(100% - 65px);
  635. }
  636. .right_btm_item_box {
  637. width: calc(60% - 10px);
  638. height: 100%;
  639. background: url("../images/rt-back.png") no-repeat;
  640. background-size: 100% 100%;
  641. padding: 17px;
  642. box-sizing: border-box;
  643. }
  644. .echarts_map {
  645. width: 100%;
  646. height: 100%;
  647. position: absolute;
  648. top: 0;
  649. left: 0;
  650. }
  651. .tooltip-cont {
  652. margin: -15px;
  653. border: 1px solid #3699ff;
  654. border-radius: 0px;
  655. padding: 10px 15px 10px;
  656. background-color: #0725558a !important;
  657. }
  658. .tooltip-cont p {
  659. line-height: 1.8;
  660. color: #f3f3f3;
  661. position: relative;
  662. padding-left: 12px;
  663. }
  664. .tooltip-cont p::before {
  665. position: absolute;
  666. display: inline-block;
  667. content: '';
  668. left: 0px;
  669. top: 10px;
  670. width: 5px;
  671. height: 5px;
  672. border-radius: 50%;
  673. background-color: #40a9ff;
  674. }
  675. .tooltip-cont span {
  676. color: #E6C50B;
  677. font-weight: bolder;
  678. }
  679. .dv-scroll-board div {
  680. font-size: 28px;
  681. }
  682. .main_item_one_info {
  683. width: 100%;
  684. height: 150px;
  685. display: flex;
  686. justify-content: space-between;
  687. align-items: center;
  688. position: absolute;
  689. top: 0;
  690. left: 0;
  691. }
  692. .main_info_item {
  693. width: 370px;
  694. height: 100%;
  695. display: flex;
  696. justify-content: center;
  697. align-items: center;
  698. }
  699. .main_info_item_img {
  700. width: 180px;
  701. height: 100px;
  702. background-color: #40a9ff;
  703. background: url("../images/newImage/loginUser.png") no-repeat;
  704. background-size: cover;
  705. margin: 0 15px;
  706. }
  707. .main_info_item_title {
  708. display: flex;
  709. flex-direction: column;
  710. justify-content: space-around;
  711. align-items: flex-start;
  712. }
  713. .main_info_item_title div:nth-child(1) {
  714. font-size: 36px;
  715. font-family: Helvetica Neue Extra Black Cond;
  716. font-weight: 600;
  717. color: #6BC1FF;
  718. }
  719. .main_info_item_title div:nth-child(2) {
  720. font-size: 25px;
  721. font-family: Source Han Sans CN;
  722. font-weight: 500;
  723. color: #FFFFFF;
  724. }
  725. @keyframes fadenum {
  726. 100% {
  727. transform: rotate(360deg);
  728. }
  729. }