Main.vue 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208
  1. <template>
  2. <div :class="pageStyle">
  3. <Headside></Headside>
  4. <div class="userList">
  5. <ul>
  6. <li v-for="(s,i) in students" :class="studentsClassName[i].name" v-show="students"
  7. v-if="students.length > 0">
  8. <div class="ltLi" v-if="students.length == 1"></div>
  9. <div class="centerLi">
  10. <div class="topLi">
  11. <div class="human">
  12. <span class="name">{{ s.Name }}</span>
  13. <!--<img src="../static/img/people/flyhead.png"/>-->
  14. <!--<img v-bind:src="require('../static/img/people/' + s.head)" alt="">-->
  15. <!--<img :src="s.Head" alt="" v-if="s.Head">-->
  16. <img :src="s.Head" alt="" v-if="s.Head">
  17. <!--<img v-bind:src="require('../static/img/people/flyhead.png')" alt="" v-if="!s.Head">-->
  18. <img src="../static/img/people/flyhead.png" alt="" v-if="!s.Head">
  19. </div>
  20. <div class="cla">
  21. <!--<em v-if="s.activePercent != 0">{{ s.activePercent |fmtNum }}</em>-->
  22. <em v-if="s.activePercent != 0">{{ s.activePercent }}</em>
  23. <em class="plus" v-if="s.activePercent == 0">
  24. ---
  25. </em>
  26. </div>
  27. <div class="lcla">
  28. <span>%</span>
  29. </div>
  30. <!--fastJump-->
  31. <!--heartJump-->
  32. <div>
  33. <div class="lhj">
  34. <div :class="[{'heartJump':true}]">
  35. <span class="fastJump" v-if="s.realHr != 0"
  36. v-show="parseInt(s.activePercent) > 90">{{ s.realHr }}</span>
  37. <span class="normalJump" v-if="s.realHr != 0"
  38. v-show="parseInt(s.activePercent) <= 90 && parseInt(s.activePercent) > 30">{{
  39. s.realHr
  40. }}</span>
  41. <span class="slowJump" v-if="s.realHr != 0"
  42. v-show="parseInt(s.activePercent) <= 30">{{ s.realHr }}</span>
  43. <span class="plus" v-if="s.realHr == 0">
  44. ---
  45. </span>
  46. </div>
  47. </div>
  48. <div class="rhj">
  49. <img src="../static/img/heart.svg" class=""/>
  50. </div>
  51. </div>
  52. </div>
  53. <div class="bottomLi">
  54. <div class="btcla">
  55. <img src="../static/img/s1.svg"/>
  56. <span>{{ s.Cle |fmtInt }}</span>
  57. </div>
  58. <div class="btck">
  59. <img src="../static/img/s2.svg"/>
  60. <span>{{ s.PureCalorieNoVo2 |fmtInt }}</span>
  61. </div>
  62. <div class="step">
  63. <img src="../static/img/ck.svg"/>
  64. <span>{{ s.Ck |fmtFloat }}</span>
  65. </div>
  66. </div>
  67. </div>
  68. <div class="rtLi" v-if="students.length == 1"></div>
  69. <img src="../static/img/long.png" class="longIcon" v-if="students.length == 1"/>
  70. </li>
  71. </ul>
  72. </div>
  73. <!--图示-->
  74. <div class="levelIcon">
  75. <ul>
  76. <li>
  77. <span class="cube">
  78. <div>
  79. 0%-<br>
  80. 39%
  81. </div>
  82. </span>
  83. <em>激活放松</em>
  84. </li>
  85. <li>
  86. <span class="cube">
  87. <div>
  88. 40%-<br>54% </div>
  89. </span>
  90. <em>动态热身</em>
  91. </li>
  92. <li>
  93. <span class="cube">
  94. <div>
  95. 55%-<br>69% </div>
  96. </span>
  97. <em>脂肪燃烧</em>
  98. </li>
  99. <li>
  100. <span class="cube">
  101. <div>
  102. 70%-<br>79% </div>
  103. </span>
  104. <em>糖分消耗</em>
  105. </li>
  106. <li>
  107. <span class="cube">
  108. <div>
  109. 80%-<br>89% </div>
  110. </span>
  111. <em>心肺训练</em>
  112. </li>
  113. <li>
  114. <span class="cube">
  115. <div>
  116. ≥90% </div>
  117. </span>
  118. <em>峰值锻炼</em>
  119. </li>
  120. </ul>
  121. </div>
  122. <newRecord :toper-info="toperInfo"></newRecord>
  123. </div>
  124. </template>
  125. <script>
  126. import Headside from '@/components/Headside'
  127. import
  128. {
  129. getHello,
  130. getRecordBreak,
  131. getClassStat
  132. } from '@/api/getApiRes'
  133. import newRecord from '@/components/newRecord'
  134. import '../libs/rem';
  135. import '../Global'
  136. let qs = require('qs');
  137. export default {
  138. data() {
  139. return {
  140. eqSn: '30:9C:23:0C:8B:1E',
  141. pageStyle: RandomBg(),
  142. trueDate: true,//真实数据 true false
  143. totalTime: 4,
  144. times: 1,
  145. thisClassName: '',
  146. studentsClassName: [],
  147. students: [],
  148. single: [],
  149. dialogVisible: false,
  150. serachBtnStatus: false,
  151. dialogMsg: '',
  152. imgsrc: '../static/img/people/',
  153. toperInfo: {
  154. dialogVisible: false,
  155. toper: {},
  156. },
  157. // 本地绑定名字和头像路径
  158. headImg: [
  159. {name: 'flyhead.png'},
  160. {name: 'flyhead.png'},
  161. {name: 'flyhead.png'},
  162. {name: 'flyhead.png'},
  163. {name: 'flyhead.png'},
  164. {name: 'flyhead.png'},
  165. {name: 'flyhead.png'},
  166. {name: 'flyhead.png'},
  167. {name: 'flyhead.png'},
  168. {name: 'flyhead.png'},
  169. {name: 'flyhead.png'},
  170. {name: 'flyhead.png'},
  171. {name: 'flyhead.png'},
  172. {name: 'flyhead.png'},
  173. {name: 'flyhead.png'},
  174. {name: 'flyhead.png'},
  175. {name: 'flyhead.png'},
  176. ],
  177. nameList: [
  178. {name: '杨东艳'},
  179. {name: '隋小飞'},
  180. {name: '刘晓蕾'},
  181. {name: '刘海生'},
  182. {name: '贾雨琦'},
  183. {name: '李延海'},
  184. {name: '宋凌晨'},
  185. {name: '段长鹏'},
  186. {name: '郑伟'},
  187. {name: '周睿'},
  188. {name: '贾奕'},
  189. {name: '王正祥'},
  190. {name: '高超'},
  191. {name: '武发鲁'},
  192. {name: '赵晋洪'},
  193. {name: '张岩'},
  194. {name: '郑伟'},
  195. {name: '郑伟'},
  196. ],
  197. fakeEgg: {
  198. Rs: {
  199. "DuId": 37,
  200. "UserId": 0,
  201. "UserName": "郑伟",
  202. "Sex": 1,
  203. // "Head": "http://192.168.0.2/zw.png",
  204. "Head": "https://img-operation.csdnimg.cn/csdn/silkroad/img/1604989753379.png",
  205. "Cle": 400,
  206. "CleTitle": "个人单次卡路里记录",
  207. "CleUnit": "千卡",
  208. "CkTitle": "个人单次CK记录",
  209. "Ck": 99.9,
  210. "CkUnit": "CK值"
  211. }
  212. },
  213. mainTimer: null,
  214. timer2: null,
  215. }
  216. },
  217. mounted() {
  218. // this.$router.push({path: '/2pkRank'});
  219. // return false
  220. if (this.trueDate) {
  221. this.mainTimer = setInterval(() => {
  222. this.GetgetUserList();
  223. this.curgetClassStat();
  224. }, 1000);
  225. this.timer2 = setInterval(() => {
  226. this.createEgg();
  227. }, 6000);
  228. this.GetgetUserList();
  229. this.createEgg();
  230. } else {
  231. // 彩蛋
  232. this.OpenEgg(this.fakeEgg);
  233. this.mainTimer = setInterval(() => {
  234. this.students = this.fakeNews();
  235. this.giveClassName(this.students);
  236. }, 1000);
  237. }
  238. // this.alertInfo(document.body.clientWidth);
  239. // this.alertInfo(window.screen.height);
  240. // 倒计时
  241. let that = this;
  242. // that.serachBtnStatus = true;
  243. // let totalTime = 3
  244. // let clock = window.setInterval(() => {
  245. // totalTime--
  246. // if (totalTime < 0) {
  247. // totalTime = 3;
  248. // that.serachBtnStatus = false;
  249. // }
  250. // }
  251. // ,
  252. // 1000
  253. // )
  254. },
  255. watch: {
  256. '$route': function (val) {
  257. if (val.path == '/main') {
  258. if (this.trueDate) {
  259. this.mainTimer = setInterval(() => {
  260. this.GetgetUserList();
  261. this.curgetClassStat();
  262. }, 1000);
  263. this.GetgetUserList();
  264. this.timer2 = setInterval(() => {
  265. this.createEgg();
  266. }, 6000);
  267. } else {
  268. this.students = this.fakeNews();
  269. this.giveClassName(this.students);
  270. // this.createEgg(this.students[5]);
  271. }
  272. } else {
  273. clearInterval(this.mainTimer);
  274. clearInterval(this.timer2);
  275. }
  276. }
  277. },
  278. beforeDestroy() {
  279. clearInterval(this.mainTimer);
  280. clearInterval(this.timer2);
  281. this.mainTimer = null;
  282. this.timer2 = null;
  283. },
  284. methods: {
  285. fakeNews() {
  286. let item = [];
  287. // 1 2 3 5 9 11 13 16 21 30
  288. let fakeNums = 2;
  289. for (var i = 0; i < fakeNums; i++) {
  290. item.push(
  291. {
  292. "SvId": 1,
  293. "UserId": 1,
  294. "Cle": 999,
  295. "realHr1": parseInt(Math.random() * 100 + 50),
  296. "realHr": 60,
  297. "activePercent": 30,
  298. "heartRate": 90,
  299. "Steps": 9999,
  300. "PureCalorieNoVo2": 999,
  301. "Name": "东南西北中",
  302. "updateTime": 1604568915582,
  303. "Ck": 99.9,
  304. "Head": '',
  305. }
  306. )
  307. }
  308. return item;
  309. },
  310. alertInfo(info) {
  311. alert(info);
  312. },
  313. // 启动一个成就彩蛋
  314. createEgg() {
  315. let that = this;
  316. let param = {
  317. token: localStorage.token,
  318. eqSn: localStorage.eqSn
  319. };
  320. let postdata = qs.stringify(param);
  321. getRecordBreak(postdata).then(res => {
  322. let json = res;
  323. if (json.Code == 0) {
  324. this.OpenEgg(json);
  325. } else {
  326. // 并没有人破记录
  327. if (json.Code == 999) return false;
  328. if (json.Code != 999) that.$message.error(json.Memo + '[egg]');
  329. }
  330. })
  331. },
  332. OpenEgg(msg) {
  333. this.toperInfo.toper = msg.Rs;
  334. this.toperInfo.dialogVisible = true;
  335. // 倒计时5秒自动关闭
  336. let that = this;
  337. this.totalTime = 4;
  338. let clock = window.setInterval(() => {
  339. this.totalTime--;
  340. if (parseInt(this.totalTime) < 0) {
  341. that.toperInfo.dialogVisible = false;
  342. clearInterval(clock);
  343. }
  344. }, 1000)
  345. },
  346. GetgetUserList() {
  347. let that = this;
  348. let param = {
  349. token: localStorage.token,
  350. eqSn: localStorage.eqSn
  351. };
  352. let postdata = qs.stringify(param);
  353. getHello(postdata).then(res => {
  354. let json = res;
  355. if (json.Code == 0) {
  356. that.students = json.Rs;
  357. // // 返回空值不处理
  358. // if (that.times == 1) {
  359. // that.students = json.Rs;
  360. // if (!json.Rs) return false;
  361. // // // 添加头像 和 姓名 ..
  362. // that.times++
  363. // } else {
  364. // if (localStorage.result != JSON.stringify(json.Rs)) {
  365. // that.students = json.Rs;
  366. // // this.createEgg(this.students[1]);
  367. // if (!json.Rs) return false;
  368. // // // 添加头像 和 姓名
  369. // // that.students.map(function (i, v) {
  370. // // i.head = that.headImg[v].name;
  371. // // i.userNmae = that.nameList[v].name
  372. // // });
  373. // }
  374. // localStorage.res = JSON.stringify(json.Rs);
  375. // }
  376. that.giveClassName(json.Rs);
  377. // test 启动一个成就彩蛋
  378. // this.createEgg(that.students[4]);
  379. } else {
  380. // 已下课
  381. if (json.Code == '999') {
  382. that.students = ""
  383. // 没人不做处理
  384. // that.$router.push({path: '/rank'});
  385. } else {
  386. // // 已出错
  387. that.$message.error(json.Memo);
  388. }
  389. }
  390. })
  391. },
  392. curgetClassStat() {
  393. let that = this;
  394. let param = {
  395. token: localStorage.token,
  396. eqSn: localStorage.eqSn
  397. };
  398. let postdata = qs.stringify(param);
  399. getClassStat(postdata).then(res => {
  400. let json = res;
  401. if (json.Code == 0) {
  402. // 没开课
  403. console.log(json.ClassOn);
  404. if (json.ClassOn == 0) {
  405. console.log("xiakele ");
  406. // 0: 下课 团课/私教 排名
  407. // 1:团课/私教 todo
  408. // 2:竞技课2PK
  409. // 3:竞技课threepk
  410. switch (parseInt(json.dp)) {
  411. case 0:
  412. that.$router.push({path: '/rank'});
  413. break;
  414. case 1:
  415. that.$router.push({path: '/'});
  416. break;
  417. case 2:
  418. console.log(123);
  419. that.$router.push({path: '/pk'});
  420. break;
  421. case 3:
  422. that.$router.push({path: '/threepk'});
  423. break;
  424. }
  425. }
  426. } else {
  427. console.log("已上课");
  428. // that.$message.error(json.Memo);
  429. }
  430. })
  431. },
  432. // 给每一个数据加类名,一次遍历全部赋值
  433. giveClassName(res) {
  434. let that = this;
  435. let numberClass = '';
  436. let colorClass = '';
  437. for (let i = 0; i < parseInt(res.length); i++) {
  438. switch (true) {
  439. case parseInt(res.length) == 1:
  440. numberClass = 'max';
  441. break;
  442. case parseInt(res.length) == 2:
  443. numberClass = 'two';
  444. break;
  445. case parseInt(res.length) <= 4 && parseInt(res.length) > 2:
  446. numberClass = 'three';
  447. break;
  448. case parseInt(res.length) <= 6 && parseInt(res.length) > 4:
  449. numberClass = 'six';
  450. break;
  451. case parseInt(res.length) <= 9 && parseInt(res.length) > 6:
  452. numberClass = 'nine';
  453. break;
  454. case parseInt(res.length) <= 12 && parseInt(res.length) > 9:
  455. numberClass = 'ten';
  456. break;
  457. case parseInt(res.length) <= 15 && parseInt(res.length) > 12:
  458. numberClass = 'twelve';
  459. break;
  460. case parseInt(res.length) <= 20 && parseInt(res.length) > 15:
  461. numberClass = 'sixteen';
  462. break;
  463. case parseInt(res.length) <= 24 && parseInt(res.length) > 20:
  464. numberClass = 'twenty';
  465. break;
  466. case parseInt(res.length) <= 30 && parseInt(res.length) > 24:
  467. numberClass = 'twentyFour';
  468. break;
  469. case parseInt(res.length) > 31:
  470. numberClass = 'thirtyFive';
  471. break;
  472. }
  473. let per = parseInt(res[i].activePercent);
  474. switch (true) {
  475. case per >= 90:
  476. colorClass = 'red';
  477. break;
  478. case per <= 89 && per > 79:
  479. colorClass = 'brown';
  480. break;
  481. case per <= 79 && per > 70:
  482. colorClass = 'yellow';
  483. break;
  484. case per <= 70 && per > 54:
  485. colorClass = 'green';
  486. break;
  487. case per <= 54 && per > 39:
  488. colorClass = 'violet';
  489. break;
  490. case per <= 39:
  491. colorClass = 'blue';
  492. break
  493. }
  494. that.studentsClassName[i] = {
  495. name: numberClass + ' ' + colorClass,
  496. }
  497. }
  498. },
  499. },
  500. filters: {
  501. fmtNum(val) {
  502. if (val == 0) {
  503. return '--'
  504. } else {
  505. if (parseInt(val) < 0) return 0;
  506. if (parseInt(val) > 0) return val
  507. }
  508. },
  509. fmtFloat(val) {
  510. if (val == 0) {
  511. return '0.0'
  512. } else {
  513. return parseFloat(val).toFixed(1);
  514. }
  515. },
  516. fmtInt(val) {
  517. if (val == 0) {
  518. return '0'
  519. } else {
  520. return parseFloat(val).toFixed(2);
  521. // return parseInt(val);
  522. // return parseFloat(val).toFixed(3);
  523. }
  524. },
  525. },
  526. components: {
  527. Headside, newRecord
  528. }
  529. }
  530. </script>
  531. <style scoped>
  532. @import "../assets/css/bg.css";
  533. @font-face {
  534. font-family: vista;
  535. src: url('../assets/font/vista.otf');
  536. }
  537. * {
  538. font-family: vista;
  539. }
  540. .pages {
  541. position: absolute;
  542. top: 0;
  543. left: 0;
  544. right: 0;
  545. bottom: 0;
  546. width: 100%;
  547. overflow: hidden;
  548. display: block;
  549. margin: 0 auto;
  550. font-family: vista;
  551. }
  552. ul, li {
  553. list-style: none;
  554. margin: 0;
  555. padding: 0;
  556. }
  557. .blue .centerLi {
  558. background: #028FE1;
  559. }
  560. .violet .centerLi {
  561. background: #6D26FA;
  562. }
  563. .green .centerLi {
  564. background: #0AB105;
  565. }
  566. .yellow .centerLi {
  567. background: #BACC01;
  568. }
  569. .brown .centerLi {
  570. background: #EA8813;
  571. }
  572. .red .centerLi {
  573. background: #CF1122;
  574. }
  575. .levelIcon {
  576. position: absolute;
  577. bottom: 0.1rem;
  578. width: 100%;
  579. overflow: hidden;
  580. display: block;
  581. margin: 0 auto;
  582. height: 5rem;
  583. padding-bottom: 5px;
  584. }
  585. .levelIcon ul {
  586. width: 96%;
  587. height: 100%;
  588. overflow: hidden;
  589. display: block;
  590. margin: 0;
  591. margin-left: 2%;
  592. }
  593. .levelIcon li {
  594. width: 14.666666666667%;
  595. height: 100%;
  596. float: left;
  597. padding-left: 2.4%;
  598. }
  599. .levelIcon li:nth-child(1) {
  600. padding-left: 0;
  601. }
  602. .levelIcon li span {
  603. width: 5rem;
  604. height: 4rem;
  605. overflow: hidden;
  606. float: left;
  607. background: url("../static/img/t1.svg");
  608. background-repeat: no-repeat;
  609. background-size: 100% 100%;
  610. background-position: top center;
  611. font-family: vista;
  612. font-weight: normal;
  613. font-size: 1.2rem;
  614. letter-spacing: -0.05em;
  615. text-align: center;
  616. color: #fff;
  617. line-height: 0.4rem;
  618. }
  619. .levelIcon li span div {
  620. width: 100%;
  621. overflow: hidden;
  622. display: block;
  623. margin: 0 auto;
  624. padding-top: 17%;
  625. }
  626. .levelIcon li:nth-child(2) span {
  627. background: url("../static/img/t2.svg");
  628. background-size: 100% 100%;
  629. background-position: top center;
  630. }
  631. .levelIcon li:nth-child(3) span {
  632. background: url("../static/img/t3.svg");
  633. background-size: 100% 100%;
  634. background-position: top center;
  635. }
  636. .levelIcon li:nth-child(4) span {
  637. background: url("../static/img/t4.svg");
  638. background-size: 100% 100%;
  639. background-position: top center;
  640. }
  641. .levelIcon li:nth-child(5) span {
  642. background: url("../static/img/t5.svg");
  643. background-size: 100% 100%;
  644. background-position: top center;
  645. }
  646. .levelIcon li:nth-child(6) span {
  647. background: url("../static/img/t6.svg");
  648. background-size: 100% 100%;
  649. background-position: top center;
  650. }
  651. .levelIcon li:nth-child(6) span div {
  652. margin-top: 13%;
  653. }
  654. .levelIcon li em {
  655. float: right;
  656. width: 4rem;
  657. height: 42px;
  658. border-radius: 21px;
  659. background: rgba(2, 143, 225, 0.16);
  660. border: 1px solid #028fe1;
  661. box-shadow: 0px 0px 5px #028fe1;
  662. font-family: vista;
  663. font-weight: normal;
  664. font-size: 24px;
  665. text-align: center;
  666. color: #fff;
  667. font-style: normal;
  668. line-height: 42px;
  669. margin-top: 15%;
  670. margin-left: 1%;
  671. }
  672. .levelIcon li:nth-child(2) em {
  673. background: rgba(109, 38, 250, 0.16);
  674. border: 1px solid #6d26fa;
  675. box-shadow: 0px 0px 5px #6d26fa;
  676. }
  677. .levelIcon li:nth-child(3) em {
  678. background: rgba(10, 177, 5, 0.16);
  679. border: 1px solid #0ab105;
  680. box-shadow: 0px 0px 5px #0ab105;
  681. }
  682. .levelIcon li:nth-child(4) em {
  683. background: rgba(186, 204, 1, 0.16);
  684. border: 1px solid #bacc01;
  685. box-shadow: 0px 0px 5px #bacc01;
  686. }
  687. .levelIcon li:nth-child(5) em {
  688. background: rgba(234, 136, 19, 0.16);
  689. border: 1px solid #ea8813;
  690. box-shadow: 0px 0px 5px #ea8813;
  691. }
  692. .levelIcon li:nth-child(6) em {
  693. background: rgba(209, 17, 34, 0.16);
  694. border: 1px solid #d11122;
  695. box-shadow: 0px 0px 5px #d11122;
  696. }
  697. .levelIcon {
  698. height: 70px;
  699. }
  700. .levelIcon li span {
  701. width: 70px;
  702. height: 70px;
  703. font-size: 0.2rem;
  704. }
  705. .levelIcon li span div {
  706. font-size: 16px;
  707. padding-top: 0.19rem;
  708. line-height: 22px;
  709. }
  710. .levelIcon ul {
  711. width: 98%;
  712. }
  713. .levelIcon li em {
  714. width: 45%;
  715. height: 30px;
  716. line-height: 30px;
  717. font-size: 0.2rem;
  718. margin-top: 11%;
  719. margin-left: 3%;
  720. float: left;
  721. }
  722. .slowJump {
  723. animation: mymove 3s infinite;
  724. -webkit-animation: mymove 3s infinite; /*Safari and Chrome*/
  725. animation-direction: alternate; /*轮流反向播放动画。*/
  726. animation-timing-function: ease-in-out; /*动画的速度曲线*/
  727. /* Safari 和 Chrome */
  728. -webkit-animation-direction: alternate; /*轮流反向播放动画。*/
  729. -webkit-animation-timing-function: ease-in-out; /*动画的速度曲线*/
  730. }
  731. .normalJump {
  732. animation: mymove 2s infinite;
  733. -webkit-animation: mymove 2s infinite; /*Safari and Chrome*/
  734. animation-direction: alternate; /*轮流反向播放动画。*/
  735. animation-timing-function: ease-in-out; /*动画的速度曲线*/
  736. /* Safari 和 Chrome */
  737. -webkit-animation-direction: alternate; /*轮流反向播放动画。*/
  738. -webkit-animation-timing-function: ease-in-out; /*动画的速度曲线*/
  739. }
  740. .fastJump {
  741. animation: mymove 1s infinite;
  742. -webkit-animation: mymove 1s infinite; /*Safari and Chrome*/
  743. animation-direction: alternate; /*轮流反向播放动画。*/
  744. animation-timing-function: ease-in-out; /*动画的速度曲线*/
  745. /* Safari 和 Chrome */
  746. -webkit-animation-direction: alternate; /*轮流反向播放动画。*/
  747. -webkit-animation-timing-function: ease-in-out; /*动画的速度曲线*/
  748. }
  749. @keyframes mymove {
  750. 0% {
  751. transform: scale(1); /*开始为原始大小*/
  752. }
  753. 25% {
  754. transform: scale(1.1); /*放大1.1倍*/
  755. }
  756. 50% {
  757. transform: scale(1);
  758. }
  759. 75% {
  760. transform: scale(1.1);
  761. }
  762. }
  763. @-webkit-keyframes mymove /*Safari and Chrome*/
  764. {
  765. 0% {
  766. transform: scale(1); /*开始为原始大小*/
  767. }
  768. 25% {
  769. transform: scale(1.1); /*放大1.1倍*/
  770. }
  771. 50% {
  772. transform: scale(1);
  773. }
  774. 75% {
  775. transform: scale(1.1);
  776. }
  777. }
  778. /*userList*/
  779. .userList {
  780. width: 100%;
  781. height: 76%;
  782. overflow: hidden;
  783. display: block;
  784. margin: 0.1rem auto;
  785. }
  786. .userList ul {
  787. /*width: 100%;*/
  788. height: 98%;
  789. overflow: hidden;
  790. display: block;
  791. margin: 0.1rem;
  792. margin-bottom: 0;
  793. }
  794. .userList li {
  795. display: block;
  796. z-index: 666;
  797. }
  798. .centerLi {
  799. width: 99.8%;
  800. overflow: hidden;
  801. float: left;
  802. color: #fff;
  803. }
  804. .human img {
  805. overflow: hidden;
  806. display: block;
  807. margin: 0 auto;
  808. border: 2px solid #fff;
  809. border-radius: 250px;
  810. /*box-shadow: 0px 0px 5px #fff;*/
  811. }
  812. s {
  813. text-decoration: none;
  814. }
  815. em {
  816. font-style: normal;
  817. }
  818. .cla {
  819. position: relative;
  820. float: left;
  821. text-align: right;
  822. }
  823. .centerLi .human {
  824. width: 100%;
  825. overflow: hidden;
  826. display: block;
  827. margin: 0 auto;
  828. padding: 0;
  829. }
  830. .human .name {
  831. width: 100%;
  832. display: block;
  833. margin: 0 auto;
  834. overflow: hidden;
  835. }
  836. .lcla span {
  837. position: relative;
  838. float: left;
  839. }
  840. .cla em {
  841. text-align: right;
  842. }
  843. .heartJump {
  844. position: relative;
  845. }
  846. .lhj span {
  847. position: relative;
  848. text-align: right;
  849. float: left;
  850. }
  851. .rhj {
  852. float: right;
  853. }
  854. .rhj img {
  855. position: relative;
  856. float: right;
  857. }
  858. .bottomLi {
  859. width: 96%;
  860. overflow: hidden;
  861. display: block;
  862. margin: 0 auto;
  863. margin-top: 0.3rem;
  864. font-weight: normal !important;
  865. color: #fff;
  866. text-align: left;
  867. line-height: 0.7rem;
  868. }
  869. .bottomLi img {
  870. float: left;
  871. margin-left: 10%;
  872. }
  873. .bottomLi .btcla {
  874. width: 33.333%;
  875. float: left;
  876. }
  877. .bottomLi .btck {
  878. width: 33.333%;
  879. float: left;
  880. }
  881. .bottomLi .step {
  882. width: 33.333%;
  883. float: right;
  884. }
  885. .bottomLi span {
  886. float: left;
  887. text-align: left;
  888. }
  889. .topLi {
  890. width: 100%;
  891. overflow: hidden;
  892. display: block;
  893. margin: 0 auto;
  894. overflow: hidden;
  895. }
  896. /*max*/
  897. .max {
  898. width: 12rem;
  899. height: 5.6rem;
  900. display: block;
  901. margin: 0 auto;
  902. margin-top: 1rem;
  903. }
  904. .max .centerLi {
  905. width: 90%;
  906. height: 100%;
  907. }
  908. .max .ltLi {
  909. width: 5%;
  910. height: 100%;
  911. float: left;
  912. background: url("../static/img/ltCube.png");
  913. background-size: 100% 100%;
  914. background-repeat: no-repeat;
  915. }
  916. .max .rtLi {
  917. width: 5%;
  918. height: 100%;
  919. float: right;
  920. background: url("../static/img/rtCube.png");
  921. background-size: 100% 100%;
  922. background-repeat: no-repeat;
  923. }
  924. .max .human .name {
  925. font-size: 0.5rem;
  926. height: 1rem;
  927. line-height: 1rem;
  928. }
  929. .max .human img {
  930. width: 3rem;
  931. height: 3rem;
  932. }
  933. .max .cla {
  934. width: 3rem;
  935. height: 2rem;
  936. top: -2.4rem;
  937. left: 0;
  938. font-size: 0.55rem;
  939. }
  940. .max .lcla span {
  941. font-size: 0.7rem;
  942. top: -2.4rem;
  943. float: left;
  944. left: 0;
  945. }
  946. .max .cla em {
  947. font-size: 1.5rem;
  948. left: 1rem;
  949. }
  950. .max .lhj span {
  951. width: 3rem;
  952. height: 2rem;
  953. top: -2.4rem;
  954. left: 3.4rem;
  955. font-size: 1.5rem;
  956. }
  957. .max .rhj img {
  958. width: 0.5rem;
  959. top: -2.3rem;
  960. right: 0.3rem;
  961. }
  962. .max .longIcon {
  963. position: absolute;
  964. width: 1.96rem;
  965. overflow: hidden;
  966. display: block;
  967. margin: 0 auto;
  968. bottom: 2rem;
  969. right: 3.5rem;
  970. }
  971. .max .topLi {
  972. height: 4.5rem;
  973. }
  974. .max .bottomLi {
  975. font-size: 0.5rem;
  976. text-align: center;
  977. }
  978. .max .bottomLi .btck {
  979. /*text-indent: 1.6rem;*/
  980. }
  981. .max .bottomLi img {
  982. width: 0.5rem;
  983. height: 0.5rem;
  984. margin-top: 0.1rem;
  985. }
  986. .max .bottomLi span {
  987. line-height: 0.8rem;
  988. text-indent: 0.2rem;
  989. }
  990. .max .bottomLi .btck {
  991. width: 29%;
  992. padding-left: 1%;
  993. }
  994. .max .bottomLi .step {
  995. width: 24%;
  996. padding-right: 2%;
  997. }
  998. .max .cla em.plus {
  999. position: relative;
  1000. left: -0.5rem
  1001. }
  1002. .max .lhj span.plus {
  1003. position: relative;
  1004. left: 2.75rem
  1005. }
  1006. .max .bottomLi .btcla img {
  1007. width: 0.5rem;
  1008. height: 0.5rem;
  1009. }
  1010. .max .bottomLi .btcla span {
  1011. text-indent: 0.1rem;
  1012. }
  1013. .max .bottomLi .btck span {
  1014. text-indent: 0.1rem;
  1015. }
  1016. .max .bottomLi .btck img {
  1017. width: 0.6rem;
  1018. height: 0.6rem;
  1019. margin-top: 0.05rem;
  1020. }
  1021. /*two*/
  1022. .two {
  1023. width: 49%;
  1024. height: 5.33rem;
  1025. float: left;
  1026. overflow: hidden;
  1027. margin-top: 6%
  1028. }
  1029. .two .centerLi {
  1030. border: 1px solid #fff;
  1031. }
  1032. .two:nth-child(2) {
  1033. float: right;
  1034. }
  1035. .two .human .name {
  1036. width: 100%;
  1037. height: 1rem;
  1038. font-size: 0.5rem;
  1039. line-height: 1rem;
  1040. }
  1041. .two .human img {
  1042. width: 2.8rem;
  1043. height: 2.8rem;
  1044. }
  1045. .two .cla {
  1046. width: 2.9rem;
  1047. height: 2rem;
  1048. top: -2.4rem;
  1049. left: 0;
  1050. font-size: 0.5rem;
  1051. }
  1052. .two .lcla span {
  1053. font-size: 0.55rem;
  1054. top: -2.3rem;
  1055. float: left;
  1056. left: 0;
  1057. }
  1058. .two .cla em {
  1059. font-size: 1.3rem;
  1060. left: 1rem;
  1061. }
  1062. .two .lhj span {
  1063. width: 3rem;
  1064. height: 2rem;
  1065. top: -2.4rem;
  1066. left: 2.4rem;
  1067. font-size: 1.2rem;
  1068. }
  1069. .two .rhj img {
  1070. width: 0.45rem;
  1071. top: -2.2rem;
  1072. right: 0.3rem;
  1073. }
  1074. .two .topLi {
  1075. height: 4.2rem;
  1076. }
  1077. .two .bottomLi {
  1078. font-size: 0.4rem;
  1079. text-align: center;
  1080. }
  1081. .two .bottomLi img {
  1082. width: 0.5rem;
  1083. height: 0.5rem;
  1084. margin-top: 0.1rem;
  1085. }
  1086. .two .bottomLi span {
  1087. line-height: 0.8rem;
  1088. text-indent: 0.2rem;
  1089. }
  1090. .two .bottomLi .btck {
  1091. width: 29%;
  1092. padding-left: 0%;
  1093. }
  1094. .two .bottomLi .step {
  1095. width: 26%;
  1096. padding-right: 4%;
  1097. }
  1098. .two .cla em.plus {
  1099. position: relative;
  1100. left: -0.5rem
  1101. }
  1102. .two .lhj span.plus {
  1103. position: relative;
  1104. left: 2.2rem
  1105. }
  1106. .two .bottomLi .btck img {
  1107. width: 0.6rem;
  1108. height: 0.6rem;
  1109. margin-top: 0.05rem;
  1110. }
  1111. .two .bottomLi .btck span {
  1112. text-indent: 0.1rem;
  1113. }
  1114. /*three*/
  1115. .three {
  1116. width: 50%;
  1117. height: 4rem;
  1118. float: left;
  1119. overflow: hidden;
  1120. margin-bottom: 1%
  1121. }
  1122. .three .centerLi {
  1123. width: 96%;
  1124. overflow: hidden;
  1125. display: block;
  1126. margin: 0 auto;
  1127. border: 1px solid #fff;
  1128. float: none;
  1129. }
  1130. .three .human .name {
  1131. width: 100%;
  1132. height: 0.8rem;
  1133. font-size: 0.4rem;
  1134. line-height: 0.8rem;
  1135. }
  1136. .three .human img {
  1137. width: 2.1rem;
  1138. height: 2.1rem;
  1139. margin-top: 0.1rem;
  1140. }
  1141. .three .cla {
  1142. width: 2.9rem;
  1143. height: 2rem;
  1144. top: -1.8rem;
  1145. left: 0;
  1146. font-size: 0.4rem;
  1147. }
  1148. .three .lcla span {
  1149. font-size: 0.45rem;
  1150. top: -1.8rem;
  1151. float: left;
  1152. left: 0;
  1153. }
  1154. .three .cla em {
  1155. font-size: 1.2rem;
  1156. left: 1rem;
  1157. }
  1158. .three .lhj span {
  1159. width: 3rem;
  1160. height: 2rem;
  1161. top: -1.70rem;
  1162. left: 2.3rem;
  1163. font-size: 1.1rem;
  1164. }
  1165. .three .rhj img {
  1166. width: 0.4rem;
  1167. top: -1.7rem;
  1168. right: 0.4rem;
  1169. }
  1170. .three .topLi {
  1171. /*height: 3.26rem;*/
  1172. height: 3.18rem;
  1173. }
  1174. .three .bottomLi {
  1175. font-size: 0.4rem;
  1176. margin-top: 0rem;
  1177. text-align: center;
  1178. }
  1179. .three .bottomLi img {
  1180. width: 0.5rem;
  1181. height: 0.5rem;
  1182. margin-top: 0.1rem;
  1183. }
  1184. .three .bottomLi span {
  1185. line-height: 0.8rem;
  1186. text-indent: 0.2rem;
  1187. }
  1188. .three .bottomLi .btck {
  1189. width: 30%;
  1190. padding-left: 2%;
  1191. }
  1192. .three .bottomLi .step {
  1193. width: 25%;
  1194. padding-right: 2%;
  1195. }
  1196. .three .cla em.plus {
  1197. position: relative;
  1198. left: -0.5rem
  1199. }
  1200. .three .lhj span.plus {
  1201. position: relative;
  1202. left: 1.9rem
  1203. }
  1204. .three .bottomLi .btck img {
  1205. width: 0.6rem;
  1206. height: 0.6rem;
  1207. margin-top: 0.05rem;
  1208. }
  1209. .three .bottomLi .btck span {
  1210. text-indent: 0.1rem;
  1211. }
  1212. /*six*/
  1213. .six {
  1214. width: 33.3333%;
  1215. height: 3.6rem;
  1216. float: left;
  1217. overflow: hidden;
  1218. margin-bottom: 1%
  1219. }
  1220. .six .centerLi {
  1221. width: 98%;
  1222. overflow: hidden;
  1223. display: block;
  1224. margin: 0 auto;
  1225. border: 1px solid #fff;
  1226. float: none;
  1227. }
  1228. .six .human .name {
  1229. width: 100%;
  1230. height: 0.8rem;
  1231. font-size: 0.35rem;
  1232. line-height: 0.8rem;
  1233. }
  1234. .six .human img {
  1235. width: 1.6rem;
  1236. height: 1.6rem;
  1237. margin-top: 0.1rem;
  1238. }
  1239. .six .cla {
  1240. width: 2rem;
  1241. height: 2rem;
  1242. top: -1.3rem;
  1243. left: 0;
  1244. font-size: 0.3rem;
  1245. }
  1246. .six .lcla span {
  1247. font-size: 0.4rem;
  1248. top: -1.4rem;
  1249. float: left;
  1250. left: -0.05rem;
  1251. }
  1252. .six .cla em {
  1253. font-size: 0.9rem;
  1254. left: 1rem;
  1255. }
  1256. .six .lhj span {
  1257. width: 2rem;
  1258. height: 2rem;
  1259. top: -1.3rem;
  1260. left: 1.6rem;
  1261. font-size: 0.85rem;
  1262. }
  1263. .six .rhj img {
  1264. width: 0.3rem;
  1265. top: -1.3rem;
  1266. right: 0.2rem;
  1267. }
  1268. .six .topLi {
  1269. height: 2.6rem;
  1270. }
  1271. .six .bottomLi {
  1272. width: 98%;
  1273. font-size: 0.325rem;
  1274. margin-top: 0.3rem;
  1275. text-align: center;
  1276. }
  1277. .six .bottomLi img {
  1278. width: 0.4rem;
  1279. margin-top: 0.15rem;
  1280. }
  1281. .six .bottomLi .btcla img {
  1282. width: 0.3rem;
  1283. /*margin-top: 0.1rem;*/
  1284. }
  1285. .six .bottomLi .btck img {
  1286. width: 0.4rem;
  1287. margin-top: 0.1rem;
  1288. }
  1289. .six .bottomLi span {
  1290. line-height: 0.8rem;
  1291. text-indent: 0.1rem;
  1292. }
  1293. .six .bottomLi .btcla {
  1294. width: 30%;
  1295. }
  1296. .six .bottomLi .btck {
  1297. width: 33%;
  1298. padding-left: 3%;
  1299. }
  1300. .six .bottomLi .step {
  1301. width: 28%;
  1302. padding-right: 0%;
  1303. }
  1304. .six .cla em.plus {
  1305. position: relative;
  1306. left: -0.3rem
  1307. }
  1308. .six .lhj span.plus {
  1309. position: relative;
  1310. left: 1.3rem
  1311. }
  1312. .six .bottomLi .btck img {
  1313. width: 0.5rem;
  1314. height: 0.5rem;
  1315. margin-top: 0.12rem;
  1316. }
  1317. /*nine*/
  1318. .nine {
  1319. width: 33.3333%;
  1320. height: 2.7rem;
  1321. float: left;
  1322. overflow: hidden;
  1323. margin-bottom: 0.1rem
  1324. }
  1325. .nine .centerLi {
  1326. width: 98%;
  1327. overflow: hidden;
  1328. display: block;
  1329. margin: 0 auto;
  1330. border: 1px solid #fff;
  1331. float: none;
  1332. }
  1333. .nine .human .name {
  1334. width: 100%;
  1335. height: 0.6rem;
  1336. font-size: 0.3rem;
  1337. line-height: 0.6rem;
  1338. }
  1339. .nine .human img {
  1340. width: 1.2rem;
  1341. height: 1.2rem;
  1342. margin-top: 0.1rem;
  1343. }
  1344. .nine .cla {
  1345. width: 1.9rem;
  1346. height: 2rem;
  1347. top: -1.1rem;
  1348. left: 0;
  1349. font-size: 0.25rem;
  1350. }
  1351. .nine .lcla span {
  1352. font-size: 0.35rem;
  1353. top: -1.1rem;
  1354. float: left;
  1355. left: 0.05rem;
  1356. }
  1357. .nine .cla em {
  1358. font-size: 0.7rem;
  1359. left: 1rem;
  1360. }
  1361. .nine .lhj span {
  1362. width: 1.9rem;
  1363. height: 2rem;
  1364. top: -1.1rem;
  1365. left: 1.6rem;
  1366. font-size: 0.7rem;
  1367. }
  1368. .nine .rhj img {
  1369. width: 0.25rem;
  1370. top: -1.0rem;
  1371. right: 0.4rem;
  1372. }
  1373. .nine .topLi {
  1374. height: 2rem;
  1375. }
  1376. .nine .bottomLi {
  1377. width: 98%;
  1378. font-size: 0.3rem;
  1379. margin-top: 0.05rem;
  1380. text-align: center;
  1381. }
  1382. .nine .bottomLi img {
  1383. width: 0.35rem;
  1384. height: 0.35rem;
  1385. margin-top: 0.2rem;
  1386. }
  1387. .nine .bottomLi span {
  1388. line-height: 0.8rem;
  1389. text-indent: 0.1rem;
  1390. }
  1391. .nine .bottomLi .btcla {
  1392. width: 30%;
  1393. }
  1394. .nine .bottomLi .btck {
  1395. width: 32%;
  1396. padding-left: 5%;
  1397. }
  1398. .nine .bottomLi .step {
  1399. width: 28%;
  1400. padding-right: 0%;
  1401. }
  1402. .nine .cla em.plus {
  1403. position: relative;
  1404. left: -0.3rem
  1405. }
  1406. .nine .lhj span.plus {
  1407. position: relative;
  1408. left: 1.3rem
  1409. }
  1410. .nine .bottomLi .btck img {
  1411. width: 0.45rem;
  1412. height: 0.45rem;
  1413. margin-top: 0.15rem;
  1414. }
  1415. /*ten*/
  1416. .ten {
  1417. width: 25%;
  1418. height: 2.6rem;
  1419. float: left;
  1420. overflow: hidden;
  1421. margin-bottom: 0.2rem
  1422. }
  1423. .ten .centerLi {
  1424. width: 98%;
  1425. overflow: hidden;
  1426. display: block;
  1427. margin: 0 auto;
  1428. border: 1px solid #fff;
  1429. float: none;
  1430. }
  1431. .ten .human .name {
  1432. width: 100%;
  1433. height: 0.5rem;
  1434. font-size: 0.3rem;
  1435. line-height: 0.55rem;
  1436. margin-bottom: 0.1rem;
  1437. }
  1438. .ten .human img {
  1439. width: 1.1rem;
  1440. height: 1.1rem;
  1441. margin-top: 0.2rem;
  1442. }
  1443. .ten .cla {
  1444. width: 1.4rem;
  1445. height: 1.5rem;
  1446. top: -0.95rem;
  1447. left: 0;
  1448. font-size: 0.2rem;
  1449. }
  1450. .ten .lcla span {
  1451. font-size: 0.3rem;
  1452. top: -0.95rem;
  1453. float: left;
  1454. left: -0rem;
  1455. }
  1456. .ten .cla em {
  1457. font-size: 0.6rem;
  1458. left: 0.5rem;
  1459. }
  1460. .ten .lhj span {
  1461. width: 1.4rem;
  1462. height: 2.1rem;
  1463. top: -0.9rem;
  1464. left: 1.4rem;
  1465. font-size: 0.6rem;
  1466. }
  1467. .ten .rhj img {
  1468. width: 0.2rem;
  1469. top: -0.9rem;
  1470. right: 0.15rem;
  1471. }
  1472. .ten .topLi {
  1473. height: 1.85rem;
  1474. }
  1475. .ten .bottomLi {
  1476. width: 98%;
  1477. font-size: 0.25rem;
  1478. margin-top: 0.1rem;
  1479. text-align: center;
  1480. }
  1481. .ten .bottomLi img {
  1482. width: 0.3rem;
  1483. height: 0.3rem;
  1484. margin-top: 0.25rem;
  1485. }
  1486. .ten .bottomLi span {
  1487. line-height: 0.8rem;
  1488. text-indent: 0.1rem;
  1489. }
  1490. .ten .bottomLi .btcla {
  1491. width: 30%;
  1492. }
  1493. .ten .bottomLi .btck {
  1494. width: 32%;
  1495. padding-left: 3%;
  1496. }
  1497. .ten .bottomLi .step {
  1498. width: 29%;
  1499. padding-right: 0%;
  1500. }
  1501. .ten .cla em.plus {
  1502. position: relative;
  1503. left: -0.3rem
  1504. }
  1505. .ten .lhj span.plus {
  1506. position: relative;
  1507. left: 1.2rem;
  1508. line-height: 0.75rem;
  1509. }
  1510. .ten .btck img {
  1511. width: 0.4rem;
  1512. height: 0.4rem;
  1513. margin-top: 0.18rem;
  1514. }
  1515. /*twelve*/
  1516. .twelve {
  1517. width: 20%;
  1518. height: 2.4rem;
  1519. float: left;
  1520. overflow: hidden;
  1521. margin-bottom: 0.3rem
  1522. }
  1523. .twelve .centerLi {
  1524. width: 98%;
  1525. height: 100%;
  1526. overflow: hidden;
  1527. display: block;
  1528. margin: 0 auto;
  1529. border: 1px solid #fff;
  1530. float: none;
  1531. }
  1532. .twelve .human .name {
  1533. width: 100%;
  1534. height: 0.5rem;
  1535. font-size: 0.25rem;
  1536. line-height: 0.7rem;
  1537. margin-bottom: 0.2rem;
  1538. }
  1539. .twelve .human img {
  1540. width: 0.9rem;
  1541. height: 0.9rem;
  1542. }
  1543. .twelve .cla {
  1544. width: 1.2rem;
  1545. height: 1.2rem;
  1546. top: -0.8rem;
  1547. left: -0.1rem;
  1548. font-size: 0.2rem;
  1549. }
  1550. .twelve .lcla span {
  1551. font-size: 0.25rem;
  1552. top: -0.8rem;
  1553. float: left;
  1554. left: -0.07rem;
  1555. }
  1556. .twelve .cla em {
  1557. font-size: 0.5rem;
  1558. left: 0.5rem;
  1559. }
  1560. .twelve .lhj span {
  1561. width: 1.2rem;
  1562. height: 1.2rem;
  1563. top: -0.8rem;
  1564. left: 0.9rem;
  1565. font-size: 0.5rem;
  1566. }
  1567. .twelve .rhj img {
  1568. width: 0.18rem;
  1569. top: -0.75rem;
  1570. right: 0.15rem;
  1571. }
  1572. .twelve .topLi {
  1573. height: 1.65rem;
  1574. }
  1575. .twelve .bottomLi {
  1576. width: 98%;
  1577. font-size: 0.225rem;
  1578. margin-top: 0.1rem;
  1579. text-align: center;
  1580. }
  1581. .twelve .bottomLi img {
  1582. width: 0.25rem;
  1583. height: 0.25rem;
  1584. margin-top: 0.25rem;
  1585. }
  1586. .twelve .bottomLi span {
  1587. line-height: 0.8rem;
  1588. text-indent: 0.1rem;
  1589. }
  1590. .twelve .bottomLi .btcla {
  1591. width: 30%;
  1592. }
  1593. .twelve .bottomLi .btck {
  1594. width: 32%;
  1595. padding-left: 2%;
  1596. }
  1597. .twelve .bottomLi .step {
  1598. width: 27%;
  1599. padding-right: 1%;
  1600. }
  1601. .twelve .cla em.plus {
  1602. position: relative;
  1603. left: -0.2rem
  1604. }
  1605. .twelve .lhj span.plus {
  1606. position: relative;
  1607. left: 0.8rem
  1608. }
  1609. .twelve .btck img {
  1610. width: 0.3rem;
  1611. height: 0.3rem;
  1612. }
  1613. .twelve .btck img {
  1614. width: 0.35rem;
  1615. height: 0.35rem;
  1616. margin-top: 0.22rem;
  1617. }
  1618. /*sixteen*/
  1619. .sixteen {
  1620. width: 20%;
  1621. height: 1.95rem;
  1622. float: left;
  1623. overflow: hidden;
  1624. margin-bottom: 0.1rem
  1625. }
  1626. .sixteen .centerLi {
  1627. width: 98%;
  1628. overflow: hidden;
  1629. display: block;
  1630. margin: 0 auto;
  1631. border: 1px solid #fff;
  1632. float: none;
  1633. }
  1634. .sixteen .human .name {
  1635. width: 100%;
  1636. height: 0.4rem;
  1637. font-size: 0.22rem;
  1638. line-height: 0.45rem;
  1639. margin-top: 0.1rem;
  1640. margin-bottom: 0.1rem;
  1641. }
  1642. .sixteen .human img {
  1643. width: 0.75rem;
  1644. height: 0.75rem;
  1645. }
  1646. .sixteen .cla {
  1647. width: 1.2rem;
  1648. height: 1.4rem;
  1649. top: -0.7rem;
  1650. left: 0;
  1651. font-size: 0.15rem;
  1652. }
  1653. .sixteen .lcla span {
  1654. font-size: 0.275rem;
  1655. top: -0.7rem;
  1656. float: left;
  1657. left: -0rem;
  1658. }
  1659. .sixteen .cla em {
  1660. font-size: 0.5rem;
  1661. left: 0.2rem;
  1662. }
  1663. .sixteen .lhj span {
  1664. width: 1rem;
  1665. height: 1.8rem;
  1666. top: -0.7rem;
  1667. left: 1rem;
  1668. font-size: 0.5rem;
  1669. }
  1670. .sixteen .rhj img {
  1671. width: 0.17rem;
  1672. top: -0.65rem;
  1673. right: 0.15rem;
  1674. }
  1675. .sixteen .topLi {
  1676. height: 1.4rem;
  1677. }
  1678. .sixteen .bottomLi {
  1679. width: 98%;
  1680. font-size: 0.2rem;
  1681. margin-top: -0.05rem;
  1682. text-align: center;
  1683. }
  1684. .sixteen .bottomLi img {
  1685. width: 0.25rem;
  1686. height: 0.25rem;
  1687. margin-top: 0.25rem;
  1688. }
  1689. .sixteen .bottomLi span {
  1690. line-height: 0.8rem;
  1691. text-indent: 0.1rem;
  1692. }
  1693. .sixteen .bottomLi .btcla {
  1694. width: 30%;
  1695. }
  1696. .sixteen .bottomLi .btck {
  1697. width: 32%;
  1698. padding-left: 3%;
  1699. }
  1700. .sixteen .bottomLi .step {
  1701. width: 27%;
  1702. padding-right: 3%;
  1703. /*text-align: center;*/
  1704. }
  1705. .sixteen .cla em.plus {
  1706. position: relative;
  1707. left: -0.2rem
  1708. }
  1709. .sixteen .lhj span.plus {
  1710. position: relative;
  1711. left: 0.9rem
  1712. }
  1713. .sixteen .btck img {
  1714. width: 0.3rem;
  1715. height: 0.3rem;
  1716. }
  1717. /*twenty*/
  1718. .twenty {
  1719. width: 16.66667%;
  1720. height: 1.85rem;
  1721. float: left;
  1722. overflow: hidden;
  1723. margin-bottom: 0.1rem
  1724. }
  1725. .twenty .centerLi {
  1726. width: 98%;
  1727. overflow: hidden;
  1728. display: block;
  1729. margin: 0 auto;
  1730. border: 1px solid #fff;
  1731. float: none;
  1732. }
  1733. .twenty .human .name {
  1734. width: 100%;
  1735. height: 0.4rem;
  1736. font-size: 0.22rem;
  1737. line-height: 0.5rem;
  1738. margin-bottom: 0.1rem;
  1739. }
  1740. .twenty .human img {
  1741. width: 0.75rem;
  1742. height: 0.75rem;
  1743. margin-top: 0.15rem;
  1744. }
  1745. .twenty .cla {
  1746. width: 0.95rem;
  1747. height: 1.4rem;
  1748. top: -0.69rem;
  1749. left: 0;
  1750. font-size: 0.15rem;
  1751. }
  1752. .twenty .lcla span {
  1753. font-size: 0.225rem;
  1754. top: -0.65rem;
  1755. float: left;
  1756. left: 0rem;
  1757. }
  1758. .twenty .cla em {
  1759. font-size: 0.4rem;
  1760. left: 0.2rem;
  1761. }
  1762. .twenty .lhj span {
  1763. width: 0.85rem;
  1764. height: 2rem;
  1765. top: -0.65rem;
  1766. left: 0.9rem;
  1767. font-size: 0.4rem;
  1768. }
  1769. .twenty .rhj img {
  1770. width: 0.15rem;
  1771. top: -0.6rem;
  1772. right: 0.1rem;
  1773. }
  1774. .twenty .topLi {
  1775. height: 1.35rem;
  1776. }
  1777. .twenty .bottomLi {
  1778. width: 98%;
  1779. font-size: 0.2rem;
  1780. margin-top: -0.1rem;
  1781. text-align: center;
  1782. }
  1783. .twenty .bottomLi img {
  1784. width: 0.2rem;
  1785. height: 0.2rem;
  1786. margin-top: 0.275rem;
  1787. }
  1788. .twenty .bottomLi span {
  1789. line-height: 0.8rem;
  1790. text-indent: 0.05rem;
  1791. }
  1792. .twenty .bottomLi .btcla {
  1793. width: 30%;
  1794. }
  1795. .twenty .bottomLi .btck {
  1796. width: 32%;
  1797. padding-left: 3%;
  1798. }
  1799. .twenty .bottomLi .step {
  1800. width: 28%;
  1801. padding-right: 3%;
  1802. }
  1803. .twenty .cla em.plus {
  1804. position: relative;
  1805. left: -0.2rem
  1806. }
  1807. .twenty .lhj span.plus {
  1808. position: relative;
  1809. left: 0.8rem
  1810. }
  1811. /*twentyFour*/
  1812. .twentyFour {
  1813. width: 16.6667%;
  1814. height: 1.6rem;
  1815. float: left;
  1816. overflow: hidden;
  1817. margin-bottom: 0.1rem
  1818. }
  1819. .twentyFour .centerLi {
  1820. width: 96%;
  1821. overflow: hidden;
  1822. display: block;
  1823. margin: 0 auto;
  1824. border: 1px solid #fff;
  1825. /*border: 0.03rem solid rgba(255,255,255,0.1);*/
  1826. /*box-shadow:inset 0 0 6px rgba(0,0,0,0.4);*/
  1827. float: none;
  1828. }
  1829. .twentyFour .human .name {
  1830. width: 100%;
  1831. height: 0.4rem;
  1832. font-size: 0.2rem;
  1833. line-height: 0.4rem;
  1834. }
  1835. .twentyFour .human img {
  1836. width: 0.7rem;
  1837. height: 0.7rem;
  1838. margin-top: 0.05rem;
  1839. }
  1840. .twentyFour .cla {
  1841. width: 0.9rem;
  1842. height: 1.4rem;
  1843. top: -0.6rem;
  1844. left: 0;
  1845. font-size: 0.15rem;
  1846. }
  1847. .twentyFour .lcla span {
  1848. font-size: 0.2rem;
  1849. top: -0.65rem;
  1850. float: left;
  1851. left: -0rem;
  1852. }
  1853. .twentyFour .cla em {
  1854. font-size: 0.4rem;
  1855. left: 0.2rem;
  1856. }
  1857. .twentyFour .lhj span {
  1858. width: 0.75rem;
  1859. height: 2rem;
  1860. top: -0.57rem;
  1861. left: 1rem;
  1862. font-size: 0.4rem;
  1863. }
  1864. .twentyFour .rhj img {
  1865. width: 0.15rem;
  1866. top: -0.6rem;
  1867. right: 0.15rem;
  1868. }
  1869. .twentyFour .topLi {
  1870. height: 1.18rem;
  1871. }
  1872. .twentyFour .bottomLi {
  1873. width: 98%;
  1874. font-size: 0.17rem;
  1875. margin-top: 0rem;
  1876. text-align: center;
  1877. }
  1878. .twentyFour .bottomLi img {
  1879. width: 0.2rem;
  1880. height: 0.2rem;
  1881. margin-top: 0.15rem;
  1882. }
  1883. .twentyFour .bottomLi span {
  1884. line-height: 0.55rem;
  1885. text-indent: 0.05rem;
  1886. }
  1887. .twentyFour .bottomLi .btcla {
  1888. width: 30%;
  1889. }
  1890. .twentyFour .bottomLi .btck {
  1891. width: 32%;
  1892. padding-left: 2%;
  1893. }
  1894. .twentyFour .bottomLi .step {
  1895. width: 28%;
  1896. padding-right: 0%;
  1897. }
  1898. .twentyFour .cla em.plus {
  1899. position: relative;
  1900. left: -0.2rem
  1901. }
  1902. .twentyFour .lhj span.plus {
  1903. position: relative;
  1904. left: 0.8rem;
  1905. line-height: 0.45rem;
  1906. }
  1907. .twentyFour .btck img {
  1908. width: 0.25rem;
  1909. height: 0.25rem;
  1910. margin-top: 0.12rem;
  1911. }
  1912. .twentyFour .bottomLi .step img {
  1913. margin-top: 0.16rem;
  1914. }
  1915. </style>