123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422 |
- /*!
- * =====================================================
- * Mui v2.9.0 (http://dev.dcloud.net.cn/mui)
- * =====================================================
- */
- /*! normalize.css v3.0.1 | MIT License | git.io/normalize */
- html {
- font-family: sans-serif;
- -webkit-text-size-adjust: 100%
- }
- body {
- margin: 0
- }
- article,
- aside,
- details,
- figcaption,
- figure,
- footer,
- header,
- hgroup,
- main,
- nav,
- section,
- summary {
- display: block
- }
- audio,
- canvas,
- progress,
- video {
- display: inline-block;
- vertical-align: baseline
- }
- audio:not([controls]) {
- display: none;
- height: 0
- }
- [hidden],
- template {
- display: none
- }
- a {
- background: 0 0
- }
- a:active,
- a:hover {
- outline: 0
- }
- abbr[title] {
- border-bottom: 1px dotted
- }
- b,
- strong {
- font-weight: 700
- }
- dfn {
- font-style: italic
- }
- h1 {
- margin: .67em 0
- }
- mark {
- color: #000;
- background: #ff0
- }
- small {
- font-size: 80%
- }
- sub,
- sup {
- font-size: 75%;
- line-height: 0;
- position: relative;
- vertical-align: baseline
- }
- sup {
- top: -.5em
- }
- sub {
- bottom: -.25em
- }
- img {
- border: 0
- }
- svg:not(:root) {
- overflow: hidden
- }
- figure {
- margin: 1em 40px
- }
- hr {
- box-sizing: content-box;
- height: 0
- }
- pre {
- overflow: auto
- }
- code,
- kbd,
- pre,
- samp {
- font-family: monospace, monospace;
- font-size: 1em
- }
- button,
- input,
- optgroup,
- select,
- textarea {
- font: inherit;
- margin: 0;
- color: inherit
- }
- button {
- overflow: visible
- }
- button,
- select {
- text-transform: none
- }
- button,
- html input[type=button],
- input[type=reset],
- input[type=submit] {
- cursor: pointer;
- -webkit-appearance: button
- }
- button[disabled],
- html input[disabled] {
- cursor: default
- }
- input {
- line-height: normal
- }
- input[type=checkbox],
- input[type=radio] {
- box-sizing: border-box;
- padding: 0
- }
- input[type=number]::-webkit-inner-spin-button,
- input[type=number]::-webkit-outer-spin-button {
- height: auto
- }
- input[type=search]::-webkit-search-cancel-button,
- input[type=search]::-webkit-search-decoration {
- -webkit-appearance: none
- }
- fieldset {
- margin: 0 2px;
- padding: .35em .625em .75em;
- border: 1px solid silver
- }
- legend {
- padding: 0;
- border: 0
- }
- textarea {
- overflow: auto
- }
- optgroup {
- font-weight: 700
- }
- table {
- border-spacing: 0;
- border-collapse: collapse
- }
- td,
- th {
- padding: 0
- }
- * {
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- /*-webkit-user-select: none;*/
- outline: 0;
- -webkit-tap-highlight-color: transparent;
- -webkit-tap-highlight-color: transparent
- }
- body {
- /*font-family: 'Helvetica Neue', Helvetica, sans-serif;*/
- font-family: 微软雅黑, tahoma, arial, 宋体;
- font-size: 17px;
- line-height: 21px;
- color: #000;
- background-color: #efeff4;
- -webkit-overflow-scrolling: touch
- }
- a {
- text-decoration: none;
- color: #17b3ec
- }
- a:active {
- color: #0062cc
- }
- .mui-content {
- background-color: #efeff4;
- -webkit-overflow-scrolling: touch
- }
- .mui-bar-nav~.mui-content {
- padding-top: 44px
- }
- .mui-bar-nav~.mui-content.mui-scroll-wrapper .mui-scrollbar-vertical {
- top: 44px
- }
- .mui-bar-header-secondary~.mui-content {
- padding-top: 88px
- }
- .mui-bar-header-secondary~.mui-content.mui-scroll-wrapper .mui-scrollbar-vertical {
- top: 88px
- }
- .mui-bar-footer~.mui-content {
- padding-bottom: 44px
- }
- .mui-bar-footer~.mui-content.mui-scroll-wrapper .mui-scrollbar-vertical {
- bottom: 44px
- }
- .mui-bar-footer-secondary~.mui-content {
- padding-bottom: 88px
- }
- .mui-bar-footer-secondary~.mui-content.mui-scroll-wrapper .mui-scrollbar-vertical {
- bottom: 88px
- }
- .mui-bar-tab~.mui-content {
- padding-bottom: 50px
- }
- .mui-bar-tab~.mui-content.mui-scroll-wrapper .mui-scrollbar-vertical {
- bottom: 50px
- }
- .mui-bar-footer-secondary-tab~.mui-content {
- padding-bottom: 94px
- }
- .mui-bar-footer-secondary-tab~.mui-content.mui-scroll-wrapper .mui-scrollbar-vertical {
- bottom: 94px
- }
- .mui-content-padded {
- margin: 10px
- }
- .mui-inline {
- display: inline-block;
- vertical-align: top
- }
- .mui-block {
- display: block!important
- }
- .mui-visibility {
- visibility: visible!important
- }
- .mui-hidden {
- display: none!important
- }
- .mui-ellipsis {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis
- }
- .mui-ellipsis-2 {
- display: -webkit-box;
- overflow: hidden;
- white-space: normal!important;
- text-overflow: ellipsis;
- word-wrap: break-word;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical
- }
- .mui-table {
- display: table;
- width: 100%;
- table-layout: fixed
- }
- .mui-table-cell {
- position: relative;
- display: table-cell
- }
- .mui-text-left {
- text-align: left!important
- }
- .mui-text-center {
- text-align: center!important
- }
- .mui-text-justify {
- text-align: justify!important
- }
- .mui-text-right {
- text-align: right!important
- }
- .mui-pull-left {
- float: left
- }
- .mui-pull-right {
- float: right
- }
- .mui-list-unstyled {
- padding-left: 0;
- list-style: none
- }
- .mui-list-inline {
- margin-left: -5px;
- padding-left: 0;
- list-style: none
- }
- .mui-list-inline>li {
- display: inline-block;
- padding-right: 5px;
- padding-left: 5px
- }
- .mui-clearfix:after,
- .mui-clearfix:before {
- display: table;
- content: ' '
- }
- .mui-clearfix:after {
- clear: both
- }
- .mui-bg-primary {
- background-color: #007aff
- }
- .mui-bg-positive {
- background-color: #4cd964
- }
- .mui-bg-negative {
- background-color: #dd524d
- }
- .mui-error {
- margin: 88px 35px;
- padding: 10px;
- border-radius: 6px;
- background-color: #bbb
- }
- .mui-subtitle {
- font-size: 15px
- }
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- line-height: 1;
- margin-top: 5px;
- margin-bottom: 5px
- }
- .mui-h1,
- h1 {
- font-size: 36px
- }
- .mui-h2,
- h2 {
- font-size: 30px
- }
- .mui-h3,
- h3 {
- font-size: 24px
- }
- .mui-h4,
- h4 {
- font-size: 18px
- }
- .mui-h5,
- h5 {
- font-size: 14px;
- font-weight: 400;
- color: #8f8f94
- }
- .mui-h6,
- h6 {
- font-size: 12px;
- font-weight: 400;
- color: #8f8f94
- }
- p {
- font-size: 14px;
- margin-top: 0;
- margin-bottom: 10px;
- color: #8f8f94
- }
- .mui-row:after,
- .mui-row:before {
- display: table;
- content: ' '
- }
- .mui-row:after {
- clear: both
- }
- .mui-col-sm-1,
- .mui-col-sm-10,
- .mui-col-sm-11,
- .mui-col-sm-12,
- .mui-col-sm-2,
- .mui-col-sm-3,
- .mui-col-sm-4,
- .mui-col-sm-5,
- .mui-col-sm-6,
- .mui-col-sm-7,
- .mui-col-sm-8,
- .mui-col-sm-9,
- .mui-col-xs-1,
- .mui-col-xs-10,
- .mui-col-xs-11,
- .mui-col-xs-12,
- .mui-col-xs-2,
- .mui-col-xs-3,
- .mui-col-xs-4,
- .mui-col-xs-5,
- .mui-col-xs-6,
- .mui-col-xs-7,
- .mui-col-xs-8,
- .mui-col-xs-9 {
- position: relative;
- min-height: 1px
- }
- .mui-row>[class*=mui-col-] {
- float: left
- }
- .mui-col-xs-12 {
- width: 100%
- }
- .mui-col-xs-11 {
- width: 91.66666667%
- }
- .mui-col-xs-10 {
- width: 83.33333333%
- }
- .mui-col-xs-9 {
- width: 75%
- }
- .mui-col-xs-8 {
- width: 66.66666667%
- }
- .mui-col-xs-7 {
- width: 58.33333333%
- }
- .mui-col-xs-6 {
- width: 50%
- }
- .mui-col-xs-5 {
- width: 41.66666667%
- }
- .mui-col-xs-4 {
- width: 33.33333333%
- }
- .mui-col-xs-3 {
- width: 25%
- }
- .mui-col-xs-2 {
- width: 16.66666667%
- }
- .mui-col-xs-1 {
- width: 8.33333333%
- }
- @media (min-width:400px) {
- .mui-col-sm-12 {
- width: 100%
- }
- .mui-col-sm-11 {
- width: 91.66666667%
- }
- .mui-col-sm-10 {
- width: 83.33333333%
- }
- .mui-col-sm-9 {
- width: 75%
- }
- .mui-col-sm-8 {
- width: 66.66666667%
- }
- .mui-col-sm-7 {
- width: 58.33333333%
- }
- .mui-col-sm-6 {
- width: 50%
- }
- .mui-col-sm-5 {
- width: 41.66666667%
- }
- .mui-col-sm-4 {
- width: 33.33333333%
- }
- .mui-col-sm-3 {
- width: 25%
- }
- .mui-col-sm-2 {
- width: 16.66666667%
- }
- .mui-col-sm-1 {
- width: 8.33333333%
- }
- }
- .mui-scroll-wrapper {
- position: absolute;
- z-index: 2;
- top: 0;
- bottom: 0;
- left: 0;
- overflow: hidden;
- width: 100%
- }
- .mui-scroll {
- position: absolute;
- z-index: 1;
- width: 100%;
- -webkit-transform: translateZ(0);
- transform: translateZ(0)
- }
- .mui-scrollbar {
- position: absolute;
- z-index: 9998;
- overflow: hidden;
- -webkit-transition: 500ms;
- transition: 500ms;
- transform: translateZ(0px);
- pointer-events: none;
- opacity: 0
- }
- .mui-scrollbar-vertical {
- top: 0;
- right: 1px;
- bottom: 2px;
- width: 4px
- }
- .mui-scrollbar-vertical .mui-scrollbar-indicator {
- width: 100%
- }
- .mui-scrollbar-horizontal {
- right: 2px;
- bottom: 0;
- left: 2px;
- height: 4px
- }
- .mui-scrollbar-horizontal .mui-scrollbar-indicator {
- height: 100%
- }
- .mui-scrollbar-indicator {
- position: absolute;
- display: block;
- box-sizing: border-box;
- -webkit-transition: .01s cubic-bezier(.1, .57, .1, 1);
- transition: .01s cubic-bezier(.1, .57, .1, 1);
- transform: translate(0px, 0) translateZ(0px);
- border: 1px solid rgba(255, 255, 255, .80196);
- border-radius: 2px;
- background: rgba(0, 0, 0, .39804)
- }
- .mui-plus-pullrefresh .mui-fullscreen .mui-scroll-wrapper .mui-scroll-wrapper,
- .mui-plus-pullrefresh .mui-fullscreen .mui-slider-group .mui-scroll-wrapper {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- overflow: hidden;
- width: 100%
- }
- .mui-plus-pullrefresh .mui-fullscreen .mui-scroll-wrapper .mui-scroll,
- .mui-plus-pullrefresh .mui-fullscreen .mui-slider-group .mui-scroll {
- position: absolute;
- width: 100%
- }
- .mui-plus-pullrefresh .mui-scroll-wrapper,
- .mui-plus-pullrefresh .mui-slider-group {
- position: static;
- top: auto;
- bottom: auto;
- left: auto;
- overflow: auto;
- width: auto
- }
- .mui-plus-pullrefresh .mui-slider-group {
- overflow: visible
- }
- .mui-plus-pullrefresh .mui-scroll {
- position: static;
- width: auto
- }
- .mui-off-canvas-wrap .mui-bar {
- position: absolute!important;
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- -webkit-box-shadow: none;
- box-shadow: none
- }
- .mui-off-canvas-wrap {
- position: relative;
- z-index: 1;
- overflow: hidden;
- width: 100%;
- height: 100%
- }
- .mui-off-canvas-wrap .mui-inner-wrap {
- position: relative;
- z-index: 1;
- width: 100%;
- height: 100%
- }
- .mui-off-canvas-wrap .mui-inner-wrap.mui-transitioning {
- -webkit-transition: -webkit-transform 350ms;
- transition: transform 350ms cubic-bezier(.165, .84, .44, 1)
- }
- .mui-off-canvas-wrap .mui-inner-wrap .mui-off-canvas-left {
- -webkit-transform: translate3d(-100%, 0, 0);
- transform: translate3d(-100%, 0, 0)
- }
- .mui-off-canvas-wrap .mui-inner-wrap .mui-off-canvas-right {
- -webkit-transform: translate3d(100%, 0, 0);
- transform: translate3d(100%, 0, 0)
- }
- .mui-off-canvas-wrap.mui-active {
- overflow: hidden;
- height: 100%
- }
- .mui-off-canvas-wrap.mui-active .mui-off-canvas-backdrop {
- position: absolute;
- z-index: 998;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- display: block;
- transition: background 350ms cubic-bezier(.165, .84, .44, 1);
- background: rgba(0, 0, 0, .4);
- box-shadow: -4px 0 4px rgba(0, 0, 0, .5), 4px 0 4px rgba(0, 0, 0, .5);
- -webkit-tap-highlight-color: transparent
- }
- .mui-off-canvas-wrap.mui-slide-in .mui-off-canvas-right {
- z-index: 10000!important;
- -webkit-transform: translate3d(100%, 0, 0)
- }
- .mui-off-canvas-wrap.mui-slide-in .mui-off-canvas-left {
- z-index: 10000!important;
- -webkit-transform: translate3d(-100%, 0, 0)
- }
- .mui-off-canvas-left,
- .mui-off-canvas-right {
- position: absolute;
- z-index: -1;
- top: 0;
- bottom: 0;
- visibility: hidden;
- box-sizing: content-box;
- width: 70%;
- min-height: 100%;
- background: #333;
- -webkit-overflow-scrolling: touch
- }
- .mui-off-canvas-left.mui-transitioning,
- .mui-off-canvas-right.mui-transitioning {
- -webkit-transition: -webkit-transform 350ms cubic-bezier(.165, .84, .44, 1);
- transition: transform 350ms cubic-bezier(.165, .84, .44, 1)
- }
- .mui-off-canvas-left {
- left: 0
- }
- .mui-off-canvas-right {
- right: 0
- }
- .mui-off-canvas-wrap:not(.mui-slide-in).mui-scalable {
- background-color: #333
- }
- .mui-off-canvas-wrap:not(.mui-slide-in).mui-scalable>.mui-off-canvas-left,
- .mui-off-canvas-wrap:not(.mui-slide-in).mui-scalable>.mui-off-canvas-right {
- width: 80%;
- -webkit-transform: scale(.8);
- transform: scale(.8);
- opacity: .1
- }
- .mui-off-canvas-wrap:not(.mui-slide-in).mui-scalable>.mui-off-canvas-left.mui-transitioning,
- .mui-off-canvas-wrap:not(.mui-slide-in).mui-scalable>.mui-off-canvas-right.mui-transitioning {
- -webkit-transition: -webkit-transform 350ms cubic-bezier(.165, .84, .44, 1), opacity 350ms cubic-bezier(.165, .84, .44, 1);
- transition: transform 350ms cubic-bezier(.165, .84, .44, 1), opacity 350ms cubic-bezier(.165, .84, .44, 1)
- }
- .mui-off-canvas-wrap:not(.mui-slide-in).mui-scalable>.mui-off-canvas-left {
- -webkit-transform-origin: -100%;
- transform-origin: -100%
- }
- .mui-off-canvas-wrap:not(.mui-slide-in).mui-scalable>.mui-off-canvas-right {
- -webkit-transform-origin: 200%;
- transform-origin: 200%
- }
- .mui-off-canvas-wrap:not(.mui-slide-in).mui-scalable.mui-active>.mui-inner-wrap {
- -webkit-transform: scale(.8);
- transform: scale(.8)
- }
- .mui-off-canvas-wrap:not(.mui-slide-in).mui-scalable.mui-active>.mui-off-canvas-left,
- .mui-off-canvas-wrap:not(.mui-slide-in).mui-scalable.mui-active>.mui-off-canvas-right {
- -webkit-transform: scale(1);
- transform: scale(1);
- opacity: 1
- }
- .mui-loading .mui-spinner {
- display: block;
- margin: 0 auto
- }
- .mui-spinner {
- display: inline-block;
- width: 24px;
- height: 24px;
- -webkit-transform-origin: 50%;
- transform-origin: 50%;
- -webkit-animation: spinner-spin 1s step-end infinite;
- animation: spinner-spin 1s step-end infinite
- }
- .mui-spinner:after {
- display: block;
- width: 100%;
- height: 100%;
- content: '';
- background-image: url('data:image/svg+xml;charset=utf-8,<svg viewBox=\'0 0 120 120\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'><defs><line id=\'l\' x1=\'60\' x2=\'60\' y1=\'7\' y2=\'27\' stroke=\'%236c6c6c\' stroke-width=\'11\' stroke-linecap=\'round\'/></defs><g><use xlink:href=\'%23l\' opacity=\'.27\'/><use xlink:href=\'%23l\' opacity=\'.27\' transform=\'rotate(30 60,60)\'/><use xlink:href=\'%23l\' opacity=\'.27\' transform=\'rotate(60 60,60)\'/><use xlink:href=\'%23l\' opacity=\'.27\' transform=\'rotate(90 60,60)\'/><use xlink:href=\'%23l\' opacity=\'.27\' transform=\'rotate(120 60,60)\'/><use xlink:href=\'%23l\' opacity=\'.27\' transform=\'rotate(150 60,60)\'/><use xlink:href=\'%23l\' opacity=\'.37\' transform=\'rotate(180 60,60)\'/><use xlink:href=\'%23l\' opacity=\'.46\' transform=\'rotate(210 60,60)\'/><use xlink:href=\'%23l\' opacity=\'.56\' transform=\'rotate(240 60,60)\'/><use xlink:href=\'%23l\' opacity=\'.66\' transform=\'rotate(270 60,60)\'/><use xlink:href=\'%23l\' opacity=\'.75\' transform=\'rotate(300 60,60)\'/><use xlink:href=\'%23l\' opacity=\'.85\' transform=\'rotate(330 60,60)\'/></g></svg>');
- background-repeat: no-repeat;
- background-position: 50%;
- background-size: 100%
- }
- .mui-spinner-white:after {
- background-image: url('data:image/svg+xml;charset=utf-8,<svg viewBox=\'0 0 120 120\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'><defs><line id=\'l\' x1=\'60\' x2=\'60\' y1=\'7\' y2=\'27\' stroke=\'%23fff\' stroke-width=\'11\' stroke-linecap=\'round\'/></defs><g><use xlink:href=\'%23l\' opacity=\'.27\'/><use xlink:href=\'%23l\' opacity=\'.27\' transform=\'rotate(30 60,60)\'/><use xlink:href=\'%23l\' opacity=\'.27\' transform=\'rotate(60 60,60)\'/><use xlink:href=\'%23l\' opacity=\'.27\' transform=\'rotate(90 60,60)\'/><use xlink:href=\'%23l\' opacity=\'.27\' transform=\'rotate(120 60,60)\'/><use xlink:href=\'%23l\' opacity=\'.27\' transform=\'rotate(150 60,60)\'/><use xlink:href=\'%23l\' opacity=\'.37\' transform=\'rotate(180 60,60)\'/><use xlink:href=\'%23l\' opacity=\'.46\' transform=\'rotate(210 60,60)\'/><use xlink:href=\'%23l\' opacity=\'.56\' transform=\'rotate(240 60,60)\'/><use xlink:href=\'%23l\' opacity=\'.66\' transform=\'rotate(270 60,60)\'/><use xlink:href=\'%23l\' opacity=\'.75\' transform=\'rotate(300 60,60)\'/><use xlink:href=\'%23l\' opacity=\'.85\' transform=\'rotate(330 60,60)\'/></g></svg>')
- }
- @-webkit-keyframes spinner-spin {
- 0% {
- -webkit-transform: rotate(0deg)
- }
- 8.33333333% {
- -webkit-transform: rotate(30deg)
- }
- 16.66666667% {
- -webkit-transform: rotate(60deg)
- }
- 25% {
- -webkit-transform: rotate(90deg)
- }
- 33.33333333% {
- -webkit-transform: rotate(120deg)
- }
- 41.66666667% {
- -webkit-transform: rotate(150deg)
- }
- 50% {
- -webkit-transform: rotate(180deg)
- }
- 58.33333333% {
- -webkit-transform: rotate(210deg)
- }
- 66.66666667% {
- -webkit-transform: rotate(240deg)
- }
- 75% {
- -webkit-transform: rotate(270deg)
- }
- 83.33333333% {
- -webkit-transform: rotate(300deg)
- }
- 91.66666667% {
- -webkit-transform: rotate(330deg)
- }
- 100% {
- -webkit-transform: rotate(360deg)
- }
- }
- @keyframes spinner-spin {
- 0% {
- transform: rotate(0deg)
- }
- 8.33333333% {
- transform: rotate(30deg)
- }
- 16.66666667% {
- transform: rotate(60deg)
- }
- 25% {
- transform: rotate(90deg)
- }
- 33.33333333% {
- transform: rotate(120deg)
- }
- 41.66666667% {
- transform: rotate(150deg)
- }
- 50% {
- transform: rotate(180deg)
- }
- 58.33333333% {
- transform: rotate(210deg)
- }
- 66.66666667% {
- transform: rotate(240deg)
- }
- 75% {
- transform: rotate(270deg)
- }
- 83.33333333% {
- transform: rotate(300deg)
- }
- 91.66666667% {
- transform: rotate(330deg)
- }
- 100% {
- transform: rotate(360deg)
- }
- }
- .mui-btn,
- button,
- input[type=button],
- input[type=reset],
- input[type=submit] {
- font-size: 14px;
- font-weight: 400;
- line-height: 1.42;
- position: relative;
- display: inline-block;
- margin-bottom: 0;
- padding: 6px 12px;
- cursor: pointer;
- -webkit-transition: all;
- transition: all;
- -webkit-transition-timing-function: linear;
- transition-timing-function: linear;
- -webkit-transition-duration: .2s;
- transition-duration: .2s;
- text-align: center;
- vertical-align: top;
- white-space: nowrap;
- color: #333;
- border: 1px solid #ccc;
- border-radius: 3px;
- border-top-left-radius: 3px;
- border-top-right-radius: 3px;
- border-bottom-right-radius: 3px;
- border-bottom-left-radius: 3px;
- background-color: #fff;
- background-clip: padding-box
- }
- .mui-btn.mui-active:enabled,
- .mui-btn:enabled:active,
- button.mui-active:enabled,
- button:enabled:active,
- input[type=button].mui-active:enabled,
- input[type=button]:enabled:active,
- input[type=reset].mui-active:enabled,
- input[type=reset]:enabled:active,
- input[type=submit].mui-active:enabled,
- input[type=submit]:enabled:active {
- color: #fff;
- background-color: #929292
- }
- .mui-btn.mui-disabled,
- .mui-btn:disabled,
- button.mui-disabled,
- button:disabled,
- input[type=button].mui-disabled,
- input[type=button]:disabled,
- input[type=reset].mui-disabled,
- input[type=reset]:disabled,
- input[type=submit].mui-disabled,
- input[type=submit]:disabled {
- opacity: .6
- }
- .mui-btn-blue,
- .mui-btn-primary,
- input[type=submit] {
- color: #fff;
- border: 1px solid #00a1d8;
- background-color: #00a1d8
- }
- .mui-btn-blue.mui-active:enabled,
- .mui-btn-blue:enabled:active,
- .mui-btn-primary.mui-active:enabled,
- .mui-btn-primary:enabled:active,
- input[type=submit].mui-active:enabled,
- input[type=submit]:enabled:active {
- color: #fff;
- border: 1px solid #0062cc;
- background-color: #0062cc
- }
- .mui-btn-green,
- .mui-btn-positive,
- .mui-btn-success {
- color: #fff;
- border: 1px solid #4cd964;
- background-color: #4cd964
- }
- .mui-btn-green.mui-active:enabled,
- .mui-btn-green:enabled:active,
- .mui-btn-positive.mui-active:enabled,
- .mui-btn-positive:enabled:active,
- .mui-btn-success.mui-active:enabled,
- .mui-btn-success:enabled:active {
- color: #fff;
- border: 1px solid #2ac845;
- background-color: #2ac845
- }
- .mui-btn-warning,
- .mui-btn-yellow {
- color: #fff;
- border: 1px solid #f0ad4e;
- background-color: #f0ad4e
- }
- .mui-btn-warning.mui-active:enabled,
- .mui-btn-warning:enabled:active,
- .mui-btn-yellow.mui-active:enabled,
- .mui-btn-yellow:enabled:active {
- color: #fff;
- border: 1px solid #ec971f;
- background-color: #ec971f
- }
- .mui-btn-danger,
- .mui-btn-negative,
- .mui-btn-red {
- color: #fff;
- border: 1px solid #dd524d;
- background-color: #dd524d
- }
- .mui-btn-danger.mui-active:enabled,
- .mui-btn-danger:enabled:active,
- .mui-btn-negative.mui-active:enabled,
- .mui-btn-negative:enabled:active,
- .mui-btn-red.mui-active:enabled,
- .mui-btn-red:enabled:active {
- color: #fff;
- border: 1px solid #cf2d28;
- background-color: #cf2d28
- }
- .mui-btn-purple,
- .mui-btn-royal {
- color: #fff;
- border: 1px solid #8a6de9;
- background-color: #8a6de9
- }
- .mui-btn-purple.mui-active:enabled,
- .mui-btn-purple:enabled:active,
- .mui-btn-royal.mui-active:enabled,
- .mui-btn-royal:enabled:active {
- color: #fff;
- border: 1px solid #6641e2;
- background-color: #6641e2
- }
- .mui-btn-grey {
- color: #fff;
- border: 1px solid #c7c7cc;
- background-color: #c7c7cc
- }
- .mui-btn-grey.mui-active:enabled,
- .mui-btn-grey:enabled:active {
- color: #fff;
- border: 1px solid #acacb4;
- background-color: #acacb4
- }
- .mui-btn-outlined {
- background-color: transparent
- }
- .mui-btn-outlined.mui-btn-blue,
- .mui-btn-outlined.mui-btn-primary {
- color: #007aff
- }
- .mui-btn-outlined.mui-btn-green,
- .mui-btn-outlined.mui-btn-positive,
- .mui-btn-outlined.mui-btn-success {
- color: #4cd964
- }
- .mui-btn-outlined.mui-btn-warning,
- .mui-btn-outlined.mui-btn-yellow {
- color: #f0ad4e
- }
- .mui-btn-outlined.mui-btn-danger,
- .mui-btn-outlined.mui-btn-negative,
- .mui-btn-outlined.mui-btn-red {
- color: #dd524d
- }
- .mui-btn-outlined.mui-btn-purple,
- .mui-btn-outlined.mui-btn-royal {
- color: #8a6de9
- }
- .mui-btn-outlined.mui-btn-blue:enabled:active,
- .mui-btn-outlined.mui-btn-danger:enabled:active,
- .mui-btn-outlined.mui-btn-green:enabled:active,
- .mui-btn-outlined.mui-btn-negative:enabled:active,
- .mui-btn-outlined.mui-btn-positive:enabled:active,
- .mui-btn-outlined.mui-btn-primary:enabled:active,
- .mui-btn-outlined.mui-btn-purple:enabled:active,
- .mui-btn-outlined.mui-btn-red:enabled:active,
- .mui-btn-outlined.mui-btn-royal:enabled:active,
- .mui-btn-outlined.mui-btn-success:enabled:active,
- .mui-btn-outlined.mui-btn-warning:enabled:active,
- .mui-btn-outlined.mui-btn-yellow:enabled:active {
- color: #fff
- }
- .mui-btn-link {
- padding-top: 6px;
- padding-bottom: 6px;
- color: #007aff;
- border: 0;
- background-color: transparent
- }
- .mui-btn-link.mui-active:enabled,
- .mui-btn-link:enabled:active {
- color: #0062cc;
- background-color: transparent
- }
- .mui-btn-block {
- font-size: 14px;
- display: block;
- width: 100%;
- margin-bottom: 10px;
- padding: 12px 0
- }
- .mui-btn .mui-badge {
- font-size: 14px;
- margin: -2px -4px -2px 4px;
- background-color: rgba(0, 0, 0, .15)
- }
- .mui-btn .mui-badge-inverted,
- .mui-btn:enabled:active .mui-badge-inverted {
- background-color: transparent
- }
- .mui-btn-negative:enabled:active .mui-badge-inverted,
- .mui-btn-positive:enabled:active .mui-badge-inverted,
- .mui-btn-primary:enabled:active .mui-badge-inverted {
- color: #fff
- }
- .mui-btn-block .mui-badge {
- position: absolute;
- right: 0;
- margin-right: 10px
- }
- .mui-btn .mui-icon {
- font-size: inherit
- }
- .mui-btn.mui-icon {
- font-size: 14px;
- line-height: 1.42
- }
- .mui-btn.mui-fab {
- width: 56px;
- height: 56px;
- padding: 16px;
- border-radius: 50%;
- outline: 0
- }
- .mui-btn.mui-fab.mui-btn-mini {
- width: 40px;
- height: 40px;
- padding: 8px
- }
- .mui-btn.mui-fab .mui-icon {
- font-size: 24px;
- line-height: 24px;
- width: 24px;
- height: 24px
- }
- .mui-bar {
- position: fixed;
- z-index: 10;
- right: 0;
- left: 0;
- height: 44px;
- padding-right: 10px;
- padding-left: 10px;
- border-bottom: 0;
- background-color: #f7f7f7;
- -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .85);
- box-shadow: 0 0 1px rgba(0, 0, 0, .85);
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden
- }
- .mui-bar .mui-title {
- right: 40px;
- left: 40px;
- display: inline-block;
- overflow: hidden;
- width: auto;
- margin: 0;
- text-overflow: ellipsis
- }
- .mui-bar .mui-backdrop {
- background: 0 0
- }
- .mui-bar-header-secondary {
- top: 44px
- }
- .mui-bar-footer {
- bottom: 0
- }
- .mui-bar-footer-secondary {
- bottom: 44px
- }
- .mui-bar-footer-secondary-tab {
- bottom: 50px
- }
- .mui-bar-footer,
- .mui-bar-footer-secondary,
- .mui-bar-footer-secondary-tab {
- border-top: 0
- }
- .mui-bar-nav {
- top: 0;
- -webkit-box-shadow: 0 1px 6px #ccc;
- box-shadow: 0 1px 6px #ccc
- }
- .mui-bar-nav~.mui-content .mui-anchor {
- display: block;
- visibility: hidden;
- height: 45px;
- margin-top: -45px
- }
- .mui-bar-nav.mui-bar .mui-icon {
- margin-right: -10px;
- margin-left: -10px;
- padding-right: 10px;
- padding-left: 10px
- }
- .mui-title {
- font-size: 18px;
- font-weight: 500;
- line-height: 44px;
- position: absolute;
- display: block;
- width: 100%;
- margin: 0 -10px;
- padding: 0;
- text-align: center;
- white-space: nowrap;
- color: #17b3ec
- }
- .mui-title a {
- color: inherit
- }
- .mui-bar-tab {
- bottom: 0;
- display: table;
- width: 100%;
- height: 50px;
- padding: 0;
- table-layout: fixed;
- border-top: 0;
- border-bottom: 0;
- -webkit-touch-callout: none;
- background: none;
- /* border-top: solid gray; */
- z-index: 1000;
- }
- .mui-bar-tab .mui-tab-item {
- display: table-cell;
- overflow: hidden;
- width: 1%;
- height: 50px;
- text-align: center;
- vertical-align: middle;
- white-space: nowrap;
- text-overflow: ellipsis;
- color: #929292;
- position: relative;
- }
- .mui-bar-tab .mui-tab-item.mui-active {
- color: #007aff
- }
- .mui-bar-tab .mui-tab-item .mui-icon {
- top: 3px;
- width: 26px;
- height: 26px;
- padding-top: 0;
- padding-bottom: 0
- }
- .mui-bar-tab .mui-tab-item .mui-icon~.mui-tab-label {
- font-size: 17px;
- display: block;
- overflow: hidden;
- text-overflow: ellipsis
- }
- .mui-bar-tab .mui-tab-item .mui-icon:active {
- background: 0 0
- }
- .mui-focusin>.mui-bar-header-secondary,
- .mui-focusin>.mui-bar-nav {
- position: absolute
- }
- .mui-focusin>.mui-bar~.mui-content {
- padding-bottom: 0
- }
- .mui-bar .mui-btn {
- font-weight: 400;
- position: relative;
- z-index: 20;
- top: 7px;
- margin-top: 0;
- padding: 6px 12px 7px
- }
- .mui-bar .mui-btn.mui-pull-right {
- margin-left: 10px
- }
- .mui-bar .mui-btn.mui-pull-left {
- margin-right: 10px
- }
- .mui-bar .mui-btn-link {
- font-size: 16px;
- line-height: 44px;
- top: 0;
- padding: 0;
- color: #007aff;
- border: 0
- }
- .mui-bar .mui-btn-link.mui-active,
- .mui-bar .mui-btn-link:active {
- color: #0062cc
- }
- .mui-bar .mui-btn-block {
- font-size: 16px;
- top: 6px;
- margin-bottom: 0;
- padding: 5px 0
- }
- .mui-bar .mui-btn-nav.mui-pull-left {
- margin-left: -5px
- }
- .mui-bar .mui-btn-nav.mui-pull-left .mui-icon-left-nav {
- margin-right: -3px
- }
- .mui-bar .mui-btn-nav.mui-pull-right {
- margin-right: -5px
- }
- .mui-bar .mui-btn-nav.mui-pull-right .mui-icon-right-nav {
- margin-left: -3px
- }
- .mui-bar .mui-btn-nav:active {
- opacity: .3
- }
- .mui-bar .mui-icon {
- font-size: 24px;
- position: relative;
- z-index: 20;
- padding-top: 10px;
- padding-bottom: 10px
- }
- .mui-bar .mui-icon:active {
- opacity: .3
- }
- .mui-bar .mui-btn .mui-icon {
- top: 1px;
- margin: 0;
- padding: 0
- }
- .mui-bar .mui-title .mui-icon {
- margin: 0;
- padding: 0
- }
- .mui-bar .mui-title .mui-icon.mui-icon-caret {
- top: 4px;
- margin-left: -5px
- }
- .mui-bar input[type=search] {
- height: 29px;
- margin: 6px 0
- }
- .mui-bar .mui-input-row .mui-btn {
- padding: 12px 10px
- }
- .mui-bar .mui-search:before {
- margin-top: -10px
- }
- .mui-bar .mui-input-row .mui-input-clear~.mui-icon-clear,
- .mui-bar .mui-input-row .mui-input-speech~.mui-icon-speech {
- top: 0;
- right: 12px
- }
- .mui-bar.mui-bar-header-secondary .mui-input-row .mui-input-clear~.mui-icon-clear,
- .mui-bar.mui-bar-header-secondary .mui-input-row .mui-input-speech~.mui-icon-speech {
- top: 0;
- right: 0
- }
- .mui-bar .mui-segmented-control {
- top: 7px;
- width: auto;
- margin: 0 auto
- }
- .mui-bar.mui-bar-header-secondary .mui-segmented-control {
- top: 0
- }
- .mui-badge {
- font-size: 12px;
- line-height: 1;
- display: inline-block;
- padding: 3px 6px;
- color: #333;
- border-radius: 100px;
- background-color: rgba(0, 0, 0, .15)
- }
- .mui-badge.mui-badge-inverted {
- padding: 0 5px 0 0;
- color: #929292;
- background-color: transparent
- }
- .mui-badge-blue,
- .mui-badge-primary {
- color: #fff;
- background-color: #007aff
- }
- .mui-badge-blue.mui-badge-inverted,
- .mui-badge-primary.mui-badge-inverted {
- color: #007aff;
- background-color: transparent
- }
- .mui-badge-green,
- .mui-badge-success {
- color: #fff;
- background-color: #4cd964
- }
- .mui-badge-green.mui-badge-inverted,
- .mui-badge-success.mui-badge-inverted {
- color: #4cd964;
- background-color: transparent
- }
- .mui-badge-warning,
- .mui-badge-yellow {
- color: #fff;
- background-color: #f0ad4e
- }
- .mui-badge-warning.mui-badge-inverted,
- .mui-badge-yellow.mui-badge-inverted {
- color: #f0ad4e;
- background-color: transparent
- }
- .mui-badge-danger,
- .mui-badge-red {
- color: #fff;
- background-color: #dd524d
- }
- .mui-badge-danger.mui-badge-inverted,
- .mui-badge-red.mui-badge-inverted {
- color: #dd524d;
- background-color: transparent
- }
- .mui-badge-purple,
- .mui-badge-royal {
- color: #fff;
- background-color: #8a6de9
- }
- .mui-badge-purple.mui-badge-inverted,
- .mui-badge-royal.mui-badge-inverted {
- color: #8a6de9;
- background-color: transparent
- }
- .mui-icon .mui-badge {
- font-size: 10px;
- line-height: 1.4;
- position: absolute;
- top: -2px;
- left: 100%;
- margin-left: -10px;
- padding: 1px 5px;
- color: #fff;
- background: red
- }
- .mui-card {
- overflow: hidden;
- margin: 0 15px;
- border: 1px solid #ddd;
- border-radius: 6px;
- background-color: #fff;
- background-clip: padding-box
- }
- .mui-content>.mui-card:first-child {
- margin-top: 15px
- }
- .mui-card .mui-input-group .mui-input-row:last-child:after,
- .mui-card .mui-input-group .mui-input-row:last-child:before,
- .mui-card .mui-input-group:after,
- .mui-card .mui-input-group:before {
- height: 0
- }
- .mui-card .mui-table-view {
- margin-bottom: 0;
- border-top: 0;
- border-bottom: 0;
- border-radius: 6px
- }
- .mui-card .mui-table-view .mui-table-view-cell:first-child,
- .mui-card .mui-table-view .mui-table-view-divider:first-child {
- top: 0;
- border-top-left-radius: 6px;
- border-top-right-radius: 6px
- }
- .mui-card .mui-table-view .mui-table-view-cell:last-child,
- .mui-card .mui-table-view .mui-table-view-divider:last-child {
- border-bottom-right-radius: 6px;
- border-bottom-left-radius: 6px
- }
- .mui-card .mui-table-view:after,
- .mui-card .mui-table-view:before,
- .mui-card>.mui-table-view>.mui-table-view-cell:last-child:after,
- .mui-card>.mui-table-view>.mui-table-view-cell:last-child:before {
- height: 0
- }
- .mui-table-view {
- position: relative;
- margin-top: 0;
- margin-bottom: 0;
- padding-left: 0;
- list-style: none;
- background-color: #fff
- }
- .mui-table-view:after {
- position: absolute;
- right: 0;
- bottom: 0;
- left: 0;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc
- }
- .mui-table-view:before {
- position: absolute;
- right: 0;
- left: 0;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc;
- top: -1px
- }
- .mui-table-view-icon .mui-table-view-cell .mui-navigate-right .mui-icon {
- font-size: 20px;
- margin-top: -1px;
- margin-right: 5px;
- margin-left: -5px
- }
- .mui-table-view-icon .mui-table-view-cell:after {
- left: 40px
- }
- .mui-table-view-chevron .mui-table-view-cell {
- padding-right: 65px
- }
- .mui-table-view-chevron .mui-table-view-cell>a:not(.mui-btn) {
- margin-right: -65px
- }
- .mui-table-view-radio .mui-table-view-cell {
- padding-right: 65px
- }
- .mui-table-view-radio .mui-table-view-cell>a:not(.mui-btn) {
- margin-right: -65px
- }
- .mui-table-view-radio .mui-table-view-cell .mui-navigate-right:after {
- font-size: 30px;
- font-weight: 600;
- right: 9px;
- content: '';
- color: #007aff
- }
- .mui-table-view-radio .mui-table-view-cell.mui-selected .mui-navigate-right:after {
- content: '\e472'
- }
- .mui-table-view-inverted {
- color: #fff;
- background: #333
- }
- .mui-table-view-inverted:after {
- position: absolute;
- right: 0;
- bottom: 0;
- left: 0;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #222
- }
- .mui-table-view-inverted:before {
- position: absolute;
- top: 0;
- right: 0;
- left: 0;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #222
- }
- .mui-table-view-inverted .mui-table-view-cell:after {
- position: absolute;
- right: 0;
- bottom: 0;
- left: 15px;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #222
- }
- .mui-table-view-inverted .mui-table-view-cell.mui-active,
- .mui-table-view-inverted .mui-table-view-cell>a:not(.mui-btn).mui-active {
- background-color: #242424
- }
- .mui-table-view-cell {
- position: relative;
- overflow: hidden;
- padding: 11px 15px;
- -webkit-touch-callout: none
- }
- .mui-table-view-cell:after {
- position: absolute;
- right: 0;
- bottom: 0;
- left: 15px;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc
- }
- .mui-table-view-cell.mui-checkbox input[type=checkbox],
- .mui-table-view-cell.mui-radio input[type=radio] {
- top: 8px
- }
- .mui-table-view-cell.mui-checkbox.mui-left,
- .mui-table-view-cell.mui-radio.mui-left {
- padding-left: 58px
- }
- .mui-table-view-cell.mui-active {
- background-color: #eee
- }
- .mui-table-view-cell:last-child:after,
- .mui-table-view-cell:last-child:before {
- height: 0
- }
- .mui-table-view-cell>a:not(.mui-btn) {
- position: relative;
- display: block;
- overflow: hidden;
- margin: -11px -15px;
- padding: inherit;
- white-space: nowrap;
- text-overflow: ellipsis;
- color: inherit
- }
- .mui-table-view-cell>a:not(.mui-btn).mui-active {
- background-color: #eee
- }
- .mui-table-view-cell p {
- margin-bottom: 0
- }
- .mui-table-view-cell.mui-transitioning>.mui-slider-handle,
- .mui-table-view-cell.mui-transitioning>.mui-slider-left .mui-btn,
- .mui-table-view-cell.mui-transitioning>.mui-slider-right .mui-btn {
- -webkit-transition: -webkit-transform 300ms ease;
- transition: transform 300ms ease
- }
- .mui-table-view-cell.mui-active>.mui-slider-handle {
- background-color: #eee
- }
- .mui-table-view-cell>.mui-slider-handle {
- position: relative;
- background-color: #fff
- }
- .mui-table-view-cell>.mui-slider-handle .mui-navigate-right:after,
- .mui-table-view-cell>.mui-slider-handle.mui-navigate-right:after {
- right: 0
- }
- .mui-table-view-cell>.mui-slider-handle,
- .mui-table-view-cell>.mui-slider-left .mui-btn,
- .mui-table-view-cell>.mui-slider-right .mui-btn {
- -webkit-transition: -webkit-transform 0ms ease;
- transition: transform 0ms ease
- }
- .mui-table-view-cell>.mui-slider-left,
- .mui-table-view-cell>.mui-slider-right {
- position: absolute;
- top: 0;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- height: 100%
- }
- .mui-table-view-cell>.mui-slider-left>.mui-btn,
- .mui-table-view-cell>.mui-slider-right>.mui-btn {
- position: relative;
- left: 0;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- padding: 0 30px;
- color: #fff;
- border: 0;
- border-radius: 0;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center
- }
- .mui-table-view-cell>.mui-slider-left>.mui-btn:after,
- .mui-table-view-cell>.mui-slider-right>.mui-btn:after {
- position: absolute;
- z-index: -1;
- top: 0;
- width: 600%;
- height: 100%;
- content: '';
- background: inherit
- }
- .mui-table-view-cell>.mui-slider-left>.mui-btn.mui-icon,
- .mui-table-view-cell>.mui-slider-right>.mui-btn.mui-icon {
- font-size: 30px
- }
- .mui-table-view-cell>.mui-slider-right {
- right: 0;
- -webkit-transition: -webkit-transform 0ms ease;
- transition: transform 0ms ease;
- -webkit-transform: translateX(100%);
- transform: translateX(100%)
- }
- .mui-table-view-cell>.mui-slider-left {
- left: 0;
- -webkit-transition: -webkit-transform 0ms ease;
- transition: transform 0ms ease;
- -webkit-transform: translateX(-100%);
- transform: translateX(-100%)
- }
- .mui-table-view-cell>.mui-slider-left>.mui-btn:after {
- right: 100%;
- margin-right: -1px
- }
- .mui-table-view-divider {
- font-weight: 500;
- position: relative;
- margin-top: -1px;
- margin-left: 0;
- padding-top: 6px;
- padding-bottom: 6px;
- padding-left: 15px;
- color: #999;
- background-color: #fafafa
- }
- .mui-table-view-divider:after {
- position: absolute;
- right: 0;
- bottom: 0;
- left: 0;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc
- }
- .mui-table-view-divider:before {
- position: absolute;
- top: 0;
- right: 0;
- left: 0;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc
- }
- .mui-table-view .mui-media,
- .mui-table-view .mui-media-body {
- overflow: hidden
- }
- .mui-table-view .mui-media-large .mui-media-object {
- line-height: 80px;
- max-width: 80px;
- height: 80px
- }
- .mui-table-view .mui-media .mui-subtitle {
- color: #000
- }
- .mui-table-view .mui-media-object {
- line-height: 42px;
- max-width: 42px;
- height: 42px
- }
- .mui-table-view .mui-media-object.mui-pull-left {
- margin-right: 10px
- }
- .mui-table-view .mui-media-object.mui-pull-right {
- margin-left: 10px
- }
- .mui-table-view .mui-table-view-cell.mui-media-icon .mui-media-object {
- line-height: 29px;
- max-width: 29px;
- height: 29px;
- margin: -4px 0
- }
- .mui-table-view .mui-table-view-cell.mui-media-icon .mui-media-object img {
- line-height: 29px;
- max-width: 29px;
- height: 29px
- }
- .mui-table-view .mui-table-view-cell.mui-media-icon .mui-media-object.mui-pull-left {
- margin-right: 10px
- }
- .mui-table-view .mui-table-view-cell.mui-media-icon .mui-media-object .mui-icon {
- font-size: 29px
- }
- .mui-table-view .mui-table-view-cell.mui-media-icon .mui-media-body:after {
- position: absolute;
- right: 0;
- bottom: 0;
- left: 55px;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc
- }
- .mui-table-view .mui-table-view-cell.mui-media-icon:after {
- height: 0!important
- }
- .mui-table-view.mui-unfold .mui-table-view-cell.mui-collapse .mui-table-view {
- display: block
- }
- .mui-table-view.mui-unfold .mui-table-view-cell.mui-collapse .mui-table-view:after,
- .mui-table-view.mui-unfold .mui-table-view-cell.mui-collapse .mui-table-view:before {
- height: 0!important
- }
- .mui-table-view.mui-unfold .mui-table-view-cell.mui-media-icon.mui-collapse .mui-media-body:after {
- position: absolute;
- right: 0;
- bottom: 0;
- left: 70px;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc
- }
- .mui-table-view-cell>.mui-badge,
- .mui-table-view-cell>.mui-btn,
- .mui-table-view-cell>.mui-switch,
- .mui-table-view-cell>a>.mui-badge,
- .mui-table-view-cell>a>.mui-btn,
- .mui-table-view-cell>a>.mui-switch {
- position: absolute;
- top: 50%;
- right: 15px;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%)
- }
- .mui-table-view-cell .mui-navigate-right>.mui-badge,
- .mui-table-view-cell .mui-navigate-right>.mui-btn,
- .mui-table-view-cell .mui-navigate-right>.mui-switch,
- .mui-table-view-cell .mui-push-left>.mui-badge,
- .mui-table-view-cell .mui-push-left>.mui-btn,
- .mui-table-view-cell .mui-push-left>.mui-switch,
- .mui-table-view-cell .mui-push-right>.mui-badge,
- .mui-table-view-cell .mui-push-right>.mui-btn,
- .mui-table-view-cell .mui-push-right>.mui-switch,
- .mui-table-view-cell>a .mui-navigate-right>.mui-badge,
- .mui-table-view-cell>a .mui-navigate-right>.mui-btn,
- .mui-table-view-cell>a .mui-navigate-right>.mui-switch,
- .mui-table-view-cell>a .mui-push-left>.mui-badge,
- .mui-table-view-cell>a .mui-push-left>.mui-btn,
- .mui-table-view-cell>a .mui-push-left>.mui-switch,
- .mui-table-view-cell>a .mui-push-right>.mui-badge,
- .mui-table-view-cell>a .mui-push-right>.mui-btn,
- .mui-table-view-cell>a .mui-push-right>.mui-switch {
- right: 35px
- }
- .mui-content>.mui-table-view:first-child {
- margin-top: 15px
- }
- .mui-table-view-cell.mui-collapse .mui-table-view .mui-table-view-cell:last-child:after,
- .mui-table-view-cell.mui-collapse .mui-table-view:after,
- .mui-table-view-cell.mui-collapse .mui-table-view:before {
- height: 0
- }
- .mui-table-view-cell.mui-collapse>.mui-navigate-right:after,
- .mui-table-view-cell.mui-collapse>.mui-push-right:after {
- content: '\e581'
- }
- .mui-table-view-cell.mui-collapse.mui-active {
- margin-top: -1px
- }
- .mui-table-view-cell.mui-collapse.mui-active .mui-collapse-content,
- .mui-table-view-cell.mui-collapse.mui-active .mui-table-view {
- display: block
- }
- .mui-table-view-cell.mui-collapse.mui-active>.mui-navigate-right:after,
- .mui-table-view-cell.mui-collapse.mui-active>.mui-push-right:after {
- content: '\e580'
- }
- .mui-table-view-cell.mui-collapse.mui-active .mui-table-view-cell>a:not(.mui-btn).mui-active {
- margin-left: -31px;
- padding-left: 47px
- }
- .mui-table-view-cell.mui-collapse .mui-collapse-content {
- position: relative;
- display: none;
- overflow: hidden;
- margin: 11px -15px -11px;
- padding: 8px 15px;
- -webkit-transition: height .35s ease;
- -o-transition: height .35s ease;
- transition: height .35s ease;
- background: #fff
- }
- .mui-table-view-cell.mui-collapse .mui-collapse-content>.mui-input-group,
- .mui-table-view-cell.mui-collapse .mui-collapse-content>.mui-slider {
- width: auto;
- height: auto;
- margin: -8px -15px
- }
- .mui-table-view-cell.mui-collapse .mui-collapse-content>.mui-slider {
- margin: -8px -16px
- }
- .mui-table-view-cell.mui-collapse .mui-table-view {
- display: none;
- margin-top: 11px;
- margin-right: -15px;
- margin-bottom: -11px;
- margin-left: -15px;
- border: 0
- }
- .mui-table-view-cell.mui-collapse .mui-table-view.mui-table-view-chevron {
- margin-right: -65px
- }
- .mui-table-view-cell.mui-collapse .mui-table-view .mui-table-view-cell {
- padding-left: 31px;
- background-position: 31px 100%
- }
- .mui-table-view-cell.mui-collapse .mui-table-view .mui-table-view-cell:after {
- position: absolute;
- right: 0;
- bottom: 0;
- left: 30px;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc
- }
- .mui-table-view.mui-grid-view {
- font-size: 0;
- display: block;
- width: 100%;
- padding: 0 10px 10px 0;
- white-space: normal
- }
- .mui-table-view.mui-grid-view .mui-table-view-cell {
- font-size: 17px;
- display: inline-block;
- margin-right: -4px;
- padding: 10px 0 0 14px;
- text-align: center;
- vertical-align: middle;
- background: 0 0
- }
- .mui-table-view.mui-grid-view .mui-table-view-cell .mui-media-object {
- width: 100%;
- max-width: 100%;
- height: auto
- }
- .mui-table-view.mui-grid-view .mui-table-view-cell>a:not(.mui-btn) {
- margin: -10px 0 0 -14px
- }
- .mui-table-view.mui-grid-view .mui-table-view-cell>a:not(.mui-btn).mui-active,
- .mui-table-view.mui-grid-view .mui-table-view-cell>a:not(.mui-btn):active {
- background: 0 0
- }
- .mui-table-view.mui-grid-view .mui-table-view-cell .mui-media-body {
- font-size: 15px;
- line-height: 15px;
- display: block;
- width: 100%;
- height: 15px;
- margin-top: 8px;
- text-overflow: ellipsis;
- color: #333
- }
- .mui-table-view.mui-grid-view .mui-table-view-cell:after,
- .mui-table-view.mui-grid-view .mui-table-view-cell:before {
- height: 0
- }
- .mui-grid-view.mui-grid-9 {
- margin: 0;
- padding: 0;
- border-top: 1px solid #eee;
- border-left: 1px solid #eee;
- background-color: #f2f2f2
- }
- .mui-grid-view.mui-grid-9:after,
- .mui-grid-view.mui-grid-9:before {
- display: table;
- content: ' '
- }
- .mui-grid-view.mui-grid-9:after {
- clear: both;
- position: static
- }
- .mui-grid-view.mui-grid-9 .mui-table-view-cell {
- margin: 0;
- padding: 11px 15px;
- vertical-align: top;
- border-right: 1px solid #eee;
- border-bottom: 1px solid #eee
- }
- .mui-grid-view.mui-grid-9 .mui-table-view-cell.mui-active {
- background-color: #eee
- }
- .mui-grid-view.mui-grid-9 .mui-table-view-cell>a:not(.mui-btn) {
- margin: 0;
- padding: 10px 0
- }
- .mui-grid-view.mui-grid-9:before {
- height: 0
- }
- .mui-grid-view.mui-grid-9 .mui-media {
- color: #797979
- }
- .mui-grid-view.mui-grid-9 .mui-media .mui-icon {
- font-size: 2.4em;
- position: relative
- }
- .mui-slider-cell {
- position: relative
- }
- .mui-slider-cell>.mui-slider-handle {
- z-index: 1
- }
- .mui-slider-cell>.mui-slider-left,
- .mui-slider-cell>.mui-slider-right {
- position: absolute;
- z-index: 0;
- top: 0;
- bottom: 0
- }
- .mui-slider-cell>.mui-slider-left {
- left: 0
- }
- .mui-slider-cell>.mui-slider-right {
- right: 0
- }
- input,
- select,
- textarea {
- font-family: 'Helvetica Neue', Helvetica, sans-serif;
- font-size: 17px;
- -webkit-tap-highlight-color: transparent;
- -webkit-tap-highlight-color: transparent
- }
- input:focus,
- select:focus,
- textarea:focus {
- -webkit-tap-highlight-color: transparent;
- -webkit-tap-highlight-color: transparent;
- -webkit-user-modify: read-write-plaintext-only
- }
- input[type=color],
- input[type=date],
- input[type=datetime-local],
- input[type=datetime],
- input[type=email],
- input[type=month],
- input[type=number],
- input[type=password],
- input[type=search],
- input[type=tel],
- input[type=text],
- input[type=time],
- input[type=url],
- input[type=week],
- select,
- textarea {
- line-height: 21px;
- width: 100%;
- height: 40px;
- margin-bottom: 15px;
- padding: 10px 15px;
- -webkit-user-select: text;
- border: 1px solid rgba(0, 0, 0, .2);
- border-radius: 3px;
- outline: 0;
- background-color: #fff;
- -webkit-appearance: none
- }
- input[type=number]::-webkit-inner-spin-button,
- input[type=number]::-webkit-outer-spin-button {
- margin: 0;
- -webkit-appearance: none
- }
- input[type=search] {
- font-size: 16px;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- height: 34px;
- text-align: center;
- border: 0;
- border-radius: 6px;
- background-color: rgba(0, 0, 0, .1)
- }
- input[type=search]:focus {
- text-align: left
- }
- textarea {
- height: auto;
- resize: none
- }
- select {
- font-size: 14px;
- height: auto;
- margin-top: 1px;
- border: 0!important;
- background-color: #fff
- }
- select:focus {
- -webkit-user-modify: read-only
- }
- .mui-input-group {
- position: relative;
- padding: 0;
- border: 0;
- background-color: #fff
- }
- .mui-input-group:after {
- position: absolute;
- right: 0;
- bottom: 0;
- left: 0;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc
- }
- .mui-input-group:before {
- position: absolute;
- top: 0;
- right: 0;
- left: 0;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc
- }
- .mui-input-group input,
- .mui-input-group textarea {
- margin-bottom: 0;
- border: 0;
- border-radius: 0;
- background-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none
- }
- .mui-input-group input[type=search] {
- background: 0 0
- }
- .mui-input-group input:last-child {
- background-image: none
- }
- .mui-input-row {
- clear: left;
- overflow: hidden
- }
- .mui-input-row select {
- font-size: 17px;
- height: 37px;
- padding: 0
- }
- .mui-input-row .mui-btn+input,
- .mui-input-row label+input,
- .mui-input-row:last-child {
- background: 0 0
- }
- .mui-input-group .mui-input-row {
- height: 40px
- }
- .mui-input-group .mui-input-row:after {
- position: absolute;
- right: 0;
- bottom: 0;
- left: 15px;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc
- }
- .mui-input-row label {
- font-family: 'Helvetica Neue', Helvetica, sans-serif;
- line-height: 1.1;
- float: left;
- width: 35%;
- padding: 11px 15px
- }
- .mui-input-row label~input,
- .mui-input-row label~select,
- .mui-input-row label~textarea {
- float: right;
- width: 65%;
- margin-bottom: 0;
- padding-left: 0;
- border: 0
- }
- .mui-input-row .mui-btn {
- font-family: 'Helvetica Neue', Helvetica, sans-serif;
- line-height: 1.1;
- float: right;
- width: 15%;
- padding: 10px 15px
- }
- .mui-input-row .mui-btn~input,
- .mui-input-row .mui-btn~select,
- .mui-input-row .mui-btn~textarea {
- float: left;
- width: 85%;
- margin-bottom: 0;
- padding-left: 0;
- border: 0
- }
- .mui-button-row {
- position: relative;
- padding-top: 5px;
- text-align: center
- }
- .mui-input-group .mui-button-row {
- height: 45px
- }
- .mui-input-row {
- position: relative
- }
- .mui-input-row.mui-input-range {
- overflow: visible;
- padding-right: 20px
- }
- .mui-input-row .mui-inline {
- padding: 8px 0
- }
- .mui-input-row .mui-input-clear~.mui-icon-clear,
- .mui-input-row .mui-input-password~.mui-icon-eye,
- .mui-input-row .mui-input-speech~.mui-icon-speech {
- font-size: 20px;
- position: absolute;
- z-index: 1;
- top: 10px;
- right: 0;
- width: 38px;
- height: 38px;
- text-align: center;
- color: #999
- }
- .mui-input-row .mui-input-clear~.mui-icon-clear.mui-active,
- .mui-input-row .mui-input-password~.mui-icon-eye.mui-active,
- .mui-input-row .mui-input-speech~.mui-icon-speech.mui-active {
- color: #007aff
- }
- .mui-input-row .mui-input-speech~.mui-icon-speech {
- font-size: 24px;
- top: 8px
- }
- .mui-input-row .mui-input-clear~.mui-icon-clear~.mui-icon-speech {
- display: none
- }
- .mui-input-row .mui-input-clear~.mui-icon-clear.mui-hidden~.mui-icon-speech {
- display: inline-block
- }
- .mui-input-row .mui-icon-speech~.mui-placeholder {
- right: 38px
- }
- .mui-input-row.mui-search .mui-icon-clear {
- top: 7px
- }
- .mui-input-row.mui-search .mui-icon-speech {
- top: 5px
- }
- .mui-checkbox,
- .mui-radio {
- position: relative
- }
- .mui-checkbox label,
- .mui-radio label {
- display: inline-block;
- float: none;
- width: 100%;
- padding-right: 58px
- }
- .mui-checkbox.mui-left input[type=checkbox],
- .mui-radio.mui-left input[type=radio] {
- left: 20px
- }
- .mui-checkbox.mui-left label,
- .mui-radio.mui-left label {
- padding-right: 15px;
- padding-left: 58px
- }
- .mui-checkbox input[type=checkbox],
- .mui-radio input[type=radio] {
- position: absolute;
- top: 4px;
- right: 20px;
- display: inline-block;
- width: 28px;
- height: 26px;
- border: 0;
- outline: 0!important;
- background-color: transparent;
- -webkit-appearance: none
- }
- .mui-checkbox input[type=checkbox][disabled]:before,
- .mui-radio input[type=radio][disabled]:before {
- opacity: .3
- }
- .mui-checkbox input[type=checkbox]:before,
- .mui-radio input[type=radio]:before {
- font-family: Muiicons;
- font-size: 28px;
- font-weight: 400;
- line-height: 1;
- text-decoration: none;
- color: #aaa;
- border-radius: 0;
- background: 0 0;
- -webkit-font-smoothing: antialiased
- }
- .mui-checkbox input[type=checkbox]:checked:before,
- .mui-radio input[type=radio]:checked:before {
- color: #007aff
- }
- .mui-checkbox label.mui-disabled,
- .mui-checkbox.mui-disabled label,
- .mui-radio label.mui-disabled,
- .mui-radio.mui-disabled label {
- opacity: .4
- }
- .mui-radio input[type=radio]:before {
- content: '\e411'
- }
- .mui-radio input[type=radio]:checked:before {
- content: '\e441'
- }
- .mui-checkbox input[type=checkbox]:before {
- content: '\e411'
- }
- .mui-checkbox input[type=checkbox]:checked:before {
- content: '\e442'
- }
- .mui-select {
- position: relative
- }
- .mui-select:before {
- font-family: Muiicons;
- position: absolute;
- top: 8px;
- right: 21px;
- content: '\e581';
- color: rgba(170, 170, 170, .6)
- }
- .mui-input-row .mui-switch {
- float: right;
- margin-top: 5px;
- margin-right: 20px
- }
- .mui-input-range input[type=range] {
- position: relative;
- width: 100%;
- height: 2px;
- margin: 17px 0;
- padding: 0;
- cursor: pointer;
- border: 0;
- border-radius: 3px;
- outline: 0;
- background-color: #999;
- -webkit-appearance: none!important
- }
- .mui-input-range input[type=range]::-webkit-slider-thumb {
- width: 28px;
- height: 28px;
- border-color: #0062cc;
- border-radius: 50%;
- background-color: #007aff;
- background-clip: padding-box;
- -webkit-appearance: none!important
- }
- .mui-input-range label~input[type=range] {
- width: 65%
- }
- .mui-input-range .mui-tooltip {
- font-size: 36px;
- line-height: 64px;
- position: absolute;
- z-index: 1;
- top: -70px;
- width: 64px;
- height: 64px;
- text-align: center;
- opacity: .8;
- color: #333;
- border: 1px solid #ddd;
- border-radius: 6px;
- background-color: #fff;
- text-shadow: 0 1px 0 #f3f3f3
- }
- .mui-search {
- position: relative
- }
- .mui-search input[type=search] {
- padding-left: 30px
- }
- .mui-search .mui-placeholder {
- font-size: 16px;
- line-height: 34px;
- position: absolute;
- z-index: 1;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- display: inline-block;
- height: 34px;
- text-align: center;
- color: #999;
- border: 0;
- border-radius: 6px;
- background: 0 0
- }
- .mui-search .mui-placeholder .mui-icon {
- font-size: 20px;
- color: #333
- }
- .mui-search:before {
- font-family: Muiicons;
- font-size: 20px;
- font-weight: 400;
- position: absolute;
- top: 50%;
- right: 50%;
- display: none;
- margin-top: -18px;
- margin-right: 31px;
- content: '\e466'
- }
- .mui-search.mui-active:before {
- font-size: 20px;
- right: auto;
- left: 5px;
- display: block;
- margin-right: 0
- }
- .mui-search.mui-active input[type=search] {
- text-align: left
- }
- .mui-search.mui-active .mui-placeholder {
- display: none
- }
- .mui-segmented-control {
- font-size: 15px;
- font-weight: 400;
- position: relative;
- display: table;
- overflow: hidden;
- width: 100%;
- table-layout: fixed;
- border: 1px solid #007aff;
- border-radius: 3px;
- background-color: transparent;
- -webkit-touch-callout: none
- }
- .mui-segmented-control.mui-segmented-control-vertical {
- border-collapse: collapse;
- border-width: 0;
- border-radius: 0
- }
- .mui-segmented-control.mui-segmented-control-vertical .mui-control-item {
- display: block;
- border-bottom: 1px solid #c8c7cc;
- border-left-width: 0
- }
- .mui-segmented-control.mui-scroll-wrapper {
- height: 38px
- }
- .mui-segmented-control.mui-scroll-wrapper .mui-scroll {
- width: auto;
- height: 40px;
- white-space: nowrap
- }
- .mui-segmented-control.mui-scroll-wrapper .mui-control-item {
- display: inline-block;
- width: auto;
- padding: 0 20px;
- border: 0
- }
- .mui-segmented-control .mui-control-item {
- line-height: 38px;
- display: table-cell;
- overflow: hidden;
- width: 1%;
- -webkit-transition: background-color .1s linear;
- transition: background-color .1s linear;
- text-align: center;
- white-space: nowrap;
- text-overflow: ellipsis;
- color: #007aff;
- border-color: #007aff;
- border-left: 1px solid #007aff
- }
- .mui-segmented-control .mui-control-item:first-child {
- border-left-width: 0
- }
- .mui-segmented-control .mui-control-item.mui-active {
- color: #fff;
- background-color: #007aff
- }
- .mui-segmented-control.mui-segmented-control-inverted {
- width: 100%;
- border: 0;
- border-radius: 0
- }
- .mui-segmented-control.mui-segmented-control-inverted.mui-segmented-control-vertical .mui-control-item,
- .mui-segmented-control.mui-segmented-control-inverted.mui-segmented-control-vertical .mui-control-item.mui-active {
- border-bottom: 1px solid #c8c7cc
- }
- .mui-segmented-control.mui-segmented-control-inverted .mui-control-item {
- color: inherit;
- border: 0
- }
- .mui-segmented-control.mui-segmented-control-inverted .mui-control-item.mui-active {
- color: #17b3ec;
- border-bottom: 2px solid #17b3ec;
- background: 0 0
- }
- .mui-segmented-control.mui-segmented-control-inverted~.mui-slider-progress-bar {
- background-color: #17b3ec
- }
- .mui-segmented-control-positive {
- border: 1px solid #4cd964
- }
- .mui-segmented-control-positive .mui-control-item {
- color: #4cd964;
- border-color: inherit
- }
- .mui-segmented-control-positive .mui-control-item.mui-active {
- color: #fff;
- background-color: #4cd964
- }
- .mui-segmented-control-positive.mui-segmented-control-inverted .mui-control-item.mui-active {
- color: #4cd964;
- border-bottom: 2px solid #4cd964;
- background: 0 0
- }
- .mui-segmented-control-positive.mui-segmented-control-inverted~.mui-slider-progress-bar {
- background-color: #4cd964
- }
- .mui-segmented-control-negative {
- border: 1px solid #dd524d
- }
- .mui-segmented-control-negative .mui-control-item {
- color: #dd524d;
- border-color: inherit
- }
- .mui-segmented-control-negative .mui-control-item.mui-active {
- color: #fff;
- background-color: #dd524d
- }
- .mui-segmented-control-negative.mui-segmented-control-inverted .mui-control-item.mui-active {
- color: #dd524d;
- border-bottom: 2px solid #dd524d;
- background: 0 0
- }
- .mui-segmented-control-negative.mui-segmented-control-inverted~.mui-slider-progress-bar {
- background-color: #dd524d
- }
- .mui-control-content {
- position: relative;
- display: none
- }
- .mui-control-content.mui-active {
- display: block
- }
- .mui-popover {
- position: absolute;
- z-index: 999;
- display: none;
- width: 280px;
- -webkit-transition: opacity .3s;
- transition: opacity .3s;
- -webkit-transition-property: opacity;
- transition-property: opacity;
- -webkit-transform: none;
- transform: none;
- opacity: 0;
- border-radius: 7px;
- background-color: #f7f7f7;
- -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .1);
- box-shadow: 0 0 15px rgba(0, 0, 0, .1)
- }
- .mui-popover .mui-popover-arrow {
- position: absolute;
- z-index: 1000;
- top: -25px;
- left: 0;
- overflow: hidden;
- width: 26px;
- height: 26px
- }
- .mui-popover .mui-popover-arrow:after {
- position: absolute;
- top: 19px;
- left: 0;
- width: 26px;
- height: 26px;
- content: ' ';
- -webkit-transform: rotate(45deg);
- transform: rotate(45deg);
- border-radius: 3px;
- background: #f7f7f7
- }
- .mui-popover .mui-popover-arrow.mui-bottom {
- top: 100%;
- left: -26px;
- margin-top: -1px
- }
- .mui-popover .mui-popover-arrow.mui-bottom:after {
- top: -19px;
- left: 0
- }
- .mui-popover.mui-popover-action {
- bottom: 0;
- width: 100%;
- -webkit-transition: -webkit-transform .3s, opacity .3s;
- transition: transform .3s, opacity .3s;
- -webkit-transform: translate3d(0, 100%, 0);
- transform: translate3d(0, 100%, 0);
- border-radius: 0;
- background: 0 0;
- -webkit-box-shadow: none;
- box-shadow: none
- }
- .mui-popover.mui-popover-action .mui-popover-arrow {
- display: none
- }
- .mui-popover.mui-popover-action.mui-popover-bottom {
- position: fixed
- }
- .mui-popover.mui-popover-action.mui-active {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0)
- }
- .mui-popover.mui-popover-action .mui-table-view {
- margin: 8px;
- text-align: center;
- color: #007aff;
- border-radius: 4px
- }
- .mui-popover.mui-popover-action .mui-table-view .mui-table-view-cell:after {
- position: absolute;
- right: 0;
- bottom: 0;
- left: 0;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color: #c8c7cc
- }
- .mui-popover.mui-popover-action .mui-table-view small {
- font-weight: 400;
- line-height: 1.3;
- display: block
- }
- .mui-popover.mui-active {
- display: block;
- opacity: 1
- }
- .mui-popover .mui-bar~.mui-table-view {
- padding-top: 44px
- }
- .mui-backdrop {
- position: fixed;
- z-index: 998;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background-color: rgba(0, 0, 0, .3)
- }
- .mui-bar-backdrop.mui-backdrop {
- bottom: 50px;
- background: 0 0
- }
- .mui-backdrop-action.mui-backdrop {
- background-color: rgba(0, 0, 0, .3)
- }
- .mui-backdrop-action.mui-backdrop,
- .mui-bar-backdrop.mui-backdrop {
- opacity: 0
- }
- .mui-backdrop-action.mui-backdrop.mui-active,
- .mui-bar-backdrop.mui-backdrop.mui-active {
- -webkit-transition: all .4s ease;
- transition: all .4s ease;
- opacity: 1
- }
- .mui-popover .mui-btn-block {
- margin-bottom: 5px
- }
- .mui-popover .mui-btn-block:last-child {
- margin-bottom: 0
- }
- .mui-popover .mui-bar {
- -webkit-box-shadow: none;
- box-shadow: none
- }
- .mui-popover .mui-bar-nav {
- border-bottom: 1px solid rgba(0, 0, 0, .15);
- border-top-left-radius: 12px;
- border-top-right-radius: 12px;
- -webkit-box-shadow: none;
- box-shadow: none
- }
- .mui-popover .mui-scroll-wrapper {
- margin: 7px 0;
- border-radius: 7px;
- background-clip: padding-box
- }
- .mui-popover .mui-scroll .mui-table-view {
- max-height: none
- }
- .mui-popover .mui-table-view {
- overflow: auto;
- max-height: 300px;
- margin-bottom: 0;
- border-radius: 7px;
- background-color: #f7f7f7;
- background-image: none;
- -webkit-overflow-scrolling: touch
- }
- .mui-popover .mui-table-view:after,
- .mui-popover .mui-table-view:before {
- height: 0
- }
- .mui-popover .mui-table-view .mui-table-view-cell:first-child,
- .mui-popover .mui-table-view .mui-table-view-cell:first-child>a:not(.mui-btn) {
- border-top-left-radius: 12px;
- border-top-right-radius: 12px
- }
- .mui-popover .mui-table-view .mui-table-view-cell:last-child,
- .mui-popover .mui-table-view .mui-table-view-cell:last-child>a:not(.mui-btn) {
- border-bottom-right-radius: 12px;
- border-bottom-left-radius: 12px
- }
- .mui-popover.mui-bar-popover .mui-table-view {
- width: 106px
- }
- .mui-popover.mui-bar-popover .mui-table-view .mui-table-view-cell {
- padding: 11px 15px;
- background-position: 0 100%
- }
- .mui-popover.mui-bar-popover .mui-table-view .mui-table-view-cell>a:not(.mui-btn) {
- margin: -11px -15px -11px -15px
- }
- .mui-popup-backdrop {
- position: fixed;
- z-index: 998;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- -webkit-transition-duration: 400ms;
- transition-duration: 400ms;
- opacity: 0;
- background: rgba(0, 0, 0, .4)
- }
- .mui-popup-backdrop.mui-active {
- opacity: 1
- }
- .mui-popup {
- position: absolute;
- z-index: 10000;
- top: 50%;
- left: 50%;
- display: none;
- overflow: hidden;
- width: 270px;
- -webkit-transition-property: -webkit-transform, opacity;
- transition-property: transform, opacity;
- -webkit-transform: translate3d(-50%, -50%, 0) scale(1.185);
- transform: translate3d(-50%, -50%, 0) scale(1.185);
- text-align: center;
- opacity: 0;
- color: #000;
- border-radius: 13px
- }
- .mui-popup.mui-popup-in {
- display: block;
- -webkit-transition-duration: 400ms;
- transition-duration: 400ms;
- -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
- transform: translate3d(-50%, -50%, 0) scale(1);
- opacity: 1
- }
- .mui-popup.mui-popup-out {
- -webkit-transition-duration: 400ms;
- transition-duration: 400ms;
- -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
- transform: translate3d(-50%, -50%, 0) scale(1);
- opacity: 0
- }
- .mui-popup-inner {
- position: relative;
- padding: 15px;
- border-radius: 13px 13px 0 0;
- background: rgba(255, 255, 255, .95)
- }
- .mui-popup-inner:after {
- position: absolute;
- z-index: 15;
- top: auto;
- right: auto;
- bottom: 0;
- left: 0;
- display: block;
- width: 100%;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- -webkit-transform-origin: 50% 100%;
- transform-origin: 50% 100%;
- background-color: rgba(0, 0, 0, .2)
- }
- .mui-popup-title {
- font-size: 18px;
- font-weight: 500;
- text-align: center
- }
- .mui-popup-title+.mui-popup-text {
- font-size: 14px;
- margin-top: 5px
- }
- .mui-popup-buttons {
- position: relative;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- height: 44px;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center
- }
- .mui-popup-button {
- font-size: 17px;
- line-height: 44px;
- position: relative;
- display: block;
- overflow: hidden;
- box-sizing: border-box;
- width: 100%;
- height: 44px;
- padding: 0 5px;
- cursor: pointer;
- text-align: center;
- white-space: nowrap;
- text-overflow: ellipsis;
- color: #007aff;
- background: rgba(255, 255, 255, .95);
- -webkit-box-flex: 1
- }
- .mui-popup-button:after {
- position: absolute;
- z-index: 15;
- top: 0;
- right: 0;
- bottom: auto;
- left: auto;
- display: block;
- width: 1px;
- height: 100%;
- content: '';
- -webkit-transform: scaleX(.5);
- transform: scaleX(.5);
- -webkit-transform-origin: 100% 50%;
- transform-origin: 100% 50%;
- background-color: rgba(0, 0, 0, .2)
- }
- .mui-popup-button:first-child {
- border-radius: 0 0 0 13px
- }
- .mui-popup-button:first-child:last-child {
- border-radius: 0 0 13px 13px
- }
- .mui-popup-button:last-child {
- border-radius: 0 0 13px
- }
- .mui-popup-button:last-child:after {
- display: none
- }
- .mui-popup-button.mui-popup-button-bold {
- font-weight: 600
- }
- .mui-popup-input input {
- font-size: 14px;
- width: 100%;
- height: 26px;
- margin: 0;
- margin-top: 15px;
- padding: 0 5px;
- border: 1px solid rgba(0, 0, 0, .3);
- border-radius: 0;
- background: #fff
- }
- .mui-plus.mui-android .mui-popup-backdrop {
- -webkit-transition-duration: 1ms;
- transition-duration: 1ms
- }
- .mui-plus.mui-android .mui-popup {
- -webkit-transition-duration: 1ms;
- transition-duration: 1ms;
- -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
- transform: translate3d(-50%, -50%, 0) scale(1)
- }
- .mui-pagination {
- display: inline-block;
- margin: 0 auto;
- padding-left: 0;
- border-radius: 6px
- }
- .mui-pagination>li {
- display: inline
- }
- .mui-pagination>li>a,
- .mui-pagination>li>span {
- line-height: 1.428571429;
- position: relative;
- float: left;
- margin-left: -1px;
- padding: 6px 12px;
- text-decoration: none;
- color: #007aff;
- border: 1px solid #ddd;
- background-color: #fff
- }
- .mui-pagination>li:first-child>a,
- .mui-pagination>li:first-child>span {
- margin-left: 0;
- border-top-left-radius: 6px;
- border-bottom-left-radius: 6px;
- background-clip: padding-box
- }
- .mui-pagination>li:last-child>a,
- .mui-pagination>li:last-child>span {
- border-top-right-radius: 6px;
- border-bottom-right-radius: 6px;
- background-clip: padding-box
- }
- .mui-pagination>li.mui-active>a,
- .mui-pagination>li.mui-active>a:active,
- .mui-pagination>li.mui-active>span,
- .mui-pagination>li.mui-active>span:active,
- .mui-pagination>li:active>a,
- .mui-pagination>li:active>a:active,
- .mui-pagination>li:active>span,
- .mui-pagination>li:active>span:active {
- z-index: 2;
- cursor: default;
- color: #fff;
- border-color: #007aff;
- background-color: #007aff
- }
- .mui-pagination>li.mui-disabled>a,
- .mui-pagination>li.mui-disabled>a:active,
- .mui-pagination>li.mui-disabled>span,
- .mui-pagination>li.mui-disabled>span:active {
- opacity: .6;
- color: #777;
- border: 1px solid #ddd;
- background-color: #fff
- }
- .mui-pagination-lg>li>a,
- .mui-pagination-lg>li>span {
- font-size: 18px;
- padding: 10px 16px
- }
- .mui-pagination-sm>li>a,
- .mui-pagination-sm>li>span {
- font-size: 12px;
- padding: 5px 10px
- }
- .mui-pager {
- padding-left: 0;
- list-style: none;
- text-align: center
- }
- .mui-pager:after,
- .mui-pager:before {
- display: table;
- content: ' '
- }
- .mui-pager:after {
- clear: both
- }
- .mui-pager li {
- display: inline
- }
- .mui-pager li>a,
- .mui-pager li>span {
- display: inline-block;
- padding: 5px 14px;
- border: 1px solid #ddd;
- border-radius: 6px;
- background-color: #fff;
- background-clip: padding-box
- }
- .mui-pager li.mui-active>a,
- .mui-pager li.mui-active>span,
- .mui-pager li:active>a,
- .mui-pager li:active>span {
- cursor: default;
- text-decoration: none;
- color: #fff;
- border-color: #007aff;
- background-color: #007aff
- }
- .mui-pager .mui-next>a,
- .mui-pager .mui-next>span {
- float: right
- }
- .mui-pager .mui-previous>a,
- .mui-pager .mui-previous>span {
- float: left
- }
- .mui-pager .mui-disabled>a,
- .mui-pager .mui-disabled>a:active,
- .mui-pager .mui-disabled>span,
- .mui-pager .mui-disabled>span:active {
- opacity: .6;
- color: #777;
- border: 1px solid #ddd;
- background-color: #fff
- }
- .mui-modal {
- position: fixed;
- z-index: 999;
- top: 0;
- overflow: hidden;
- width: 100%;
- min-height: 100%;
- -webkit-transition: -webkit-transform .25s, opacity 1ms .25s;
- transition: transform .25s, opacity 1ms .25s;
- -webkit-transition-timing-function: cubic-bezier(.1, .5, .1, 1);
- transition-timing-function: cubic-bezier(.1, .5, .1, 1);
- -webkit-transform: translate3d(0, 100%, 0);
- transform: translate3d(0, 100%, 0);
- opacity: 0;
- background-color: #fff
- }
- .mui-modal.mui-active {
- height: 100%;
- -webkit-transition: -webkit-transform .25s;
- transition: transform .25s;
- -webkit-transition-timing-function: cubic-bezier(.1, .5, .1, 1);
- transition-timing-function: cubic-bezier(.1, .5, .1, 1);
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- opacity: 1
- }
- .mui-android .mui-modal .mui-bar {
- position: static
- }
- .mui-android .mui-modal .mui-bar-nav~.mui-content {
- padding-top: 0
- }
- .mui-slider {
- position: relative;
- z-index: 1;
- overflow: hidden;
- width: 100%
- }
- .mui-slider .mui-segmented-control.mui-segmented-control-inverted .mui-control-item.mui-active {
- border-bottom: 0
- }
- .mui-slider .mui-segmented-control.mui-segmented-control-inverted~.mui-slider-group .mui-slider-item {
- border-top: 1px solid #c8c7cc;
- border-bottom: 1px solid #c8c7cc
- }
- .mui-slider .mui-slider-group {
- font-size: 0;
- position: relative;
- -webkit-transition: all 0s linear;
- transition: all 0s linear;
- white-space: nowrap
- }
- .mui-slider .mui-slider-group .mui-slider-item {
- font-size: 14px;
- position: relative;
- display: inline-block;
- width: 100%;
- height: 100%;
- vertical-align: top;
- white-space: normal
- }
- .mui-slider .mui-slider-group .mui-slider-item>a:not(.mui-control-item) {
- line-height: 0;
- position: relative;
- display: block
- }
- .mui-slider .mui-slider-group .mui-slider-item img {
- width: 100%
- }
- .mui-slider .mui-slider-group .mui-slider-item .mui-table-view:after,
- .mui-slider .mui-slider-group .mui-slider-item .mui-table-view:before {
- height: 0
- }
- .mui-slider .mui-slider-group.mui-slider-loop {
- -webkit-transform: translate(-100%, 0);
- transform: translate(-100%, 0)
- }
- .mui-slider-title {
- line-height: 30px;
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 30px;
- margin: 0;
- text-align: left;
- text-indent: 12px;
- opacity: .8;
- background-color: #000
- }
- .mui-slider-indicator {
- position: absolute;
- bottom: 8px;
- width: 100%;
- text-align: center;
- background: 0 0
- }
- .mui-slider-indicator.mui-segmented-control {
- position: relative;
- bottom: auto
- }
- .mui-slider-indicator .mui-indicator {
- display: inline-block;
- width: 6px;
- height: 6px;
- margin: 1px 6px;
- cursor: pointer;
- border-radius: 50%;
- background: #aaa;
- -webkit-box-shadow: 0 0 1px 1px rgba(130, 130, 130, .7);
- box-shadow: 0 0 1px 1px rgba(130, 130, 130, .7)
- }
- .mui-slider-indicator .mui-active.mui-indicator {
- background: #fff
- }
- .mui-slider-indicator .mui-icon {
- font-size: 20px;
- line-height: 30px;
- width: 40px;
- height: 30px;
- margin: 3px;
- text-align: center;
- border: 1px solid #ddd
- }
- .mui-slider-indicator .mui-number {
- line-height: 32px;
- display: inline-block;
- width: 58px
- }
- .mui-slider-indicator .mui-number span {
- color: #ff5053
- }
- .mui-slider-progress-bar {
- z-index: 1;
- height: 2px;
- -webkit-transform: translateZ(0);
- transform: translateZ(0)
- }
- .mui-switch {
- position: relative;
- display: block;
- 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;
- border: 2px solid #ddd;
- border-radius: 20px;
- background-color: #fff;
- background-clip: padding-box
- }
- .mui-switch.mui-disabled {
- opacity: .3
- }
- .mui-switch .mui-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)
- }
- .mui-switch:before {
- font-size: 13px;
- position: absolute;
- top: 3px;
- right: 11px;
- content: 'Off';
- text-transform: uppercase;
- color: #999
- }
- .mui-switch.mui-dragging {
- border-color: #f7f7f7;
- background-color: #f7f7f7
- }
- .mui-switch.mui-dragging .mui-switch-handle {
- width: 38px
- }
- .mui-switch.mui-dragging.mui-active .mui-switch-handle {
- left: -11px;
- width: 38px
- }
- .mui-switch.mui-active {
- border-color: #4cd964;
- background-color: #4cd964
- }
- .mui-switch.mui-active .mui-switch-handle {
- -webkit-transform: translate(43px, 0);
- transform: translate(43px, 0)
- }
- .mui-switch.mui-active:before {
- right: auto;
- left: 15px;
- content: 'On';
- color: #fff
- }
- .mui-switch input[type=checkbox] {
- display: none
- }
- .mui-switch-mini {
- width: 47px
- }
- .mui-switch-mini:before {
- display: none
- }
- .mui-switch-mini.mui-active .mui-switch-handle {
- -webkit-transform: translate(16px, 0);
- transform: translate(16px, 0)
- }
- .mui-switch-blue.mui-active {
- border: 2px solid #007aff;
- background-color: #007aff
- }
- .mui-content.mui-fade {
- left: 0;
- opacity: 0
- }
- .mui-content.mui-fade.mui-in {
- opacity: 1
- }
- .mui-content.mui-sliding {
- z-index: 2;
- -webkit-transition: -webkit-transform .4s;
- transition: transform .4s;
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0)
- }
- .mui-content.mui-sliding.mui-left {
- z-index: 1;
- -webkit-transform: translate3d(-100%, 0, 0);
- transform: translate3d(-100%, 0, 0)
- }
- .mui-content.mui-sliding.mui-right {
- z-index: 3;
- -webkit-transform: translate3d(100%, 0, 0);
- transform: translate3d(100%, 0, 0)
- }
- .mui-navigate-right:after,
- .mui-push-left:after,
- .mui-push-right:after {
- font-family: Muiicons;
- font-size: inherit;
- line-height: 1;
- position: absolute;
- top: 50%;
- display: inline-block;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- text-decoration: none;
- color: #bbb;
- -webkit-font-smoothing: antialiased
- }
- .mui-push-left:after {
- left: 15px;
- content: '\e582'
- }
- .mui-navigate-right:after,
- .mui-push-right:after {
- right: 15px;
- content: '\e583'
- }
- .mui-pull-bottom-pocket,
- .mui-pull-top-pocket {
- position: absolute;
- left: 0;
- display: block;
- visibility: hidden;
- overflow: hidden;
- width: 100%;
- height: 50px
- }
- .mui-plus-pullrefresh .mui-pull-bottom-pocket,
- .mui-plus-pullrefresh .mui-pull-top-pocket {
- display: none;
- visibility: visible
- }
- .mui-pull-top-pocket {
- top: 0
- }
- .mui-bar-nav~.mui-content .mui-pull-top-pocket {
- top: 44px
- }
- .mui-bar-nav~.mui-bar-header-secondary~.mui-content .mui-pull-top-pocket {
- top: 88px
- }
- .mui-pull-bottom-pocket {
- position: relative;
- bottom: 0;
- height: 40px
- }
- .mui-pull-bottom-pocket .mui-pull-loading {
- visibility: hidden
- }
- .mui-pull-bottom-pocket .mui-pull-loading.mui-in {
- display: inline-block
- }
- .mui-pull {
- font-weight: 700;
- position: absolute;
- right: 0;
- bottom: 10px;
- left: 0;
- text-align: center;
- color: #777
- }
- .mui-pull-loading {
- margin-right: 10px;
- -webkit-transition: -webkit-transform .4s;
- transition: transform .4s;
- -webkit-transition-duration: 400ms;
- transition-duration: 400ms;
- vertical-align: middle
- }
- .mui-pull-loading.mui-reverse {
- -webkit-transform: rotate(180deg) translateZ(0);
- transform: rotate(180deg) translateZ(0)
- }
- .mui-pull-caption {
- font-size: 15px;
- line-height: 24px;
- position: relative;
- display: inline-block;
- overflow: visible;
- margin-top: 0;
- vertical-align: middle
- }
- .mui-pull-caption span {
- display: none
- }
- .mui-pull-caption span.mui-in {
- display: inline
- }
- .mui-toast-container {
- position: fixed;
- z-index: 9999;
- bottom: 50px;
- width: 100%;
- -webkit-transition: opacity .8s;
- transition: opacity .8s;
- opacity: 0
- }
- .mui-toast-container.mui-active {
- opacity: 1
- }
- .mui-toast-message {
- font-size: 14px;
- width: 270px;
- margin: 5px auto;
- padding: 5px;
- text-align: center;
- color: #000;
- border-radius: 7px;
- background-color: #d8d8d8
- }
- .mui-numbox {
- position: relative;
- display: inline-block;
- overflow: hidden;
- width: 120px;
- height: 35px;
- padding: 0 40px;
- vertical-align: top;
- vertical-align: middle;
- border: solid 1px #bbb;
- border-radius: 3px;
- background-color: #efeff4
- }
- .mui-numbox [class*=btn-numbox],
- .mui-numbox [class*=numbox-btn] {
- font-size: 18px;
- font-weight: 400;
- line-height: 100%;
- position: absolute;
- top: 0;
- overflow: hidden;
- width: 40px;
- height: 100%;
- padding: 0;
- color: #555;
- border: none;
- border-radius: 0;
- background-color: #f9f9f9
- }
- .mui-numbox [class*=btn-numbox]:active,
- .mui-numbox [class*=numbox-btn]:active {
- background-color: #ccc
- }
- .mui-numbox [class*=btn-numbox][disabled],
- .mui-numbox [class*=numbox-btn][disabled] {
- color: silver
- }
- .mui-numbox .mui-btn-numbox-plus,
- .mui-numbox .mui-numbox-btn-plus {
- right: 0;
- border-top-right-radius: 3px;
- border-bottom-right-radius: 3px
- }
- .mui-numbox .mui-btn-numbox-minus,
- .mui-numbox .mui-numbox-btn-minus {
- left: 0;
- border-top-left-radius: 3px;
- border-bottom-left-radius: 3px
- }
- .mui-numbox .mui-input-numbox,
- .mui-numbox .mui-numbox-input {
- display: inline-block;
- overflow: hidden;
- width: 100%!important;
- height: 100%;
- margin: 0;
- padding: 0 3px!important;
- text-align: center;
- text-overflow: ellipsis;
- word-break: normal;
- border: none!important;
- border-right: solid 1px #ccc!important;
- border-left: solid 1px #ccc!important;
- border-radius: 0!important
- }
- .mui-input-row .mui-numbox {
- float: right;
- margin: 2px 8px
- }
- @font-face {
- font-family: Muiicons;
- font-weight: 400;
- font-style: normal;
- src: url(../fonts/mui.ttf) format('truetype')
- }
- .mui-icon {
- font-family: Muiicons;
- font-size: 24px;
- font-weight: 400;
- font-style: normal;
- line-height: 1;
- display: inline-block;
- text-decoration: none;
- -webkit-font-smoothing: antialiased
- }
- .mui-icon.mui-active {
- color: #007aff
- }
- .mui-icon.mui-right:before {
- float: right;
- padding-left: .2em
- }
- .mui-icon-contact:before {
- content: '\e100'
- }
- .mui-icon-person:before {
- content: '\e101'
- }
- .mui-icon-personadd:before {
- content: '\e102'
- }
- .mui-icon-contact-filled:before {
- content: '\e130'
- }
- .mui-icon-person-filled:before {
- content: '\e131'
- }
- .mui-icon-personadd-filled:before {
- content: '\e132'
- }
- .mui-icon-phone:before {
- content: '\e200'
- }
- .mui-icon-email:before {
- content: '\e201'
- }
- .mui-icon-chatbubble:before {
- content: '\e202'
- }
- .mui-icon-chatboxes:before {
- content: '\e203'
- }
- .mui-icon-phone-filled:before {
- content: '\e230'
- }
- .mui-icon-email-filled:before {
- content: '\e231'
- }
- .mui-icon-chatbubble-filled:before {
- content: '\e232'
- }
- .mui-icon-chatboxes-filled:before {
- content: '\e233'
- }
- .mui-icon-weibo:before {
- content: '\e260'
- }
- .mui-icon-weixin:before {
- content: '\e261'
- }
- .mui-icon-pengyouquan:before {
- content: '\e262'
- }
- .mui-icon-chat:before {
- content: '\e263'
- }
- .mui-icon-qq:before {
- content: '\e264'
- }
- .mui-icon-videocam:before {
- content: '\e300'
- }
- .mui-icon-camera:before {
- content: '\e301'
- }
- .mui-icon-mic:before {
- content: '\e302'
- }
- .mui-icon-location:before {
- content: '\e303'
- }
- .mui-icon-mic-filled:before,
- .mui-icon-speech:before {
- content: '\e332'
- }
- .mui-icon-location-filled:before {
- content: '\e333'
- }
- .mui-icon-micoff:before {
- content: '\e360'
- }
- .mui-icon-image:before {
- content: '\e363'
- }
- .mui-icon-map:before {
- content: '\e364'
- }
- .mui-icon-compose:before {
- content: '\e400'
- }
- .mui-icon-trash:before {
- content: '\e401'
- }
- .mui-icon-upload:before {
- content: '\e402'
- }
- .mui-icon-download:before {
- content: '\e403'
- }
- .mui-icon-close:before {
- content: '\e404'
- }
- .mui-icon-redo:before {
- content: '\e405'
- }
- .mui-icon-undo:before {
- content: '\e406'
- }
- .mui-icon-refresh:before {
- content: '\e407'
- }
- .mui-icon-star:before {
- content: '\e408'
- }
- .mui-icon-plus:before {
- content: '\e409'
- }
- .mui-icon-minus:before {
- content: '\e410'
- }
- .mui-icon-checkbox:before,
- .mui-icon-circle:before {
- content: '\e411'
- }
- .mui-icon-clear:before,
- .mui-icon-close-filled:before {
- content: '\e434'
- }
- .mui-icon-refresh-filled:before {
- content: '\e437'
- }
- .mui-icon-star-filled:before {
- content: '\e438'
- }
- .mui-icon-plus-filled:before {
- content: '\e439'
- }
- .mui-icon-minus-filled:before {
- content: '\e440'
- }
- .mui-icon-circle-filled:before {
- content: '\e441'
- }
- .mui-icon-checkbox-filled:before {
- content: '\e442'
- }
- .mui-icon-closeempty:before {
- content: '\e460'
- }
- .mui-icon-refreshempty:before {
- content: '\e461'
- }
- .mui-icon-reload:before {
- content: '\e462'
- }
- .mui-icon-starhalf:before {
- content: '\e463'
- }
- .mui-icon-spinner:before {
- content: '\e464'
- }
- .mui-icon-spinner-cycle:before {
- content: '\e465'
- }
- .mui-icon-search:before {
- content: '\e466'
- }
- .mui-icon-plusempty:before {
- content: '\e468'
- }
- .mui-icon-forward:before {
- content: '\e470'
- }
- .mui-icon-back:before,
- .mui-icon-left-nav:before {
- content: '\e471'
- }
- .mui-icon-checkmarkempty:before {
- content: '\e472'
- }
- .mui-icon-home:before {
- content: '\e500'
- }
- .mui-icon-navigate:before {
- content: '\e501'
- }
- .mui-icon-gear:before {
- content: '\e502'
- }
- .mui-icon-paperplane:before {
- content: '\e503'
- }
- .mui-icon-info:before {
- content: '\e504'
- }
- .mui-icon-help:before {
- content: '\e505'
- }
- .mui-icon-locked:before {
- content: '\e506'
- }
- .mui-icon-more:before {
- content: '\e507'
- }
- .mui-icon-flag:before {
- content: '\e508'
- }
- .mui-icon-home-filled:before {
- content: '\e530'
- }
- .mui-icon-gear-filled:before {
- content: '\e532'
- }
- .mui-icon-info-filled:before {
- content: '\e534'
- }
- .mui-icon-help-filled:before {
- content: '\e535'
- }
- .mui-icon-more-filled:before {
- content: '\e537'
- }
- .mui-icon-settings:before {
- content: '\e560'
- }
- .mui-icon-list:before {
- content: '\e562'
- }
- .mui-icon-bars:before {
- content: '\e563'
- }
- .mui-icon-loop:before {
- content: '\e565'
- }
- .mui-icon-paperclip:before {
- content: '\e567'
- }
- .mui-icon-eye:before {
- content: '\e568'
- }
- .mui-icon-arrowup:before {
- content: '\e580'
- }
- .mui-icon-arrowdown:before {
- content: '\e581'
- }
- .mui-icon-arrowleft:before {
- content: '\e582'
- }
- .mui-icon-arrowright:before {
- content: '\e583'
- }
- .mui-icon-arrowthinup:before {
- content: '\e584'
- }
- .mui-icon-arrowthindown:before {
- content: '\e585'
- }
- .mui-icon-arrowthinleft:before {
- content: '\e586'
- }
- .mui-icon-arrowthinright:before {
- content: '\e587'
- }
- .mui-icon-pulldown:before {
- content: '\e588'
- }
- .mui-fullscreen {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 100%
- }
- .mui-fullscreen.mui-slider .mui-slider-group {
- height: 100%
- }
- .mui-fullscreen .mui-segmented-control~.mui-slider-group {
- position: absolute;
- top: 40px;
- bottom: 0;
- width: 100%;
- height: auto
- }
- .mui-fullscreen.mui-slider .mui-slider-item>a {
- top: 50%;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%)
- }
- .mui-fullscreen .mui-off-canvas-wrap .mui-slider-item>a {
- top: auto;
- -webkit-transform: none;
- transform: none
- }
- .mui-bar-tab~.mui-content .mui-slider.mui-fullscreen .mui-segmented-control~.mui-slider-group {
- bottom: 50px
- }
- .mui-android.mui-android-4-0 input:focus,
- .mui-android.mui-android-4-0 textarea:focus {
- -webkit-user-modify: inherit
- }
- .mui-android.mui-android-4-2 input,
- .mui-android.mui-android-4-2 textarea,
- .mui-android.mui-android-4-3 input,
- .mui-android.mui-android-4-3 textarea {
- -webkit-user-select: text
- }
- .mui-ios .mui-table-view-cell {
- -webkit-transform-style: preserve-3d;
- transform-style: preserve-3d
- }
- .mui-plus-visible,
- .mui-wechat-visible {
- display: none!important
- }
- .mui-plus-hidden,
- .mui-wechat-hidden {
- display: block!important
- }
- .mui-tab-item.mui-plus-hidden,
- .mui-tab-item.mui-wechat-hidden {
- display: table-cell!important
- }
- .mui-plus .mui-plus-visible,
- .mui-wechat .mui-wechat-visible {
- display: block!important
- }
- .mui-plus .mui-tab-item.mui-plus-visible,
- .mui-wechat .mui-tab-item.mui-wechat-visible {
- display: table-cell!important
- }
- .mui-plus .mui-plus-hidden,
- .mui-wechat .mui-wechat-hidden {
- display: none!important
- }
- .mui-plus.mui-statusbar.mui-statusbar-offset .mui-bar-nav {
- height: 64px;
- padding-top: 20px
- }
- .mui-plus.mui-statusbar.mui-statusbar-offset .mui-bar-nav~.mui-content {
- padding-top: 64px
- }
- .mui-plus.mui-statusbar.mui-statusbar-offset .mui-bar-header-secondary,
- .mui-plus.mui-statusbar.mui-statusbar-offset .mui-bar-nav~.mui-content .mui-pull-top-pocket {
- top: 64px
- }
- .mui-plus.mui-statusbar.mui-statusbar-offset .mui-bar-header-secondary~.mui-content {
- padding-top: 94px
- }
- .mui-iframe-wrapper {
- position: absolute;
- right: 0;
- left: 0;
- -webkit-overflow-scrolling: touch
- }
- .mui-iframe-wrapper iframe {
- width: 100%;
- height: 100%;
- border: 0
- }
|