main.css 21 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217
  1. .pages {
  2. position: absolute;
  3. top: 0;
  4. left: 0;
  5. right: 0;
  6. bottom: 0;
  7. width: 100%;
  8. overflow: hidden;
  9. display: block;
  10. margin: 0 auto;
  11. background-color: #028fe1;
  12. background: url("../static/img/mainBg.png");
  13. background-size: 100%;
  14. background-repeat: no-repeat;
  15. }
  16. ul, li {
  17. list-style: none;
  18. margin: 0;
  19. padding: 0;
  20. }
  21. .userList {
  22. width: 96%;
  23. height: 80%;
  24. overflow: hidden;
  25. display: block;
  26. margin: 0 auto;
  27. }
  28. .userList {
  29. height: 100%;
  30. }
  31. .userList ul {
  32. width: 100%;
  33. overflow: hidden;
  34. display: block;
  35. margin: 0 auto;
  36. }
  37. .userList .max {
  38. width: 80%;
  39. height: 100%;
  40. overflow: visible;
  41. display: block;
  42. margin: 0 auto;
  43. }
  44. .max .ltLi {
  45. width: 5%;
  46. height: 545px;
  47. float: left;
  48. background: url("../static/img/ltCube.png");
  49. background-size: 100% 100%;
  50. background-repeat: no-repeat;
  51. }
  52. .max .rtLi {
  53. width: 5%;
  54. height: 545px;
  55. float: right;
  56. background: url("../static/img/rtCube.png");
  57. background-size: 100% 100%;
  58. background-repeat: no-repeat;
  59. }
  60. .max .centerLi {
  61. width: 90%;
  62. float: left;
  63. height: 545px;
  64. background: #028FE1;
  65. }
  66. .blue .centerLi {
  67. background: #028FE1;
  68. }
  69. .violet .centerLi {
  70. background: #6D26FA;
  71. }
  72. .green .centerLi {
  73. background: #0AB105;
  74. }
  75. .yellow .centerLi {
  76. background: #BACC01;
  77. }
  78. .brown .centerLi {
  79. background: #EA8813;
  80. }
  81. .red .centerLi {
  82. background: #CF1122;
  83. }
  84. .centerLi .top {
  85. width: 100%;
  86. overflow: hidden;
  87. display: block;
  88. margin: 0 auto;
  89. }
  90. .centerLi .bottom {
  91. width: 100%;
  92. overflow: hidden;
  93. display: block;
  94. margin: 0 auto;
  95. }
  96. .centerLi .cla {
  97. width: 30%;
  98. float: left;
  99. font-family: HeadLineA;
  100. font-weight: normal;
  101. font-size: 175px;
  102. text-align: center;
  103. color: #fff;
  104. line-height: 360px;
  105. }
  106. .centerLi .cla s {
  107. position: relative;
  108. top: -100px;
  109. font-family: "PingFang SC";
  110. font-weight: 500;
  111. font-size: 54px;
  112. text-align: center;
  113. color: #fff;
  114. text-decoration: none;
  115. }
  116. .centerLi .heartJump {
  117. width: 30%;
  118. float: right;
  119. font-family: HeadLineA;
  120. font-weight: normal;
  121. font-size: 175px;
  122. text-align: center;
  123. color: #fff;
  124. line-height: 360px;
  125. }
  126. .centerLi .heartJump img {
  127. position: relative;
  128. top: -100px;
  129. font-family: "PingFang SC";
  130. font-weight: 500;
  131. font-size: 54px;
  132. text-align: center;
  133. color: #fff;
  134. text-decoration: none;
  135. animation: mymove 2s infinite;
  136. -webkit-animation: mymove 2s infinite; /*Safari and Chrome*/
  137. animation-direction: alternate; /*轮流反向播放动画。*/
  138. animation-timing-function: ease-in-out; /*动画的速度曲线*/
  139. /* Safari 和 Chrome */
  140. -webkit-animation: mymove 3s infinite;
  141. -webkit-animation-direction: alternate; /*轮流反向播放动画。*/
  142. -webkit-animation-timing-function: ease-in-out; /*动画的速度曲线*/
  143. }
  144. @keyframes mymove {
  145. 0% {
  146. transform: scale(1); /*开始为原始大小*/
  147. }
  148. 25% {
  149. transform: scale(1.2); /*放大1.1倍*/
  150. }
  151. 50% {
  152. transform: scale(1);
  153. }
  154. 75% {
  155. transform: scale(1.2);
  156. }
  157. }
  158. @-webkit-keyframes mymove /*Safari and Chrome*/
  159. {
  160. 0% {
  161. transform: scale(1); /*开始为原始大小*/
  162. }
  163. 25% {
  164. transform: scale(1.2); /*放大1.1倍*/
  165. }
  166. 50% {
  167. transform: scale(1);
  168. }
  169. 75% {
  170. transform: scale(1.2);
  171. }
  172. }
  173. .centerLi .human {
  174. width: 39%;
  175. float: left;
  176. padding-top: 3%;
  177. overflow: hidden;
  178. }
  179. .human img {
  180. overflow: hidden;
  181. display: block;
  182. margin: 0 auto;
  183. border-radius: 250px;
  184. border: 1px solid #fff;
  185. }
  186. .human .name {
  187. width: 40%;
  188. height: 70px;
  189. overflow: hidden;
  190. display: block;
  191. margin: 0 auto;
  192. border-radius: 35px;
  193. color: #fff;
  194. font-family: "PingFang SC";
  195. font-weight: 500;
  196. font-size: 43px;
  197. text-align: center;
  198. color: #fff;
  199. }
  200. .bottomLi {
  201. width: 100%;
  202. overflow: hidden;
  203. display: block;
  204. margin: 0 auto;
  205. font-family: HeadLineA;
  206. font-weight: normal;
  207. font-size: 50px;
  208. text-align: left;
  209. color: #fff;
  210. text-align: center;
  211. }
  212. .bottomLi .btcla {
  213. width: 30%;
  214. float: left;
  215. }
  216. .bottomLi .btck {
  217. width: 40%;
  218. float: left;
  219. text-align: left;
  220. text-indent: 7px;
  221. }
  222. .bottomLi .step {
  223. width: 30%;
  224. float: left;
  225. }
  226. .levelIcon {
  227. position: absolute;
  228. bottom: 5px;
  229. width: 100%;
  230. overflow: hidden;
  231. display: block;
  232. margin: 0 auto;
  233. height: 120px;
  234. padding-bottom: 5px;
  235. }
  236. .levelIcon ul {
  237. width: 96%;
  238. height: 100%;
  239. overflow: hidden;
  240. display: block;
  241. margin: 0 auto;
  242. }
  243. .levelIcon li {
  244. width: 14.666666666667%;
  245. height: 100%;
  246. float: left;
  247. padding-left: 2%;
  248. }
  249. .levelIcon li:nth-child(1) {
  250. padding-left: 0;
  251. }
  252. .levelIcon li span {
  253. width: 119px;
  254. height: 119px;
  255. overflow: hidden;
  256. float: left;
  257. background: url("../static/img/l1.png");
  258. background-repeat: no-repeat;
  259. background-size: 100% 100%;
  260. background-position: top center;
  261. font-family: "PingFang SC";
  262. font-weight: normal;
  263. font-size: 22px;
  264. letter-spacing: -0.05em;
  265. text-align: center;
  266. color: #fff;
  267. line-height: 35px;
  268. }
  269. .levelIcon li span div {
  270. width: 100%;
  271. overflow: hidden;
  272. display: block;
  273. margin: 0 auto;
  274. padding-top: 17%;
  275. }
  276. .levelIcon li:nth-child(2) span {
  277. background: url("../static/img/l2.png");
  278. background-size: 100% 100%;
  279. background-position: top center;
  280. }
  281. .levelIcon li:nth-child(3) span {
  282. background: url("../static/img/l3.png");
  283. background-size: 100% 100%;
  284. background-position: top center;
  285. }
  286. .levelIcon li:nth-child(4) span {
  287. background: url("../static/img/l4.png");
  288. background-size: 100% 100%;
  289. background-position: top center;
  290. }
  291. .levelIcon li:nth-child(5) span {
  292. background: url("../static/img/l5.png");
  293. background-size: 100% 100%;
  294. background-position: top center;
  295. }
  296. .levelIcon li:nth-child(6) span {
  297. background: url("../static/img/l6.png");
  298. background-size: 100% 100%;
  299. background-position: top center;
  300. }
  301. .levelIcon li:nth-child(6) span div {
  302. margin-top: 13%;
  303. }
  304. .levelIcon li em {
  305. float: right;
  306. width: 130px;
  307. height: 42px;
  308. border-radius: 21px;
  309. background: rgba(2, 143, 225, 0.16);
  310. border: 1px solid #028fe1;
  311. box-shadow: 0px 0px 5px #028fe1;
  312. font-family: "PingFang SC";
  313. font-weight: normal;
  314. font-size: 24px;
  315. text-align: center;
  316. color: #fff;
  317. font-style: normal;
  318. line-height: 42px;
  319. margin-top: 15%;
  320. margin-left: 1%;
  321. }
  322. .levelIcon li:nth-child(2) em {
  323. background: rgba(109, 38, 250, 0.16);
  324. border: 1px solid #6d26fa;
  325. box-shadow: 0px 0px 5px #6d26fa;
  326. }
  327. .levelIcon li:nth-child(3) em {
  328. background: rgba(10, 177, 5, 0.16);
  329. border: 1px solid #0ab105;
  330. box-shadow: 0px 0px 5px #0ab105;
  331. }
  332. .levelIcon li:nth-child(4) em {
  333. background: rgba(186, 204, 1, 0.16);
  334. border: 1px solid #bacc01;
  335. box-shadow: 0px 0px 5px #bacc01;
  336. }
  337. .levelIcon li:nth-child(5) em {
  338. background: rgba(234, 136, 19, 0.16);
  339. border: 1px solid #ea8813;
  340. box-shadow: 0px 0px 5px #ea8813;
  341. }
  342. .levelIcon li:nth-child(6) em {
  343. background: rgba(209, 17, 34, 0.16);
  344. border: 1px solid #d11122;
  345. box-shadow: 0px 0px 5px #d11122;
  346. }
  347. .long {
  348. width: 198px;
  349. position: relative;
  350. bottom: 198px;
  351. right: -70px;
  352. float: right;
  353. z-index: 222;
  354. overflow: visible;
  355. }
  356. /*two*/
  357. .two {
  358. width: 48%;
  359. height: 475px;
  360. float: left;
  361. border: 1px solid #fff;
  362. }
  363. .two:nth-child(2) {
  364. float: right;
  365. }
  366. .two .centerLi .cla {
  367. font-family: HeadLineA;
  368. font-weight: normal;
  369. font-size: 180px;
  370. letter-spacing: -0.05em;
  371. height: 310px;
  372. line-height: 310px;
  373. }
  374. .two .centerLi .cla s {
  375. font-family: HeadLineA;
  376. font-weight: normal;
  377. font-size: 38px;
  378. letter-spacing: -0.05em;
  379. top: -120px;
  380. }
  381. .two .human {
  382. padding-top: 8%;
  383. }
  384. .two img {
  385. width: 280px;
  386. height: 280px;
  387. }
  388. .two .name {
  389. width: 290px;
  390. height: 60px;
  391. font-family: "PingFang SC";
  392. font-weight: 500;
  393. font-size: 40px;
  394. text-align: center;
  395. color: #fff;
  396. line-height: 60px;
  397. }
  398. .two .centerLi .heartJump {
  399. font-family: HeadLineA;
  400. font-weight: normal;
  401. font-size: 140px;
  402. letter-spacing: -0.05em;
  403. text-align: center;
  404. color: #fff;
  405. height: 310px;
  406. line-height: 310px;
  407. }
  408. .two .centerLi .heartJump img {
  409. width: 25px;
  410. height: 25px;
  411. top: -110px;
  412. }
  413. .two .bottomLi {
  414. font-family: HeadLineA;
  415. font-weight: normal;
  416. font-size: 40px;
  417. color: #fff;
  418. padding-bottom: 5px;
  419. }
  420. /*six*/
  421. .six {
  422. width: 31%;
  423. float: left;
  424. margin-right: 2%;
  425. margin-bottom: 2%;
  426. border: 1px solid #fff;
  427. }
  428. .six:nth-child(3) {
  429. margin-right: 0
  430. }
  431. .six:nth-child(6) {
  432. margin-right: 0
  433. }
  434. .six .centerLi .cla {
  435. font-family: HeadLineA;
  436. font-weight: normal;
  437. font-size: 100px;
  438. letter-spacing: -0.05em;
  439. height: 220px;
  440. line-height: 220px;
  441. }
  442. .six .centerLi .cla s {
  443. font-family: HeadLineA;
  444. font-weight: normal;
  445. font-size: 40px;
  446. letter-spacing: -0.05em;
  447. top: -60px;
  448. }
  449. .six .human {
  450. padding-top: 6%;
  451. }
  452. .six img {
  453. width: 160px;
  454. height: 160px;
  455. }
  456. .six .name {
  457. width: 180px;
  458. height: 40px;
  459. font-family: "PingFang SC";
  460. font-weight: 500;
  461. font-size: 30px;
  462. text-align: center;
  463. color: #fff;
  464. line-height: 40px;
  465. }
  466. .six .centerLi .heartJump {
  467. font-family: HeadLineA;
  468. font-weight: normal;
  469. font-size: 100px;
  470. letter-spacing: -0.05em;
  471. text-align: center;
  472. color: #fff;
  473. height: 220px;
  474. line-height: 220px;
  475. }
  476. .six .centerLi .heartJump img {
  477. width: 25px;
  478. height: 25px;
  479. top: -60px;
  480. }
  481. .six .bottomLi {
  482. font-family: HeadLineA;
  483. font-weight: normal;
  484. font-size: 32px;
  485. color: #fff;
  486. padding-bottom: 15px;
  487. }
  488. /*nine*/
  489. .nine {
  490. width: 31.5%;
  491. float: left;
  492. margin-right: 2%;
  493. margin-bottom: 2%;
  494. border: 1px solid #fff;
  495. }
  496. .nine:nth-child(3) {
  497. margin-right: 0
  498. }
  499. .nine:nth-child(6) {
  500. margin-right: 0
  501. }
  502. .nine:nth-child(9) {
  503. margin-right: 0
  504. }
  505. .nine .centerLi .cla {
  506. font-family: HeadLineA;
  507. font-weight: normal;
  508. font-size: 79px;
  509. letter-spacing: -0.05em;
  510. height: 150px;
  511. line-height: 150px;
  512. }
  513. .nine .centerLi .cla s {
  514. font-family: HeadLineA;
  515. font-weight: normal;
  516. font-size: 36px;
  517. letter-spacing: -0.05em;
  518. top: -60px;
  519. }
  520. .nine .human {
  521. padding-top: 2%;
  522. }
  523. .nine img {
  524. width: 100px;
  525. height: 100px;
  526. }
  527. .nine .name {
  528. width: 120px;
  529. height: 30px;
  530. font-family: "PingFang SC";
  531. font-weight: 500;
  532. font-size: 24px;
  533. text-align: center;
  534. color: #fff;
  535. line-height: 30px;
  536. }
  537. .nine .centerLi .heartJump {
  538. font-family: HeadLineA;
  539. font-weight: normal;
  540. font-size: 79px;
  541. letter-spacing: -0.05em;
  542. text-align: center;
  543. color: #fff;
  544. height: 150px;
  545. line-height: 150px;
  546. }
  547. .nine .centerLi .heartJump img {
  548. width: 25px;
  549. height: 25px;
  550. top: -60px;
  551. }
  552. .nine .bottomLi {
  553. font-family: HeadLineA;
  554. font-weight: normal;
  555. font-size: 24px;
  556. color: #fff;
  557. padding-bottom: 5px;
  558. }
  559. /*sixteen*/
  560. .sixteen {
  561. width: 23.5%;
  562. float: left;
  563. margin-right: 0.3%;
  564. margin-bottom: 0.3%;
  565. border: 1px solid rgba(255, 255, 255, 0.5);
  566. }
  567. .sixteen .centerLi .cla {
  568. font-family: HeadLineA;
  569. font-weight: normal;
  570. font-size: 49px;
  571. letter-spacing: -0.05em;
  572. height: 100px;
  573. line-height: 120px;
  574. }
  575. .sixteen .centerLi .cla s {
  576. font-family: HeadLineA;
  577. font-weight: normal;
  578. font-size: 30px;
  579. letter-spacing: -0.05em;
  580. top: -30px;
  581. }
  582. .sixteen .human {
  583. padding-top: 2%;
  584. height: 120px;
  585. overflow: hidden;
  586. }
  587. .sixteen .head img {
  588. width: 90px;
  589. height: 90px;
  590. }
  591. .sixteen .name {
  592. width: 100px;
  593. height: 26px;
  594. font-family: "PingFang SC";
  595. font-weight: 500;
  596. font-size: 20px;
  597. text-align: center;
  598. color: #fff;
  599. line-height: 26px;
  600. }
  601. .sixteen .centerLi .heartJump {
  602. font-family: HeadLineA;
  603. font-weight: normal;
  604. font-size: 49px;
  605. letter-spacing: -0.05em;
  606. text-align: center;
  607. color: #fff;
  608. height: 100px;
  609. line-height: 120px;
  610. }
  611. .sixteen .centerLi .heartJump img {
  612. width: 20px;
  613. height: 20px;
  614. top: -30px;
  615. right: -5px;
  616. }
  617. .sixteen .bottomLi {
  618. font-family: HeadLineA;
  619. font-weight: normal;
  620. font-size: 22px;
  621. color: #fff;
  622. line-height: 30px;
  623. padding-bottom: 5px;
  624. }
  625. /*twenty*/
  626. .twenty {
  627. width: 19.5%;
  628. float: left;
  629. margin-right: 10px;
  630. margin-bottom: 0.3%;
  631. border: 1px solid rgba(255, 255, 255, 0.5);
  632. }
  633. .twenty:nth-child(5) {
  634. margin-right: 0
  635. }
  636. .twenty:nth-child(10) {
  637. margin-right: 0
  638. }
  639. .twenty:nth-child(15) {
  640. margin-right: 0
  641. }
  642. .twenty:nth-child(20) {
  643. margin-right: 0
  644. }
  645. .twenty .centerLi .cla {
  646. font-family: HeadLineA;
  647. font-weight: normal;
  648. font-size: 40px;
  649. letter-spacing: -0.05em;
  650. height: 90px;
  651. line-height: 90px;
  652. }
  653. .twenty .centerLi .cla s {
  654. font-family: HeadLineA;
  655. font-weight: normal;
  656. font-size: 16px;
  657. letter-spacing: -0.05em;
  658. top: -20px;
  659. }
  660. .twenty .human {
  661. padding-top: 2%;
  662. height: 110px;
  663. overflow: hidden;
  664. }
  665. .twenty img {
  666. width: 90px;
  667. height: 90px;
  668. }
  669. .twenty .name {
  670. width: 80px;
  671. height: 24px;
  672. font-family: "PingFang SC";
  673. font-weight: 500;
  674. font-size: 16px;
  675. text-align: center;
  676. color: #fff;
  677. line-height: 24px;
  678. }
  679. .twenty .centerLi .heartJump {
  680. font-family: HeadLineA;
  681. font-weight: normal;
  682. font-size: 40px;
  683. letter-spacing: -0.05em;
  684. text-align: center;
  685. color: #fff;
  686. height: 90px;
  687. line-height: 90px;
  688. }
  689. .twenty .centerLi .heartJump img {
  690. width: 14px;
  691. height: 14px;
  692. top: -20px;
  693. }
  694. .twenty .bottomLi {
  695. font-family: HeadLineA;
  696. font-weight: normal;
  697. font-size: 18px;
  698. color: #fff;
  699. padding-bottom: 5px;
  700. }
  701. /*成就彩蛋*/
  702. /deep/ .el-dialog {
  703. background: url("../static/img/dialog.png");
  704. background-position: top center;
  705. background-repeat: no-repeat;
  706. background-size: 100%;
  707. min-height: 50%;
  708. box-shadow: none;
  709. }
  710. .eggContainer {
  711. width: 87%;
  712. overflow: hidden;
  713. margin: 0 auto;
  714. float: left;
  715. }
  716. .eggContainer h5 {
  717. font-family: Roboto;
  718. font-weight: normal;
  719. font-size: 36px;
  720. text-align: center;
  721. color: #fff;
  722. margin: 0;
  723. margin-bottom: 5%;
  724. }
  725. .eggContainer .dgCenter {
  726. width: 90%;
  727. overflow: hidden;
  728. display: block;
  729. margin: 0 auto;
  730. }
  731. .dgCenter .dghead {
  732. width: 40%;
  733. float: left;
  734. }
  735. .dghead img {
  736. width: 140px;
  737. height: 140px;
  738. overflow: hidden;
  739. display: block;
  740. margin: 0 auto;
  741. padding: 3px;
  742. border-radius: 250px;
  743. border: 1px solid #fff;
  744. }
  745. .dghead s {
  746. font-family: Roboto;
  747. font-weight: normal;
  748. font-size: 30px;
  749. text-align: center;
  750. color: #fff;
  751. font-style: normal;
  752. text-decoration: none;
  753. margin-top: 10px;
  754. }
  755. .score {
  756. width: 60%;
  757. float: right;
  758. }
  759. .score em {
  760. width: 100%;
  761. overflow: hidden;
  762. display: block;
  763. margin: 0 auto;
  764. font-family: Roboto;
  765. font-weight: bold;
  766. font-size: 90px;
  767. text-align: center;
  768. color: #fff;
  769. font-style: normal;
  770. height: 150px;
  771. line-height: 150px;
  772. }
  773. .score span {
  774. width: 100%;
  775. overflow: hidden;
  776. display: block;
  777. margin: 0 auto;
  778. font-family: Roboto;
  779. font-weight: normal;
  780. font-size: 30px;
  781. color: #fff;
  782. text-align: center;
  783. }
  784. @media only screen and (min-width: 1260px) {
  785. .human img {
  786. width: 100px;
  787. height: 100px;
  788. }
  789. .levelIcon {
  790. height: 70px;
  791. }
  792. .levelIcon li span {
  793. width: 70px;
  794. height: 70px;
  795. font-size: 12px;
  796. }
  797. .userList .max {
  798. position: absolute;
  799. width: 78%;
  800. left: 0;
  801. right: 0;
  802. overflow: visible;
  803. display: block;
  804. margin: 0 auto;
  805. margin-top: 7%;
  806. }
  807. .levelIcon li span div {
  808. font-size: 16px;
  809. padding-top: 12px;
  810. line-height: 22px;
  811. }
  812. .levelIcon ul {
  813. width: 98%;
  814. }
  815. .levelIcon li em {
  816. width: 45%;
  817. height: 30px;
  818. line-height: 30px;
  819. font-size: 14px;
  820. margin-top: 11%;
  821. margin-left: 8%;
  822. float: left;
  823. }
  824. .max .centerLi {
  825. height: 360px;
  826. }
  827. .max .ltLi {
  828. height: 360px;
  829. }
  830. .max .rtLi {
  831. height: 360px;
  832. }
  833. .max .human .name {
  834. height: 30px;
  835. font-size: 14px;
  836. line-height: 30px;
  837. }
  838. .max .longIcon {
  839. width: 140px;
  840. position: relative;
  841. top: -20%;
  842. right: -5%;
  843. float: right;
  844. }
  845. .max .centerLi .topLi {
  846. height: 280px;
  847. }
  848. .max .centerLi .cla, .max .centerLi .heartJump {
  849. height: 229px;
  850. line-height: 210px;
  851. font-size: 120px;
  852. padding-top: 4%;
  853. text-align: center;
  854. }
  855. .max .human img {
  856. width: 200px;
  857. height: 200px;
  858. }
  859. .max .human .name {
  860. height: 40px;
  861. line-height: 40px;
  862. font-size: 30px;
  863. }
  864. .max .centerLi .heartJump img {
  865. width: 20px;
  866. font-size: 20px;
  867. top: -60px;
  868. }
  869. .max .centerLi .cla s {
  870. font-size: 22px;
  871. top: -60px;
  872. }
  873. .max .bottomLi {
  874. font-size: 40px !important;
  875. }
  876. /*two*/
  877. .two {
  878. width: 48%;
  879. height: 400px;
  880. float: left;
  881. overflow: hidden;
  882. border: 1px solid #fff;
  883. margin-top: 2%
  884. }
  885. .two:nth-child(2) {
  886. float: right;
  887. }
  888. .two .centerLi {
  889. height: 100%;
  890. }
  891. .two .human .name {
  892. height: 30px;
  893. font-size: 14px;
  894. line-height: 30px;
  895. }
  896. .two .longIcon {
  897. width: 140px;
  898. position: relative;
  899. top: -20%;
  900. right: -5%;
  901. float: right;
  902. }
  903. .two .centerLi .topLi {
  904. height: 280px;
  905. }
  906. .two .centerLi .cla, .two .centerLi .heartJump {
  907. height: 229px;
  908. line-height: 210px;
  909. font-size: 120px;
  910. padding-top: 4%;
  911. text-align: center;
  912. }
  913. .two .human img {
  914. width: 200px;
  915. height: 200px;
  916. }
  917. .two .human .name {
  918. height: 40px;
  919. line-height: 40px;
  920. font-size: 30px;
  921. }
  922. .two .centerLi .heartJump img {
  923. width: 20px;
  924. font-size: 20px;
  925. top: -60px;
  926. }
  927. .two .centerLi .cla s {
  928. font-size: 22px;
  929. top: -60px;
  930. }
  931. .two .bottomLi {
  932. font-size: 40px !important;
  933. }
  934. /*sixteen*/
  935. .sixteen {
  936. width: 19%;
  937. height: 120px;
  938. float: left;
  939. overflow: hidden;
  940. border: 1px solid rgba(255, 255, 255, 0.35);
  941. margin-top: 5px;
  942. margin-right: 1%;
  943. }
  944. .sixteen:nth-child(5) {
  945. float: right;
  946. margin-right: 0;
  947. }
  948. .sixteen:nth-child(10) {
  949. float: right;
  950. margin-right: 0;
  951. }
  952. .sixteen:nth-child(15) {
  953. float: right;
  954. margin-right: 0;
  955. }
  956. .sixteen:nth-child(20) {
  957. float: right;
  958. margin-right: 0;
  959. }
  960. .sixteen .centerLi {
  961. height: 100%;
  962. }
  963. .sixteen .human {
  964. height: 80px;
  965. }
  966. .sixteen .human .name {
  967. width: 60px;
  968. height: 16px;
  969. font-size: 12px;
  970. line-height: 16px;
  971. }
  972. .sixteen .longIcon {
  973. width: 140px;
  974. position: relative;
  975. top: -20%;
  976. right: -5%;
  977. float: right;
  978. }
  979. .sixteen .centerLi .topLi {
  980. width: 100%;
  981. overflow: hidden;
  982. display: block;
  983. margin: 0 auto;
  984. /*height: 70px;*/
  985. }
  986. .sixteen .centerLi .cla, .sixteen .centerLi .heartJump {
  987. height: 60px;
  988. line-height: 90px;
  989. font-size: 33px;
  990. padding-top: 4%;
  991. text-align: center;
  992. font-weight: 800;
  993. }
  994. .sixteen .centerLi .cla span {
  995. width: 100%;
  996. overflow: hidden;
  997. display: block;
  998. margin: 0 auto;
  999. }
  1000. .sixteen .human img {
  1001. width: 60px;
  1002. height: 60px;
  1003. margin-top: 2px;
  1004. }
  1005. .sixteen .centerLi .heartJump img {
  1006. width: 8px;
  1007. height: 8px;
  1008. top: -58px;
  1009. right: 3px;
  1010. float: right;
  1011. }
  1012. .sixteen .centerLi .heartJump span {
  1013. width: 80%;
  1014. padding-right: 20%;
  1015. overflow: hidden;
  1016. display: block;
  1017. margin: 0 auto;
  1018. text-align: right;
  1019. }
  1020. .sixteen .centerLi .heartJump {
  1021. float: left;
  1022. text-align: center;
  1023. }
  1024. .sixteen .centerLi .cla s {
  1025. font-size: 14px;
  1026. top: -100px;
  1027. right: 3px;
  1028. float: right;
  1029. }
  1030. .sixteen .bottomLi {
  1031. margin-top: 5px;
  1032. font-size: 14px !important;
  1033. line-height: 30px;
  1034. }
  1035. .bottomLi img {
  1036. padding-top: 5px;
  1037. float: left;
  1038. padding-left: 10px;
  1039. }
  1040. .bottomLi .btck {
  1041. width: 35%;
  1042. }
  1043. }