| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208 |
- <template>
- <div :class="pageStyle">
- <Headside></Headside>
- <div class="userList">
- <ul>
- <li v-for="(s,i) in students" :class="studentsClassName[i].name" v-show="students"
- v-if="students.length > 0">
- <div class="ltLi" v-if="students.length == 1"></div>
- <div class="centerLi">
- <div class="topLi">
- <div class="human">
- <span class="name">{{ s.Name }}</span>
- <!--<img src="../static/img/people/flyhead.png"/>-->
- <!--<img v-bind:src="require('../static/img/people/' + s.head)" alt="">-->
- <!--<img :src="s.Head" alt="" v-if="s.Head">-->
- <img :src="s.Head" alt="" v-if="s.Head">
- <!--<img v-bind:src="require('../static/img/people/flyhead.png')" alt="" v-if="!s.Head">-->
- <img src="../static/img/people/flyhead.png" alt="" v-if="!s.Head">
- </div>
- <div class="cla">
- <!--<em v-if="s.activePercent != 0">{{ s.activePercent |fmtNum }}</em>-->
- <em v-if="s.activePercent != 0">{{ s.activePercent }}</em>
- <em class="plus" v-if="s.activePercent == 0">
- ---
- </em>
- </div>
- <div class="lcla">
- <span>%</span>
- </div>
- <!--fastJump-->
- <!--heartJump-->
- <div>
- <div class="lhj">
- <div :class="[{'heartJump':true}]">
- <span class="fastJump" v-if="s.realHr != 0"
- v-show="parseInt(s.activePercent) > 90">{{ s.realHr }}</span>
- <span class="normalJump" v-if="s.realHr != 0"
- v-show="parseInt(s.activePercent) <= 90 && parseInt(s.activePercent) > 30">{{
- s.realHr
- }}</span>
- <span class="slowJump" v-if="s.realHr != 0"
- v-show="parseInt(s.activePercent) <= 30">{{ s.realHr }}</span>
- <span class="plus" v-if="s.realHr == 0">
- ---
- </span>
- </div>
- </div>
- <div class="rhj">
- <img src="../static/img/heart.svg" class=""/>
- </div>
- </div>
- </div>
- <div class="bottomLi">
- <div class="btcla">
- <img src="../static/img/s1.svg"/>
- <span>{{ s.Cle |fmtInt }}</span>
- </div>
- <div class="btck">
- <img src="../static/img/s2.svg"/>
- <span>{{ s.PureCalorieNoVo2 |fmtInt }}</span>
- </div>
- <div class="step">
- <img src="../static/img/ck.svg"/>
- <span>{{ s.Ck |fmtFloat }}</span>
- </div>
- </div>
- </div>
- <div class="rtLi" v-if="students.length == 1"></div>
- <img src="../static/img/long.png" class="longIcon" v-if="students.length == 1"/>
- </li>
- </ul>
- </div>
- <!--图示-->
- <div class="levelIcon">
- <ul>
- <li>
- <span class="cube">
- <div>
- 0%-<br>
- 39%
- </div>
- </span>
- <em>激活放松</em>
- </li>
- <li>
- <span class="cube">
- <div>
- 40%-<br>54% </div>
- </span>
- <em>动态热身</em>
- </li>
- <li>
- <span class="cube">
- <div>
- 55%-<br>69% </div>
- </span>
- <em>脂肪燃烧</em>
- </li>
- <li>
- <span class="cube">
- <div>
- 70%-<br>79% </div>
- </span>
- <em>糖分消耗</em>
- </li>
- <li>
- <span class="cube">
- <div>
- 80%-<br>89% </div>
- </span>
- <em>心肺训练</em>
- </li>
- <li>
- <span class="cube">
- <div>
- ≥90% </div>
- </span>
- <em>峰值锻炼</em>
- </li>
- </ul>
- </div>
- <newRecord :toper-info="toperInfo"></newRecord>
- </div>
- </template>
- <script>
- import Headside from '@/components/Headside'
- import
- {
- getHello,
- getRecordBreak,
- getClassStat
- } from '@/api/getApiRes'
- import newRecord from '@/components/newRecord'
- import '../libs/rem';
- import '../Global'
- let qs = require('qs');
- export default {
- data() {
- return {
- eqSn: '30:9C:23:0C:8B:1E',
- pageStyle: RandomBg(),
- trueDate: true,//真实数据 true false
- totalTime: 4,
- times: 1,
- thisClassName: '',
- studentsClassName: [],
- students: [],
- single: [],
- dialogVisible: false,
- serachBtnStatus: false,
- dialogMsg: '',
- imgsrc: '../static/img/people/',
- toperInfo: {
- dialogVisible: false,
- toper: {},
- },
- // 本地绑定名字和头像路径
- headImg: [
- {name: 'flyhead.png'},
- {name: 'flyhead.png'},
- {name: 'flyhead.png'},
- {name: 'flyhead.png'},
- {name: 'flyhead.png'},
- {name: 'flyhead.png'},
- {name: 'flyhead.png'},
- {name: 'flyhead.png'},
- {name: 'flyhead.png'},
- {name: 'flyhead.png'},
- {name: 'flyhead.png'},
- {name: 'flyhead.png'},
- {name: 'flyhead.png'},
- {name: 'flyhead.png'},
- {name: 'flyhead.png'},
- {name: 'flyhead.png'},
- {name: 'flyhead.png'},
- ],
- nameList: [
- {name: '杨东艳'},
- {name: '隋小飞'},
- {name: '刘晓蕾'},
- {name: '刘海生'},
- {name: '贾雨琦'},
- {name: '李延海'},
- {name: '宋凌晨'},
- {name: '段长鹏'},
- {name: '郑伟'},
- {name: '周睿'},
- {name: '贾奕'},
- {name: '王正祥'},
- {name: '高超'},
- {name: '武发鲁'},
- {name: '赵晋洪'},
- {name: '张岩'},
- {name: '郑伟'},
- {name: '郑伟'},
- ],
- fakeEgg: {
- Rs: {
- "DuId": 37,
- "UserId": 0,
- "UserName": "郑伟",
- "Sex": 1,
- // "Head": "http://192.168.0.2/zw.png",
- "Head": "https://img-operation.csdnimg.cn/csdn/silkroad/img/1604989753379.png",
- "Cle": 400,
- "CleTitle": "个人单次卡路里记录",
- "CleUnit": "千卡",
- "CkTitle": "个人单次CK记录",
- "Ck": 99.9,
- "CkUnit": "CK值"
- }
- },
- mainTimer: null,
- timer2: null,
- }
- },
- mounted() {
- // this.$router.push({path: '/2pkRank'});
- // return false
- if (this.trueDate) {
- this.mainTimer = setInterval(() => {
- this.GetgetUserList();
- this.curgetClassStat();
- }, 1000);
- this.timer2 = setInterval(() => {
- this.createEgg();
- }, 6000);
- this.GetgetUserList();
- this.createEgg();
- } else {
- // 彩蛋
- this.OpenEgg(this.fakeEgg);
- this.mainTimer = setInterval(() => {
- this.students = this.fakeNews();
- this.giveClassName(this.students);
- }, 1000);
- }
- // this.alertInfo(document.body.clientWidth);
- // this.alertInfo(window.screen.height);
- // 倒计时
- let that = this;
- // that.serachBtnStatus = true;
- // let totalTime = 3
- // let clock = window.setInterval(() => {
- // totalTime--
- // if (totalTime < 0) {
- // totalTime = 3;
- // that.serachBtnStatus = false;
- // }
- // }
- // ,
- // 1000
- // )
- },
- watch: {
- '$route': function (val) {
- if (val.path == '/main') {
- if (this.trueDate) {
- this.mainTimer = setInterval(() => {
- this.GetgetUserList();
- this.curgetClassStat();
- }, 1000);
- this.GetgetUserList();
- this.timer2 = setInterval(() => {
- this.createEgg();
- }, 6000);
- } else {
- this.students = this.fakeNews();
- this.giveClassName(this.students);
- // this.createEgg(this.students[5]);
- }
- } else {
- clearInterval(this.mainTimer);
- clearInterval(this.timer2);
- }
- }
- },
- beforeDestroy() {
- clearInterval(this.mainTimer);
- clearInterval(this.timer2);
- this.mainTimer = null;
- this.timer2 = null;
- },
- methods: {
- fakeNews() {
- let item = [];
- // 1 2 3 5 9 11 13 16 21 30
- let fakeNums = 2;
- for (var i = 0; i < fakeNums; i++) {
- item.push(
- {
- "SvId": 1,
- "UserId": 1,
- "Cle": 999,
- "realHr1": parseInt(Math.random() * 100 + 50),
- "realHr": 60,
- "activePercent": 30,
- "heartRate": 90,
- "Steps": 9999,
- "PureCalorieNoVo2": 999,
- "Name": "东南西北中",
- "updateTime": 1604568915582,
- "Ck": 99.9,
- "Head": '',
- }
- )
- }
- return item;
- },
- alertInfo(info) {
- alert(info);
- },
- // 启动一个成就彩蛋
- createEgg() {
- let that = this;
- let param = {
- token: localStorage.token,
- eqSn: localStorage.eqSn
- };
- let postdata = qs.stringify(param);
- getRecordBreak(postdata).then(res => {
- let json = res;
- if (json.Code == 0) {
- this.OpenEgg(json);
- } else {
- // 并没有人破记录
- if (json.Code == 999) return false;
- if (json.Code != 999) that.$message.error(json.Memo + '[egg]');
- }
- })
- },
- OpenEgg(msg) {
- this.toperInfo.toper = msg.Rs;
- this.toperInfo.dialogVisible = true;
- // 倒计时5秒自动关闭
- let that = this;
- this.totalTime = 4;
- let clock = window.setInterval(() => {
- this.totalTime--;
- if (parseInt(this.totalTime) < 0) {
- that.toperInfo.dialogVisible = false;
- clearInterval(clock);
- }
- }, 1000)
- },
- GetgetUserList() {
- let that = this;
- let param = {
- token: localStorage.token,
- eqSn: localStorage.eqSn
- };
- let postdata = qs.stringify(param);
- getHello(postdata).then(res => {
- let json = res;
- if (json.Code == 0) {
- that.students = json.Rs;
- // // 返回空值不处理
- // if (that.times == 1) {
- // that.students = json.Rs;
- // if (!json.Rs) return false;
- // // // 添加头像 和 姓名 ..
- // that.times++
- // } else {
- // if (localStorage.result != JSON.stringify(json.Rs)) {
- // that.students = json.Rs;
- // // this.createEgg(this.students[1]);
- // if (!json.Rs) return false;
- // // // 添加头像 和 姓名
- // // that.students.map(function (i, v) {
- // // i.head = that.headImg[v].name;
- // // i.userNmae = that.nameList[v].name
- // // });
- // }
- // localStorage.res = JSON.stringify(json.Rs);
- // }
- that.giveClassName(json.Rs);
- // test 启动一个成就彩蛋
- // this.createEgg(that.students[4]);
- } else {
- // 已下课
- if (json.Code == '999') {
- that.students = ""
- // 没人不做处理
- // that.$router.push({path: '/rank'});
- } else {
- // // 已出错
- that.$message.error(json.Memo);
- }
- }
- })
- },
- curgetClassStat() {
- let that = this;
- let param = {
- token: localStorage.token,
- eqSn: localStorage.eqSn
- };
- let postdata = qs.stringify(param);
- getClassStat(postdata).then(res => {
- let json = res;
- if (json.Code == 0) {
- // 没开课
- console.log(json.ClassOn);
- if (json.ClassOn == 0) {
- console.log("xiakele ");
- // 0: 下课 团课/私教 排名
- // 1:团课/私教 todo
- // 2:竞技课2PK
- // 3:竞技课threepk
- switch (parseInt(json.dp)) {
- case 0:
- that.$router.push({path: '/rank'});
- break;
- case 1:
- that.$router.push({path: '/'});
- break;
- case 2:
- console.log(123);
- that.$router.push({path: '/pk'});
- break;
- case 3:
- that.$router.push({path: '/threepk'});
- break;
- }
- }
- } else {
- console.log("已上课");
- // that.$message.error(json.Memo);
- }
- })
- },
- // 给每一个数据加类名,一次遍历全部赋值
- giveClassName(res) {
- let that = this;
- let numberClass = '';
- let colorClass = '';
- for (let i = 0; i < parseInt(res.length); i++) {
- switch (true) {
- case parseInt(res.length) == 1:
- numberClass = 'max';
- break;
- case parseInt(res.length) == 2:
- numberClass = 'two';
- break;
- case parseInt(res.length) <= 4 && parseInt(res.length) > 2:
- numberClass = 'three';
- break;
- case parseInt(res.length) <= 6 && parseInt(res.length) > 4:
- numberClass = 'six';
- break;
- case parseInt(res.length) <= 9 && parseInt(res.length) > 6:
- numberClass = 'nine';
- break;
- case parseInt(res.length) <= 12 && parseInt(res.length) > 9:
- numberClass = 'ten';
- break;
- case parseInt(res.length) <= 15 && parseInt(res.length) > 12:
- numberClass = 'twelve';
- break;
- case parseInt(res.length) <= 20 && parseInt(res.length) > 15:
- numberClass = 'sixteen';
- break;
- case parseInt(res.length) <= 24 && parseInt(res.length) > 20:
- numberClass = 'twenty';
- break;
- case parseInt(res.length) <= 30 && parseInt(res.length) > 24:
- numberClass = 'twentyFour';
- break;
- case parseInt(res.length) > 31:
- numberClass = 'thirtyFive';
- break;
- }
- let per = parseInt(res[i].activePercent);
- switch (true) {
- case per >= 90:
- colorClass = 'red';
- break;
- case per <= 89 && per > 79:
- colorClass = 'brown';
- break;
- case per <= 79 && per > 70:
- colorClass = 'yellow';
- break;
- case per <= 70 && per > 54:
- colorClass = 'green';
- break;
- case per <= 54 && per > 39:
- colorClass = 'violet';
- break;
- case per <= 39:
- colorClass = 'blue';
- break
- }
- that.studentsClassName[i] = {
- name: numberClass + ' ' + colorClass,
- }
- }
- },
- },
- filters: {
- fmtNum(val) {
- if (val == 0) {
- return '--'
- } else {
- if (parseInt(val) < 0) return 0;
- if (parseInt(val) > 0) return val
- }
- },
- fmtFloat(val) {
- if (val == 0) {
- return '0.0'
- } else {
- return parseFloat(val).toFixed(1);
- }
- },
- fmtInt(val) {
- if (val == 0) {
- return '0'
- } else {
- return parseFloat(val).toFixed(2);
- // return parseInt(val);
- // return parseFloat(val).toFixed(3);
- }
- },
- },
- components: {
- Headside, newRecord
- }
- }
- </script>
- <style scoped>
- @import "../assets/css/bg.css";
- @font-face {
- font-family: vista;
- src: url('../assets/font/vista.otf');
- }
- * {
- font-family: vista;
- }
- .pages {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- width: 100%;
- overflow: hidden;
- display: block;
- margin: 0 auto;
- font-family: vista;
- }
- ul, li {
- list-style: none;
- margin: 0;
- padding: 0;
- }
- .blue .centerLi {
- background: #028FE1;
- }
- .violet .centerLi {
- background: #6D26FA;
- }
- .green .centerLi {
- background: #0AB105;
- }
- .yellow .centerLi {
- background: #BACC01;
- }
- .brown .centerLi {
- background: #EA8813;
- }
- .red .centerLi {
- background: #CF1122;
- }
- .levelIcon {
- position: absolute;
- bottom: 0.1rem;
- width: 100%;
- overflow: hidden;
- display: block;
- margin: 0 auto;
- height: 5rem;
- padding-bottom: 5px;
- }
- .levelIcon ul {
- width: 96%;
- height: 100%;
- overflow: hidden;
- display: block;
- margin: 0;
- margin-left: 2%;
- }
- .levelIcon li {
- width: 14.666666666667%;
- height: 100%;
- float: left;
- padding-left: 2.4%;
- }
- .levelIcon li:nth-child(1) {
- padding-left: 0;
- }
- .levelIcon li span {
- width: 5rem;
- height: 4rem;
- overflow: hidden;
- float: left;
- background: url("../static/img/t1.svg");
- background-repeat: no-repeat;
- background-size: 100% 100%;
- background-position: top center;
- font-family: vista;
- font-weight: normal;
- font-size: 1.2rem;
- letter-spacing: -0.05em;
- text-align: center;
- color: #fff;
- line-height: 0.4rem;
- }
- .levelIcon li span div {
- width: 100%;
- overflow: hidden;
- display: block;
- margin: 0 auto;
- padding-top: 17%;
- }
- .levelIcon li:nth-child(2) span {
- background: url("../static/img/t2.svg");
- background-size: 100% 100%;
- background-position: top center;
- }
- .levelIcon li:nth-child(3) span {
- background: url("../static/img/t3.svg");
- background-size: 100% 100%;
- background-position: top center;
- }
- .levelIcon li:nth-child(4) span {
- background: url("../static/img/t4.svg");
- background-size: 100% 100%;
- background-position: top center;
- }
- .levelIcon li:nth-child(5) span {
- background: url("../static/img/t5.svg");
- background-size: 100% 100%;
- background-position: top center;
- }
- .levelIcon li:nth-child(6) span {
- background: url("../static/img/t6.svg");
- background-size: 100% 100%;
- background-position: top center;
- }
- .levelIcon li:nth-child(6) span div {
- margin-top: 13%;
- }
- .levelIcon li em {
- float: right;
- width: 4rem;
- height: 42px;
- border-radius: 21px;
- background: rgba(2, 143, 225, 0.16);
- border: 1px solid #028fe1;
- box-shadow: 0px 0px 5px #028fe1;
- font-family: vista;
- font-weight: normal;
- font-size: 24px;
- text-align: center;
- color: #fff;
- font-style: normal;
- line-height: 42px;
- margin-top: 15%;
- margin-left: 1%;
- }
- .levelIcon li:nth-child(2) em {
- background: rgba(109, 38, 250, 0.16);
- border: 1px solid #6d26fa;
- box-shadow: 0px 0px 5px #6d26fa;
- }
- .levelIcon li:nth-child(3) em {
- background: rgba(10, 177, 5, 0.16);
- border: 1px solid #0ab105;
- box-shadow: 0px 0px 5px #0ab105;
- }
- .levelIcon li:nth-child(4) em {
- background: rgba(186, 204, 1, 0.16);
- border: 1px solid #bacc01;
- box-shadow: 0px 0px 5px #bacc01;
- }
- .levelIcon li:nth-child(5) em {
- background: rgba(234, 136, 19, 0.16);
- border: 1px solid #ea8813;
- box-shadow: 0px 0px 5px #ea8813;
- }
- .levelIcon li:nth-child(6) em {
- background: rgba(209, 17, 34, 0.16);
- border: 1px solid #d11122;
- box-shadow: 0px 0px 5px #d11122;
- }
- .levelIcon {
- height: 70px;
- }
- .levelIcon li span {
- width: 70px;
- height: 70px;
- font-size: 0.2rem;
- }
- .levelIcon li span div {
- font-size: 16px;
- padding-top: 0.19rem;
- line-height: 22px;
- }
- .levelIcon ul {
- width: 98%;
- }
- .levelIcon li em {
- width: 45%;
- height: 30px;
- line-height: 30px;
- font-size: 0.2rem;
- margin-top: 11%;
- margin-left: 3%;
- float: left;
- }
- .slowJump {
- animation: mymove 3s infinite;
- -webkit-animation: mymove 3s infinite; /*Safari and Chrome*/
- animation-direction: alternate; /*轮流反向播放动画。*/
- animation-timing-function: ease-in-out; /*动画的速度曲线*/
- /* Safari 和 Chrome */
- -webkit-animation-direction: alternate; /*轮流反向播放动画。*/
- -webkit-animation-timing-function: ease-in-out; /*动画的速度曲线*/
- }
- .normalJump {
- animation: mymove 2s infinite;
- -webkit-animation: mymove 2s infinite; /*Safari and Chrome*/
- animation-direction: alternate; /*轮流反向播放动画。*/
- animation-timing-function: ease-in-out; /*动画的速度曲线*/
- /* Safari 和 Chrome */
- -webkit-animation-direction: alternate; /*轮流反向播放动画。*/
- -webkit-animation-timing-function: ease-in-out; /*动画的速度曲线*/
- }
- .fastJump {
- animation: mymove 1s infinite;
- -webkit-animation: mymove 1s infinite; /*Safari and Chrome*/
- animation-direction: alternate; /*轮流反向播放动画。*/
- animation-timing-function: ease-in-out; /*动画的速度曲线*/
- /* Safari 和 Chrome */
- -webkit-animation-direction: alternate; /*轮流反向播放动画。*/
- -webkit-animation-timing-function: ease-in-out; /*动画的速度曲线*/
- }
- @keyframes mymove {
- 0% {
- transform: scale(1); /*开始为原始大小*/
- }
- 25% {
- transform: scale(1.1); /*放大1.1倍*/
- }
- 50% {
- transform: scale(1);
- }
- 75% {
- transform: scale(1.1);
- }
- }
- @-webkit-keyframes mymove /*Safari and Chrome*/
- {
- 0% {
- transform: scale(1); /*开始为原始大小*/
- }
- 25% {
- transform: scale(1.1); /*放大1.1倍*/
- }
- 50% {
- transform: scale(1);
- }
- 75% {
- transform: scale(1.1);
- }
- }
- /*userList*/
- .userList {
- width: 100%;
- height: 76%;
- overflow: hidden;
- display: block;
- margin: 0.1rem auto;
- }
- .userList ul {
- /*width: 100%;*/
- height: 98%;
- overflow: hidden;
- display: block;
- margin: 0.1rem;
- margin-bottom: 0;
- }
- .userList li {
- display: block;
- z-index: 666;
- }
- .centerLi {
- width: 99.8%;
- overflow: hidden;
- float: left;
- color: #fff;
- }
- .human img {
- overflow: hidden;
- display: block;
- margin: 0 auto;
- border: 2px solid #fff;
- border-radius: 250px;
- /*box-shadow: 0px 0px 5px #fff;*/
- }
- s {
- text-decoration: none;
- }
- em {
- font-style: normal;
- }
- .cla {
- position: relative;
- float: left;
- text-align: right;
- }
- .centerLi .human {
- width: 100%;
- overflow: hidden;
- display: block;
- margin: 0 auto;
- padding: 0;
- }
- .human .name {
- width: 100%;
- display: block;
- margin: 0 auto;
- overflow: hidden;
- }
- .lcla span {
- position: relative;
- float: left;
- }
- .cla em {
- text-align: right;
- }
- .heartJump {
- position: relative;
- }
- .lhj span {
- position: relative;
- text-align: right;
- float: left;
- }
- .rhj {
- float: right;
- }
- .rhj img {
- position: relative;
- float: right;
- }
- .bottomLi {
- width: 96%;
- overflow: hidden;
- display: block;
- margin: 0 auto;
- margin-top: 0.3rem;
- font-weight: normal !important;
- color: #fff;
- text-align: left;
- line-height: 0.7rem;
- }
- .bottomLi img {
- float: left;
- margin-left: 10%;
- }
- .bottomLi .btcla {
- width: 33.333%;
- float: left;
- }
- .bottomLi .btck {
- width: 33.333%;
- float: left;
- }
- .bottomLi .step {
- width: 33.333%;
- float: right;
- }
- .bottomLi span {
- float: left;
- text-align: left;
- }
- .topLi {
- width: 100%;
- overflow: hidden;
- display: block;
- margin: 0 auto;
- overflow: hidden;
- }
- /*max*/
- .max {
- width: 12rem;
- height: 5.6rem;
- display: block;
- margin: 0 auto;
- margin-top: 1rem;
- }
- .max .centerLi {
- width: 90%;
- height: 100%;
- }
- .max .ltLi {
- width: 5%;
- height: 100%;
- float: left;
- background: url("../static/img/ltCube.png");
- background-size: 100% 100%;
- background-repeat: no-repeat;
- }
- .max .rtLi {
- width: 5%;
- height: 100%;
- float: right;
- background: url("../static/img/rtCube.png");
- background-size: 100% 100%;
- background-repeat: no-repeat;
- }
- .max .human .name {
- font-size: 0.5rem;
- height: 1rem;
- line-height: 1rem;
- }
- .max .human img {
- width: 3rem;
- height: 3rem;
- }
- .max .cla {
- width: 3rem;
- height: 2rem;
- top: -2.4rem;
- left: 0;
- font-size: 0.55rem;
- }
- .max .lcla span {
- font-size: 0.7rem;
- top: -2.4rem;
- float: left;
- left: 0;
- }
- .max .cla em {
- font-size: 1.5rem;
- left: 1rem;
- }
- .max .lhj span {
- width: 3rem;
- height: 2rem;
- top: -2.4rem;
- left: 3.4rem;
- font-size: 1.5rem;
- }
- .max .rhj img {
- width: 0.5rem;
- top: -2.3rem;
- right: 0.3rem;
- }
- .max .longIcon {
- position: absolute;
- width: 1.96rem;
- overflow: hidden;
- display: block;
- margin: 0 auto;
- bottom: 2rem;
- right: 3.5rem;
- }
- .max .topLi {
- height: 4.5rem;
- }
- .max .bottomLi {
- font-size: 0.5rem;
- text-align: center;
- }
- .max .bottomLi .btck {
- /*text-indent: 1.6rem;*/
- }
- .max .bottomLi img {
- width: 0.5rem;
- height: 0.5rem;
- margin-top: 0.1rem;
- }
- .max .bottomLi span {
- line-height: 0.8rem;
- text-indent: 0.2rem;
- }
- .max .bottomLi .btck {
- width: 29%;
- padding-left: 1%;
- }
- .max .bottomLi .step {
- width: 24%;
- padding-right: 2%;
- }
- .max .cla em.plus {
- position: relative;
- left: -0.5rem
- }
- .max .lhj span.plus {
- position: relative;
- left: 2.75rem
- }
- .max .bottomLi .btcla img {
- width: 0.5rem;
- height: 0.5rem;
- }
- .max .bottomLi .btcla span {
- text-indent: 0.1rem;
- }
- .max .bottomLi .btck span {
- text-indent: 0.1rem;
- }
- .max .bottomLi .btck img {
- width: 0.6rem;
- height: 0.6rem;
- margin-top: 0.05rem;
- }
- /*two*/
- .two {
- width: 49%;
- height: 5.33rem;
- float: left;
- overflow: hidden;
- margin-top: 6%
- }
- .two .centerLi {
- border: 1px solid #fff;
- }
- .two:nth-child(2) {
- float: right;
- }
- .two .human .name {
- width: 100%;
- height: 1rem;
- font-size: 0.5rem;
- line-height: 1rem;
- }
- .two .human img {
- width: 2.8rem;
- height: 2.8rem;
- }
- .two .cla {
- width: 2.9rem;
- height: 2rem;
- top: -2.4rem;
- left: 0;
- font-size: 0.5rem;
- }
- .two .lcla span {
- font-size: 0.55rem;
- top: -2.3rem;
- float: left;
- left: 0;
- }
- .two .cla em {
- font-size: 1.3rem;
- left: 1rem;
- }
- .two .lhj span {
- width: 3rem;
- height: 2rem;
- top: -2.4rem;
- left: 2.4rem;
- font-size: 1.2rem;
- }
- .two .rhj img {
- width: 0.45rem;
- top: -2.2rem;
- right: 0.3rem;
- }
- .two .topLi {
- height: 4.2rem;
- }
- .two .bottomLi {
- font-size: 0.4rem;
- text-align: center;
- }
- .two .bottomLi img {
- width: 0.5rem;
- height: 0.5rem;
- margin-top: 0.1rem;
- }
- .two .bottomLi span {
- line-height: 0.8rem;
- text-indent: 0.2rem;
- }
- .two .bottomLi .btck {
- width: 29%;
- padding-left: 0%;
- }
- .two .bottomLi .step {
- width: 26%;
- padding-right: 4%;
- }
- .two .cla em.plus {
- position: relative;
- left: -0.5rem
- }
- .two .lhj span.plus {
- position: relative;
- left: 2.2rem
- }
- .two .bottomLi .btck img {
- width: 0.6rem;
- height: 0.6rem;
- margin-top: 0.05rem;
- }
- .two .bottomLi .btck span {
- text-indent: 0.1rem;
- }
- /*three*/
- .three {
- width: 50%;
- height: 4rem;
- float: left;
- overflow: hidden;
- margin-bottom: 1%
- }
- .three .centerLi {
- width: 96%;
- overflow: hidden;
- display: block;
- margin: 0 auto;
- border: 1px solid #fff;
- float: none;
- }
- .three .human .name {
- width: 100%;
- height: 0.8rem;
- font-size: 0.4rem;
- line-height: 0.8rem;
- }
- .three .human img {
- width: 2.1rem;
- height: 2.1rem;
- margin-top: 0.1rem;
- }
- .three .cla {
- width: 2.9rem;
- height: 2rem;
- top: -1.8rem;
- left: 0;
- font-size: 0.4rem;
- }
- .three .lcla span {
- font-size: 0.45rem;
- top: -1.8rem;
- float: left;
- left: 0;
- }
- .three .cla em {
- font-size: 1.2rem;
- left: 1rem;
- }
- .three .lhj span {
- width: 3rem;
- height: 2rem;
- top: -1.70rem;
- left: 2.3rem;
- font-size: 1.1rem;
- }
- .three .rhj img {
- width: 0.4rem;
- top: -1.7rem;
- right: 0.4rem;
- }
- .three .topLi {
- /*height: 3.26rem;*/
- height: 3.18rem;
- }
- .three .bottomLi {
- font-size: 0.4rem;
- margin-top: 0rem;
- text-align: center;
- }
- .three .bottomLi img {
- width: 0.5rem;
- height: 0.5rem;
- margin-top: 0.1rem;
- }
- .three .bottomLi span {
- line-height: 0.8rem;
- text-indent: 0.2rem;
- }
- .three .bottomLi .btck {
- width: 30%;
- padding-left: 2%;
- }
- .three .bottomLi .step {
- width: 25%;
- padding-right: 2%;
- }
- .three .cla em.plus {
- position: relative;
- left: -0.5rem
- }
- .three .lhj span.plus {
- position: relative;
- left: 1.9rem
- }
- .three .bottomLi .btck img {
- width: 0.6rem;
- height: 0.6rem;
- margin-top: 0.05rem;
- }
- .three .bottomLi .btck span {
- text-indent: 0.1rem;
- }
- /*six*/
- .six {
- width: 33.3333%;
- height: 3.6rem;
- float: left;
- overflow: hidden;
- margin-bottom: 1%
- }
- .six .centerLi {
- width: 98%;
- overflow: hidden;
- display: block;
- margin: 0 auto;
- border: 1px solid #fff;
- float: none;
- }
- .six .human .name {
- width: 100%;
- height: 0.8rem;
- font-size: 0.35rem;
- line-height: 0.8rem;
- }
- .six .human img {
- width: 1.6rem;
- height: 1.6rem;
- margin-top: 0.1rem;
- }
- .six .cla {
- width: 2rem;
- height: 2rem;
- top: -1.3rem;
- left: 0;
- font-size: 0.3rem;
- }
- .six .lcla span {
- font-size: 0.4rem;
- top: -1.4rem;
- float: left;
- left: -0.05rem;
- }
- .six .cla em {
- font-size: 0.9rem;
- left: 1rem;
- }
- .six .lhj span {
- width: 2rem;
- height: 2rem;
- top: -1.3rem;
- left: 1.6rem;
- font-size: 0.85rem;
- }
- .six .rhj img {
- width: 0.3rem;
- top: -1.3rem;
- right: 0.2rem;
- }
- .six .topLi {
- height: 2.6rem;
- }
- .six .bottomLi {
- width: 98%;
- font-size: 0.325rem;
- margin-top: 0.3rem;
- text-align: center;
- }
- .six .bottomLi img {
- width: 0.4rem;
- margin-top: 0.15rem;
- }
- .six .bottomLi .btcla img {
- width: 0.3rem;
- /*margin-top: 0.1rem;*/
- }
- .six .bottomLi .btck img {
- width: 0.4rem;
- margin-top: 0.1rem;
- }
- .six .bottomLi span {
- line-height: 0.8rem;
- text-indent: 0.1rem;
- }
- .six .bottomLi .btcla {
- width: 30%;
- }
- .six .bottomLi .btck {
- width: 33%;
- padding-left: 3%;
- }
- .six .bottomLi .step {
- width: 28%;
- padding-right: 0%;
- }
- .six .cla em.plus {
- position: relative;
- left: -0.3rem
- }
- .six .lhj span.plus {
- position: relative;
- left: 1.3rem
- }
- .six .bottomLi .btck img {
- width: 0.5rem;
- height: 0.5rem;
- margin-top: 0.12rem;
- }
- /*nine*/
- .nine {
- width: 33.3333%;
- height: 2.7rem;
- float: left;
- overflow: hidden;
- margin-bottom: 0.1rem
- }
- .nine .centerLi {
- width: 98%;
- overflow: hidden;
- display: block;
- margin: 0 auto;
- border: 1px solid #fff;
- float: none;
- }
- .nine .human .name {
- width: 100%;
- height: 0.6rem;
- font-size: 0.3rem;
- line-height: 0.6rem;
- }
- .nine .human img {
- width: 1.2rem;
- height: 1.2rem;
- margin-top: 0.1rem;
- }
- .nine .cla {
- width: 1.9rem;
- height: 2rem;
- top: -1.1rem;
- left: 0;
- font-size: 0.25rem;
- }
- .nine .lcla span {
- font-size: 0.35rem;
- top: -1.1rem;
- float: left;
- left: 0.05rem;
- }
- .nine .cla em {
- font-size: 0.7rem;
- left: 1rem;
- }
- .nine .lhj span {
- width: 1.9rem;
- height: 2rem;
- top: -1.1rem;
- left: 1.6rem;
- font-size: 0.7rem;
- }
- .nine .rhj img {
- width: 0.25rem;
- top: -1.0rem;
- right: 0.4rem;
- }
- .nine .topLi {
- height: 2rem;
- }
- .nine .bottomLi {
- width: 98%;
- font-size: 0.3rem;
- margin-top: 0.05rem;
- text-align: center;
- }
- .nine .bottomLi img {
- width: 0.35rem;
- height: 0.35rem;
- margin-top: 0.2rem;
- }
- .nine .bottomLi span {
- line-height: 0.8rem;
- text-indent: 0.1rem;
- }
- .nine .bottomLi .btcla {
- width: 30%;
- }
- .nine .bottomLi .btck {
- width: 32%;
- padding-left: 5%;
- }
- .nine .bottomLi .step {
- width: 28%;
- padding-right: 0%;
- }
- .nine .cla em.plus {
- position: relative;
- left: -0.3rem
- }
- .nine .lhj span.plus {
- position: relative;
- left: 1.3rem
- }
- .nine .bottomLi .btck img {
- width: 0.45rem;
- height: 0.45rem;
- margin-top: 0.15rem;
- }
- /*ten*/
- .ten {
- width: 25%;
- height: 2.6rem;
- float: left;
- overflow: hidden;
- margin-bottom: 0.2rem
- }
- .ten .centerLi {
- width: 98%;
- overflow: hidden;
- display: block;
- margin: 0 auto;
- border: 1px solid #fff;
- float: none;
- }
- .ten .human .name {
- width: 100%;
- height: 0.5rem;
- font-size: 0.3rem;
- line-height: 0.55rem;
- margin-bottom: 0.1rem;
- }
- .ten .human img {
- width: 1.1rem;
- height: 1.1rem;
- margin-top: 0.2rem;
- }
- .ten .cla {
- width: 1.4rem;
- height: 1.5rem;
- top: -0.95rem;
- left: 0;
- font-size: 0.2rem;
- }
- .ten .lcla span {
- font-size: 0.3rem;
- top: -0.95rem;
- float: left;
- left: -0rem;
- }
- .ten .cla em {
- font-size: 0.6rem;
- left: 0.5rem;
- }
- .ten .lhj span {
- width: 1.4rem;
- height: 2.1rem;
- top: -0.9rem;
- left: 1.4rem;
- font-size: 0.6rem;
- }
- .ten .rhj img {
- width: 0.2rem;
- top: -0.9rem;
- right: 0.15rem;
- }
- .ten .topLi {
- height: 1.85rem;
- }
- .ten .bottomLi {
- width: 98%;
- font-size: 0.25rem;
- margin-top: 0.1rem;
- text-align: center;
- }
- .ten .bottomLi img {
- width: 0.3rem;
- height: 0.3rem;
- margin-top: 0.25rem;
- }
- .ten .bottomLi span {
- line-height: 0.8rem;
- text-indent: 0.1rem;
- }
- .ten .bottomLi .btcla {
- width: 30%;
- }
- .ten .bottomLi .btck {
- width: 32%;
- padding-left: 3%;
- }
- .ten .bottomLi .step {
- width: 29%;
- padding-right: 0%;
- }
- .ten .cla em.plus {
- position: relative;
- left: -0.3rem
- }
- .ten .lhj span.plus {
- position: relative;
- left: 1.2rem;
- line-height: 0.75rem;
- }
- .ten .btck img {
- width: 0.4rem;
- height: 0.4rem;
- margin-top: 0.18rem;
- }
- /*twelve*/
- .twelve {
- width: 20%;
- height: 2.4rem;
- float: left;
- overflow: hidden;
- margin-bottom: 0.3rem
- }
- .twelve .centerLi {
- width: 98%;
- height: 100%;
- overflow: hidden;
- display: block;
- margin: 0 auto;
- border: 1px solid #fff;
- float: none;
- }
- .twelve .human .name {
- width: 100%;
- height: 0.5rem;
- font-size: 0.25rem;
- line-height: 0.7rem;
- margin-bottom: 0.2rem;
- }
- .twelve .human img {
- width: 0.9rem;
- height: 0.9rem;
- }
- .twelve .cla {
- width: 1.2rem;
- height: 1.2rem;
- top: -0.8rem;
- left: -0.1rem;
- font-size: 0.2rem;
- }
- .twelve .lcla span {
- font-size: 0.25rem;
- top: -0.8rem;
- float: left;
- left: -0.07rem;
- }
- .twelve .cla em {
- font-size: 0.5rem;
- left: 0.5rem;
- }
- .twelve .lhj span {
- width: 1.2rem;
- height: 1.2rem;
- top: -0.8rem;
- left: 0.9rem;
- font-size: 0.5rem;
- }
- .twelve .rhj img {
- width: 0.18rem;
- top: -0.75rem;
- right: 0.15rem;
- }
- .twelve .topLi {
- height: 1.65rem;
- }
- .twelve .bottomLi {
- width: 98%;
- font-size: 0.225rem;
- margin-top: 0.1rem;
- text-align: center;
- }
- .twelve .bottomLi img {
- width: 0.25rem;
- height: 0.25rem;
- margin-top: 0.25rem;
- }
- .twelve .bottomLi span {
- line-height: 0.8rem;
- text-indent: 0.1rem;
- }
- .twelve .bottomLi .btcla {
- width: 30%;
- }
- .twelve .bottomLi .btck {
- width: 32%;
- padding-left: 2%;
- }
- .twelve .bottomLi .step {
- width: 27%;
- padding-right: 1%;
- }
- .twelve .cla em.plus {
- position: relative;
- left: -0.2rem
- }
- .twelve .lhj span.plus {
- position: relative;
- left: 0.8rem
- }
- .twelve .btck img {
- width: 0.3rem;
- height: 0.3rem;
- }
- .twelve .btck img {
- width: 0.35rem;
- height: 0.35rem;
- margin-top: 0.22rem;
- }
- /*sixteen*/
- .sixteen {
- width: 20%;
- height: 1.95rem;
- float: left;
- overflow: hidden;
- margin-bottom: 0.1rem
- }
- .sixteen .centerLi {
- width: 98%;
- overflow: hidden;
- display: block;
- margin: 0 auto;
- border: 1px solid #fff;
- float: none;
- }
- .sixteen .human .name {
- width: 100%;
- height: 0.4rem;
- font-size: 0.22rem;
- line-height: 0.45rem;
- margin-top: 0.1rem;
- margin-bottom: 0.1rem;
- }
- .sixteen .human img {
- width: 0.75rem;
- height: 0.75rem;
- }
- .sixteen .cla {
- width: 1.2rem;
- height: 1.4rem;
- top: -0.7rem;
- left: 0;
- font-size: 0.15rem;
- }
- .sixteen .lcla span {
- font-size: 0.275rem;
- top: -0.7rem;
- float: left;
- left: -0rem;
- }
- .sixteen .cla em {
- font-size: 0.5rem;
- left: 0.2rem;
- }
- .sixteen .lhj span {
- width: 1rem;
- height: 1.8rem;
- top: -0.7rem;
- left: 1rem;
- font-size: 0.5rem;
- }
- .sixteen .rhj img {
- width: 0.17rem;
- top: -0.65rem;
- right: 0.15rem;
- }
- .sixteen .topLi {
- height: 1.4rem;
- }
- .sixteen .bottomLi {
- width: 98%;
- font-size: 0.2rem;
- margin-top: -0.05rem;
- text-align: center;
- }
- .sixteen .bottomLi img {
- width: 0.25rem;
- height: 0.25rem;
- margin-top: 0.25rem;
- }
- .sixteen .bottomLi span {
- line-height: 0.8rem;
- text-indent: 0.1rem;
- }
- .sixteen .bottomLi .btcla {
- width: 30%;
- }
- .sixteen .bottomLi .btck {
- width: 32%;
- padding-left: 3%;
- }
- .sixteen .bottomLi .step {
- width: 27%;
- padding-right: 3%;
- /*text-align: center;*/
- }
- .sixteen .cla em.plus {
- position: relative;
- left: -0.2rem
- }
- .sixteen .lhj span.plus {
- position: relative;
- left: 0.9rem
- }
- .sixteen .btck img {
- width: 0.3rem;
- height: 0.3rem;
- }
- /*twenty*/
- .twenty {
- width: 16.66667%;
- height: 1.85rem;
- float: left;
- overflow: hidden;
- margin-bottom: 0.1rem
- }
- .twenty .centerLi {
- width: 98%;
- overflow: hidden;
- display: block;
- margin: 0 auto;
- border: 1px solid #fff;
- float: none;
- }
- .twenty .human .name {
- width: 100%;
- height: 0.4rem;
- font-size: 0.22rem;
- line-height: 0.5rem;
- margin-bottom: 0.1rem;
- }
- .twenty .human img {
- width: 0.75rem;
- height: 0.75rem;
- margin-top: 0.15rem;
- }
- .twenty .cla {
- width: 0.95rem;
- height: 1.4rem;
- top: -0.69rem;
- left: 0;
- font-size: 0.15rem;
- }
- .twenty .lcla span {
- font-size: 0.225rem;
- top: -0.65rem;
- float: left;
- left: 0rem;
- }
- .twenty .cla em {
- font-size: 0.4rem;
- left: 0.2rem;
- }
- .twenty .lhj span {
- width: 0.85rem;
- height: 2rem;
- top: -0.65rem;
- left: 0.9rem;
- font-size: 0.4rem;
- }
- .twenty .rhj img {
- width: 0.15rem;
- top: -0.6rem;
- right: 0.1rem;
- }
- .twenty .topLi {
- height: 1.35rem;
- }
- .twenty .bottomLi {
- width: 98%;
- font-size: 0.2rem;
- margin-top: -0.1rem;
- text-align: center;
- }
- .twenty .bottomLi img {
- width: 0.2rem;
- height: 0.2rem;
- margin-top: 0.275rem;
- }
- .twenty .bottomLi span {
- line-height: 0.8rem;
- text-indent: 0.05rem;
- }
- .twenty .bottomLi .btcla {
- width: 30%;
- }
- .twenty .bottomLi .btck {
- width: 32%;
- padding-left: 3%;
- }
- .twenty .bottomLi .step {
- width: 28%;
- padding-right: 3%;
- }
- .twenty .cla em.plus {
- position: relative;
- left: -0.2rem
- }
- .twenty .lhj span.plus {
- position: relative;
- left: 0.8rem
- }
- /*twentyFour*/
- .twentyFour {
- width: 16.6667%;
- height: 1.6rem;
- float: left;
- overflow: hidden;
- margin-bottom: 0.1rem
- }
- .twentyFour .centerLi {
- width: 96%;
- overflow: hidden;
- display: block;
- margin: 0 auto;
- border: 1px solid #fff;
- /*border: 0.03rem solid rgba(255,255,255,0.1);*/
- /*box-shadow:inset 0 0 6px rgba(0,0,0,0.4);*/
- float: none;
- }
- .twentyFour .human .name {
- width: 100%;
- height: 0.4rem;
- font-size: 0.2rem;
- line-height: 0.4rem;
- }
- .twentyFour .human img {
- width: 0.7rem;
- height: 0.7rem;
- margin-top: 0.05rem;
- }
- .twentyFour .cla {
- width: 0.9rem;
- height: 1.4rem;
- top: -0.6rem;
- left: 0;
- font-size: 0.15rem;
- }
- .twentyFour .lcla span {
- font-size: 0.2rem;
- top: -0.65rem;
- float: left;
- left: -0rem;
- }
- .twentyFour .cla em {
- font-size: 0.4rem;
- left: 0.2rem;
- }
- .twentyFour .lhj span {
- width: 0.75rem;
- height: 2rem;
- top: -0.57rem;
- left: 1rem;
- font-size: 0.4rem;
- }
- .twentyFour .rhj img {
- width: 0.15rem;
- top: -0.6rem;
- right: 0.15rem;
- }
- .twentyFour .topLi {
- height: 1.18rem;
- }
- .twentyFour .bottomLi {
- width: 98%;
- font-size: 0.17rem;
- margin-top: 0rem;
- text-align: center;
- }
- .twentyFour .bottomLi img {
- width: 0.2rem;
- height: 0.2rem;
- margin-top: 0.15rem;
- }
- .twentyFour .bottomLi span {
- line-height: 0.55rem;
- text-indent: 0.05rem;
- }
- .twentyFour .bottomLi .btcla {
- width: 30%;
- }
- .twentyFour .bottomLi .btck {
- width: 32%;
- padding-left: 2%;
- }
- .twentyFour .bottomLi .step {
- width: 28%;
- padding-right: 0%;
- }
- .twentyFour .cla em.plus {
- position: relative;
- left: -0.2rem
- }
- .twentyFour .lhj span.plus {
- position: relative;
- left: 0.8rem;
- line-height: 0.45rem;
- }
- .twentyFour .btck img {
- width: 0.25rem;
- height: 0.25rem;
- margin-top: 0.12rem;
- }
- .twentyFour .bottomLi .step img {
- margin-top: 0.16rem;
- }
- </style>
|