123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015 |
- <template>
- <view>
- <view class="top" :style="{ backgroundColor: '#00cf8a'}">
- <!-- #ifdef MP-WEIXIN -->
- <text>erp-hr微官网企业管理之道</text>
- <!-- #endif -->
- <!-- #ifdef MP-TOUTIAO -->
- <text>erp-hr微官网-一起拍视频!</text>
- <!-- #endif -->
- </view>
- <block v-if="isImgShow">
- <view class="popup" @click="closeImg" >
- <image class="bigimg" :class="scaleSmall?'scaleSmall':' ' " src="https://13130145.s21i.faiusr.com/4/ABUIABAEGAAgut7u3gUo9NfX4QEwmgM4mgM.png"></image>
- <block v-if="isCloseShow">
- <image class="closeBtn" @click="closeImg" src="/static/images/tabbar_close.png"></image>
- </block>
- </view>
- </block>
- <view class="wrap">
- <!-- 幻灯片 -->
- <swiper autoplay="1" circular="true" class="top-banner" duration="500" interval="4000" nextMargin="10px"
- previousMargin="10px">
- <block v-for="(item,index) in banner" :key="index">
- <swiper-item >
- <image class="slide-image" lazyLoad="true" :src="item"></image>
- </swiper-item>
- </block>
- </swiper>
- <!-- #ifdef MP-TOUTIAO -->
- <!-- <view class="padd3">
- <button class="cu-btn block bg-blue margin-tb-sm lg" open-type="share" data-channel="video" data-qrcode="inv34+23=="><text class="cuIcon-camerafill">拍摄视频</text></button>
- </view> -->
- <!-- #endif -->
- <!-- 菜单 -->
- <view class="top-tab show-banner">
- <view autoplay="false" class="top-tab-swiper" indicatorActiveColor="#FE433F" indicatorDots="1">
- <view class="top-tab-in">
- <block v-for="(item,index) in nav" :key="index">
- <view class="top-tab-li" @tap="onUrlTap" :data-event="item.event">
- <button style="background: #fff;">
- <image class="top-tab-icon" lazyLoad="true" mode="aspectFit" :src="item.img"></image>
- <view class="ellips1 top-tab-txt" style="margin-top: -25rpx;">{{item.name}}</view>
- </button>
- </view>
- </block>
- </view>
- </view>
- <!-- 头条 -->
- </view>
- <!-- 新闻 -->
- <view class="titles">· erp-hr微官网 ·</view>
- <view class='news showonload6'>
- <block v-for="(item,index) in news" :key="index">
- <view class="life-list" @click='toNesdetail(item.id)'>
- <view class="life-txt">
- <view class="ellips2">{{item.title}}</view>
- </view>
- <view class="life-img">
- <image :src="item.image"></image>
- </view>
- <!-- 时间与访问量 -->
- <view class="life-time">
- <text>{{item.flow}}人查看</text>
- </view>
- </view>
- </block>
- <!-- <navigator class="getmore" hoverClass="navigator-hover" openType="switchTab" url="../newspage/newspage">查看更多</navigator> -->
- </view>
- <!-- 服务1 -->
- <view class="service">
- <view class="service-div">
- <block v-for="(item,index) in list2" :key="index">
- <view class="service-item" >
- <image :src="item.img"></image>
- <view class="service-item-text">
- <text>{{item.title}}</text>
- </view>
- </view>
- </block>
- </view>
- </view>
- </view>
- <view class="background">
- <view class="howGetTeacher" style='background:#FF6666;'>
- <text>erp-hr微官网人力资源咨询——人力资源规划</text>
- </view>
- <view class="detailHowGetTeacher">
- <text>
- 特大好消息,特大好消息!人力资源咨询——人力资源规划.只限今天,只限今天,错过今天,后悔一年!!!
- </text>
- </view>
- <view class="howGetStudent" bindtap="showHowGetStudent" style='background:red;'>
- <text> 无需编程 一键生成</text>
- </view>
- <view class="detailHowGetStudent">
- <text>
- 本地建站系统,在线快速制作生成小程序。无需编程经验,快速入门,快速制作,快速交付客户
- </text>
- </view>
- <view class="howGetStudent" bindtap="showHowGetStudent" style='background:#003366;'>
- <text> 丰富场景 持续升级</text>
- </view>
- <view class="detailHowGetStudent">
- <text>
- 本地建站系统,提供各种行业解决方案,深挖需求,解决行业痛点,持续更新功能,不断提升用户体验
- </text>
- </view>
- <view class="howGetStudent" bindtap="showHowGetStudent" style='background:#99CC33;'>
- <text> 百变魔方 自由组合</text>
- </view>
- <view class="detailHowGetStudent">
- <text>
- 提供了更多想象空间,提供了更多运营可能,模块间搭配使用,自由组合,让思路更开阔
- </text>
- </view>
- <view class="howGetStudent" bindtap="showHowGetStudent" style='background:#9933FF;'>
- <text> 独立后台 自主编辑</text>
- </view>
- <view class="detailHowGetStudent">
- <text>
- 后台可以对自己账户下面每个小程序进行管理和编辑,小程序端及时更新。并且方便打包更新审核
- </text>
- </view>
- </view>
- <!-- #ifdef MP-WEIXIN -->
- <view class='footer'>
- <view class='footer-content'>
- <button class='btn1' @click="onCall">电话咨询</button>
- <button class='btn2' open-type='contact'>联系客服</button>
- </view>
- </view>
- <!-- 分享 -->
- <!-- <view class='share'>
- <button open-type='share'>分享</button>
- </view> -->
- <!-- #endif -->
- <view :class="showDialog ?'zan-dialog--show zan-dialog':'zan-dialog'">
- <view bindtap="toggleDialog" class="zan-dialog__mask"></view>
- <view class="zan-dialog__container">
- <view class="a-title">关于erp-hr微官网</view>
- <view class="radio-box">
- <text>erp-hr微官网是为互联网全行业提供服务和研发支撑的开发型公司。
- 致力于通过创新的信息化技术来推动社会的发展与变革,为企业提供包含了基础建设、人才培训、定制开发、电商支撑、渠道供应、托管运营等一站式解决方案,为创客或个人创造新的生活和工作方式,为社会创造价值。</text>
- </view>
- <!-- <view bindtap="toggleDialog" class="a-btn bg-origin">我知道了</view> -->
- </view>
- </view>
- </view>
- </template>
- <script>
- // import uniNoticeBar from "@/components/uni-notice-bar/uni-notice-bar.vue";
- import {
- mapMutations,
- mapActions,
- mapState
- } from 'vuex';
- export default {
- components: {
- // uniNoticeBar
- },
- data() {
- return {
- notice: '小程序微官网全新版本来袭,要制作的联系我们',
- showDialog: !1,
- banner: ["https://www.open.com.cn//product/img/product/16984.jpg",
- "http://www.8manage.cn/uploadfile/upload/image/20170113/20170113160850_65233.png",
- "http://www.8manage.cn/uploadfile/upload/image/20170113/20170113160904_54217.png"
- ],
- nav: [{
- name: "我们的产品",
- img: "https://www.dian68.net/attachment/images/24/2018/04/sqgYY2YsAuV67YInanbaxhyY21ve6y.jpg",
- url: '',
- event: 'anli'
- },
- {
- name: "热门文章",
- img: "https://www.dian68.net/attachment/images/24/2018/04/D7a7vaR7XVb3A7BiqV7aQqyQ77Vv77.jpg",
- event: 'xinwen'
- },
- {
- name: "立即制作",
- img: "https://www.dian68.net/attachment/images/24/2018/04/Z13j4YXOyY2Jt8s4i3t8sT28JTV45x.png",
- event: 'xinwen'
- },
- {
- name: "关于我们",
- img: "https://www.dian68.net/attachment/images/24/2018/04/A3UjUIU3JI8OsiqQQu8RJnRZIqJ5JE.jpg",
- event: 'about'
- }
- ],
- news: [{
- id: 0,
- title: "erp-hr 提供典型的人力资源管理功能服务",
- image: "https://img1.baidu.com/it/u=125517566,2690134319&fm=253&fmt=auto&app=120&f=JPEG?w=500&h=500",
- flow: '3241',
- },
- {
- id: 1,
- title: "员工规划、招聘、员工档案、工资单、福利、出勤率、请假、职业管理、培训、绩效与员工自助服务",
- image: "https://img1.baidu.com/it/u=4069952875,4246168404&fm=253&fmt=auto&app=138&f=JPEG?w=500&h=333",
- flow: '156741',
- },
- {
- id: 2,
- title: "erp-hr 也对人力资本管理中的信息资本、结构化协作、过程与执行的纪律、KPI 与承诺管理进行了优化",
- image: "http://img.mp.itc.cn/upload/20170726/5b6743d9c47444b5b9d5d9eb3fcbbeab_th.jpg",
- flow: '156741',
- }
- ],
- list2: [{
- title: "精美企业官网",
- img: "https://www.dian68.net/attachment/images/24/2018/04/D8sC888HaClFexsl8eaVeESwoDX8H0.jpg"
- },
- {
- title: "小程序分销商城",
- img: "https://www.dian68.net/attachment/images/24/2018/04/TX119VKVxtB0cQCkQ0ZMZKkS4vbwta.jpg"
- },
- {
- title: "餐饮外卖小程序",
- img: "https://www.dian68.net/attachment/images/24/2018/04/D90496sF0YDSvcZDa0Ca4YRrhqA26B.jpg"
- },
- {
- title: "同城信息网",
- img: "https://www.dian68.net/attachment/images/24/2018/04/Ztyy0YVNdwYHC0S1V3NKN5BsVTLvHS.jpg"
- }
- ],
- scrollTop: 0,
- isImgShow:1,
- isCloseShow: 1,
- scaleSmall: 0,
- }
- },
- computed: {
- ...mapState({
- appinfo: state => state.init.appinfo,
- })
- },
- onLoad() {
- },
- methods: {
- omService(text) {
- uni.showModal({
- title: '提示',
- content: text + ', 联系电话: 6266876',
- });
- },
- onCall() {
- uni.makePhoneCall({
- phoneNumber: '6266876'
- })
- },
- onUrlTap(e) {
- var event = e.currentTarget.dataset.event;
- if (event == 'about') {
- uni.showModal({
- title: '关于我们',
- content: '我们是为互联网全行业提供服务和研发支撑的开发型公司。 致力于通过创新的信息化技术来推动社会的发展与变革,为企业提供包含了基础建设、人才培训、定制开发、电商支撑、渠道供应、托管运营等一站式解决方案,为创客或个人创造新的生活和工作方式,为社会创造价值。'
- })
- };
- if (event == 'contact') {
- uni.showModal({
- title: '联系',
- content: ' 联系电话: 6266876'
- })
- };
- if (event == 'anli') {
- uni.pageScrollTo({
- scrollTop: 651,
- duration: 300
- });
- };
- if (event == 'xinwen') {
- uni.pageScrollTo({
- scrollTop: 284,
- duration: 300
- });
- }
- },
- toNesdetail(id) {
- uni.navigateTo({
- url: '../wx/newsdetail?id=' + id
- })
- },
- closeImg: function() {
- var t = this;
- this.scaleSmall= 1;
- setTimeout(function() {
- t.isImgShow = 0;
- t.isCloseShow = 0
- }, 400)
- },
- },
- }
- </script>
- <style lang="scss">
- page {
- background: #f1f1f1;
- }
- .top {
- width: 100%;
- position: fixed;
- height: 188rpx;
- top: 0;
- left: 0;
- z-index: 99;
- display: flex;
- align-items: center;
- padding: 20rpx;
- text {
- position: absolute;
- bottom: 30rpx;
- color: #ffffff
- }
- }
- .goods-list-box {
- position: relative;
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: row;
- flex-direction: row;
- padding: 20rpx 10rpx;
- }
- .goods-list-box:before {
- display: block;
- position: absolute;
- bottom: 0;
- content: '';
- width: 690rpx;
- height: 1px;
- background: #e8e8e8;
- }
- .goods-list-box:last-child:before {
- height: 0;
- }
- .goods-left {
- width: 220rpx;
- height: 220rpx;
- margin-right: 16rpx;
- }
- .goods-left image {
- width: 100%;
- height: 100%;
- }
- .goods-right {
- position: relative;
- -webkit-flex-direction: column;
- flex-direction: column;
- width: 454rpx;
- height: 220rpx;
- }
- .goods-title {
- line-height: 40rpx;
- font-size: 28rpx;
- color: #333;
- }
- .goods-owner {
- line-height: 50rpx;
- font-size: 24rpx;
- color: #666;
- }
- .goods-bottom {
- position: absolute;
- bottom: 0;
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: row;
- flex-direction: row;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- width: 100%;
- }
- .goods-bottom-left {
- width: 270rpx;
- overflow: hidden;
- }
- .goods-bottom-clock {
- font-size: 20rpx;
- color: #FE433F;
- }
- .price-buying {
- font-size: 32rpx;
- color: #FE433F;
- }
- .price-linethrough {
- color: #AFB2BA;
- font-size: 24rpx;
- -webkit-text-decoration-line: line-through;
- text-decoration-line: line-through;
- }
- .goods-bottom-right {
- width: 176rpx;
- height: 72rpx;
- line-height: 72rpx;
- text-align: center;
- color: #fff;
- border-radius: 4rpx;
- overflow: hidden;
- font-size: 28rpx;
- box-shadow: none;
- }
- .goods-bottom-right:after {
- border: none;
- }
- .btn0 {
- background: linear-gradient(to right, #ccc, #999);
- }
- .btn1 {
- background: red;
- }
- .btn2 {
- background: linear-gradient(to right, #64CA7B, #30A04D);
- }
- .figure-box {
- position: fixed;
- z-index: 1000;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: #fff;
- }
- .figure-box view {
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- }
- @-webkit-keyframes rotate {
- 0% {
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- }
- 50% {
- -webkit-transform: rotate(180deg);
- transform: rotate(180deg);
- }
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- }
- @keyframes rotate {
- 0% {
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- }
- 50% {
- -webkit-transform: rotate(180deg);
- transform: rotate(180deg);
- }
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- }
- @-webkit-keyframes rotate2 {
- 0% {
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- border-top-color: #e60012;
- }
- 50% {
- -webkit-transform: rotate(180deg);
- transform: rotate(180deg);
- border-top-color: #27adf8;
- }
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- border-top-color: #e60012;
- }
- }
- @keyframes rotate2 {
- 0% {
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- border-top-color: #e60012;
- }
- 50% {
- -webkit-transform: rotate(180deg);
- transform: rotate(180deg);
- border-top-color: #27adf8;
- }
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- border-top-color: #e60012;
- }
- }
- .loader1 {
- position: relative;
- margin: 400rpx auto 0;
- width: 150rpx;
- height: 150rpx;
- display: block;
- overflow: hidden;
- }
- .loader1 view {
- height: 100%;
- }
- .loader1,
- .loader1 view {
- border-radius: 50%;
- padding: 8rpx;
- border: 2rpx solid transparent;
- -webkit-animation: rotate linear 3.5s infinite;
- animation: rotate linear 3.5s infinite;
- border-top-color: #e60012;
- border-bottom-color: #27adf8;
- }
- life-txt.life-box {
- padding: 0 10rpx;
- width: 690rpx;
- }
- .life-box>view:first-child {}
- .life-box>view:last-child {
- border-bottom: 0;
- }
- .life-list {
- position: relative;
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: row;
- flex-direction: row;
- width: 710rpx;
- padding: 20rpx 0;
- border-bottom: 0.1px solid #e6e6e6;
- }
- .life-listc {
- position: relative;
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: column;
- flex-direction: column;
- padding: 20rpx 0 60rpx;
- border-bottom: 0.1px solid #e6e6e6;
- }
- .life-list .life-txt {
- display: -webkit-flex;
- display: flex;
- -webkit-flex: 1;
- flex: 1;
- -webkit-flex-direction: column;
- flex-direction: column;
- height: 150rpx;
- line-height: 44rpx;
- font-weight: 600;
- }
- .life-list .life-txt view {
- white-space: normal;
- word-break: break-all;
- }
- .life-txt view {
- font-size: 32rpx;
- }
- .life-time {
- position: absolute;
- bottom: 30rpx;
- left: 0;
- width: 100%;
- line-height: 20rpx;
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: row;
- flex-direction: row;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- }
- .life-list .life-time {
- position: absolute;
- bottom: 30rpx;
- -webkit-flex-direction: column;
- flex-direction: column;
- line-height: 25rpx;
- }
- .life-time text {
- font-weight: 200;
- font-size: 20rpx;
- color: #666;
- }
- .life-list .life-img {
- width: 240rpx;
- height: 150rpx;
- margin-left: 10rpx;
- }
- .life-list .life-img image {
- width: 100%;
- height: 100%;
- }
- .life-listc .life-img {
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: row;
- flex-direction: row;
- width: 710rpx;
- }
- .life-listc .life-img image {
- width: 227rpx;
- height: 165rpx;
- padding: 20rpx 0 0;
- margin-right: 15rpx;
- }
- .life-listc .life-img image:last-child {
- margin-right: 0;
- }
- .life-listc .life-txt {
- display: -webkit-flex;
- display: flex;
- -webkit-flex: 1;
- flex: 1;
- -webkit-flex-direction: column;
- flex-direction: column;
- line-height: 44rpx;
- font-weight: 600;
- }
- .scroll-view_H {
- white-space: nowrap;
- }
- .pleft {
- padding-left: 24rpx !important;
- }
- .section_gap {
- margin: 124rpx auto 0;
- width: 700rpx;
- }
- .top-tab-swiper .swiper-dots.swiper-dots-horizontal {
- margin-bottom: -20rpx;
- }
- .disc-icon {
- width: 36rpx;
- height: 25rpx;
- }
- .dis-item {
- display: -webkit-flex;
- display: flex;
- box-sizing: border-box;
- border-top: 1px solid #eee;
- padding: 30rpx 0;
- }
- .dis-item:first-child {
- border-top: 0;
- }
- .dis-item:last-child {
- padding-bottom: 0
- }
- .dis-img {
- width: 140rpx;
- height: 140rpx;
- }
- .dis-img image {
- width: 100%;
- height: 100%;
- display: block;
- }
- .dis-right {
- padding-left: 12rpx;
- }
- .dis-shop {
- font-size: 24rpx;
- color: #999;
- margin: 8rpx 0 20rpx
- }
- .fl-item {
- display: inline-block;
- width: 108rpx;
- height: 36rpx;
- line-height: 36rpx;
- text-align: center;
- font-size: 18rpx;
- color: #999;
- background: rgba(179, 184, 194, 0.09699999999999999);
- border-radius: 36rpx;
- border: 1px solid #B3B8C2
- }
- .dis-fl {
- margin-top: 10rpx;
- display: -webkit-flex;
- display: flex;
- }
- .fl-left {
- -webkit-flex: 1;
- flex: 1
- }
- .fl-right {
- color: #FF4C4C;
- font-size: 36rpx;
- font-weight: 700;
- }
- .choujiangbox {
- width: 100%;
- height: 394rpx;
- background: url(http://papaq.oss-cn-hangzhou.aliyuncs.com/xcx/AZRRTcpH78aybzjpCNekHT.png) no-repeat;
- background-size: 100%;
- background-position: 0 0;
- overflow: hidden;
- }
- .choujiangswiper {
- margin-top: 124rpx;
- height: 240rpx;
- overflow: hidden;
- }
- .cj-item {
- position: relative;
- display: inline-block;
- width: 690rpx;
- height: 240rpx;
- padding: 20rpx;
- background: #fff;
- box-sizing: border-box;
- border-radius: 20rpx;
- overflow: hidden;
- }
- .cj-item:nth-of-type(1) {
- z-index: 100;
- }
- .cj-item:nth-of-type(2) {
- -webkit-transform: translateX(-680rpx);
- transform: translateX(-680rpx);
- height: 230rpx;
- z-index: 80;
- opacity: 0.8;
- }
- .cj-right {
- position: relative;
- padding-left: 12rpx;
- width: 320rpx;
- float: left;
- }
- .cj-title {
- width: 330rpx;
- height: 76rpx;
- font-size: 28rpx;
- white-space: normal !important;
- font-weight: 700;
- line-height: 1.5;
- }
- .cj-img {
- height: 200rpx;
- width: 300rpx;
- float: left;
- }
- .cj-img image {
- width: 100%;
- height: 100%;
- }
- .cj-time-txt {
- color: #999;
- font-size: 24rpx;
- }
- .cj-time {
- margin-top: 48rpx;
- }
- .gotxt {
- position: absolute;
- height: 56rpx;
- width: 56rpx;
- background: #fec53f;
- color: #fff;
- border-radius: 56rpx;
- text-align: center;
- line-height: 56rpx;
- right: -10rpx;
- bottom: 10rpx;
- }
- .cj-time-show .timenum {
- display: inline-block;
- width: 32rpx;
- height: 32rpx;
- border-radius: 8rpx;
- background: #fe433f;
- color: #fff;
- font-size: 20rpx;
- text-align: center;
- line-height: 32rpx;
- }
- .dot {
- display: inline-block;
- width: 16rpx;
- height: 32rpx;
- border-radius: 8rpx;
- color: #fe433f;
- font-size: 24rpx;
- text-align: center;
- line-height: 32rpx;
- }
- .mybuyingbox {
- background: #fff;
- }
- .buying-sw-item {
- width: 700rpx;
- margin: 0 auto;
- box-sizing: border-box;
- clear: both;
- }
- .buying-item {
- width: 700rpx;
- border-radius: 20rpx;
- border: 1px solid rgba(238, 238, 238, 1);
- overflow: hidden;
- display: inline-block;
- position: relative;
- background: #fff;
- margin-bottom: 20rpx;
- box-sizing: border-box;
- padding-bottom: 20rpx;
- }
- .shop-title {
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: row;
- flex-direction: row;
- -webkit-align-items: center;
- align-items: center;
- padding: 30rpx 30rpx 0 30rpx;
- }
- .buying-icon {
- display: block;
- width: 60rpx;
- height: 36rpx;
- margin-right: 12rpx;
- }
- .shop-title-t {
- font-size: 32rpx;
- color: #333;
- background-size: 14rpx 24rpx;
- margin-right: 8rpx;
- font-weight: 700;
- }
- .more {
- position: absolute;
- right: 30rpx;
- font-size: 24rpx;
- color: #999;
- background: url("http://papaq.oss-cn-hangzhou.aliyuncs.com/ppqpc/35taE3JBE6DsQmTcBDCr5k.png") center right no-repeat;
- background-size: 14rpx 24rpx;
- width: 67rpx;
- }
- .subtitle {
- padding-left: 30rpx;
- font-size: 28rpx;
- color: #666;
- padding-top: 10rpx;
- }
- .buyingswiper {
- margin-top: 34rpx;
- }
- .rec-buyingimg {
- height: 350rpx;
- width: 100%;
- }
- .buyingtitle {
- height: 88rpx;
- width: 100%;
- font-size: 32rpx;
- color: #333;
- padding: 0 20rpx;
- box-sizing: border-box;
- line-height: 88rpx;
- }
- .hui-text {
- text-decoration: line-through;
- color: #afb2ba;
- font-size: 28rpx;
- }
- .buyingitem-bottom {
- display: -webkit-flex;
- display: flex;
- padding: 0 20rpx;
- box-sizing: border-box;
- margin-top: 20rpx;
- }
- .buyingprice-red {
- color: #fe433f;
- font-size: 40rpx;
- }
- .bib-dobuying {
- height: 72rpx;
- width: 176rpx;
- text-align: center;
- line-height: 72rpx;
- font-size: 24rpx;
- background: #fec53f;
- color: #fff;
- border-radius: 72rpx;
- margin-left: 125rpx;
- margin-top: 10rpx;
- }
- .bib-left {
- -webkit-flex: 1;
- flex: 1;
- }
- .bib-left {
- padding-top: 10rpx;
- }
- .bib-right {
- text-align: center;
- }
- .puzzle {
- padding: 0 30rpx;
- clear: both;
- overflow: hidden;
- margin-top: 10rpx;
- background: #fff;
- }
- .puzzle-top {
- padding: 30rpx 0 0 0;
- }
- .puzzlist {
- background-color: #fff;
- margin-right: 22rpx;
- width: 334rpx;
- float: left;
- margin-bottom: 10rpx;
- }
- .puzzle-sub {
- padding: 0;
- margin-bottom: 40rpx;
- padding-top: 10rpx;
- }
- .puzzle-icon {
- width: 40rpx;
- height: 34rpx;
- }
- .puzzlist:nth-child(even) {
- margin-right: 0;
- }
- .puzzimg {
- width: 334rpx;
- height: 326rpx;
- display: block;
- }
- .puzztitle {
- padding: 8rpx 12rpx;
- font-weight: 500;
- line-height: 42rpx;
- height: 80rpx;
- }
- .groups {
- font-size: 24rpx;
- color: #fff;
- background: linear-gradient(135deg, rgba(255, 104, 107, 1), rgba(255, 74, 83, 1));
- border-radius: 4rpx;
- text-align: center;
- padding: 2rpx 10rpx;
- margin-right: 10rpx;
- }
- .puzzname {
- color: #999;
- padding: 0rpx 12rpx;
- margin-bottom: 8rpx;
- }
- .puzzprice {
- color: #fe433f;
- font-weight: bold;
- font-size: 32rpx;
- position: relative;
- top: -4rpx;
- }
- .puzzbot {
- padding: 12rpx;
- }
- .headurl {
- width: 44rpx;
- height: 44rpx;
- border-radius: 50%;
- margin-right: -12rpx;
- border: 1px solid #fff;
- }
- .headurl:first-child {
- position: relative;
- z-index: 2;
- }
- .headurl:nth-child(2) {
- position: relative;
- z-index: 1;
- }
- .headurl:last-child {
- margin-right: 0;
- }
- .couponbox {
- background: #fff;
- padding: 0 30rpx;
- padding-bottom: 30rpx;
- margin-top: 12rpx;
- overflow: hidden;
- }
- .coupon-icon {
- width: 42rpx;
- height: 46rpx;
- }
- .unitItemLeft {
- margin-bottom: 20rpx;
- }
- .couponlist1 {
- background: url("http://papaq.oss-cn-hangzhou.aliyuncs.com/xcx/c75MFr8WybpPbmzw4ZAds6.png") no-repeat;
- }
- .couponlist2 {
- background: url("http://papaq.oss-cn-hangzhou.aliyuncs.com/xcx/aHpEfcMmxSDHpQarwc5dTr.png") no-repeat;
- }
- .couponlist3 {
- background: url("http://papaq.oss-cn-hangzhou.aliyuncs.com/xcx/HBHCcfaHnDp68x4yWDP2EZ.png") no-repeat;
- }
- .couponlist {
- padding: 16rpx;
- background-size: 100% 198rpx;
- margin-top: 10rpx;
- }
- .cou-img {
- width: 160rpx;
- height: 160rpx;
- display: block;
- margin-right: 16rpx;
- }
- .cou-con {
- margin-right: 90rpx;
- }
- .cou-title {
- color: #fe433f;
- font-size: 40rpx;
- font-weight: bold;
- margin-bottom: 25rpx;
- }
- .cou-name {
- color: #333;
- font-size: 32rpx;
- margin-bottom: 10rpx;
- }
- .cou-desc {
- color: #999;
- }
- .sec-coupon {
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: row;
- flex-direction: row;
- padding: 30rpx 0 0;
- border-bottom: 1px solid #e6e6e6;
- }
- .sec-coupon-l {
- width: 160rpx;
- height: 160rpx;
- margin-right: 16rpx;
- margin-bottom: 30rpx;
- }
- .sec-coupon-l image {
- width: 100%;
- height: 100%;
- }
- .sec-coupon-r {
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: column;
- flex-direction: column;
- width: 534rpx;
- }
- .sec-coupon-title {
- height: 30rpx;
- line-height: 30rpx;
- font-size: 30rpx;
- font-weight: 600;
- }
- .sec-coupon-descript {
- display: -webkit-flex;
- display: flex;
- width: 514rpx;
- height: 60rpx;
- line-height: 60rpx;
- font-size: 24rpx;
- color: #999;
- }
- .sec-coupon-btn {
- position: relative;
- margin-bottom: 30rpx;
- }
- .sec-coupon-btn-l {
- width: 370rpx;
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: column;
- flex-direction: column;
- }
- .sec-coupon-btn-l text:first-child {
- line-height: 36rpx;
- font-size: 32rpx;
- margin-bottom: 12rpx;
- text-indent: 1em;
- }
- .sec-coupon-btn-l text:last-child {
- font-size: 20rpx;
- color: #999;
- }
- .sec-coupon-btn-z {
- color: #009688;
- background: url('http://papaq.oss-cn-hangzhou.aliyuncs.com/ppqpc/bztiwJnMbEhmMpzr2Yycsb.png') center left no-repeat;
- background-size: 24rpx 24rpx;
- }
- .sec-coupon-btn-s {
- color: #48a8ff;
- background: url('http://papaq.oss-cn-hangzhou.aliyuncs.com/ppqpc/3cPaHX5mEJ76AtYKmxQBmK.png') top left no-repeat;
- background-size: 24rpx 24rpx;
- }
- .sec-coupon-btn-q {
- color: #fe433f;
- background: url('http://papaq.oss-cn-hangzhou.aliyuncs.com/ppqpc/hWQtSSNcGpxQ6aMewZFtKH.png') center left no-repeat;
- background-size: 24rpx 24rpx;
- }
- .sec-coupon-btn-r {
- position: absolute;
- right: 0;
- bottom: 0;
- width: 156rpx;
- height: 60rpx;
- line-height: 60rpx;
- border-radius: 4rpx;
- color: #fff;
- font-weight: 400;
- text-align: center;
- font-size: 24rpx;
- }
- .cut-red {
- color: #fe433f;
- font-size: 24rpx;
- font-weight: 600;
- }
- .cut-shop {
- width: 400rpx;
- padding-left: 20rpx;
- color: #999;
- font-size: 28rpx;
- }
- .cut-price {
- font-size: 40rpx;
- }
- .cut-bottom {
- margin-top: 0;
- }
- .cut-do {
- margin-top: 0;
- }
- .cut-icon {
- width: 35rpx;
- height: 31rpx;
- }
- .ad-box-type {
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: column;
- flex-direction: column;
- background: #fff;
- padding: 20rpx;
- }
- .one-btn {
- width: 710rpx;
- height: 200rpx;
- }
- .one-btn image {
- width: 100%;
- height: 100%;
- }
- .two-btn {
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: row;
- flex-direction: row;
- width: 710rpx;
- }
- .two-btn image {
- width: 346rpx;
- height: 200rpx;
- }
- .two-btn image:first-child {
- margin-right: 20rpx;
- }
- .three-btn {
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: row;
- flex-direction: row;
- width: 710rpx;
- }
- .three-btn>image {
- width: 223rpx;
- height: 313rpx;
- margin-right: 20rpx;
- }
- .three-btn>image:last-child {
- margin-right: 0;
- }
- .none-title {
- margin-top: 0;
- padding: 20rpx 20rpx 20rpx 20rpx;
- }
- .mart12 {
- margin-top: 12rpx;
- }
- .popup {
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100vh;
- background: rgba(0, 0, 0, 0.5);
- z-index: 888;
- }
- .popup .bigimg {
- width: 600rpx;
- height: 800rpx;
- z-index: 999;
- position: absolute;
- left: 75rpx;
- top: 340rpx;
- }
- .scaleSmall {
- -webkit-animation: myscalesmall 0.6s;
- animation: myscalesmall 0.6s;
- }
- .scaleBig {
- -webkit-animation: myscaleBig 0.8s;
- animation: myscaleBig 0.8s;
- }
- @-webkit-keyframes myscalesmall {
- from {
- -webkit-transform: scale(1);
- transform: scale(1);
- }
- to {
- -webkit-transform: scale(0);
- transform: scale(0);
- left: 350rpx;
- top: 600rpx;
- }
- }
- @keyframes myscalesmall {
- from {
- -webkit-transform: scale(1);
- transform: scale(1);
- }
- to {
- -webkit-transform: scale(0);
- transform: scale(0);
- left: 350rpx;
- top: 600rpx;
- }
- }
- @-webkit-keyframes myscalebig {
- from {
- left: 350rpx;
- top: 600rpx;
- -webkit-transform: scale(0);
- transform: scale(0);
- }
- to {
- left: 75rpx;
- top: 140rpx;
- }
- }
- @keyframes myscalebig {
- from {
- left: 350rpx;
- top: 600rpx;
- -webkit-transform: scale(0);
- transform: scale(0);
- }
- to {
- left: 75rpx;
- top: 140rpx;
- }
- }
- .closeBtn {
- z-index: 999;
- width: 48rpx;
- height: 48rpx;
- border-radius: 48rpx;
- border: 1px solid #fff;
- text-align: center;
- line-height: 48rpx;
- color: #fff;
- position: absolute;
- left: 623rpx;
- top: 340rpx;
- }
- .smallimgwrap {
- position: fixed;
- bottom: 20rpx;
- right: 20rpx;
- z-index: 777;
- }
- .smallimg {
- width: 100rpx;
- height: 100rpx;
- }
- .wrap {
- position: relative;
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: column;
- flex-direction: column;
- z-index: 2;
- margin-top: 188rpx;
- }
- .top-banner {
- position: relative;
- width: 750rpx;
- height: 300rpx;
- z-index: -1;
- margin: 10rpx 0;
- }
- .top-banner2 {
- position: relative;
- width: 750rpx;
- height: 300rpx;
- z-index: -1;
- margin: 10rpx 0;
- }
- .slide-image {
- width: 99%;
- height: 100%;
- border-radius: 6rpx;
- }
- .top-tab-swiper {
- // padding-bottom: 20rpx;
- }
- .top-tab {
- padding: 25rpx 0 0;
- background: #fff;
- box-sizing: border-box;
- overflow: hidden;
- font-size: 14px;
- z-index: 2;
- border-radius: 8rpx;
- }
- .top-tab-in {
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: row;
- flex-direction: row;
- -webkit-flex-wrap: wrap;
- flex-wrap: wrap;
- }
- .top-tab-in>view:nth-child(1) {
- padding-bottom: 20rpx;
- }
- .top-tab-in>view:nth-child(6) {
- padding-bottom: 40rpx;
- }
- .top-tab-inc {
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: row;
- flex-direction: row;
- -webkit-flex-wrap: wrap;
- flex-wrap: wrap;
- height: 72rpx;
- line-height: 72rpx;
- }
- .advice-txt {
- display: inline-block;
- width: 466rpx;
- margin-right: 10rpx;
- -webkit-align-items: center;
- align-items: center;
- }
- .advice-txt text {
- line-height: 36rpx;
- }
- .advice-img {
- position: relative;
- width: 124rpx;
- height: 72rpx;
- }
- .advice-img image {
- width: 100%;
- height: 100%;
- }
- .advice-img text {
- position: absolute;
- top: 0;
- left: 0;
- width: 40%;
- height: 100%;
- background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
- z-index: 1;
- }
- .top-tab-li {
- width: 25%;
- text-align: center;
- color: #666;
- font-size: 24rpx;
- }
- .top-tab-icon {
- width: 100rpx;
- height: 100rpx;
- }
- .top-tab-txt {
- font-size: 24rpx;
- color: #666;
- }
- .advice {
- margin: 20rpx 30rpx 20rpx;
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: row;
- flex-direction: row;
- }
- .life-top {
- display: block;
- width: 70rpx;
- height: 72rpx;
- margin-right: 20rpx;
- }
- .life-top .lifetext {
- line-height: 36rpx;
- color: #fe433f;
- font-weight: 600;
- font-size: 32rpx;
- width: 70rpx;
- display: block;
- word-wrap: normal;
- word-break: break-all;
- text-align: center;
- }
- .advice swiper {
- width: 100%;
- height: 72rpx;
- line-height: 72rpx;
- }
- .show-banner {}
- .nav300 {
- height: 290rpx;
- }
- .nav150 {
- height: 150rpx;
- }
- .nominate {
- background: #fff;
- padding: 20rpx;
- margin-top: 16rpx;
- border-bottom: 12rpx solid #f2f3f4;
- }
- .nominate-a,
- .nominate-b {
- position: relative;
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: column;
- flex-direction: column;
- }
- .nominate-a-content {
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: row;
- flex-direction: row;
- }
- .nominate-a-content-l {
- width: 200rpx;
- height: 200rpx;
- margin-right: 16rpx;
- }
- .nominate-a-content-r {
- position: relative;
- height: 200rpx;
- -webkit-flex: 1;
- flex: 1;
- }
- .nominate-a-content-r .ellips2 {
- line-height: 40rpx;
- }
- .nominate-a-btn {
- position: absolute;
- bottom: 0;
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: row;
- flex-direction: row;
- height: 64rpx;
- line-height: 64rpx;
- border-radius: 32rpx;
- overflow: hidden;
- }
- .nominate-b-btna,
- .nominate-b-btnb {
- font-size: 28rpx;
- color: #333;
- width: 160rpx;
- text-align: center;
- }
- .nominate-b-btnc {
- width: 100%;
- font-size: 28rpx;
- text-align: center;
- background: #ff5350;
- color: #fff;
- font-weight: 400;
- }
- .nominate-a-btna,
- .nominate-a-btnb {
- font-size: 28rpx;
- color: #333;
- min-width: 93rpx;
- max-width: 300rpx;
- text-align: center;
- padding: 0 40rpx;
- }
- .nominate-a-btna,
- .nominate-b-btna {
- background: #ffe760;
- color: #ff5350;
- font-weight: 600;
- }
- .nominate-a-btnb,
- .nominate-b-btnb {
- background: #ff5350;
- color: #fff;
- font-weight: 400;
- }
- .nominate-b-box {
- position: relative;
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: row;
- flex-direction: row;
- }
- .nominate-b-box view:first-child {
- margin-right: 10rpx;
- }
- .nominate-b-content {
- position: relative;
- display: -webkit-flex;
- display: flex;
- -webkit-flex: 1;
- flex: 1;
- -webkit-flex-direction: column;
- flex-direction: column;
- }
- .nominate-b5,
- .nominate-b1,
- .nominate-b2 {
- line-height: 40rpx;
- }
- .nominate-b5 {
- height: 40rpx;
- }
- .nominate-b2 {
- color: #999;
- font-size: 24rpx;
- }
- .nominate-b3 {
- width: 345rpx;
- height: 230rpx;
- margin: 10rpx auto;
- position: relative;
- }
- .nominate-b3 image {
- width: 100%;
- height: 100%;
- }
- .nominate-b4 {
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: row;
- flex-direction: row;
- width: 310rpx;
- height: 64rpx;
- line-height: 64rpx;
- margin: 0 auto;
- border-radius: 32rpx;
- overflow: hidden;
- }
- .nominate-name {
- color: #999;
- font-size: 24rpx;
- }
- .c-title {
- display: inline-block;
- position: relative;
- height: 32rpx;
- line-height: 32rpx;
- font-size: 32rpx;
- margin-bottom: 20rpx;
- text-indent: 0.5em;
- font-weight: 600;
- }
- .c-title:before {
- position: absolute;
- top: 0;
- left: 0;
- content: '';
- width: 4rpx;
- height: 32rpx;
- }
- .title-red {
- color: #ff4300;
- }
- .title-red:before {
- background: #ff4300;
- }
- .title-blue {
- color: #48a8ff;
- }
- .title-blue:before {
- background: #48a8ff;
- }
- .title-yellow {
- color: #ffd238;
- }
- .title-yellow:before {
- background: #ffd238;
- }
- .life-out-box {
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: row;
- flex-direction: row;
- background: #fff;
- margin-top: 12rpx;
- padding: 20rpx 20rpx 0 20rpx;
- }
- .relogin {
- position: fixed;
- top: 65%;
- left: 50%;
- -webkit-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- color: #fff;
- padding: 10rpx;
- border-radius: 10rpx;
- }
- .vipimg {
- opacity: 0;
- position: absolute;
- top: 0;
- left: 0;
- width: 1px;
- height: 1px;
- z-index: -100000;
- }
- .buying-item-bottom {
- width: 100%;
- border-radius: 0;
- }
- .buying-price {
- background: #fff;
- -webkit-flex: 1;
- flex: 1;
- text-align: left;
- padding: 0;
- }
- .buying-btn {
- width: 156rpx;
- padding: 0;
- box-sizing: border-box;
- background: linear-gradient(to right, #ff8331, #fe433f);
- }
- .item-bottom {
- display: -webkit-flex;
- display: flex;
- padding: 0;
- }
- .shopname {
- -webkit-flex: 1;
- flex: 1;
- text-align: left;
- color: #666;
- font-size: 24rpx;
- padding: 0 !important;
- text-indent: 0;
- height: 40rpx;
- line-height: 40rpx;
- width: 120rpx;
- }
- .price-num {
- -webkit-flex: 1;
- flex: 1;
- text-align: right;
- color: #fe433f;
- font-size: 28rpx;
- padding-right: 20rpx;
- height: 40rpx;
- width: 120rpx;
- }
- .tip-img {
- position: absolute;
- left: 0;
- top: 0;
- z-index: 99;
- width: 104rpx !important;
- height: 40rpx !important;
- }
- .three-top {
- height: 384rpx;
- width: 100%;
- }
- .threeTop-img {
- height: 300rpx;
- width: 710rpx;
- overflow: hidden;
- position: relative;
- }
- .threeTop-img .buyingImg {
- width: 100%;
- height: 100%;
- }
- .margintop10 {
- margin-top: 10rpx;
- }
- .tuijianbox {
- margin-top: 20rpx;
- }
- .item-wrap {
- height: 240rpx;
- padding: 20rpx;
- box-sizing: border-box;
- display: -webkit-flex;
- display: flex;
- background: #fff;
- margin-bottom: 20rpx;
- }
- .item-l {
- width: 300rpx;
- }
- .item-l image {
- width: 300rpx;
- height: 200rpx;
- }
- .item-r {
- padding: 0 20rpx;
- box-sizing: border-box;
- }
- .item-r-top {
- display: -webkit-flex;
- display: flex;
- margin-bottom: 20rpx;
- }
- .top-l {
- width: 104rpx;
- height: 40rpx;
- background: #fe433f;
- color: #fff;
- line-height: 40rpx;
- text-align: center;
- font-size: 20rpx;
- border-radius: 5rpx;
- }
- .top-r {
- padding-left: 20rpx;
- }
- .timeitem {
- display: inline-block;
- width: 26rpx;
- height: 28rpx;
- background: #333;
- color: #fff;
- font-size: 20rpx;
- line-height: 28rpx;
- text-align: center;
- }
- .item-title {
- height: 80rpx;
- width: 390rpx;
- }
- .dian {
- display: inline-block;
- width: 20rpx;
- text-align: center;
- height: 28rpx;
- line-height: 28rpx;
- background: #fff;
- color: #333;
- font-size: 20rpx;
- }
- .price-bar {
- margin-top: 20rpx;
- }
- .buyingprice {
- margin-right: 10rpx;
- color: #fe433f;
- font-size: 32rpx;
- }
- .price {
- color: #999;
- font-size: 28rpx;
- text-decoration: line-through;
- }
- .timebar {
- height: 40rpx;
- text-align: center;
- line-height: 40rpx;
- box-sizing: border-box;
- padding: 0 20rpx;
- background: #333;
- color: #fff;
- font-size: 20rpx;
- border-radius: 5rpx;
- }
- .joinnum {
- color: #fe433f;
- font-size: 28rpx;
- }
- .cut-txt {
- color: #666;
- }
- .coupon-item {
- height: 240rpx;
- position: relative;
- background: url('http://papaq.oss-cn-hangzhou.aliyuncs.com/xcx/58Pa53WHXYzE33bd8AMnrS.png') no-repeat;
- background-position: 0 0;
- background-size: 100% 240rpx;
- display: -webkit-flex;
- display: flex;
- padding: 18rpx 40rpx;
- }
- .coupon-item image {
- width: 100%;
- height: 240rpx;
- }
- .coupon-l {
- padding: 50rpx 32rpx 0;
- }
- .top-text {
- width: 104rpx;
- height: 40rpx;
- background: #fff;
- color: #fe433f;
- line-height: 40rpx;
- text-align: center;
- font-size: 20rpx;
- border-radius: 5rpx;
- }
- .cou-l-top {
- display: -webkit-flex;
- display: flex;
- }
- .coupon-title {
- font-size: 40rpx;
- color: #fff;
- width: 230rpx;
- }
- .cou-shopname {
- width: 364rpx;
- color: #fff;
- font-size: 28rpx;
- }
- .cou-uselimit {
- width: 364rpx;
- color: #fff;
- font-size: 24rpx;
- }
- .coupon-r {
- -webkit-flex: 5;
- flex: 5;
- overflow: hidden;
- position: relative;
- }
- .coupon-r image {
- position: absolute;
- width: 140rpx;
- height: 140rpx;
- border-radius: 50%;
- right: 30rpx;
- top: 32rpx;
- }
- .itemtwo-wrap {
- height: 220rpx;
- display: -webkit-flex;
- display: flex;
- background: #fff;
- margin-bottom: 20rpx;
- }
- .itemtwo-l,
- .itemtwo-r {
- -webkit-flex: 6;
- flex: 6;
- padding: 20rpx;
- }
- .itemtwo-l {
- border-right: 1px solid #e8e8e8;
- }
- .itemtwo-l:nth-child(even) {
- border-right: none;
- }
- .coupon-col {
- background: #f8ad3f;
- color: #fff;
- }
- .buyinginfo {
- display: -webkit-flex;
- display: flex;
- }
- .buyinginfo image {
- width: 120rpx;
- height: 120rpx;
- }
- .inforight {
- padding-left: 20rpx;
- }
- .twobuyingtitle {
- width: 195rpx;
- font-size: 24rpx;
- height: 68rpx;
- line-height: 68rpx;
- }
- .twoprice {
- margin-top: 20rpx;
- }
- .twobuyingprice,
- .twoprice {
- font-size: 24rpx;
- }
- .coupontitle {
- width: 195rpx;
- font-size: 24rpx;
- color: #fe433f;
- }
- .coushopname {
- width: 195rpx;
- margin: 10rpx 0;
- }
- .coulimit {
- width: 195rpx;
- font-size: 24rpx;
- color: #666;
- }
- .pingou {
- background: #009688;
- }
- .cuttip {
- background: #48a8ff;
- }
- .twocutjoinnum {
- color: #fe433f;
- font-size: 24rpx;
- }
- .cutjointext {
- color: #666;
- }
- /* 服务 */
- .service {
- margin-top: 15rpx;
- background: white;
- }
- .scroll_view {
- width: 100%;
- white-space: nowrap;
- background: #f1f1f1;
- padding: 10rpx 0 10rpx 10rpx;
- }
- .service-item2 {
- display: inline-block;
- }
- .service-item image {
- width: 100%;
- height: 210rpx;
- }
- .title {
- height: 65rpx;
- line-height: 65rpx;
- background: white;
- border-left: 5px solid #2d7dee;
- font-size: 14px;
- border-bottom: 1px solid #f3f3f3;
- text-indent: 10px;
- display: flex;
- justify-content: space-between;
- }
- .title3 {
- height: 65rpx;
- line-height: 65rpx;
- background: white;
- font-size: 14px;
- border-bottom: 1px dotted #eeeeee;
- display: flex;
- justify-content: space-between;
- }
- .title3_left {
- display: flex;
- height: 65rpx;
- line-height: 65rpx;
- }
- .title3_left_border {
- border-left: 4px solid #2d7dee;
- height: 33rpx;
- margin-top: 17rpx;
- margin-left: 20rpx;
- }
- .title3_name {
- text-align: left;
- text-indent: 15rpx;
- color: #666666;
- }
- .more {
- margin-right: 8px;
- color: #999;
- font-size: 12px;
- }
- .service-div {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- justify-content: center;
- }
- .service-item {
- width: 46%;
- margin: 5px;
- text-align: center;
- }
- .service-item {
- width: 46%;
- margin: 5px;
- text-align: center;
- }
- .service-item image {
- width: 100%;
- height: 105px;
- border-radius: 15rpx;
- }
- .service-item-text {
- font-size: 13px;
- text-align: center;
- color: #6e6e6e;
- line-height: 30rpx;
- }
- .image-item {
- width: 96%;
- margin: 0rpx auto;
- text-align: center;
- padding-bottom: 10rpx;
- position: relative;
- height: 400rpx;
- }
- .image-item image {
- height: 400rpx;
- border-radius: 4rpx;
- }
- .image-position {
- width: 100%;
- position: absolute;
- top: 340rpx;
- height: 60rpx;
- line-height: 60rpx;
- }
- .image-position {
- width: 100%;
- position: absolute;
- top: 340rpx;
- height: 60rpx;
- line-height: 60rpx;
- }
- .image-item-bg {
- background: #333;
- opacity: 0.4;
- z-index: 2;
- }
- .image-item-text {
- color: white;
- font-size: 16px;
- z-index: 6;
- text-align: center;
- }
- .image-item image {
- width: 100%;
- }
- .video-item image {
- height: 400rpx;
- width: 100%;
- }
- .video-item {
- height: 400rpx;
- }
- .video-item .image-position {
- top: 0px;
- height: 400rpx;
- }
- .video_text {
- width: 100%;
- height: 20px;
- margin-top: 350rpx;
- font-size: 14px;
- }
- .playimg_div {
- position: absolute;
- z-index: 99;
- width: 100%;
- height: 400rpx;
- top: 0px;
- }
- .playimg_div image {
- width: 80rpx;
- height: 80rpx;
- margin-top: 160rpx;
- }
- .image-item video {
- width: 100%;
- height: 400rpx;
- }
- .footer {
- width: 100%;
- height: 100rpx;
- position: fixed;
- bottom: 0;
- left: 0;
- background: #ff8331;
- opacity: 0.8;
- z-index: 9;
- }
- .footer-content {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100%;
- }
- .footer button {
- -webkit-flex: 1;
- flex: 1;
- max-width: 100%;
- height: 100%;
- line-height: 100rpx;
- color: #fff;
- font-weight: 100%;
- }
- .share {
- width: 100rpx;
- height: 100rpx;
- border-radius: 50%;
- position: fixed;
- right: 20rpx;
- bottom: 150rpx;
- background: green;
- z-index: 9;
- text-align: center;
- }
- .share button {
- width: 100%;
- height: 100%;
- color: #fff;
- line-height: 100rpx;
- font-weight: 700;
- background: red;
- }
- .zan-dialog {
- z-index: 1000;
- }
- .zan-dialog__container {
- background: #f2f3f4;
- border-top-left-radius: 20rpx;
- border-top-right-radius: 20rpx;
- }
- .a-title {
- height: 92rpx;
- line-height: 92rpx;
- text-align: center;
- font-size: 32rpx;
- color: #666;
- }
- .a-btn {
- height: 100rpx;
- line-height: 100rpx;
- text-align: center;
- font-size: 32rpx;
- color: #fff;
- }
- .radio-group {
- padding: 0 20rpx 30rpx 20rpx;
- }
- .radio-list {
- position: relative;
- width: 700rpx;
- padding: 30rpx;
- margin-bottom: 30rpx;
- background: #fff;
- border-radius: 8rpx;
- overflow: hidden;
- }
- .radio-list:before {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- width: 10rpx;
- height: 100%;
- }
- radio-group .radio:nth-child(odd) .radio-list:before {
- background: linear-gradient(#ff9e75, #ff3943);
- }
- radio-group .radio:nth-child(even) .radio-list:before {
- background: linear-gradient(#ffde70, #f59324);
- }
- .radio-list-top {
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: row;
- flex-direction: row;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- -webkit-align-items: center;
- align-items: center;
- padding-bottom: 20rpx;
- }
- .radio-list-l {
- display: -webkit-flex;
- display: flex;
- align-items: center;
- }
- .radio-list-l image {
- width: 64rpx;
- height: 64rpx;
- display: inline;
- }
- .radio-list-l text:first-child {
- padding-left: 42rpx;
- font-size: 32rpx;
- }
- /* .radio-list-l text:last-child { font-size: 64rpx; font-weight: 600; } */
- .radio-list-bottom {
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: row;
- flex-direction: row;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- border-top: 1px solid #f2f3f4;
- }
- .radio-list-bottom text:first-child,
- .radio-list-bottom text:last-child {
- padding-top: 20rpx;
- height: 28rpx;
- line-height: 28rpx;
- color: #999;
- }
- .radio-list-bottom text:first-child {
- width: 500rpx;
- }
- .radio-box {
- height: 740rpx;
- overflow-y: scroll;
- padding: 10rpx 30rpx;
- }
- .zan-dialog__containerb {
- background: #fff;
- }
- .use-input {
- display: block;
- width: 650rpx;
- height: 98rpx;
- margin: 0 30rpx;
- padding: 0 20rpx;
- background: #f2f3f4;
- border-radius: 8rpx;
- text-align: center;
- }
- .use-time {
- line-height: 64rpx;
- text-align: center;
- color: #999;
- font-size: 24rpx;
- margin-bottom: 30rpx;
- }
- .recommend-mask {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: rgba(0, 0, 0, 0.4);
- z-index: 1000;
- }
- .recommend-mask image {
- position: fixed;
- top: 50%;
- left: 50%;
- -webkit-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- width: 560rpx;
- height: 914rpx;
- }
- .recommend-mask icon {
- position: absolute;
- right: 80rpx;
- top: 80rpx;
- }
- .fixed-btn {
- position: absolute;
- top: 20%;
- left: 50%;
- -webkit-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- width: 100rpx;
- height: 100rpx;
- line-height: 100rpx;
- color: #999;
- text-align: center;
- z-index: 2;
- background: #fff;
- border-radius: 50%;
- box-shadow: 0 0 10px #e6e6e6 inset;
- }
- .none-vip {
- position: fixed;
- z-index: 1000;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: #fa6248;
- }
- .none-vip image {
- display: block;
- margin: 100rpx auto 20rpx;
- }
- .none-vip view {
- height: 200rpx;
- line-height: 200rpx;
- text-align: center;
- color: #fff;
- font-size: 32rpx;
- }
- .header-mask {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 94%;
- background: rgba(0, 0, 0, 0.3);
- z-index: 1;
- }
- .header-mask-title {
- padding-top: 148rpx;
- padding-bottom: 20rpx;
- text-align: center;
- color: #fff;
- }
- .header-mask-open {
- width: 208rpx;
- height: 72rpx;
- line-height: 72rpx;
- margin: 0 auto;
- border-radius: 36rpx;
- text-align: center;
- color: #fff;
- }
- .mask0 {
- opacity: .2;
- }
- .background {
- background-color: #fff;
- margin-top: 20rpx;
- margin-bottom: 150rpx;
- }
- .howGetTeacher,
- .howGetStudent,
- .protectPrivacy,
- .aboutSalary {
- margin: 0rpx 20rpx 0rpx 20rpx;
- padding: 30rpx 0rpx 30rpx 0rpx;
- border-bottom: 1px solid #f0f0f0;
- background-color: #fff;
- color: #fff
- }
- .security {
- margin: 0rpx 20rpx 0rpx 20rpx;
- padding: 30rpx 0rpx 30rpx 0rpx;
- background-color: #fff;
- }
- .downArrow {
- float: right;
- width: 30rpx;
- height: 30rpx;
- }
- .detailHowGetTeacher,
- .detailHowGetStudent,
- .detailProtectPrivacy,
- .detailAboutSalary {
- color: #757575;
- font-size: 33rpx;
- margin: 0rpx 20rpx 0rpx 20rpx;
- padding-bottom: 20rpx;
- border-bottom: 6px solid #f0f0f0;
- background-color: #fff;
- }
- .howGetTeacher text,
- .howGetStudent text {
- padding-left: 10rpx;
- }
- .detailSecurity {
- color: #757575;
- font-size: 33rpx;
- margin: 0rpx 20rpx 0rpx 20rpx;
- padding-bottom: 150rpx;
- background-color: #fff;
- }
- .bottom {
- display: flex;
- z-index: 99;
- position: fixed;
- bottom: 0;
- width: 100%;
- height: 100rpx;
- background: #fff;
- border-top: 1px solid #d9d9d9;
- }
- .feedbackIcon {
- width: 40rpx;
- height: 40rpx;
- border: none;
- }
- .feedbackText {
- vertical-align: middle;
- color: #fe4c40;
- }
- .iconText {
- display: flex;
- margin: auto;
- }
- .pop {
- width: 100%;
- height: 100%;
- z-index: 99;
- position: fixed;
- top: 0;
- left: 0;
- background: rgba(0, 0, 0, .7);
- }
- .pop-box {
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .pop-container {
- width: 600rpx;
- height: 500rpx;
- background: #fff;
- padding: 20rpx 40rpx;
- text-align: center;
- position: relative;
- overflow: scroll;
- scroll-x: none;
- border-radius: 15rpx;
- }
- .pop-container textarea {
- width: 500rpx;
- height: 90%;
- }
- .pop-container .btn {
- padding: 10rpx 50rpx;
- background: red;
- color: #fff;
- margin: 20rpx 0;
- }
- .pop-container text {
- font-size: 30rpx;
- word-break: 2;
- }
- .titles {
- font-size: 17px;
- font-weight: bold;
- text-align: center;
- margin: 24rpx 0 12rpx;
- }
- .news {
- margin-top: 20rpx;
- background: #fff;
- padding: 20rpx;
- }
- life-txt.life-box {
- padding: 0 10rpx;
- width: 690rpx;
- }
- .life-box>view:first-child {}
- .life-box>view:last-child {
- border-bottom: 0;
- }
- .life-list {
- position: relative;
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: row;
- flex-direction: row;
- width: 710rpx;
- padding: 20rpx 0;
- border-bottom: 0.1px solid #e6e6e6;
- }
- .life-listc {
- position: relative;
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: column;
- flex-direction: column;
- padding: 20rpx 0 60rpx;
- border-bottom: 0.1px solid #e6e6e6;
- }
- .life-list .life-txt {
- display: -webkit-flex;
- display: flex;
- -webkit-flex: 1;
- flex: 1;
- -webkit-flex-direction: column;
- flex-direction: column;
- height: 150rpx;
- line-height: 44rpx;
- font-weight: 600;
- }
- .life-list .life-txt view {
- font-size: 32rpx;
- white-space: normal;
- word-break: break-all;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .life-time {
- position: absolute;
- bottom: 30rpx;
- left: 0;
- width: 100%;
- line-height: 20rpx;
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: row;
- flex-direction: row;
- justify-content: flex-end;
- }
- .life-list .life-time {
- position: absolute;
- bottom: 30rpx;
- -webkit-flex-direction: column;
- flex-direction: column;
- line-height: 25rpx;
- }
- .life-time text {
- font-weight: 200;
- font-size: 20rpx;
- color: #666;
- }
- .life-list .life-img {
- width: 240rpx;
- height: 150rpx;
- margin-left: 10rpx;
- }
- .life-list .life-img image {
- width: 100%;
- height: 100%;
- }
- .life-listc .life-img {
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: row;
- flex-direction: row;
- width: 710rpx;
- }
- .life-listc .life-img image {
- width: 227rpx;
- height: 165rpx;
- padding: 20rpx 0 0;
- margin-right: 15rpx;
- }
- .life-listc .life-img image:last-child {
- margin-right: 0;
- }
- .life-listc .life-txt {
- display: -webkit-flex;
- display: flex;
- -webkit-flex: 1;
- flex: 1;
- -webkit-flex-direction: column;
- flex-direction: column;
- line-height: 44rpx;
- font-weight: 600;
- }
- /* 更多新闻 */
- .getmore {
- background: #f6f7fb;
- color: #f53333;
- border: none;
- text-align: center;
- border-radius: 5px;
- padding: 10px;
- margin: 15px 0;
- font-size: 15px;
- }
- .getmore:after {
- border: none;
- }
- .btn {
- border: none;
- padding: 0;
- margin: 0;
- display: inline;
- line-height: 1.5;
- }
- .btn::after {
- border: none;
- }
-
- // .popup { position: fixed; left: 0; top: 0; width: 100%; height: 100vh; background: rgba(0, 0, 0, 0.5); z-index: 888; }
- // .popup .bigimg { width: 600rpx; height: 800rpx; z-index: 999; position: absolute; left: 75rpx; top: 140rpx; }
- // .scaleSmall { -webkit-animation: myscalesmall 0.6s; animation: myscalesmall 0.6s; }
- // .scaleBig { -webkit-animation: myscaleBig 0.8s; animation: myscaleBig 0.8s; }
- // @-webkit-keyframes myscalesmall { from { -webkit-transform: scale(1); transform: scale(1); }
- // to { -webkit-transform: scale(0); transform: scale(0); left: 350rpx; top: 600rpx; }
- // }@keyframes myscalesmall { from { -webkit-transform: scale(1); transform: scale(1); }
- // to { -webkit-transform: scale(0); transform: scale(0); left: 350rpx; top: 600rpx; }
- // }@-webkit-keyframes myscalebig { from { left: 350rpx; top: 600rpx; -webkit-transform: scale(0); transform: scale(0); }
- // to { left: 75rpx; top: 140rpx; }
- // }@keyframes myscalebig { from { left: 350rpx; top: 600rpx; -webkit-transform: scale(0); transform: scale(0); }
- // to { left: 75rpx; top: 140rpx; }
- // }.closeBtn { z-index: 999; width: 48rpx; height: 48rpx; border-radius: 48rpx; border: 1px solid #fff; text-align: center; line-height: 48rpx; color: #fff; position: absolute; left:623rpx; top:140rpx; }
- </style>
|