investHomeGroup.css 22 KB

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