investHomeGroup.css 24 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339
  1. html,
  2. body {
  3. width: 7680px;
  4. min-height: 2120px;
  5. height: 100%;
  6. font-size: 20px;
  7. color: #fff;
  8. font-family: 'Microsoft YaHei';
  9. overflow-y: hidden;
  10. }
  11. *,
  12. *:before,
  13. *:after {
  14. padding: 0;
  15. margin: 0;
  16. box-sizing: border-box;
  17. }
  18. a {
  19. text-decoration: none;
  20. cursor: pointer;
  21. }
  22. [v-cloak] {
  23. display: none;
  24. }
  25. .pointer {
  26. cursor: pointer;
  27. }
  28. #app {
  29. background: url('../groupImg/page-bg.png') center center no-repeat;
  30. background-size: 100% 100%;
  31. padding-top: 10px;
  32. width: 100%;
  33. height: 100%;
  34. overflow: hidden;
  35. color: #fff;
  36. display: grid;
  37. grid-template-columns: repeat(3, 1fr);
  38. padding: 10px;
  39. position: relative;
  40. }
  41. #app > div {
  42. width: 100%;
  43. height: 100%;
  44. }
  45. div {
  46. overflow: hidden;
  47. -webkit-user-select: none;
  48. -moz-user-select: none;
  49. -ms-user-select: none;
  50. user-select: none;
  51. }
  52. .my-header {
  53. position: relative;
  54. height: 70px;
  55. line-height: 70px;
  56. background: url('../groupImg/header-bg.png') center center no-repeat;
  57. background-size: 100% 100%;
  58. text-align: center;
  59. font-weight: bold;
  60. font-size: 32px;
  61. font-weight: bold;
  62. }
  63. .my-header span {
  64. background: linear-gradient(-3deg, #99eeff 0%, #99eeff 30%, #ffffff 91%);
  65. -webkit-background-clip: text;
  66. -webkit-text-fill-color: transparent;
  67. }
  68. .my-header span.right {
  69. position: absolute;
  70. right: 100px;
  71. top: 0px;
  72. font-size: 16px;
  73. }
  74. .my-header div.left {
  75. position: absolute;
  76. width: 120px;
  77. height: 50px;
  78. left: 100px;
  79. top: 0px;
  80. font-size: 20px;
  81. color: #fff;
  82. z-index: 9999;
  83. background: url('../groupImg/frame.png') center center no-repeat;
  84. background-size: 100% 100%;
  85. display: flex;
  86. align-items: center;
  87. justify-content: center;
  88. line-height: normal;
  89. }
  90. .my-header div.left > img {
  91. margin-left: 10px;
  92. width: 18px;
  93. }
  94. .pullBox {
  95. position: absolute;
  96. left: 100px;
  97. width: 100px;
  98. z-index: 999999;
  99. display: flex;
  100. flex-direction: column;
  101. top: 60px;
  102. border-radius: 5px !important;
  103. border: 1px solid #237386;
  104. border-bottom: 0;
  105. }
  106. .pullBox span {
  107. border-bottom: 1px solid #237386;
  108. transition: all 0.2s;
  109. }
  110. .pullBox span:hover {
  111. /* color:red !important; */
  112. font-size: 35px;
  113. }
  114. .LeftBox,
  115. .CenterBox,
  116. .RightBox {
  117. padding: 0 20px;
  118. }
  119. .CenterBox > .main {
  120. width: 100%;
  121. height: calc(100% - 70px);
  122. display: grid;
  123. grid-template-columns: 3fr 4fr 3fr;
  124. gap: 10px;
  125. /* background: url('../groupImg/back-center.png') center center no-repeat; */
  126. background-size: 100% 100%;
  127. }
  128. .LeftBox > .main {
  129. width: 100%;
  130. height: calc(100% - 70px);
  131. display: grid;
  132. grid-template-columns: repeat(2, 1fr);
  133. grid-template-rows: repeat(3, 1fr);
  134. gap: 10px;
  135. }
  136. .RightBox > .main {
  137. width: 100%;
  138. height: calc(100% - 70px);
  139. display: grid;
  140. grid-template-rows: 5fr 8fr 11fr;
  141. gap: 10px;
  142. }
  143. .LeftBox .card {
  144. width: 100%;
  145. height: 100%;
  146. overflow: hidden;
  147. background: url('../groupImg/frame1.png') center center no-repeat;
  148. background-size: 100% 100%;
  149. }
  150. .title {
  151. position: relative;
  152. text-align: center;
  153. height: 100px;
  154. line-height: 100px;
  155. }
  156. .title .text {
  157. font-size: 30px;
  158. font-weight: bold;
  159. color: #05fbfe;
  160. text-shadow: 0px 2px 10px rgba(10, 30, 52, 0.48);
  161. background: linear-gradient(0deg, #ffffff 0%, #63dcff 0%, #e0f3ff 100%);
  162. -webkit-background-clip: text;
  163. -webkit-text-fill-color: transparent;
  164. position: relative;
  165. }
  166. .title .text::before {
  167. position: absolute;
  168. content: ' ';
  169. top: 15px;
  170. left: -40px;
  171. width: 30px;
  172. height: 10px;
  173. background: url('../groupImg/title-left2.png') no-repeat;
  174. }
  175. .title .text::after {
  176. position: absolute;
  177. content: ' ';
  178. top: 15px;
  179. right: -40px;
  180. width: 30px;
  181. height: 10px;
  182. background: url('../groupImg/title-right2.png') no-repeat;
  183. }
  184. .content {
  185. height: calc(100% - 110px);
  186. padding: 0 15px 10px;
  187. }
  188. .left-lt .content {
  189. display: grid;
  190. grid-template-columns: repeat(2, 1fr);
  191. gap: 10px;
  192. }
  193. .left-lt .content > div:first-child {
  194. display: grid;
  195. gap: 10px;
  196. grid-template-rows: repeat(2, 1fr);
  197. }
  198. .LeftBox .content-left-top {
  199. width: 100%;
  200. display: flex;
  201. align-items: center;
  202. height: 100%;
  203. }
  204. .LeftBox .item2 {
  205. width: 80%;
  206. display: flex;
  207. flex-direction: column;
  208. align-items: center;
  209. }
  210. .LeftBox .item2 .item2-title {
  211. font-weight: bold;
  212. font-size: 30px;
  213. }
  214. .LeftBox .item2 .item2-title span {
  215. font-weight: bold;
  216. font-size: 20px;
  217. }
  218. .LeftBox .item2 .item2-img {
  219. width: 150px;
  220. height: 150px;
  221. /* margin-top: -20px; */
  222. }
  223. .LeftBox .item2 .item2-text {
  224. color: #fff;
  225. font-size: 30px;
  226. }
  227. .LeftBox .content-left-top {
  228. width: 100%;
  229. display: flex;
  230. align-items: center;
  231. height: 100%;
  232. }
  233. .LeftBox .content-left-bottom {
  234. width: 100%;
  235. height: 100%;
  236. display: flex;
  237. align-items: center;
  238. justify-content: center;
  239. }
  240. .LeftBox .total {
  241. text-align: center;
  242. width: 260px;
  243. height: 40px;
  244. position: absolute;
  245. left: calc(50% - 130px);
  246. bottom: 5%;
  247. font-weight: bold;
  248. color: #69c0ff;
  249. font-size: 30px;
  250. z-index: 999 !important;
  251. }
  252. .LeftBox .commonBack,
  253. .RightBox .commonBack {
  254. background-color: #092853;
  255. border-radius: 15px;
  256. }
  257. .LeftBox .left-rt .content {
  258. display: grid;
  259. grid-template-rows: repeat(2, 1fr);
  260. gap: 10px;
  261. }
  262. .LeftBox .left-rt .content > div:first-child {
  263. display: grid;
  264. gap: 10px;
  265. grid-template-columns: 3fr 4fr 4fr;
  266. }
  267. .LeftBox .left-rt .item3 {
  268. display: flex;
  269. flex-direction: column;
  270. align-items: center;
  271. }
  272. .LeftBox .left-rt .item3 .item3-title {
  273. font-weight: bold;
  274. font-size: 30px;
  275. color: #69c0ff;
  276. display: flex;
  277. align-items: center;
  278. height: 30%;
  279. }
  280. .LeftBox .left-rt .item3 .item3-title span {
  281. font-size: 20px;
  282. font-weight: bold;
  283. }
  284. .left-rt .item3 .item3-img {
  285. margin-top: -20px;
  286. width: 100px;
  287. height: 100px;
  288. }
  289. .LeftBox .left-rt .item3 .item3-text {
  290. font-size: 14px;
  291. color: #fff;
  292. }
  293. .LeftBox .left-rt .item4-text {
  294. font-size: 20px;
  295. height: calc(70% - 80px);
  296. display: flex;
  297. align-items: center;
  298. flex-direction: column;
  299. justify-content: center;
  300. }
  301. .LeftBox .left-rt .item4 .item4-title {
  302. position: relative;
  303. color: #69c0ff;
  304. font-size: 30px;
  305. display: flex;
  306. align-items: center;
  307. height: 30%;
  308. justify-content: center;
  309. }
  310. /* .LeftBox .left-rt .item4 .item4-title::before {
  311. content: '';
  312. position: absolute;
  313. left: 0;
  314. top: 50%;
  315. transform: translate(0, -50%);
  316. width: 5px;
  317. height: 5px;
  318. border-radius: 50%;
  319. background-color: #69c0ff;
  320. } */
  321. .item4 {
  322. height: 100%;
  323. }
  324. .LeftBox .left-rt .item4 .item4-con {
  325. display: flex;
  326. align-items: center;
  327. justify-content: space-around;
  328. height: 70%;
  329. }
  330. .LeftBox .left-rt .item4 .item4-con .item {
  331. height: 100%;
  332. }
  333. .LeftBox .left-rt .item4 .item4-con .item .title {
  334. color: #69c0ff;
  335. font-weight: bold;
  336. font-size: 30px;
  337. height: calc(100% - 100px);
  338. display: flex;
  339. align-items: center;
  340. justify-content: center;
  341. }
  342. .LeftBox .left-rt .item4 .item4-con .item .title span {
  343. font-weight: bold;
  344. font-size: 20px;
  345. }
  346. .LeftBox .left-rt .item4 .item4-con .item .text {
  347. font-size: 30px;
  348. color: #fff;
  349. height: 100px;
  350. display: flex;
  351. justify-content: center;
  352. align-items: center;
  353. margin-top: -10px;
  354. }
  355. .LeftBox .left-rtb {
  356. display: grid;
  357. gap: 10px;
  358. grid-template-columns: repeat(2, 1fr);
  359. }
  360. .LeftBox .left-rc {
  361. display: grid;
  362. gap: 10px;
  363. grid-template-columns: repeat(2, 1fr);
  364. grid-template-rows: repeat(2, 1fr);
  365. }
  366. .LeftBox .left-lb,
  367. .left-rb {
  368. display: grid;
  369. gap: 10px;
  370. grid-template-columns: repeat(2, 1fr);
  371. }
  372. .LeftBox .light {
  373. background-color: #79a4db6c !important;
  374. }
  375. .CenterBox .center-l .card,
  376. .CenterBox .center-r .card {
  377. width: 100%;
  378. height: 100%;
  379. overflow: hidden;
  380. background: url('../groupImg/frame2.png') center center no-repeat;
  381. background-size: 100% 100%;
  382. }
  383. .CenterBox .center-l,
  384. .CenterBox .center-r {
  385. display: grid;
  386. gap: 10px;
  387. grid-template-rows: repeat(3, 1fr);
  388. }
  389. .CenterBox .boxs {
  390. display: grid;
  391. grid-template-columns: 1fr 2fr 2fr;
  392. grid-template-rows: 2fr 2fr;
  393. padding: 10px;
  394. color: #69c0ff;
  395. height: 100%;
  396. }
  397. .CenterBox .boxs > .numberContent {
  398. flex: 0 0 50%;
  399. background: url('../groupImg/left1-bg.png') no-repeat center;
  400. background-size: 100% 100%;
  401. padding: 20px 30px;
  402. display: flex;
  403. justify-content: center;
  404. align-items: center;
  405. flex-direction: column;
  406. }
  407. .CenterBox .boxs > .numberContent > p {
  408. width: 80%;
  409. }
  410. .CenterBox .boxs > .numberContent > p:nth-child(1) {
  411. text-align: center;
  412. }
  413. .CenterBox .boxs > .numberContent > p:nth-child(2) {
  414. margin-top: 25px;
  415. text-align: center;
  416. }
  417. .CenterBox .boxs .name {
  418. color: #f3f3f3;
  419. font-size: 30px;
  420. }
  421. .CenterBox .boxs .change {
  422. color: #32edaa;
  423. }
  424. .CenterBox .boxs .change.up {
  425. color: #ed3248;
  426. }
  427. .CenterBox .boxs .num {
  428. font-size: 36px;
  429. font-weight: bold;
  430. margin-right: 5px;
  431. }
  432. .CenterBox .boxs .el-icon-more {
  433. font-size: 35px;
  434. }
  435. .CenterBox .top {
  436. display: flex;
  437. justify-content: space-between;
  438. }
  439. .CenterBox .top .box {
  440. flex: 1;
  441. margin: 0 10px;
  442. display: flex;
  443. flex-direction: column;
  444. align-items: center;
  445. color: #69c0ff;
  446. }
  447. /* .CenterBox .t {
  448. padding: 15px 0;
  449. display: flex;
  450. align-items: center;
  451. background-color: rgba(59,211,255,0.05);
  452. } */
  453. .CenterBox .t {
  454. padding: 25px 0;
  455. display: flex;
  456. font-size: 30px;
  457. font-weight: bold;
  458. align-items: center;
  459. justify-content: center;
  460. background-color: #092853;
  461. }
  462. .CenterBox .b {
  463. padding: 15px 0;
  464. display: flex;
  465. align-items: center;
  466. justify-content: space-around;
  467. background-color: #092853;
  468. padding: 15px 0;
  469. }
  470. .CenterBox .b span {
  471. color: #69c0ff;
  472. font-size: 34px;
  473. font-weight: 900;
  474. }
  475. .CenterBox .t img {
  476. margin-right: 10px;
  477. }
  478. .CenterBox .box > div {
  479. width: 100%;
  480. }
  481. .CenterBox .box > img {
  482. width: 40px;
  483. }
  484. .CenterBox .box > div p {
  485. font-size: 30px;
  486. color: #e1e3ef;
  487. }
  488. .CenterBox .box > div span {
  489. display: inline-block;
  490. font-size: 36px;
  491. margin-right: 5px;
  492. font-weight: bolder;
  493. margin-top: 5px;
  494. }
  495. .CenterBox .map-box {
  496. height: 100%;
  497. position: relative;
  498. padding: 30px 0;
  499. }
  500. .CenterBox .mapBack {
  501. position: absolute;
  502. width: 60px;
  503. height: 60px;
  504. top: 100px;
  505. right: 100px;
  506. z-index: 99999999;
  507. }
  508. .CenterBox .status {
  509. position: absolute;
  510. /* bottom: 20px; */
  511. bottom: 250px;
  512. right: 50px;
  513. background-color: rgba(3, 10, 12, 0.46);
  514. border: 1px solid #4A57CF;
  515. }
  516. .CenterBox .status2 {
  517. position: absolute;
  518. bottom: 150px;
  519. background-color: rgba(3, 10, 12, 0.46);
  520. border: 1px solid #4A57CF;
  521. left: 50px;
  522. }
  523. .CenterBox .status p,
  524. .CenterBox .status2 p {
  525. background-color: #02397f;
  526. line-height: 55px;
  527. text-align: center;
  528. font-size: 30px;
  529. color: #69c0ff;
  530. }
  531. tspan {
  532. font-weight: normal !important;
  533. }
  534. .CenterBox .status li,
  535. .CenterBox .status2 li {
  536. line-height: 40px;
  537. padding-right: 15px;
  538. list-style: none;
  539. position: relative;
  540. font-size: 26px;
  541. }
  542. .CenterBox .status li::before,
  543. .CenterBox .status2 li::before {
  544. content: '';
  545. position: absolute;
  546. left: -15px;
  547. top: 50%;
  548. transform: translate(0, -50%);
  549. width: 5px;
  550. height: 5px;
  551. background-color: #69c0ff;
  552. border-radius: 50%;
  553. }
  554. .CenterBox .status i {
  555. font-size: 20px;
  556. font-weight: bold;
  557. color: #69c0ff;
  558. }
  559. .CenterBox .tooltip-cont {
  560. margin: -15px;
  561. border: 1px solid #69c0ff;
  562. border-radius: 8px;
  563. padding: 15px;
  564. background-color: rgb(39 122 145 / 0.36);
  565. font-size: 30px;
  566. }
  567. .CenterBox .tooltip-cont p {
  568. line-height: 1.8;
  569. color: #f3f3f3;
  570. position: relative;
  571. padding-left: 12px;
  572. }
  573. .CenterBox .tooltip-cont p::before {
  574. position: absolute;
  575. display: inline-block;
  576. content: '';
  577. left: -10px;
  578. top: 20px;
  579. width: 15px;
  580. height: 15px;
  581. border-radius: 50%;
  582. background-color: #69c0ff;
  583. }
  584. .CenterBox .tooltip-cont span {
  585. color: #69c0ff;
  586. }
  587. .CenterBox .numberTitle {
  588. writing-mode: vertical-rl;
  589. font-size: 30px;
  590. display: flex;
  591. justify-content: center;
  592. align-items: center;
  593. font-weight: bold;
  594. }
  595. .RightBox .right-t {
  596. display: grid;
  597. gap: 10px;
  598. grid-template-columns: 3fr 1fr;
  599. background: url('../groupImg/langBack.png') no-repeat center;
  600. background-size: 100% 100%;
  601. padding: 10px;
  602. }
  603. .RightBox .right-c,
  604. .RightBox .right-b {
  605. display: grid;
  606. gap: 10px;
  607. grid-template-columns: repeat(2, 1fr);
  608. }
  609. .RightBox .right-c > div,
  610. .RightBox .right-b > div {
  611. background: url('../groupImg/cBack.png') no-repeat center;
  612. background-size: 100% 100%;
  613. padding: 10px;
  614. }
  615. .RightBox .top-lb {
  616. padding: 0px 30px;
  617. display: grid;
  618. /* grid-template-columns: repeat(11, 1fr); */
  619. grid-template-columns: 2.5fr 1fr 2.5fr 1fr 2.5fr 1fr 2.5fr 1fr 2.5fr 1fr 2.5fr;
  620. gap: 10px;
  621. padding-bottom: 20px;
  622. }
  623. .RightBox .top-lb > .topCard:nth-child(odd) > div:first-child,
  624. .RightBox .top-rb > .topCard:nth-child(odd) > div:first-child {
  625. width: 190px;
  626. height: 190px;
  627. background-size: 100% 100%;
  628. }
  629. .RightBox .top-lb > .topCard:nth-child(even) > div:first-child,
  630. .RightBox .top-rb > .topCard:nth-child(even) > div:first-child {
  631. width: 100px;
  632. height: 100px;
  633. background-size: 100% 100%;
  634. }
  635. .RightBox .titleBackBlue {
  636. background: url('../groupImg/completed.png') no-repeat center;
  637. background-size: 95% 95%;
  638. }
  639. .RightBox .titleBackYellow {
  640. background: url('../groupImg/completed2.png') no-repeat center;
  641. background-size: 95% 95%;
  642. }
  643. .RightBox .top-rb {
  644. padding: 0px 30px;
  645. display: grid;
  646. grid-template-columns: 2.5fr 1fr 2.5fr;
  647. gap: 10px;
  648. padding-bottom: 20px;
  649. }
  650. .RightBox .top-lb > .topCard:nth-child(even) > div:first-child {
  651. background: url('../groupImg/completedDot.png') no-repeat center;
  652. background-size: 100% auto;
  653. background-position: 0 25%;
  654. }
  655. .RightBox .top-rb > .topCard:nth-child(even) > div:first-child {
  656. background: url('../groupImg/completedDot.png') no-repeat;
  657. background-size: 100% auto;
  658. background-position: 0 35%;
  659. }
  660. .RightBox .centerBack {
  661. background: url('../groupImg/back2.png') no-repeat;
  662. background-size: 100% 100%;
  663. }
  664. .RightBox .center-l > div:nth-child(2) {
  665. grid-template-columns: repeat(3, 1fr);
  666. gap: 10px;
  667. }
  668. /* .RightBox .center-l > div:nth-child(2) div {
  669. background: url('../groupImg/center-left-list-back.png') no-repeat;
  670. background-size: 100% 100%;
  671. text-align: center;
  672. padding: 10%;
  673. } */
  674. .RightBox .right-cl > div {
  675. background: url('../groupImg/center-left-list-back.png') no-repeat;
  676. background-size: 100% 100%;
  677. padding: 10%;
  678. }
  679. .RightBox .right-cl {
  680. display: grid;
  681. }
  682. .RightBox .center-l-title {
  683. width: 100%;
  684. height: 17%;
  685. margin-top: 3%;
  686. font-size: 30px;
  687. font-weight: bold;
  688. }
  689. .RightBox .center-l-list {
  690. height: 30%;
  691. margin: 8% 0;
  692. background: url('../groupImg/project.png') no-repeat center;
  693. background-size: 100% auto;
  694. font-size: 26px;
  695. }
  696. .RightBox .center-l-list2 {
  697. height: 25%;
  698. background: url('../groupImg/pin.png') no-repeat center;
  699. background-size: 100% auto;
  700. font-size: 26px;
  701. }
  702. .RightBox .right-br {
  703. display: grid;
  704. gap: 10px;
  705. grid-template-rows: repeat(2, 1fr);
  706. }
  707. .RightBox .right-brt {
  708. display: grid;
  709. gap: 10px;
  710. grid-template-columns: repeat(2, 1fr);
  711. }
  712. .RightBox .flotage {
  713. width: 220px;
  714. height: 50px;
  715. background-color: rgba(54, 60, 67, 0.4);
  716. display: flex;
  717. flex-direction: column;
  718. justify-content: space-around;
  719. padding: 10px;
  720. /* border: 1px solid #557e81; */
  721. top: 60px;
  722. border-radius: 5px;
  723. transition: all 0.2s;
  724. }
  725. .tip-box {
  726. position: absolute;
  727. width: 2000px !important;
  728. height: 1400px !important;
  729. top: calc(50% - 700px);
  730. left: calc(50% - 1000px);
  731. background: url('../groupImg/popup.png') no-repeat center;
  732. background-color: #133b65;
  733. background-size: 100% 100%;
  734. padding: 200px 100px 100px 100px;
  735. border-radius: 55px;
  736. z-index: 9999999999;
  737. }
  738. .titleImg {
  739. width: 100%;
  740. height: 100%;
  741. border-radius: 10px;
  742. }
  743. .popLeft,
  744. .popright {
  745. height: 90%;
  746. width: 50%;
  747. }
  748. .popright {
  749. right: 0;
  750. }
  751. .poptitle {
  752. top: 60px;
  753. left: calc(50% - 210px);
  754. width: 400px;
  755. text-align: center;
  756. font-size: 30px;
  757. font-weight: bolder;
  758. background: linear-gradient(-3deg, #99eeff 0%, #99eeff 30%, #ffffff 91%);
  759. -webkit-background-clip: text;
  760. -webkit-text-fill-color: transparent;
  761. }
  762. .doubleTip {
  763. display: grid;
  764. grid-template-rows: repeat(2, 1fr);
  765. gap: 10px;
  766. }
  767. .tip2 {
  768. width: 100%;
  769. height: 100%;
  770. display: grid;
  771. grid-template-columns: 60% 40%;
  772. /* grid-template-rows: 1fr 1fr; */
  773. grid-gap: 10px;
  774. }
  775. .tip-down {
  776. position: absolute;
  777. top: 10px;
  778. right: 30px;
  779. width: 50px;
  780. text-align: center;
  781. height: 50px;
  782. line-height: 50px;
  783. cursor: pointer;
  784. font-size: 60px;
  785. }
  786. .row-item,
  787. .header-item {
  788. font-size: 20px !important;
  789. }
  790. .tip2-list {
  791. height: 100%;
  792. display: grid;
  793. grid-template-rows: repeat(5, minmax(0, 1fr));
  794. background-color: #092853;
  795. padding: 20px 20px;
  796. font-size: 30px;
  797. border-radius: 15px;
  798. }
  799. .tip2-list > div {
  800. width: 100%;
  801. height: 100%;
  802. display: flex;
  803. justify-content: space-between;
  804. align-items: center;
  805. }
  806. .tip2-list > div:nth-child(2),
  807. .tip2-list > div:nth-child(4) {
  808. border-top: 1px solid #69c0ff;
  809. border-bottom: 1px solid #69c0ff;
  810. }
  811. .total3 {
  812. bottom: 15%;
  813. }
  814. .total {
  815. text-align: center;
  816. position: absolute;
  817. display: flex;
  818. align-items: center;
  819. justify-content: center;
  820. height: 350px;
  821. bottom: 0;
  822. font-size: 30px;
  823. font-weight: bold;
  824. color: #69c0ff;
  825. z-index: 999;
  826. width: 100%;
  827. }
  828. .iframeCss{
  829. transform: scale(1.4);
  830. position: absolute;
  831. left: calc( 50% - 960px );
  832. top:calc( 50% - 470px );
  833. }
  834. .productTip {
  835. /* height: ; */
  836. height: 1800px !important;
  837. width: calc( 1500px / 9 * 16 + 200px) !important;
  838. top: calc(50% - 900px);
  839. left: calc(50% - ( 1500px / 9 * 16 + 200px) / 2);
  840. z-index: 99999999999 !important;
  841. }
  842. /* .productTip .header-item,
  843. .productTip .ceil {
  844. width: calc(100% / 6) !important;
  845. } */
  846. .productPoptitle {
  847. font-size: 40px !important;
  848. top: 80px !important;
  849. }
  850. .productTip .row-item,
  851. .productTip .header-item {
  852. font-size: 30px !important;
  853. }
  854. .ballLight {
  855. width: 110px;
  856. height: auto;
  857. z-index: 999 !important;
  858. left: 170px;
  859. top: 80px;
  860. }
  861. .ballLight2 {
  862. width: 150px;
  863. height: auto;
  864. z-index: 999 !important;
  865. left: 170px;
  866. top: 190px;
  867. }
  868. .ss {
  869. width: 100px !important;
  870. height: 100px !important;
  871. background-color: #32edaa !important;
  872. color: yellow !important;
  873. }
  874. .highcharts-point {
  875. width: 15px !important;
  876. height: 15px !important;
  877. }
  878. rect{
  879. y:8 !important;
  880. }
  881. /* 公共css */
  882. /* 宽高纵横比 */
  883. i {
  884. font-style: normal !important;
  885. }
  886. .aspect-auto {
  887. aspect-ratio: auto;
  888. }
  889. .aspect-square {
  890. aspect-ratio: 1 / 1;
  891. }
  892. .aspect-video {
  893. aspect-ratio: 16 / 9;
  894. }
  895. /* aspect-[4/3] */
  896. /* 居中 */
  897. .mx-auto {
  898. margin: 0 auto;
  899. }
  900. /* 设置容器内的列数/每列距离 */
  901. .columns-1 {
  902. columns: 1;
  903. }
  904. /* columns-[20px] */
  905. /* 盒子模型 */
  906. .box-border {
  907. box-sizing: border-box;
  908. }
  909. .box-content {
  910. box-sizing: content-box;
  911. }
  912. /* 消失 */
  913. .hidden {
  914. display: none;
  915. }
  916. /* 块级元素 */
  917. .block {
  918. display: block;
  919. }
  920. /* 行内块 */
  921. .inline-block {
  922. display: inline-block;
  923. }
  924. /* 行内元素 */
  925. .inline {
  926. display: inline;
  927. }
  928. /* 弹性布局 */
  929. .flex {
  930. display: flex;
  931. }
  932. /* 主轴起点在左边 */
  933. .flex-row {
  934. flex-direction: row;
  935. }
  936. /* 主轴起点在右边 */
  937. .flex-row-reverse {
  938. flex-direction: row-reverse;
  939. }
  940. /* 主轴竖向排列,在上面 */
  941. .flex-col {
  942. flex-direction: column;
  943. }
  944. /* 主轴竖向排列,在下面 */
  945. .flex-col-reverse {
  946. flex-direction: column-reverse;
  947. }
  948. /* 自动换行 */
  949. .flex-wrap {
  950. flex-wrap: wrap;
  951. }
  952. /* 自动换行下起点 */
  953. .flex-wrap-reverse {
  954. flex-wrap: wrap-reverse;
  955. }
  956. /* 不换行 */
  957. .flex-nowrap {
  958. flex-wrap: nowrap;
  959. }
  960. /* 弹性成长 */
  961. .grow {
  962. flex-grow: 1;
  963. }
  964. /* 不允许弹性成长 */
  965. .grow-0 {
  966. flex-grow: 0;
  967. }
  968. /* 主轴从左开始 */
  969. .justify-start {
  970. justify-content: flex-start;
  971. }
  972. /* 主轴从右开始 */
  973. .justify-end {
  974. justify-content: flex-end;
  975. }
  976. /* 主轴剧中 */
  977. .justify-center {
  978. justify-content: center;
  979. }
  980. /* 主轴两端无间隔 */
  981. .justify-between {
  982. justify-content: space-between;
  983. }
  984. /* 主轴两端有间隔 */
  985. .justify-around {
  986. justify-content: space-around;
  987. }
  988. /* 所有间隔相等 */
  989. .justify-evenly {
  990. justify-content: space-evenly;
  991. }
  992. /* 纵向起点最上方 */
  993. .items-start {
  994. align-items: flex-start;
  995. }
  996. /* 纵向起点最下方 */
  997. .items-end {
  998. align-items: flex-end;
  999. }
  1000. .items-center {
  1001. align-items: center;
  1002. }
  1003. /* 网格布局 */
  1004. .grid {
  1005. display: grid;
  1006. }
  1007. /* 有几列 */
  1008. .grid-cols-4 {
  1009. grid-template-columns: repeat(4, minmax(0, 1fr));
  1010. grid-template-columns: repeat(4, 1fr);
  1011. }
  1012. /* 有几行 */
  1013. .grid-rows-3 {
  1014. grid-template-rows: repeat(3, minmax(0, 1fr));
  1015. grid-template-rows: repeat(3, 1fr);
  1016. }
  1017. /* 容器中的内容上下布局 */
  1018. .grid-center {
  1019. align-items: center;
  1020. }
  1021. /* 间距 */
  1022. .gap-7 {
  1023. gap: 1.75rem;
  1024. }
  1025. /* 允许弹性成长 */
  1026. .shrink {
  1027. flex-shrink: 1;
  1028. }
  1029. /* 不允许弹性成长 */
  1030. .shrink-0 {
  1031. flex-shrink: 0;
  1032. }
  1033. /* 不允许成长也不允许收缩 */
  1034. .flex-none {
  1035. flex: none;
  1036. }
  1037. /* 浮动布局 */
  1038. .float-right {
  1039. float: right;
  1040. }
  1041. .float-left {
  1042. float: left;
  1043. }
  1044. .clear-both {
  1045. clear: both;
  1046. }
  1047. /* 溢出 */
  1048. .overflow-auto {
  1049. overflow: auto;
  1050. }
  1051. .overflow-hidden {
  1052. overflow: hidden;
  1053. }
  1054. .overflow-scroll {
  1055. overflow: scroll;
  1056. }
  1057. .overflow-x-auto {
  1058. overflow-x: auto;
  1059. }
  1060. .overflow-y-auto {
  1061. overflow-y: auto;
  1062. }
  1063. .arrow1 {
  1064. width: 100%;
  1065. height: 10%;
  1066. z-index: 99999;
  1067. top: 46%;
  1068. }
  1069. .arrow1 > div:nth-child(1) {
  1070. width: 50px;
  1071. height: 0px;
  1072. border-bottom: 1px solid #fff;
  1073. top: 75.7%;
  1074. left: 5.5%;
  1075. }
  1076. .arrow1 > i {
  1077. font-size: 30px;
  1078. }
  1079. .arrow1 > i:nth-child(2) {
  1080. top: 51.1%;
  1081. left: 17%;
  1082. }
  1083. .arrow1 > i:nth-child(3) {
  1084. top: 51.1%;
  1085. left: 27%;
  1086. }
  1087. .arrow1 > i:nth-child(4) {
  1088. top: 51.1%;
  1089. left: 36.5%;
  1090. }
  1091. .arrow1 > div:nth-child(5) {
  1092. width: 50px;
  1093. height: 0px;
  1094. border-bottom: 1px solid #fff;
  1095. top: 75.7%;
  1096. left: 54.5%;
  1097. }
  1098. .arrow1 > i:nth-child(6) {
  1099. top: 51.1%;
  1100. left: 66.2%;
  1101. }
  1102. .arrow1 > i:nth-child(7) {
  1103. top: 51.1%;
  1104. left: 76%;
  1105. }
  1106. .arrow1 > i:nth-child(8) {
  1107. top: 51.1%;
  1108. left: 85.5%;
  1109. }
  1110. /* 定位 */
  1111. .fixed {
  1112. position: fixed;
  1113. }
  1114. .absolute {
  1115. position: absolute;
  1116. }
  1117. .relative {
  1118. position: relative;
  1119. }
  1120. .top-0 {
  1121. top: 0px;
  1122. }
  1123. .right-0 {
  1124. right: 0px;
  1125. }
  1126. .bottom-0 {
  1127. bottom: 0px;
  1128. }
  1129. .left-0 {
  1130. left: 0px;
  1131. }
  1132. /* top-[3px] */
  1133. /* z-[100] */
  1134. /* 显示隐藏未脱离文档流 */
  1135. .visible {
  1136. visibility: visible;
  1137. }
  1138. .invisible {
  1139. visibility: hidden;
  1140. }
  1141. /* 内边距 */
  1142. .p-0 {
  1143. padding: 0px;
  1144. }
  1145. .px-0 {
  1146. padding-left: 0px;
  1147. padding-right: 0px;
  1148. }
  1149. .py-0 {
  1150. padding-top: 0px;
  1151. padding-bottom: 0px;
  1152. }
  1153. .pt-0 {
  1154. padding-top: 0px;
  1155. }
  1156. .pr-0 {
  1157. padding-right: 0px;
  1158. }
  1159. .pb-0 {
  1160. padding-bottom: 0px;
  1161. }
  1162. .pl-0 {
  1163. padding-left: 0px;
  1164. }
  1165. /* p-[5px] */
  1166. /* 外边距 */
  1167. .m-0 {
  1168. margin: 0px;
  1169. }
  1170. .mx-0 {
  1171. margin-left: 0px;
  1172. margin-right: 0px;
  1173. }
  1174. .my-0 {
  1175. margin-top: 0px;
  1176. margin-bottom: 0px;
  1177. }
  1178. .mt-0 {
  1179. margin-top: 0px;
  1180. }
  1181. .mr-0 {
  1182. margin-right: 0px;
  1183. }
  1184. .mb-0 {
  1185. margin-bottom: 0px;
  1186. }
  1187. .ml-0 {
  1188. margin-left: 0px;
  1189. }
  1190. /* m-[5px] */
  1191. /* 宽度 */
  1192. .w-full {
  1193. width: 100%;
  1194. }
  1195. .w-screen {
  1196. width: 100vw;
  1197. }
  1198. /* w-[32rem] */
  1199. /* min-w-[50%] */
  1200. /* max-w-[50%] */
  1201. /* 高度 */
  1202. .h-full {
  1203. height: 100%;
  1204. }
  1205. .h-screen {
  1206. height: 100vh;
  1207. }
  1208. /* h-[32rem] */
  1209. /* min-h-[50%] */
  1210. /* max-h-[32rem] */
  1211. /* 字体 */
  1212. .text-xs {
  1213. font-size: 0.75rem; /* 12px */
  1214. line-height: 1rem; /* 16px */
  1215. }
  1216. .text-sm {
  1217. font-size: 0.875rem; /* 14px */
  1218. line-height: 1.25rem; /* 20px */
  1219. }
  1220. .text-base {
  1221. font-size: 1rem; /* 16px */
  1222. line-height: 1.5rem; /* 24px */
  1223. }
  1224. .text-lg {
  1225. font-size: 1.125rem; /* 18px */
  1226. line-height: 1.75rem; /* 28px */
  1227. }
  1228. .text-xl {
  1229. font-size: 1.25rem; /* 20px */
  1230. line-height: 1.75rem; /* 28px */
  1231. }
  1232. .text-2xl {
  1233. font-size: 1.5rem; /* 24px */
  1234. line-height: 2rem; /* 32px */
  1235. }
  1236. .text-3xl {
  1237. font-size: 1.875rem; /* 30px */
  1238. line-height: 2.25rem; /* 36px */
  1239. }
  1240. .text-4xl {
  1241. font-size: 2.25rem; /* 36px */
  1242. line-height: 2.5rem; /* 40px */
  1243. }
  1244. .text-5xl {
  1245. font-size: 3rem; /* 48px */
  1246. line-height: 1;
  1247. }
  1248. .text-6xl {
  1249. font-size: 3.75rem; /* 60px */
  1250. line-height: 1;
  1251. }
  1252. .text-7xl {
  1253. font-size: 4.5rem; /* 72px */
  1254. line-height: 1;
  1255. }
  1256. .text-8xl {
  1257. font-size: 6rem; /* 96px */
  1258. line-height: 1;
  1259. }
  1260. .text-9xl {
  1261. font-size: 8rem; /* 128px */
  1262. line-height: 1;
  1263. }
  1264. /* text-[14px] */
  1265. /* 字体粗细font-weight */
  1266. /* font-[1100] */
  1267. /* https://tailwindcss.com/docs/font-weight */
  1268. /* 字体间距letter-spacing */
  1269. /* tracking-[.25em] */
  1270. /* 行高line-height */
  1271. /* leading-[3rem] */
  1272. /* 无列表样式 */
  1273. .list-none {
  1274. list-style-type: none;
  1275. }
  1276. /* 小圆点 */
  1277. .list-disc {
  1278. list-style-type: disc;
  1279. }
  1280. /* 数字列表 */
  1281. .list-decimal {
  1282. list-style-type: decimal;
  1283. }
  1284. .text-left {
  1285. text-align: left;
  1286. }
  1287. .text-center {
  1288. text-align: center;
  1289. }
  1290. .text-right {
  1291. text-align: right;
  1292. }
  1293. /* 所有文本头尾对齐 */
  1294. .text-justify {
  1295. text-align: justify;
  1296. }
  1297. /* 文本颜色 */
  1298. /* text-[#50d71e] */
  1299. /* https://tailwindcss.com/docs/text-color */
  1300. /* 下划线 */
  1301. .underline {
  1302. text-decoration-line: underline;
  1303. }
  1304. /* 上划线 */
  1305. .overline {
  1306. text-decoration-line: overline;
  1307. }
  1308. /* 中划线 */
  1309. .line-through {
  1310. text-decoration-line: line-through;
  1311. }
  1312. /* 无划线 */
  1313. .no-underline {
  1314. text-decoration-line: none;
  1315. }
  1316. /* 全小写 */
  1317. .lowercase {
  1318. text-transform: lowercase;
  1319. }
  1320. /* 全大写 */
  1321. .uppercase {
  1322. text-transform: uppercase;
  1323. }
  1324. /* 首字母大写 */
  1325. .capitalize {
  1326. text-transform: capitalize;
  1327. }