123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726 |
- /* **********
- * 经销商、代理商后台系统样式定制
- * **********/
- /* **********
- * account-setting
- * **********/
- .account-hd {
- margin-top: 10px !important; // 覆盖mui的15px
- }
- .account-hd .mui-media-object {
- max-width: 60px;
- height: 60px;
- line-height: 60px;
- border-radius: 3px;
- }
- .account-hd .mui-media-body {
- margin-top: 10px;
- margin: 10px;
- }
- .account-bd .mui-table-view-cell .iconfont {
- margin-right: 10px;
- font-size: 23px;
- vertical-align: middle;
- width: 23px;
- display: inline-block;
- text-align: center;
- }
- .account-reset {
- margin-top: 1em;
- }
- .sub-account-icon {
- display: inline-block;
- background: url("/app/img/sub-account-icon.png") no-repeat;
- background-size: cover;
- width: 24px;
- height: 24px;
- }
- .account-hd .mui-media-body {
- display: inline-table;
- }
- .account-setting {
- top: 50%;
- position: absolute;
- right: 15px;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- text-decoration: none;
- -webkit-font-smoothing: antialiased;
- }
- /* **********
- * login reg
- * **********/
- .login-logo {
- width: 97.5px;
- height: 97.5px;
- margin: 1.875em auto;
- background-size: contain;
- background-position: center;
- background-repeat: no-repeat;
- }
- .login-forget {
- margin: 15px 1em;
- text-align: right;
- }
- .login-forget a {
- color: rgba(0, 0, 0, .4);
- }
- .reg-tip {
- padding-top: 3px;
- color: rgba(0, 0, 0, .8);
- }
- /***自定义mask**/
- .common-mask {
- position: fixed;
- z-index: 100;
- display: none;
- top: 0;
- right: 0;
- left: 0;
- bottom: 0;
- background: rgba(0, 0, 0, .4)
- }
- .common-model {
- background: rgba(255, 255, 255, 1);
- width: 88%;
- box-shadow: 0 0 20px #888;
- border-radius: 6px;
- margin: 40px auto 0;
- padding: 10px;
- }
- .common-model-tit {
- font-size: 16px;
- text-align: center;
- line-height: 32px;
- margin-bottom: 10px;
- }
- .common-model-tit a {
- color: $default-color;
- }
- .common-model-close {
- display: table;
- padding: 10px 18px;
- margin: 25px auto 10px;
- border-radius: 4px;
- text-align: center;
- color: #fff;
- background: $default-color;
- font-size: 22px;
- }
- /*-----------鉴权------------------*/
- [role="limit-user"] [permission="manage-edit"] {
- pointer-events: none;
- }
- [role="limit-user"] [permission="manage-show"] {
- display: none !important;
- }
- [role="manage"] [permission="limit-user-show"] {
- display: none !important;
- }
- /****************经销商、代理商样式******************/
- /*datepicker*/
- .datepickerSelecter .datepicker {
- background-color: #fff;
- border-top: 1px solid #e5e5e5;
- border-bottom: 1px solid #e5e5e5;
- }
- .datepicker .mui-button-row {
- position: relative;
- height: 50px;
- padding-top: 8px;
- padding-left: 10px;
- }
- .datepicker .mui-button-row:after {
- position: absolute;
- right: 0;
- bottom: 0;
- left: 0px;
- height: 1px;
- content: '';
- background-color: #c8c7cc;
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- }
- .datepicker .mui-button-row .mui-btn {
- width: 62px;
- padding: 6px 0;
- margin-right: 10px;
- }
- .datepicker .mui-button-row .mui-btn.active {
- color: $default-color;
- border-color: $default-color;
- background: #fff;
- }
- .datepicker .mui-input-group:before,
- .datepicker .mui-input-group:after,
- .datepicker .mui-input-row:last-child:after {
- height: 0;
- }
- /*card:主页用到*/
- .card {
- padding: 10px;
- margin: 10px;
- overflow: hidden;
- background-color: #fff;
- border: 1px solid #e5e5e5;
- border-radius: 8px;
- }
- .relative {
- position: relative;
- }
- /*checkbox*/
- .checkbox {
- font-size: 14px;
- }
- .checkbox.mui-left label {
- padding: 0 0 0 45px;
- }
- .checkbox input[type="checkbox"] {
- top: 50%;
- width: 22px;
- height: 22px;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- .checkbox input[type="checkbox"]:before {
- font-size: 22px;
- }
- .checkbox input[type="checkbox"]:checked:before {
- color: $default-color;
- }
- .online,
- .offline,
- .unbind,
- .transfer,
- .total-mark,
- .busy,
- .error,
- .new,
- .mark-blue,
- .mark {
- margin-left: 5px;
- padding: 0 3px;
- color: #fff;
- font-size: 12px;
- line-height: 14px;
- height: 16px;
- display: inline-block;
- text-align: center;
- border-radius: 3px;
- vertical-align: middle;
- white-space: nowrap;
- border: 1px solid;
- }
- .online {
- color: $default-color-green;
- }
- .mark-blue {
- color: $default-color;
- }
- .busy {
- color: $default-color-lgreen;
- }
- .error {
- color: $default-color-red;
- }
- .new {
- color: $default-color-red;
- }
- .offline,
- .unbind {
- color: #aaa;
- }
- .transfer {
- background-color: $default-color-lgreen;
- border: 1px $default-color-lgreen solid; // 都需要加border,这样line-height可以保持一致
- }
- .total-mark {
- background-color: $default-color;
- border: 1px $default-color solid;
- }
- // 列表没有更多的数据
- .nomore {
- position: fixed;
- top: 40%;
- left: 50%;
- z-index: 1;
- width: 156px;
- height: 150px;
- background: url(/app/img/nomore.png) no-repeat;
- background-size: contain;
- -webkit-transform: translate3d(-50%, -50%, 0);
- transform: translate3d(-50%, -50%, 0);
- }
- .nomore:after {
- position: absolute;
- top: 100%;
- left: 50%;
- content: '暂时无内容';
- color: #bbb;
- font-size: 14px;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
- }
- /* **********
- * index
- * **********/
- .index-hd {
- position: relative;
- font-size: 15px;
- text-align: center;
- background-image: linear-gradient(540deg, lighten(saturate($default-color, 2%), 2%) 0%, darken(desaturate($default-color, 5%), 4%) 99%);
- .hd-tab {
- display: block;
- padding-top: 25px;
- padding-bottom: 30px;
- color: #fff;
- span {
- display: block;
- margin-top: 15px;
- font-size: 36px;
- }
- }
- .hd-cell {
- position: relative;
- bottom: 0;
- left: 0;
- padding: 11px 0;
- color: #fff;
- font-size: 16px;
- background-color: lighten(saturate($default-color, 0%), 2%);
- span {
- display: block;
- font-size: 14px;
- }
- }
- .mui-table-cell ~ .mui-table-cell:before {
- position: absolute;
- top: 0;
- left: 0;
- content: '';
- width: 1px;
- height: 100%;
- background-color: lighten($default-color, 27%);
- }
- }
- .tip-info {
- line-height: 16px;
- height: 14px;
- width: 14px;
- display: inline-block;
- border-radius: 50%;
- font-size: 10px;
- position: absolute;
- top: 50%;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- right: 10px;
- color: darken($default-color, 10%);
- background-color: lighten($default-color, 20%);
- box-shadow: 0 0 4px darken($default-color, 10%);
- }
- .help-wrap {
- position: absolute;
- top: 40%;
- right: 0;
- z-index: 1;
- width: 50px;
- height: 50px;
- background-color: transparent;
- -webkit-transform: translateY(-40%);
- transform: translateY(-40%);
- }
- .help {
- position: absolute;
- top: 50%;
- right: 15px;
- width: 24px;
- height: 24px;
- font-weight: 600;
- line-height: 24px;
- text-align: center;
- border-radius: 50%;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- color: darken($default-color, 10%);
- background-color: lighten($default-color, 20%);
- box-shadow: 0 0 4px darken($default-color, 10%);
- }
- .help-tip {
- position: fixed;
- top: 0;
- left: 0;
- z-index: 99;
- width: 100%;
- height: 100%;
- overflow-y: auto;
- background-color: rgba(0, 0, 0, .4);
- }
- .help-card {
- position: fixed;
- top: 50%;
- left: 50%;
- z-index: 1000;
- width: 85%;
- height: 80%;
- word-break: break-all;
- word-wrap: break-word;
- background-color: #fff;
- border-radius: 12px;
- -webkit-transform: translate3d(-50%, -50%, 0);
- transform: translate3d(-50%, -50%, 0);
- }
- .help-card .help-bd {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 90%;
- padding: 15px;
- word-break: break-all;
- overflow-y: auto;
- border-radius: 12px 12px 0 0;
- }
- .help-card.autoheight .help-bd {
- position: relative;
- height: auto;
- }
- .help-bd h4 {
- margin-bottom: 15px;
- font-size: 20px;
- text-align: center;
- font-weight: normal;
- }
- .help-bd h5 {
- color: #000;
- font-size: 16px;
- }
- .help-bd p {
- margin-bottom: 20px;
- color: #333;
- }
- .help-bd em {
- color: $default-color-red;
- }
- .help-bd ol {
- padding-left: 20px;
- }
- .help-bd ol li {
- margin-bottom: 10px;
- list-style-type: decimal;
- }
- .help-card .help-close {
- position: absolute;
- bottom: 0;
- left: 0;
- z-index: 1;
- width: 100%;
- padding: 12px 10px;
- color: $default-color;
- text-align: center;
- background-color: #fff;
- border-top: 1px solid #eee;
- border-radius: 0 0 12px 12px;
- }
- .help-card.autoheight .help-close {
- position: relative;
- }
- .index-bd {
- margin-bottom: 10px;
- }
- .index-bd .mui-row, .index-bd .row-cell {
- color: #e0e0e0;
- }
- .index-bd .menu-block-wear {
- background: #fff;
- position: relative;
- &.border-top:before {
- position: absolute;
- right: 0;
- left: 0;
- height: 1px;
- content: '';
- transform: scaleY(.5);
- background-color: #c8c7cc;
- top: -1px;
- }
- &.border-bottom:after {
- position: absolute;
- right: 0;
- left: 0;
- height: 1px;
- content: '';
- transform: scaleY(.5);
- background-color: #c8c7cc;
- bottom: -1px;
- }
- }
- .index-bd .mui-row .row-cell {
- &.border-bottom:before {
- position: absolute;
- right: 0;
- bottom: 0;
- left: 0;
- height: 1px;
- content: '';
- transform: scaleY(.5);
- background-color: #c8c7cc;
- }
- &.border-right:after {
- position: absolute;
- right: 0;
- bottom: 0;
- top: 0;
- width: 1px;
- content: '';
- transform: scaleX(.5);
- background-color: #c8c7cc;
- }
- }
- // 在高分辨率屏幕上的线条
- @media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
- .index-bd .menu-block-wear {
- &.border-top:before {
- transform: scaleY(.333);
- }
- &.border-bottom:after {
- transform: scaleY(.333);
- }
- }
- .index-bd .mui-row .row-cell {
- &.border-bottom:before {
- position: absolute;
- transform: scaleY(.333);
- }
- &.border-right:after {
- transform: scaleX(.333);
- }
- }
- //使主页的线条更纤细
- #container {
- .mui-table-view:before {
- transform: scaleY(.333);
- }
- .mui-table-view:after {
- transform: scaleY(.333);
- }
- }
- }
- .index-bd .mui-row .row-cell {
- position: relative;
- padding: 15px 10px;
- }
- .index-bd .mui-row .row-cell .new {
- position: absolute;
- top: 0;
- right: 0;
- z-index: 1;
- width: 36.5px;
- height: 30.5px;
- background: url(/app/img/tips-new.png) no-repeat;
- background-size: contain;
- }
- .index-bd .mui-row p {
- margin-bottom: 0;
- color: #000;
- font-size: 16px;
- }
- .index-bd .mui-row .iconfont {
- font-size: 24px;
- }
- .index-bd .mui-row p span {
- display: block;
- padding-top: 5px;
- color: rgba(0, 0, 0, .4);
- font-size: 13px;
- }
- .index-bd .mui-media-object {
- height: auto;
- line-height: 1;
- }
- .index-bd .mui-media-object.iconfont {
- font-size: 25px;
- }
- .index-bd .mui-media-body p {
- color: rgba(0, 0, 0, .4);
- font-size: 13px;
- }
- .index-tip,
- .index-tip a {
- color: rgba(0, 0, 0, .4);
- }
- .index-tip .service-link {
- color: $default-color;
- }
- .index-bd.just-text .mui-row, .index-bd.just-text .row-cell {
- color: #E4E3E6;
- }
- .just-text .mui-row .row-cell, .just-text .mui-table-view-cell {
- padding: 12px;
- }
- .just-text .mui-table-view-cell > a:not(.mui-btn) {
- padding: 0;
- margin: 0;
- }
- .just-text .mui-row p {
- font-size: 14px;
- color: #333;
- }
- .just-text .mui-row p span {
- color: #999;
- padding-top: 0;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- .just-text .col-part {
- color: #999;
- font-size: 13px;
- }
- .just-text .part-hold {
- visibility: hidden;
- }
- .just-text .col-part p {
- color: #333;
- font-size: 20px;
- }
- .just-text .mui-row .row-cell {
- border-color: #E4E3E6;
- }
- /* **********
- * income-today
- * **********/
- .income .income-title {
- margin-top: 20px;
- margin-bottom: 20px;
- font-weight: normal;
- font-size: 15px;
- }
- .income .income-hd {
- color: #000;
- font-size: 36px;
- margin-bottom: 0;
- }
- .income .income-ft {
- margin-top: 15px;
- margin-bottom: 15px;
- color: #000;
- font-size: 15px;
- }
- .income-month-hd {
- top: 0;
- left: 0;
- z-index: 10;
- width: 100%;
- padding: 10px 12px 10px;
- background: #fff;
- }
- .income-segmented {
- overflow: hidden;
- margin-top: 10px;
- margin-bottom: 70px;
- background: #fff;
- min-height: 320px;
- position: absolute;
- width: 100%;
- }
- .income-segmented-hd {
- position: relative;
- height: 183px;
- font-size: 15px;
- text-align: center;
- }
- .income-segmented-hd .hd-tab {
- display: block;
- padding-top: 25px;
- padding-bottom: 30px;
- }
- .income-segmented-hd .hd-tab span {
- display: block;
- margin-top: 15px;
- font-size: 36px;
- }
- .income-segmented-hd .hd-cell {
- position: absolute;
- bottom: 0;
- left: 0;
- padding: 11px 0;
- font-size: 16px;
- }
- .income-segmented-hd .hd-cell span {
- display: block;
- font-size: 14px;
- }
- .income-segmented-hd .mui-table-cell ~ .mui-table-cell:before {
- position: absolute;
- top: 0;
- left: 0;
- content: '';
- width: 1px;
- height: 100%;
- background-color: #e0e0e0;
- }
- .income-tip {
- position: absolute;
- top: 45%;
- left: 52%;
- width: 199.65px;
- height: 264.55px;
- margin-top: -132.275px;
- margin-left: -99.825px;
- background: url(/app/img/noincome.png) no-repeat;
- background-size: contain;
- }
- /* **********
- * today coin operate
- * **********/
- .operate {
- -webkit-overflow-scrolling: touch;
- }
- /* **********
- * discount
- * **********/
- .discount-details-bd {
- margin-bottom: 85px;
- }
- .discount-details-bd .reg-dbj {
- margin-bottom: 0;
- }
- .discount-details-bd .reg-wash .mui-table-view-cell p {
- color: #8f8f94;
- font-size: 14px;
- }
- .discount-bd .mui-table-view-cell p,
- .discount-details-bd .mui-table-view-cell p,
- .location-bd .mui-table-view-cell p,
- .location-card .mui-input-row p {
- margin-bottom: 0;
- color: #000;
- font-size: 16px;
- }
- .discount-bd .mui-table-view-cell p + p,
- .discount-details-bd .mui-table-view-cell p + p,
- .location-bd .mui-table-view-cell p + p,
- .location-card .mui-input-row p + p {
- color: #8f8f94;
- font-size: 14px;
- }
- .discount-set {
- margin-bottom: 80px;
- }
- .discount-set .mui-pull-right,
- .reg-wash .mui-pull-right {
- color: #000;
- font-size: 16px;
- }
- .discount-set .mui-pull-right em ~ em,
- .reg-wash .mui-pull-right em ~ em {
- margin-left: 10px;
- }
- .discount-set .iconfont,
- .reg-wash .iconfont {
- margin-right: 3px;
- }
- .edit-back {
- position: fixed;
- top: 0;
- left: 0;
- z-index: 99;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, .4);
- }
- .edit-back.edit-bottom {
- border-radius: 0;
- > .edit-content {
- border-radius: 0;
- height: 92%;
- transform: none;
- top: auto;
- bottom: 0;
- left: auto;
- width: 100%;
- > .edit-box {
- padding-bottom: 54px;
- }
- > .mui-popup-buttons {
- position: fixed;
- width: 100%;
- bottom: 0;
- z-index: 2;
- }
- }
- }
- .edit-content {
- position: absolute;
- top: 50%;
- left: 50%;
- min-width: 270px;
- width: 86%;
- background-color: #fff;
- border-radius: 4px;
- -webkit-transform: translate3d(-50%, -50%, 0);
- transform: translate3d(-50%, -50%, 0);
- overflow-y: auto;
- max-height: 100%;
- }
- .edit-content input[type=submit] {
- background: none !important;
- border: none !important;
- width: 100%;
- height: 100%;
- color: $default-color !important;
- font-size: 17px;
- }
- .edit-content.full {
- width: 95%;
- }
- .edit-box {
- position: relative;
- padding: 15px;
- }
- .edit-content .mui-popup-buttons:after {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- height: 1px;
- content: '';
- background-color: rgba(0, 0, 0, .2);
- -webkit-transform-origin: 0 100%;
- transform-origin: 0 100%;
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- }
- .reg-des textarea {
- padding: 5px;
- margin-top: 5px;
- margin-bottom: 0;
- font-size: 14px;
- }
- .edit-box .mui-input-row label {
- height: 35px;
- padding: 0;
- line-height: 35px;
- white-space: nowrap;
- }
- .edit-box .mui-input-row .edit-row {
- position: relative;
- margin-bottom: 10px;
- }
- .edit-box .mui-input-row .edit-row span {
- position: absolute;
- top: 10px;
- right: 5px;
- }
- .edit-box .mui-input-row .edit-row .event-unit {
- top: 0;
- padding: 10px 5px;
- right: 0;
- }
- .edit-box .mui-input-row .edit-row input,
- .edit-box .mui-input-row .edit-row select {
- width: 140px;
- height: 35px;
- margin: 2px 0 0;
- padding: 0 22px 0 5px;
- padding-right: 22px;
- text-align: center;
- line-height: 1;
- border: 1px solid #e5e5e5 !important;
- }
- .edit-row .x-s, .edit-row select .x-s {
- width: 90px !important;
- }
- .edit-box textarea {
- border: 1px solid #e5e5e5 !important;
- }
- .edit-box .mui-input-row .edit-row input[disabled] {
- background: #e5e5e5;
- }
- .edit-box textarea[disabled] {
- background: #e5e5e5;
- }
- .mui-input-row .edit-row select option {
- text-align: center;
- }
- .edit-box .mui-input-row .mui-numbox {
- margin: 2px 0 0;
- background-color: #fff;
- }
- .edit-box .mui-numbox [class*=btn-numbox] {
- background-color: #fff;
- }
- .tips {
- line-height: 16px;
- text-align: center;
- height: 14px;
- width: 14px;
- display: inline-block;
- border-radius: 50%;
- font-size: 10px;
- background: #eee;
- box-shadow: 0 0 6px #aaa;
- }
- /* **********
- * device dbj details,
- * device start details
- * **********/
- .device-details-hd,
- .discount-hd {
- top: 0;
- left: 0;
- z-index: 10;
- width: 100%;
- background-color: #efeff4;
- }
- .device-details-bd,
- .discount-bd {
- margin-top: 34px;
- -webkit-overflow-scrolling: touch;
- }
- .device-details-bd .custom-bottom .mui-pull-right {
- color: #000;
- font-size: 16px;
- }
- /* **********
- * device mgr
- * **********/
- .mgr-bd,
- .fault-list {
- transition: .25s all ease-in-out;
- margin-top: 110px;
- bottom: 0px;
- -webkit-overflow-scrolling: touch;
- }
- .mgr-bd .mui-table-view-cell .font-b-14-4 {
- padding-right: 8px;
- }
- .mgr-bd .mui-table-view-cell .mui-navigate-right:after {
- right: 5px;
- }
- .mgr-bd .mui-row ~ .mui-row {
- margin-top: 10px;
- }
- .mgr-bd .mui-row > [class*= 'mui-col-'] {
- color: rgba(0, 0, 0, .8);
- text-align: center;
- }
- .mgr-tip {
- position: absolute;
- top: 45%;
- left: 52%;
- width: 160.5px;
- height: 200.5px;
- margin-top: -100.25px;
- margin-left: -80.25px;
- background: url(/app/img/nodevice.png) no-repeat;
- background-size: contain;
- z-index: -1; //层级必须在底部,否则会遮盖 搜索框
- }
- .mgr-tip:after {
- position: absolute;
- top: 158px;
- width: 100%;
- left: 50%;
- content: '暂无设备,请先注册设备';
- color: #bbb;
- font-size: 14px;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
- }
- /** 设备管理公用样式**/
- .group-content {
- .mui-active {
- padding-left: 15px !important;
- }
- .mui-table-view-cell {
- padding-left: 15px !important;
- }
- .mui-table-view-cell:after {
- left: 15px !important;
- }
- }
- .device-mgr {
- .list {
- .mui-checkbox-wear {
- float: left;
- padding-right: 10px;
- display: none;
- height: 22px;
- }
- .group-content .mui-checkbox-wear {
- padding-left: 10px;
- height: 32px;
- }
- .mui-checkbox {
- pointer-events: none; /*移动端 mui冲突,选中事件需要自己加**/
- }
- .mui-checkbox input {
- position: relative;
- right: auto;
- top: -4px;
- }
- }
- .dev-top-info {
- position: relative;
- height: 38px;
- line-height: 38px;
- margin: 0;
- padding: 0 10px;
- background: #f4f4f4;
- }
- }
- .handle-reg {
- margin-top: -10px;
- margin-right: -10px;
- padding: 10px;
- }
- .c-handle-panel {
- position: fixed;
- width: 100%;
- left: 0;
- bottom: 0;
- display: -webkit-flex;
- display: flex;
- -webkit-align-items: center;
- align-items: center;
- z-index: 2;
- background: #fff;
- box-shadow: 0 0 1px #ccc;
- .handle-btn {
- height: 48px;
- line-height: 48px;
- text-align: center;
- font-size: 16px;
- padding: 0 10px;
- color: #fff;
- visibility: hidden;
- }
- .mui-checkbox {
- color: #333;
- display: inline-block;
- }
- input {
- top: auto !important;
- right: auto !important;
- vertical-align: middle !important;
- width: 78px;
- height: 100%;
- }
- input:before {
- top: 9px;
- position: absolute;
- }
- label {
- width: auto !important;
- vertical-align: middle !important;
- padding-right: 0 !important;
- padding-left: 32px !important;
- font-size: 12px !important;
- }
- .handle-btn-list {
- flex: 1;
- -webkit-flex: 1;
- // 4个按钮 iphone5s刚好可以显示下
- .mui-btn {
- margin-right: 6px;
- margin-top: 3px;
- margin-bottom: 3px;
- padding-left: 8px;
- padding-right: 8px;
- font-size: 12px;
- }
- }
- }
- /*批量操作模式*/
- .batch-model .c-handle-panel .handle-btn {
- visibility: visible !important;
- }
- .batch-model .mui-checkbox-wear {
- display: block !important;
- }
- .batch-model .mgr-bd {
- bottom: 40px !important;
- }
- .batch-model [role="limit-user"] {
- display: none;
- }
- .batch-model .by-group {
- display: none !important;
- }
- .batch-model-group {
- .by-group {
- display: block !important;
- }
- .by-dev {
- display: none !important;
- }
- }
- //设备详情
- .map-container {
- height: 100%;
- width: 100%;
- position: absolute;
- #allmap {
- width: 100%;
- height: 100%;
- overflow: hidden;
- margin: 0;
- }
- .center-mark {
- position: absolute;
- left: 50%;
- top: 50%;
- -webkit-transform: translateY(-24px) translateX(-50%);
- transform: translateY(-24px) translateX(-50%);
- }
- .address-pop {
- position: absolute;
- max-width: 80%;
- background: rgba(255, 255, 255, .9);
- left: 50%;
- -webkit-transform: translateX(-50%) scale(0);
- transform: translateX(-50%) scale(0);
- bottom: calc(50% + 24px + 10px);
- font-size: 14px;
- line-height: 20px;
- color: #555;
- padding: 6px 6px;
- border-radius: 4px;
- box-shadow: 5px 5px 25px #888;
- opacity: 0;
- -webkit-transition: .1s ease-in-out;
- transition: .1s ease-in-out
- }
- .address-pop.active {
- opacity: 1;
- -webkit-transform: translateX(-50%) scale(1);
- transform: translateX(-50%) scale(1);
- }
- .address-pop:before {
- content: "";
- position: absolute;
- left: 50%;
- bottom: -8px;
- margin: 0 0 0 -8px;
- width: 16px;
- height: 16px;
- background: rgba(255, 255, 255, .9);
- -webkit-transform: rotate(-45deg);
- transform: rotate(-45deg)
- }
- .center-mark .iconfont {
- font-size: 24px;
- line-height: 24px;
- }
- .map-bottom {
- position: absolute;
- bottom: 0;
- width: 100%;
- padding: 14px;
- text-align: center;
- }
- .map-bottom .btn {
- background: $default-color;
- line-height: 44px;
- color: #fff;
- text-align: center;
- border-radius: 5px;
- width: 100px;
- display: inline-block;
- box-shadow: 0 0 10px #999;
- margin-right: 10px;
- }
- .map-bottom .btn.address-cancel {
- background: #fff;
- color: $default-color;
- }
- .map-top {
- height: 44px;
- line-height: 44px;
- background: #fff;
- border-bottom: 1px solid #ccc;
- width: 100%;
- top: 0;
- z-index: 9;
- position: absolute;
- }
- .map-top .address-search {
- border: none;
- background: #fff;
- width: 100%;
- height: 100%;
- padding-left: 24px;
- font-size: 14px;
- }
- .map-top .icon-location {
- position: absolute;
- left: 6px;
- line-height: 44px;
- top: 0;
- }
- }
- .set-current-location {
- position: fixed;
- right: 22px;
- bottom: 80px;
- font-size: 24px;
- line-height: 36px;
- text-align: center;
- width: 36px;
- height: 36px;
- border-radius: 50%;
- background: #fff;
- display: block;
- color: #565B63;
- box-shadow: 0 0 10px rgba(0, 0, 0, .15);
- }
- /* **********
- * device details
- * **********/
- .details-bd .mui-table-view-cell .mui-pull-right {
- color: rgba(0, 0, 0, .5);
- font-size: 14px;
- max-width: calc(100% - 5em);
- white-space: normal;
- }
- /* **********
- * wallet
- * **********/
- /*wallet index*/
- .wallet {
- -webkit-overflow-scrolling: touch;
- }
- .wallet-hd {
- position: relative;
- padding: 20px 15px;
- background-color: #70717a;
- }
- .wallet-hd:after {
- position: absolute;
- top: 50%;
- right: 10px;
- display: inline-block;
- font-family: Muiicons;
- content: '\e583';
- color: #fff;
- font-size: 20px;
- font-weight: 600;
- line-height: 1;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- -webkit-font-smoothing: antialiased;
- }
- .wallet-hd {
- background-image: linear-gradient(135deg, rgba(255, 255, 255, .1) 0%, rgba(1, 1, 1, 0.1) 100%);
- padding: 10px 15px;
- }
- .wallet-hd ~ .wallet-hd {
- margin-top: 10px;
- }
- .wallet-hd em {
- background: rgba(255, 255, 255, .3);
- padding: 0 6px;
- border-radius: 10px;
- margin-left: 4px;
- font-size: 12px;
- line-height: 16px;
- vertical-align: middle;
- max-width: 12em;
- overflow: hidden;
- text-overflow: ellipsis;
- display: inline-block;
- white-space: nowrap;
- }
- .wallet-hd-title {
- color: #fff;
- font-size: 14px !important;
- }
- .wallet-hd-content {
- color: #fff;
- margin-top: 10px;
- font-size: 24px !important;
- }
- .wallet-hd-right {
- position: absolute;
- right: 35px;
- top: 50%;
- color: #fff;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- .wallet-hd-content small {
- font-size: 16px;
- }
- .wallet-common {
- background-color: #70717a;
- }
- .wallet-common .mui-table-cell {
- padding-top: 25px;
- padding-bottom: 25px;
- color: #fff;
- }
- .wallet-common .mui-table-cell span,
- .operate .mui-table-cell span {
- display: block;
- margin-top: 10px;
- font-size: 36px;
- }
- .wallet-common .mui-table-cell small,
- .operate .mui-table-cell i {
- font-size: 16px;
- }
- .wallet-help {
- position: absolute;
- left: auto;
- top: 50%;
- width: 40px;
- height: 40px;
- font-size: 16px !important;
- text-align: center;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- .wallet-help .help-icon {
- position: absolute;
- top: 50%;
- right: 10px;
- width: 20px;
- height: 20px;
- line-height: 18px;
- border: 1px solid #fff;
- border-radius: 100%;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- .wallet-bd {
- padding-top: 41px;
- }
- .wallet-withdraw-page {
- .icon-help-info {
- margin-top: -2px;
- }
- }
- /*wallet for withdraw*/
- .wallet-withdraw .mui-input-row {
- label {
- width: 30%;
- }
- label ~ input {
- width: 70%;
- }
- p {
- float: left;
- width: 100% !important;
- height: 44px;
- padding-right: 10px;
- margin-bottom: 0;
- color: #000;
- font-size: 16px;
- line-height: 44px;
- }
- .mui-pull-right {
- color: rgba(0, 0, 0, .5);
- font-size: 13px;
- }
- .outway {
- padding-top: 1px;
- color: #000;
- font-size: 18px;
- height: 54px;
- line-height: 54px;
- .iconfont {
- font-size: 30px;
- vertical-align: middle;
- padding-right: 5px;
- }
- svg {
- width: 40px;
- height: 40px;
- vertical-align: middle;
- padding-right: 5px;
- }
- span {
- vertical-align: middle;
- }
- }
- $amountHeight: 74px;
- .outmoney {
- height: $amountHeight;
- padding: 0;
- color: #000;
- font-size: 17px;
- line-height: $amountHeight;
- }
- .amountUnit {
- font-size: 40px;
- width: 30px;
- }
- #amount {
- vertical-align: top;
- padding: 0 5px;
- width: calc(100% - 100px);
- height: $amountHeight;
- line-height: $amountHeight;
- font-size: 16px;
- }
- .amount-all {
- position: absolute;
- height: $amountHeight;
- line-height: $amountHeight;
- right: 0;
- padding: 0 15px;
- }
- #amount.active {
- font-size: 32px;
- }
- }
- .wallet-withdraw-page {
- .mui-popover.mui-popover-action .mui-table-view {
- margin: 0;
- border-radius: 0;
- }
- .mui-table-view-cell {
- text-align: left;
- line-height: 32px;
- svg {
- width: 22px;
- height: 20px;
- vertical-align: middle;
- }
- span {
- color: #000;
- }
- }
- }
- .wallet-transactions {
- .mui-table-view-cell .mui-pull-right {
- color: rgba(0, 0, 0, .4);
- font-size: 16px;
- }
- .mui-pull-right.final {
- color: $default-color-green;
- }
- }
- .transaction-card .mui-table-view-cell {
- p {
- color: rgba(0, 0, 0, .6);
- font-size: 15px;
- }
- &:first-child .mui-pull-right {
- color: #000;
- font-size: 20px;
- }
- &:last-child p ~ p {
- margin-top: 10px;
- }
- }
- .bank-info {
- position: relative;
- float: left;
- width: 50%;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- text-align: center;
- padding: 6px 2px;
- }
- .bank-info svg {
- height: 40px;
- width: 40px;
- vertical-align: middle;
- }
- .bank-info .bank-name {
- line-height: 40px;
- vertical-align: middle;
- }
- /*waller for withdraw detail*/
- .withdraw-details {
- padding-top: 20px;
- .iconfont {
- width: 60px;
- height: 60px;
- font-size: 60px;
- line-height: 1;
- }
- p {
- margin-top: 20px;
- margin-bottom: 20px;
- color: #000;
- font-size: 16px;
- }
- }
- .withdraw-details-bd .mui-pull-right {
- color: rgba(0, 0, 0, .5);
- font-size: 14px;
- }
- /* **********
- * scan-res
- * **********/
- .scan-hd {
- padding-top: 15px;
- padding-bottom: 15px;
- }
- .scan-hd .scan-tip {
- display: inline-block;
- width: 53.5px;
- height: 46.5px;
- margin-right: 10px;
- background: url(/app/img/tips-error.png) no-repeat;
- background-size: contain;
- vertical-align: middle;
- }
- /* **********
- * location-list
- * **********/
- .location-bd {
- margin-bottom: 73px;
- -webkit-overflow-scrolling: touch;
- }
- .location-card .card-hd {
- padding: 11px 15px;
- }
- .location-card .mui-radio.mui-left label {
- width: auto;
- padding-left: 45px;
- padding-right: 0;
- color: rgba(0, 0, 0, .5);
- }
- .location-card .mui-radio.mui-left input[type=radio] {
- top: 23%;
- left: 15px;
- width: 24px;
- height: 24px;
- }
- .location-card .mui-radio input[type=radio]:before {
- font-size: 24px;
- }
- .location-card .mui-radio .mui-pull-right {
- padding: 11px 15px 11px 0;
- }
- .location-card .mui-radio .mui-pull-right a {
- color: rgba(0, 0, 0, .5);
- }
- .location-card .mui-radio .mui-pull-right a + a {
- margin-left: 20px;
- }
- .location-card .mui-radio .mui-pull-right .iconfont {
- margin-right: 5px;
- color: rgba(0, 0, 0, .4);
- font-size: 18px;
- }
- /* **********
- * device reg
- * **********/
- .reg-hd .mui-navigate-right:after {
- right: 5px;
- }
- .reg .mui-content-padded {
- margin: 0;
- padding: 10px;
- background-color: #efeff4;
- }
- .reg-bd {
- .mui-input-row {
- height: auto;
- padding: 15px;
- font-size: 14px;
- }
- .mui-input-row:nth-of-type(2) {
- padding: 0;
- }
- .mui-input-row ol {
- margin-bottom: 10px;
- list-style-position: inside;
- }
- .mui-table-view-cell {
- padding: 15px;
- font-size: 14px;
- }
- .mui-table-view-cell:nth-of-type(2) {
- padding: 0;
- }
- .mui-table-view-cell ol {
- margin-bottom: 10px;
- list-style-position: inside;
- }
- .mui-row {
- .mui-inline {
- width: 30px;
- height: 20px;
- margin-right: 10px;
- border-radius: 2px;
- }
- .mui-inline.done {
- background-color: #cecece;
- }
- .mui-inline.option {
- border: 1px solid #cecece;
- }
- .mui-inline.active {
- background-color: $default-color;
- }
- }
- .reg-list {
- margin-bottom: 10px;
- }
- :after,
- .reg-list:after {
- height: 0;
- }
- .option-list {
- margin: 10px;
- .option-list-item {
- padding: 5px;
- text-align: center;
- a {
- display: inline-block;
- width: 100%;
- height: 60px;
- line-height: 60px;
- font-size: 18px;
- border-radius: 6px;
- }
- a.done {
- color: #fff;
- background-color: #cecece;
- }
- a.option {
- color: $default-color;
- background: url(/app/img/bg-num.png) repeat-x;
- background-size: contain;
- box-shadow: 0 0 3px #d5d5d5;
- }
- a.active {
- color: #fff;
- background-color: $default-color;
- }
- input {
- width: 100%;
- height: 60px;
- color: $default-color;
- font-size: 18px;
- text-align: center;
- background: url(/app/img/bg-num.png) repeat-x;
- background-size: contain;
- border-radius: 6px;
- box-shadow: 0 0 3px #d5d5d5;
- }
- }
- }
- }
- /* **********
- * device param
- * **********/
- .param .mui-popup-input input {
- width: 80%;
- height: 35px;
- text-align: center;
- border: 1px solid #bebebe;
- border-radius: 4px;
- }
- .param .mui-popup-title {
- font-weight: normal;
- font-size: 16px;
- }
- .param-title {
- padding: 0 10px;
- margin-top: 10px;
- font-weight: normal;
- font-size: 16px;
- }
- /**设备参数设置*/
- .device-function .mui-input-row .mui-radio input {
- position: relative;
- display: inline-block;
- top: 2px;
- right: auto;
- }
- .device-function .mui-input-row .mui-radio label {
- top: auto;
- right: auto;
- width: auto;
- }
- /* **********
- * device transfer record
- * **********/
- .transfer-record .mui-table-view-cell p {
- color: #000;
- font-size: 16px;
- }
- .transfer-record .mui-table-view-cell p .unoperation {
- color: $default-color-red;
- }
- .icon-tip-num {
- position: absolute;
- top: 30%;
- right: 35px;
- min-width: 18px;
- height: 18px;
- font-size: 12px;
- line-height: 18px;
- text-align: center;
- background-color: $default-color-red;
- color: #fff;
- border-radius: 9px;
- padding: 0 2px;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- /* **********
- * remote upper
- * **********/
- .remote .mui-table-view-cell p:first-child,
- .remote .mui-table-view-cell .mui-pull-right {
- color: #000;
- font-size: 16px;
- }
- .remote .mui-table-view-cell p:nth-child(2) {
- color: rgba(0, 0, 0, .6);
- }
- .remote .mui-input-row .num-input {
- width: 50%;
- }
- .remote .mui-input-row .iconfont {
- float: right;
- display: inline-block;
- width: 15%;
- height: 44px;
- line-height: 44px;
- color: #c1c1c1;
- font-size: 28px;
- text-align: center;
- }
- .remote .mui-input-row .mui-numbox {
- float: left;
- margin: 4px 0;
- }
- /**经营统计、设备管理等**/
- #benefit-content .mui-table-view-cell .benefit-count {
- color: #999999;
- font-size: 14px;
- }
- #calendar {
- position: absolute;
- right: 14%;
- height: 32px;
- width: 32px;
- border: none;
- background-color: #efeff4;
- background-image: url("/app/img/calendar.png");
- background-size: 100%;
- -webkit-background-size: 100%;
- -moz-background-size: 100%;
- -o-background-size: 100%
- }
- .icon-loading {
- width: 19px;
- margin-right: 2px;
- }
- .mgr-filter {
- margin-top: 55px;
- }
- .custom-signal {
- height: 36px;
- line-height: 36px;
- width: 36px;
- background: rgba(1, 1, 1, .0);
- border-radius: 4px;
- position: absolute;
- right: 4%;
- top: 0px;
- .signal-type {
- font-size: 12px;
- line-height: 12px;
- transform: scale(.62);
- position: absolute;
- color: #888;
- top: 4px;
- left: 2px;
- }
- }
- .custom-signal i {
- width: 100%;
- display: block;
- position: absolute;
- left: 8px;
- }
- .custom-signal .signal-icon-back {
- color: rgba(1, 1, 1, .1);
- }
- .custom-signal .icon-refresh {
- color: #aaa;
- }
- .custom-signal .icon-refresh ~ .signal-icon-back {
- display: none;
- }
- .group-content {
- margin-top: -8px !important;
- }
- .group-ele-total {
- margin-right: 6%
- }
- .worldlimit {
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- -webkit-text-overflow: ellipsis;
- }
- /*首页弹窗,公众号二维码*/
- .pop-bg {
- position: fixed;
- left: 0;
- top: 0;
- z-index: 10;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.4);
- }
- .pop-con {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- margin: auto;
- z-index: 11;
- width: 85%;
- background: #fff;
- border-radius: 3px;
- text-align: center;
- padding: 20px;
- font-size: 18px;
- display: table;
- }
- .pop-tit {
- padding-bottom: 10px;
- }
- .pop-img {
- display: block;
- position: relative;
- float: none;
- margin: auto;
- }
- .img-title {
- padding: 10px 0;
- display: block;
- font-size: 16px;
- }
- .pop-img img {
- display: block;
- width: 200px;
- margin: auto;
- }
- .pop-box {
- display: none
- }
- /**订单、用户反馈的部分样式**/
- .or-order-status .or-order-status-font {
- line-height: 39px;
- display: block;
- width: 72%;
- text-align: left;
- cursor: pointer;
- color: #757575;
- float: right;
- }
- .or-longWrap {
- word-break: break-all;
- }
- .or-ellipsis {
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- .or-label-text {
- white-space: nowrap;
- padding-right: 0 !important;
- width: 28% !important;
- }
- .or-border-fir {
- border-bottom: 1px solid #e5e5e5;
- }
- .or-border.mui-table-view:after {
- display: none;
- }
- .or-border.mui-table-view:before {
- display: none;
- }
- .attention {
- width: 70px;
- height: 70px;
- margin: 10px auto;
- }
- .attention img {
- width: 100%
- }
- .attention {
- overflow: hidden;
- border-radius: 50%;
- }
- .attention img {
- display: none;
- }
- .bind-panel, #submitBtn {
- display: block;
- }
- .bound .bind-panel, .bound #submitBtn {
- display: none;
- }
- .info-panel, #changeWechatBtn {
- display: none;
- }
- .bound .info-panel, .bound #changeWechatBtn {
- display: block;
- }
- /****************代理商收入等模块样式********************/
- .purse-logo-back {
- position: absolute;
- right: 4px;
- bottom: 68px;
- width: 60px;
- color: #fff;
- opacity: .1;
- font-size: 60px;
- line-height: 60px;
- vertical-align: middle;
- pointer-events: none;
- }
- .income-trend .index-hd .hd-cell span {
- opacity: .7;
- font-size: 13px;
- }
- .income-trend .index-hd .hd-tab em {
- opacity: .7;
- font-size: 13px;
- }
- .month-row {
- background: #efeff4;
- padding: 2px 15px;
- color: #999;
- }
- .month-text {
- margin-top: 2px;
- font-size: 14px;
- color: #333;
- }
- .month-income {
- font-size: 12px;
- color: #aaa;
- }
- .month-selectDate {
- position: absolute;
- right: 15px;
- top: 10px;
- }
- .mui-table-view-cell.last-child:after {
- left: 0;
- }
- /*****************************测试系统*******************************************/
- .device-test .head-tips {
- text-align: center;
- }
- .device-test .head-tips span {
- display: block;
- }
- .device-test .mui-table-view {
- font-size: 16px;
- }
- /**底部**/
- .device-test .handle-panel {
- position: fixed;
- width: 100%;
- left: 0;
- bottom: 0;
- border-top: 1px solid #ddd;
- display: -webkit-flex;
- display: flex;
- -webkit-align-items: center;
- align-items: center;
- background: #fff;
- }
- .device-test .handle-panel .handle-btn {
- height: 48px;
- line-height: 48px;
- text-align: center;
- font-size: 18px;
- color: #fff;
- flex: 1;
- -webkit-flex: 1;
- }
- .device-test .handle-panel .upper-oper {
- flex: 1;
- -webkit-flex: 1;
- display: -webkit-flex;
- display: flex;
- }
- .device-test .handle-panel .handle-btn-sub {
- padding: 0 10px;
- flex: 1;
- -webkit-flex: 1;
- }
- .device-test .handle-panel .upper-btn {
- background: $default-color;
- width: 100%;
- }
- .device-test .handle-panel .bind-btn {
- background: $default-color;
- width: 100%;
- }
- .device-test .handle-panel .next-btn {
- color: $default-color;
- }
- .device-test .handle-panel .scan-btn {
- background: $alipay-color;
- width: 100%;
- }
- .device-test .handle-panel .mui-input-range input {
- top: -4px;
- }
- .device-test .handle-panel .bind-btn {
- background: $default-color;
- width: 100%;
- }
- /**记录**/
- .result-panel-tips {
- line-height: 30px;
- font-size: 14px;
- text-align: center;
- color: #555;
- margin: 0;
- }
- .result-panel {
- padding: 0 10px;
- font-size: 12px;
- color: #686868;
- position: absolute;
- z-index: -1;
- top: 140px;
- left: 0;
- right: 0;
- bottom: 64px;
- overflow-y: auto;
- }
- .result-list:before, .result-list:after {
- display: none;
- }
- .result-list .mui-table-view-cell {
- padding: 4px 6px;;
- font-size: 12px;
- }
- .result-list .mui-table-view-cell span {
- font-size: 12px;
- }
- .right-menu {
- position: fixed;
- right: -1px;
- background: #fff;
- border: 1px solid #ddd;
- border-radius: 4px 0 0 4px;
- overflow: hidden;
- bottom: 100px;
- /*transition: .12s all ease-in-out;*/
- -webkit-transform: translateX(100%);
- transform: translateX(100%);
- box-shadow: 0 0 10px #ccc;
- }
- .step2 .right-menu {
- -webkit-transform: translateX(0);
- transform: translateX(0);
- }
- .right-menu .menu-item {
- line-height: 40px;
- color: #333;
- padding: 0 8px;
- border-bottom: 1px solid #ddd;
- }
- .right-menu .menu-item:last-child {
- border: none;
- }
- .step2 .scan-btn {
- display: none;
- }
- .device-test .handle-panel .upper-oper {
- display: none;
- }
- .step2.device-test .handle-panel .upper-oper {
- display: -webkit-flex;
- display: flex;
- }
- .mark-list .mark-item {
- border: 1px solid #ccc;
- border-radius: 6px;
- padding: 2px 10px;
- display: inline-block;
- font-size: 14px;
- margin: 8px 8px 0 0;
- }
- .mark-list .mark-item:active {
- border: 1px solid $default-color;
- color: $default-color;
- }
- /***悬浮按钮**/
- .test-fixed-btn {
- position: fixed;
- right: 0;
- top: 40%;
- width: 32px;
- text-align: center;
- border: 1px solid $default-color;
- opacity: .2;
- border-radius: 8px 0 0 8px;
- }
- .test-fixed-btn i {
- font-size: 20px;
- line-height: 32px;
- width: 32px;
- height: 32px;
- display: inline-block;
- }
- .test-fixed-btn.transition {
- transition: all linear 1s;
- }
- .test-fixed-btn.active {
- opacity: 1;
- }
- /******套餐附加参数*******/
- .device-para-row {
- text-align: center;
- margin-bottom: 10px;
- font-size: 16px;
- line-height: 42px;
- border-radius: 3px;
- background: #fff;
- color: $default-color;
- &:last-child {
- margin-bottom: 0;
- }
- .device-para-label {
- width: 38.2%;
- display: block;
- float: left;
- opacity: .8;
- }
- .device-para-select {
- width: 61.8%;
- display: block;
- float: left;
- }
- .mui-icon-arrowright {
- position: absolute;
- font-size: 16px;
- line-height: 42px;
- right: 18px;
- }
- .para-unit {
- position: absolute;
- font-size: 0.28rem;
- line-height: 0.88rem;
- right: 10px;
- }
- input {
- height: 0.88rem;
- width: 61.8%;
- text-align: center;
- border: none;
- margin: 0;
- background: transparent;
- float: left;
- }
- }
- .device-para-grid .para-item.active2 {
- background: $default-color;
- border-color: $default-color;
- color: #fff;
- }
- /* **********
- * 经营统计模块
- * **********/
- .time-bd {
- padding-bottom: 70px;
- -webkit-overflow-scrolling: touch;
- padding-top: 10px;
- /**线条优化*/
- .mui-table-view-cell:after {
- background: #e3e4e5;
- }
- .mui-table-view:before {
- background: #e3e4e5;
- }
- .bd-hd {
- padding: 10px 15px;
- background: #fafafa;
- border: none;
- position: relative;
- }
- .bd-bd:after {
- display: none;
- }
- .mui-table-view.interval p {
- ~ p {
- margin-top: 10px;
- }
- i {
- font-size: 14px;
- }
- }
- .category-list {
- padding: 6px 15px;
- &.mui-active {
- background: #fff;
- }
- a {
- &.mui-active {
- background: #fff;
- }
- margin: 0 -15px;
- }
- }
- }
- .bd-hd p ~ p {
- margin-bottom: 0;
- }
- .groupItem {
- border-radius: 2px;
- overflow: hidden;
- transition: .2s all ease-out;
- box-shadow: 0 0 3px #ccc;
- .iconBack {
- font-size: 100px;
- line-height: 100px;
- position: absolute;
- opacity: .03;
- right: 15px;
- top: 50%;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- .totalIncome {
- position: absolute;
- right: 15px;
- top: 10px;
- font-size: 14px;
- em {
- font-size: 16px;
- background: #fff;
- padding: 2px 4px;
- border-radius: 4px;
- box-shadow: 0 0 4px #ddd;
- }
- }
- .titleInfo {
- margin-bottom: 0;
- max-width: 58%;
- }
- .bd-bd, .address {
- height: 0;
- opacity: 0;
- transition: .1s all ease-out;
- }
- .address {
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- }
- // 优化 margin,避免换行时首部空白
- .total-mark {
- margin-right: 5px;
- }
- .mark {
- height: 0;
- opacity: 0;
- transition: .1s all ease-out;
- display: none;
- margin-left: 0;
- margin-right: 5px;
- /*不能占位置,否则总计显示不下**/
- }
- &.active {
- border-radius: 6px;
- .address {
- height: 21px;
- opacity: 1;
- }
- .mark {
- opacity: 1;
- display: inline;
- }
- .titleInfo {
- margin-bottom: 10px;
- }
- .bd-bd {
- opacity: 1;
- height: auto;
- }
- }
- }
- @mixin chart-box() {
- display: none;
- width: 100% !important;
- left: 0 !important;
- top: 0 !important;
- background: #F2F8FC !important;
- color: #666 !important;
- font-size: 12px !important;
- position: absolute !important;
- z-index: 999;
- padding: 5px 10px !important;
- white-space: normal !important;
- }
- .income-panel {
- .time-bd {
- margin-top: 90px;
- }
- .head-status {
- padding: 0 15px;
- line-height: 44px;
- }
- .per-box {
- position: relative;
- perspective: 2000px;
- transform-style: preserve-3d;
- }
- #toggleCategory {
- height: 44px;
- width: 80px;
- transition: .2s all linear;
- transform-style: preserve-3d;
- }
- #toggleCategory.rotate {
- transform: rotateX(180deg);
- // 在安卓下,不用隐藏也是正常的,IOS下不隐藏会遮住第二个按钮
- .mui-btn:nth-child(1) {
- opacity: 0;
- }
- }
- .head-status {
- .mui-btn {
- line-height: 30px;
- padding: 0 12px;
- border: none;
- background: $default-color;
- color: #fff;
- margin-top: 7px;
- position: absolute;
- transform-style: preserve-3d;
- }
- .mui-btn:nth-child(2) {
- transform: rotateX(180deg);
- background: $default-color-red !important;
- }
- }
- /**卡片样式**/
- #pullrefresh {
- width: 100%;
- left: 0;
- }
- .list {
- padding: 0 10px;
- }
- #pieChart {
- visibility: hidden;
- width: 100%;
- z-index: 3;
- background: #fff;
- height: 320px;
- position: absolute;
- top: 90px;
- }
- .icon-chart-pie {
- color: #999;
- }
- &.chart-active {
- .icon-chart-pie {
- color: $default-color;
- }
- #pullrefresh {
- display: none;
- }
- #pieChart {
- visibility: visible;
- }
- }
- /*强改echarts样式*/
- .chart-box div:last-child {
- @include chart-box;
- }
- }
- // 收益详情
- .income-trend {
- .incomeTypeList.mui-button-row .mui-btn.active {
- background: #fff;
- }
- .consumeTypeList.mui-button-row .mui-btn.active {
- background: #fff;
- }
- #filterPanel2 {
- .mui-button-row:first-child {
- padding-top: 10px;
- }
- .mui-button-row:last-child {
- padding-bottom: 10px;
- }
- .mui-btn {
- padding-left: 8px;
- padding-right: 8px;
- }
- .mui-button-row {
- padding: 5px 10px;
- }
- }
- }
- // 收益按时间统计
- .income-time {
- .index-hd {
- border-radius: 6px;
- overflow: hidden;
- margin: 12px;
- }
- .chart-box {
- visibility: hidden;
- position: absolute;
- width: 100%;
- min-height: 320px;
- z-index: 1;
- }
- .chart-active .chart-box ~ * {
- display: none;
- }
- .chart-active .chart-box {
- visibility: visible;
- }
- .icon-chart-line {
- color: #aaa;
- }
- .icon-chart-line.active {
- color: $default-color;
- }
- /*强改echarts样式*/
- .chart-box div:last-child {
- @include chart-box;
- br {
- display: none;
- }
- span {
- margin-left: 10px;
- }
- }
- }
- /* ********************
- * 营销活动
- * ********************/
- .marketing-edit {
- #editMarketingPanel {
- padding-bottom: 61px;
- }
- .mui-checkbox label {
- padding-right: 35px;
- }
- .deviceList {
- padding: 0 !important;
- }
- .deviceList .checkbox-btn {
- top: 6px !important;
- right: 0 !important;;
- }
- .deviceList .dev-select-row {
- line-height: 44px;
- padding: 0 12px !important;
- }
- .deviceList > .mui-table-view-cell:after, .group-container > .mui-table-view-cell:after {
- left: 0;
- }
- /*每组最后一个设备需要线条隔开*/
- .deviceList .dev-select-row.mui-table-view-cell:last-child:after {
- height: 1px;
- left: 0;
- }
- .deviceList .group-container:last-child .group-list-container .mui-table-view-cell:last-child:after {
- height: 0;
- }
- /*单位*/
- .input-unit {
- position: absolute;
- font-size: 14px;
- z-index: 1;
- right: 0;
- width: 44px;
- height: 44px;
- line-height: 44px;
- text-align: center;
- color: #999;
- }
- }
- /********流量卡充值**********/
- /**表格*/
- .charge-list {
- .pullrefresh {
- overflow-y: auto;
- position: absolute;
- top: 54px;
- left: 0;
- right: 0;
- bottom: 1rem;
- }
- .scrollload-content {
- top: 1px; //让顶部线条显示
- }
- .pullrefresh.full {
- top: 0;
- }
- .mui-checkbox input {
- top: auto;
- right: auto;
- position: relative;
- }
- }
- /*卡片布局*/
- .charge-card {
- padding: 0;
- .card-item {
- display: flex;
- .card-cb {
- width: 40px;
- .checkbox-btn {
- width: 100%;
- height: 100%;
- position: absolute;
- &:before {
- width: 100%;
- height: 100%;
- line-height: 60px;
- left: 10px;
- position: relative;
- }
- }
- }
- .card-detail {
- flex: 1;
- display: flex;
- font-size: 12px;
- p {
- font-size: 12px;
- }
- .card-img {
- width: 56px;
- text-align: center;
- .iconfont {
- line-height: 60px;
- font-size: 32px;
- }
- }
- .card-info {
- flex: 1;
- padding: 10px 15px;
- .title {
- color: #051b28;
- overflow: hidden;
- line-clamp: 2;
- box-orient: vertical;
- word-break: break-all;
- font-size: 14px;
- }
- .price-box {
- float: right;
- .price {
- font-size: 16px;
- }
- }
- .expire-date, .price {
- margin-top: 2px;
- }
- }
- }
- }
- }
- .group-card-list{
- background: transparent;
- }
- .group-split {
- margin-bottom: 10px;
- background: #fff;
- .group-name {
- padding: 8px 15px;
- font-size: 18px;
- }
- }
- /**底部**/
- .charge-list {
- .handle-panel {
- position: fixed;
- width: 100%;
- left: 0;
- bottom: 0;
- display: -webkit-flex;
- display: flex;
- -webkit-align-items: center;
- align-items: center;
- .handle-btn {
- line-height: 48px;
- text-align: center;
- font-size: 14px;
- padding: 0 22px;
- color: #fff;
- }
- .detail-btn {
- flex: 1;
- -webkit-flex: 1;
- display: flex;
- font-size: 12px;
- background: #fff;
- padding: 0;
- }
- }
- .checkbox-all-lb {
- width: 2em;
- font-size: 14px;
- color: #888;
- }
- .checked-detail {
- flex: 1;
- display: block;
- text-align: right;
- padding-right: 10px;
- }
- .checked-num {
- color: #051b28;
- }
- .checked-price {
- font-size: 16px;
- }
- .checkbox-all-wear {
- white-space: nowrap;
- width: 32px;
- @include box-center;
- input {
- width: auto;
- height: auto;
- top: -2px;
- }
- * {
- padding: 0;
- font-size: 14px;
- vertical-align: middle;
- }
- }
- }
- /**********订单中心样式,主要是设备选择**************/
- .set-condition {
- width: 100%;
- max-width: 7.5rem;
- margin: 0 auto;
- /*选择设备弹窗*/
- .ellipsis {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .date-panel {
- background: #fff;
- .date-num {
- border-bottom: 1px solid #E5E5E5;
- > ul {
- padding: 0.14rem 0.1rem;
- li {
- margin: 0rem 0.1rem;
- border: 1px solid #E5E5E5;
- text-align: center;
- height: 0.6rem;
- line-height: 0.6rem;
- font-size: 0.32rem;
- color: #999;
- border-radius: 0.04rem;
- &.active {
- color: $default-color;
- border: 0.02rem solid $default-color;
- }
- }
- }
- }
- .select-date {
- padding: 0rem 0.16rem;
- height: 0.88rem;
- line-height: 0.88rem;
- font-size: 0.32rem;
- .label-text {
- color: #000;
- }
- .selected-text {
- padding-left: 0.36rem;
- color: #000;
- }
- + .select-date {
- border-top: 1px solid #E5E5E5;
- }
- }
- }
- .tips-text {
- padding: 0.08rem 0rem 0rem 0.2rem;
- font-size: 0.26rem;
- color: #666;
- }
- .other-con-panel {
- margin-top: 0.28rem;
- background: #fff;
- > li {
- display: none;
- height: 0.88rem;
- line-height: 0.88rem;
- font-size: 0.32rem;
- padding: 0rem 0.16rem;
- .label-text {
- float: left;
- color: #000;
- }
- .selected-text {
- display: inline-block;
- max-width: 4.6rem;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- padding-left: 0.98rem;
- color: #000;
- }
- + li {
- border-top: 1px solid #E5E5E5;
- }
- }
- }
- .page-modal {
- display: none;
- max-width: 7.5rem;
- margin: 0 auto;
- position: fixed;
- z-index: 99;
- top: 0rem;
- left: 0rem;
- width: 100%;
- height: 100%;
- background: #F0EFF5;
- overflow: auto;
- /*-----自定义滚动条----*/
- ::-webkit-scrollbar-thumb {
- border-radius: 6px;
- -moz-border-radius: 6px;
- -webkit-border-radius: 6px;
- background-color: rgba(0, 0, 0, 0.5);
- transition: all .3s;
- &:hover {
- background-color: rgba(0, 0, 0, 0.6);
- }
- }
- ::-webkit-scrollbar {
- width: 6px;
- height: 6px;
- }
- ::-webkit-scrollbar-track {
- background-color: transparent;
- }
- .modal-content {
- padding-bottom: 1.2rem;
- .panel-header {
- .title {
- font-size: 0.34rem;
- color: #000;
- }
- .tips-text {
- margin: 0rem;
- padding: 0rem;
- font-size: 0.26rem;
- color: #666;
- }
- .select-all {
- display: inline-block;
- border: 1px solid #E5E5E5;
- font-size: 0.28rem;
- border-radius: 0.1rem;
- padding: 0.04rem 0.2rem;
- margin-left: 0.58rem;
- &.active {
- background: $default-color;
- color: #fff;
- }
- }
- }
- .doll-machine-panel {
- display: none;
- background: #fff;
- padding: 0.2rem;
- .panel-content {
- padding: 0.28rem 0rem;
- table {
- border-top: 1px solid #E5E5E5;
- border-left: 1px solid #E5E5E5;
- tbody tr td {
- padding: 0rem 0.1rem;
- width: 1.14rem;
- height: 1.14rem;
- vertical-align: middle;
- text-align: center;
- font-size: 0.34rem;
- color: #000;
- border-right: 1px solid #E5E5E5;
- border-bottom: 1px solid #E5E5E5;
- &.invisible {
- display: none;
- }
- &:acitve {
- background: #eee;
- }
- &.active {
- background: $default-color;
- color: #fff;
- }
- &.load-btn {
- background: #E5E5E5;
- }
- }
- }
- }
- }
- }
- .modal-footer {
- position: fixed;
- left: 0rem;
- bottom: 0rem;
- width: 100%;
- height: 1rem;
- background: #fff;
- a {
- font-size: 0.34rem;
- line-height: 1rem;
- text-align: center;
- &.cancel-btn {
- border-top: 1px solid #E5E5E5;
- color: #000;
- }
- &.confirm-btn {
- color: #fff;
- border-top: 0.02rem solid $default-color;
- background: $default-color;
- }
- }
- }
- }
- }
- /*覆盖weui样式*/
- #weui-picker-confirm {
- color: $default-color !important;
- }
- @media screen and (max-width: 332px) {
- .set-condition .page-modal .modal-content .panel-header .select-all {
- margin-left: 0.2rem;
- }
- .wechatTrxid-font {
- font-size: 13px !important;
- }
- }
- //自定义 switch 开关
- .switch {
- position: absolute;
- top: 50%;
- right: 15px;
- width: 74px;
- height: 30px;
- -webkit-transition-timing-function: ease-in-out;
- transition-timing-function: ease-in-out;
- -webkit-transition-duration: .2s;
- transition-duration: .2s;
- -webkit-transition-property: background-color, border;
- transition-property: background-color, border;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- border: 2px solid #ddd;
- border-radius: 20px;
- background-color: #fff;
- background-clip: padding-box;
- }
- .switch .switch-handle {
- position: absolute;
- z-index: 1;
- top: -1px;
- left: -1px;
- width: 28px;
- height: 28px;
- -webkit-transition: .2s ease-in-out;
- transition: .2s ease-in-out;
- -webkit-transition-property: -webkit-transform, width, left;
- transition-property: transform, width, left;
- border-radius: 16px;
- background-color: #fff;
- background-clip: padding-box;
- -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .4);
- box-shadow: 0 2px 5px rgba(0, 0, 0, .4);
- }
- .switch.active {
- border-color: $default-color;
- background-color: $default-color;
- }
- .switch-mini {
- width: 47px;
- }
- .switch-mini:before {
- display: none;
- }
- .switch-mini.active .switch-handle {
- -webkit-transform: translate(16px, 0);
- transform: translate(16px, 0);
- }
- /*****代理商给经销商提现******/
- .dealer-wallet-detail {
- * {
- /**便于复制银行信息**/
- -webkit-user-select: text !important;
- }
- .status0 {
- color: $alipay-color !important;
- }
- .status1 {
- color: $default-color-green !important;
- }
- .status3 {
- color: $default-color-red !important;
- }
- .custom-subt input[type='button'].mui-btn-danger {
- background-color: $default-color-red;
- }
- .max-width-7 {
- max-width: 70%;
- word-break: break-all;
- }
- .mui-table-view-cell {
- color: #888;
- font-size: 14px;
- padding: 9px 15px;
- }
- .mui-table-view-cell .mui-pull-right {
- color: #444;
- }
- .bank-logo {
- display: inline-block;
- }
- .bank-logo svg {
- width: 18px;
- height: 18px;
- top: 3.5px;
- position: relative;
- }
- /*退单原因样式*/
- .reason-list i {
- color: #666;
- border: 1px solid #999;
- border-radius: 4px;
- padding: 2px 5px;
- font-size: 12px;
- margin: 4px;
- display: inline-block;
- }
- }
- //银行卡的公共样式
- .card-ul {
- color: #fff;
- padding: 10px;
- a {
- color: #fff;
- }
- .card-text-info {
- display: block;
- padding: 10px 10px 10px 50px;
- position: relative;
- }
- &.card-ticket-ul .card-text-info {
- min-height: 100px;
- }
- li {
- border-radius: 10px;
- margin-bottom: 10px;
- position: relative;
- overflow: hidden;
- &:last-child {
- margin-bottom: 0;
- }
- &.pause {
- > * {
- filter: opacity(.32);
- }
- }
- }
- .name {
- font-size: 14px;
- line-height: 18px;
- }
- .type {
- font-size: 12px;
- line-height: 18px;
- opacity: .6;
- }
- .card-id {
- font-size: 24px;
- line-height: 36px;
- text-align: left;
- em {
- margin-top: 6px;
- }
- }
- .card-logo {
- position: absolute;
- left: 10px;
- top: 10px;
- background: rgba(255, 255, 255, .68);
- width: 32px;
- height: 32px;
- line-height: 32px;
- text-align: center;
- border-radius: 50%;
- svg {
- width: 22px;
- height: 22px;
- top: 5px;
- position: relative;
- }
- }
- .card-logo-back {
- position: absolute;
- right: 42px;
- width: 120px;
- color: #fff;
- opacity: .15;
- font-size: 120px;
- line-height: 120px;
- vertical-align: middle;
- pointer-events: none;
- top: 50%;
- transform: translateY(-50%);
- z-index: 1;
- }
- .bank-logo-back {
- //变灰—>变白
- filter: grayscale(1) brightness(10);
- svg {
- width: 1em;
- }
- }
- .desc {
- font-size: 12px;
- line-height: 16px;
- max-height: 32px;
- margin: 4px 0;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- //卡券可用次数
- .count {
- line-height: 22px;
- strong {
- font-size: 12px;
- font-weight: normal;
- }
- em {
- font-size: 14px;
- }
- }
- //卡券的价格
- .price {
- position: absolute;
- right: 10px;
- bottom: 5px;
- strong {
- font-size: 12px;
- font-weight: normal;
- }
- em {
- font-size: 16px;
- }
- }
- }
- .add-card-btn {
- background: #36393A;
- color: #8B8B8B;
- font-size: 16px;
- line-height: 40px;
- position: relative;
- padding-left: 12px;
- }
- .sp-radio-row {
- &:after {
- display: none;
- }
- span {
- vertical-align: middle;
- }
- .mui-radio * {
- vertical-align: middle;
- top: 0;
- }
- .mui-radio input {
- top: 0 !important;
- }
- }
- .device-param-form,
- .service-param-form {
- .mui-input-row {
- > label {
- //主要是有些标签太长 需要加宽度
- width: 65%;
- }
- > {
- input[type='text'], input[type='password'], input[type='number'], input[type='tel'], input[type='time'] {
- width: 35%;
- text-align: right;
- font-size: 15px;
- color: #000;
- }
- }
- .mui-numbox-container{
- width: 35%;
- float: right;
- }
- .mui-numbox{
- margin: 2px 0;
- width: 100%;
- padding: 0 32px;
- }
- .mui-numbox [class*=numbox-btn]{
- width: 32px;
- }
- }
- .mui-input-row-50-50 {
- > label {
- width: 50%;
- }
- > {
- input[type='text'], input[type='password'], input[type='number'], input[type='tel'], input[type='time'],.mui-numbox-container {
- width: 50%;
- }
- }
- }
- .edit-box{
- .mui-input-row {
- > label {
- // 避免影响弹窗编辑时的宽度
- width: auto;
- }
- }
- }
- .has-unit {
- padding-right: 30px;
- }
- .input-unit {
- position: absolute;
- right: 15px;
- top: 12px;
- font-size: 12px;
- color: #000;
- }
- }
- .package-component {
- .mark {
- font-size: 14px;
- line-height: 16px;
- height: 18px;
- margin-left: 0;
- margin-right: 5px;
- }
- .btn-group em {
- font-size: 12px;
- padding-top: 10px;
- padding-bottom: 10px;
- ~ em {
- margin-left: 5px;
- }
- }
- .p-title-row {
- .switch {
- top: 12px;
- transform: translateY(0%);
- }
- }
- .p-title {
- width: calc(100% - 64px);
- }
- }
- .mui-input-row .mini-unit {
- position: absolute;
- right: 10px;
- top: 12px;
- font-size: 12px;
- }
|