main.wxss 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 颜色变量 */
  16. /* 页面背景色 */
  17. /* 行为相关颜色 */
  18. /* 文字基本颜色 */
  19. /* 背景颜色 */
  20. /* 边框颜色 */
  21. /* 尺寸变量 */
  22. /* 文字尺寸 */
  23. /* 图片尺寸 */
  24. /* Border Radius */
  25. /* 水平间距 */
  26. /* 垂直间距 */
  27. /* 透明度 */
  28. /* 文章场景相关 */
  29. @font-face {
  30. font-family: "custom-icon";
  31. src:url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAAq4AAsAAAAAEtAAAAppAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCEGAqXIJI3ATYCJAMoCxYABCAFhREHcBuJD1GUcFYM2c+EbA5tHYOYlmpsvLJeO89sOvg/Hp7f3/dr33Nm/EUkJigUAEmKVgfYp381Kr8D3LSLIBE0NQk1DbTzClWlM2EQOqGDhTAx2hediCg/9Z+M6kr7frNbNjzDWuaJcskTtiuSM1Wyp0qGJ86ljBvxfa7qtjQG/m+t1dnDvFHNGiFBTfvPR841IeqJEK/SROMOIpqOxDVCh1B4hBQJiQgGaysGtsIsBAOrXhe3E0C1MH3FhMLyOpDDaSTQbXnvejPIYxa4ICfI9VLOqRmQ/SAhL/5GTwL73I+PrzA45AAFSQLtTtMXFljB+AE+RmKNP4UuqREa1blwOQskoC8yiNNcz1HAfNzXpSSvL64P0FhD9l3QD4g3xst5W3hbe03epf9F/izxAdLjaYuDVlPdQ8Uo6yUIuNKfPFIQ5cBoLRI2NVaBD2BWUgE+IITLYmBSCcbBpAysBRTVWGuYZDATTBLYUrgUdocSzMzHVe/dFP1Jn0A+QxIm42aUoutF0XW7lLxbY07nkxrJNNMolAqVUqluHKq9vVoRVUsTtKZHPEEwDUNon5Bx9TAivNtyL0mEZPVssQZgsGCoxmCs+LMyHvK8EBaOr7FEM6TThuqX9QarF0lrIbTc4SCLJJklGSBIiA7RuAwnulVUpAkYXaWVSbH5wuEiGPKJuoiEDdfHxcctBIpHtyAM2fDNWouUikZf+TxfkJRpcwr7YEUNSAlSeSfNLFwl6B2scAmSO5tq5/EiwxWdiwsMACJTrWuz/mzjcCELmelQuFioCA7fvbje7/IGZconip0FY6thdNQ4slQW5vyRug8YuzkKhB4Z9WrP5bcKA954rZ1nT1fNosdr0CY/30E+0nlO8GG3qpm7UwAGG4OBtSHuYlQTjOhSLPFkvQYOjlxS9ElJARx+W0uubM5L9rTUsoKhuEZR2yc1AcbgaC5cdrGNYHHNiRw0eXZyt9EAiBoTQegHWM8zPOvDec/O3jEdK9S+Q2HYYy2yegiUJVxR+KRlbAIx4sEQXUCBasA6ccdh2JeDRJysZlA/rI+IGhgyCEbrUn9GNh614xO36pbOxWOjPUni53LBwkI6m/W6XMi2WEk83yqzSQua9spsNooHabz1bfIvFYGCUPyrkqRdZORNmBfeUjEIRl/Lt+E79Sa3bIunJfNtX5oOnIrFBfR5JYiAyCD09HdpHpJvC+FI07F3uc2GDsRjt58jlBr96WN3SyWsaH/Hjt5M6iXonyiMG+mTEjHFMHw31D5vCo4pAIQckx57oZY/OTgeZQe2XKyikWHmLRpgzA5mJi902nmE4HiyIZHe82wxQHKWtOsYL1e3zk48avqjDsUPSsCi9i4MTKxuQbgYCPdoDnHHMSTmonB+9th44jeulwmhPcYh9dls8ehfD4g5NoOhw8L50hR/wnjuHoTdr+fJPx/MZVS3e5VtVNEDnr+qxd/phtkW2IEsa7VWatCC2nJV7sdGIOj6bXpo4tsBke1rC/n/qGZNkHxZOAID6Fhh4EbYjo3OQWhXtp3ynde2I+dKwvFfGN+nzkT6kWzATu886rPy19LBOKquQBDuevH4tWqNDbUn9ajZQMOP1I3KL7WWfqaui+SY1DzIa/g27TYesnGgOiv9BRf8Xf2pZ7VBjUj+nnpO+Zm+4d05QPaITpz91Zf5m8O0r4p976SHesBD/bfQ4/eNahx3zNBDxjXhdezIoGXtJUy1ri+qfOCUfZEfOqBAFAfN8p9z96bL7qvskXEej/qddU4AbN5CyMocSf6cXsvJeqQdzYunvvmPKHwItf6996af9UVRtZntMPyp6nxbj/Qn9W6Dnpk7zwlMS3sHCaqrNlyMn0exjVB0lL8UhhmeuF/ZjXNbET+pbY13z15PdYnqN6ZXiBy+1TRs/7axx1qn+bXu7ms0/eGmicXwDvYAxgnz5jL6De+o/9IxdQdUb/CULpk6dBn7L+g669hyKAvd6FVaH0l7w9kgan7xeg6RMTvGNmlTNlipdfHjAwM0edf05FjN/Q/4NXGA3EH1kBwkT/iO/Uq+x7AWn5nl1G56ppjj/8Q5bxk90t8wlqTHh13oP1TOk6PWjSWpvuq4CRKRXUFkVLT9cy2xg1AoqKDC545s7S05HZLQuI9jI9AWuUP7jHMcRCfRb/VVfxTaBSpNX0iYJDkXlLXYMzrjmfGdH0hK5ZV0SEr1wdIv72XslyCAIP2qX3KzBYdV51xU1eDQagdmH42mF9blTrkvevVX9d6Lbvgxdhf+///4a3zXGe86QwgQwd2JnzDyWv4Ur+EbNZHWtb3VVtvWx00Qn2oO5CKtRBOwybgH//oVt7R7zgBNOGDkkYDl3PKAWLpN4B70Wsa1gjn5c6RDu/Bv3xrS7qJgaULJkLY/S/fbb/d4VoTZnDqr9eHD7R4PBq6u2KA01N9q22q/n7Vj/ySjmrAnVKiyoNq63IVdZfRVVhiZ2CsgNIocuN049q5Bla+MrMvu0bVtTc96I7gLrNrSvl2asZkyrV6hylA3Zl5I25B6syMFix6EhWXoei+TfD5xV9bMdvj2T5+24xBtK/4yPMRItzkSM6gTgs/GLl7ELO1sClCwy0Px0N+j2gfDqF/Z6dNoFd0NC+1aoyrK32loVZ4rFOuWhsynM/VQBTP9MLtiQO0/tQNWsFjP1dO4zsbeNASpt8TaW+FK1y4xcp3henGAcvjwEOOXmFFU5Mk3+l3UoR3pM780Z/XjjT5NBcVU+AnFYoQ8SXri5a/8u4UnJsRnhHVzvg6MHTFuJaFYxE7f6zJdcTOFlx3u9zVJ77HKbzkvi17udgqzmza019gumbK+dXMSMEl+ijlFgHFBYKHmum8c17+WGJi5qZ2Wv7s99AGe0rckrStiJG6JJZBJRGO3gJErRkayqMqju5nGTLdBu5eV+lYS0/jqVn7q60GF4HkKKB3Zh6VCuoS643X7d2M5D+NefbbRzVufrmG1eUe3Yi3z5qS5mLlpaxqDFfx03w0+Hc+Z3l2V8V+Of+FHvB6woDMNl+ZkKN5JJRRclD/LlQVn5bdas1bn59RMRaWC6oLRjBRX0BeAn+GBxt6p1jUrLLcx9dbF1SfDhkUJJVbICQahLCFTKE8oLqqWaNbZNRhbYJBMAOjtAClC+HlQhFI6V4Tx817AE/4jSUZQgjRBV0RqFy0uSYmJUWSewJtF3sr2HMz2tjj62Yz+Imlxu0RHQ3J86Vq+3m03C9fRQW07XnD1RiSrT+E4zUV8P15Qd4RrQL1BFG2sTXA0sIU134232x2sU3D04S1iSi9RdLZOTbXxjkyxOBqAlEfAMxPtslasuQZXXcLCoR8bT0SycHMRX4EGyaLPU4tXz83OTBBPgta1wxOutDddG9Yg/Q0sJhSJkBcdt49t1xmgnuFdJ7JhTSpU87Em9drFs+sNDqzV/J364FmIUiyuUOfU2gA638KiNKVdXcP2V//TmECLQXWgCIbgiASRIjJEjhAIiVAgXSNYHFYetzoG9pPwguAQcLG30yWzOARhHZ6B93I08Hhf3uaW1zvcA91Wc298UG+bGwAAAAA=') format('woff2');
  32. }
  33. .custom-icon {
  34. font-family: "custom-icon" !important;
  35. font-size: 16px;
  36. font-style: normal;
  37. -webkit-font-smoothing: antialiased;
  38. -moz-osx-font-smoothing: grayscale;
  39. }
  40. .custom-icon-error:before {
  41. content: "\e653";
  42. }
  43. .custom-icon-tips:before {
  44. content: "\e63a";
  45. }
  46. .custom-icon-correct:before {
  47. content: "\e630";
  48. }
  49. .u-relative,
  50. .u-rela {
  51. position: relative;
  52. }
  53. .u-absolute,
  54. .u-abso {
  55. position: absolute;
  56. }
  57. image {
  58. display: inline-block;
  59. }
  60. view,
  61. text {
  62. box-sizing: border-box;
  63. }
  64. .u-font-xs {
  65. font-size: 22rpx;
  66. }
  67. .u-font-sm {
  68. font-size: 26rpx;
  69. }
  70. .u-font-md {
  71. font-size: 28rpx;
  72. }
  73. .u-font-lg {
  74. font-size: 30rpx;
  75. }
  76. .u-font-xl {
  77. font-size: 34rpx;
  78. }
  79. .u-flex {
  80. display: flex;
  81. flex-direction: row;
  82. align-items: center;
  83. }
  84. .u-flex-wrap {
  85. flex-wrap: wrap;
  86. }
  87. .u-flex-nowrap {
  88. flex-wrap: nowrap;
  89. }
  90. .u-col-center {
  91. align-items: center;
  92. }
  93. .u-col-top {
  94. align-items: flex-start;
  95. }
  96. .u-col-bottom {
  97. align-items: flex-end;
  98. }
  99. .u-row-center {
  100. justify-content: center;
  101. }
  102. .u-row-left {
  103. justify-content: flex-start;
  104. }
  105. .u-row-right {
  106. justify-content: flex-end;
  107. }
  108. .u-row-between {
  109. justify-content: space-between;
  110. }
  111. .u-row-around {
  112. justify-content: space-around;
  113. }
  114. .u-text-left {
  115. text-align: left;
  116. }
  117. .u-text-center {
  118. text-align: center;
  119. }
  120. .u-text-right {
  121. text-align: right;
  122. }
  123. .u-flex-col {
  124. display: flex;
  125. flex-direction: column;
  126. }
  127. .u-flex-0 {
  128. flex: 0;
  129. }
  130. .u-flex-1 {
  131. flex: 1;
  132. }
  133. .u-flex-2 {
  134. flex: 2;
  135. }
  136. .u-flex-3 {
  137. flex: 3;
  138. }
  139. .u-flex-4 {
  140. flex: 4;
  141. }
  142. .u-flex-5 {
  143. flex: 5;
  144. }
  145. .u-flex-6 {
  146. flex: 6;
  147. }
  148. .u-flex-7 {
  149. flex: 7;
  150. }
  151. .u-flex-8 {
  152. flex: 8;
  153. }
  154. .u-flex-9 {
  155. flex: 9;
  156. }
  157. .u-flex-10 {
  158. flex: 10;
  159. }
  160. .u-flex-11 {
  161. flex: 11;
  162. }
  163. .u-flex-12 {
  164. flex: 12;
  165. }
  166. .u-font-9 {
  167. font-size: 9px;
  168. }
  169. .u-font-10 {
  170. font-size: 10px;
  171. }
  172. .u-font-11 {
  173. font-size: 11px;
  174. }
  175. .u-font-12 {
  176. font-size: 12px;
  177. }
  178. .u-font-13 {
  179. font-size: 13px;
  180. }
  181. .u-font-14 {
  182. font-size: 14px;
  183. }
  184. .u-font-15 {
  185. font-size: 15px;
  186. }
  187. .u-font-16 {
  188. font-size: 16px;
  189. }
  190. .u-font-17 {
  191. font-size: 17px;
  192. }
  193. .u-font-18 {
  194. font-size: 18px;
  195. }
  196. .u-font-19 {
  197. font-size: 19px;
  198. }
  199. .u-font-20 {
  200. font-size: 20rpx;
  201. }
  202. .u-font-21 {
  203. font-size: 21rpx;
  204. }
  205. .u-font-22 {
  206. font-size: 22rpx;
  207. }
  208. .u-font-23 {
  209. font-size: 23rpx;
  210. }
  211. .u-font-24 {
  212. font-size: 24rpx;
  213. }
  214. .u-font-25 {
  215. font-size: 25rpx;
  216. }
  217. .u-font-26 {
  218. font-size: 26rpx;
  219. }
  220. .u-font-27 {
  221. font-size: 27rpx;
  222. }
  223. .u-font-28 {
  224. font-size: 28rpx;
  225. }
  226. .u-font-29 {
  227. font-size: 29rpx;
  228. }
  229. .u-font-30 {
  230. font-size: 30rpx;
  231. }
  232. .u-font-31 {
  233. font-size: 31rpx;
  234. }
  235. .u-font-32 {
  236. font-size: 32rpx;
  237. }
  238. .u-font-33 {
  239. font-size: 33rpx;
  240. }
  241. .u-font-34 {
  242. font-size: 34rpx;
  243. }
  244. .u-font-35 {
  245. font-size: 35rpx;
  246. }
  247. .u-font-36 {
  248. font-size: 36rpx;
  249. }
  250. .u-font-37 {
  251. font-size: 37rpx;
  252. }
  253. .u-font-38 {
  254. font-size: 38rpx;
  255. }
  256. .u-font-39 {
  257. font-size: 39rpx;
  258. }
  259. .u-font-40 {
  260. font-size: 40rpx;
  261. }
  262. .u-margin-0, .u-m-0 {
  263. margin: 0rpx !important;
  264. }
  265. .u-padding-0, .u-p-0 {
  266. padding: 0rpx !important;
  267. }
  268. .u-m-l-0 {
  269. margin-left: 0rpx !important;
  270. }
  271. .u-p-l-0 {
  272. padding-left: 0rpx !important;
  273. }
  274. .u-margin-left-0 {
  275. margin-left: 0rpx !important;
  276. }
  277. .u-padding-left-0 {
  278. padding-left: 0rpx !important;
  279. }
  280. .u-m-t-0 {
  281. margin-top: 0rpx !important;
  282. }
  283. .u-p-t-0 {
  284. padding-top: 0rpx !important;
  285. }
  286. .u-margin-top-0 {
  287. margin-top: 0rpx !important;
  288. }
  289. .u-padding-top-0 {
  290. padding-top: 0rpx !important;
  291. }
  292. .u-m-r-0 {
  293. margin-right: 0rpx !important;
  294. }
  295. .u-p-r-0 {
  296. padding-right: 0rpx !important;
  297. }
  298. .u-margin-right-0 {
  299. margin-right: 0rpx !important;
  300. }
  301. .u-padding-right-0 {
  302. padding-right: 0rpx !important;
  303. }
  304. .u-m-b-0 {
  305. margin-bottom: 0rpx !important;
  306. }
  307. .u-p-b-0 {
  308. padding-bottom: 0rpx !important;
  309. }
  310. .u-margin-bottom-0 {
  311. margin-bottom: 0rpx !important;
  312. }
  313. .u-padding-bottom-0 {
  314. padding-bottom: 0rpx !important;
  315. }
  316. .u-margin-2, .u-m-2 {
  317. margin: 2rpx !important;
  318. }
  319. .u-padding-2, .u-p-2 {
  320. padding: 2rpx !important;
  321. }
  322. .u-m-l-2 {
  323. margin-left: 2rpx !important;
  324. }
  325. .u-p-l-2 {
  326. padding-left: 2rpx !important;
  327. }
  328. .u-margin-left-2 {
  329. margin-left: 2rpx !important;
  330. }
  331. .u-padding-left-2 {
  332. padding-left: 2rpx !important;
  333. }
  334. .u-m-t-2 {
  335. margin-top: 2rpx !important;
  336. }
  337. .u-p-t-2 {
  338. padding-top: 2rpx !important;
  339. }
  340. .u-margin-top-2 {
  341. margin-top: 2rpx !important;
  342. }
  343. .u-padding-top-2 {
  344. padding-top: 2rpx !important;
  345. }
  346. .u-m-r-2 {
  347. margin-right: 2rpx !important;
  348. }
  349. .u-p-r-2 {
  350. padding-right: 2rpx !important;
  351. }
  352. .u-margin-right-2 {
  353. margin-right: 2rpx !important;
  354. }
  355. .u-padding-right-2 {
  356. padding-right: 2rpx !important;
  357. }
  358. .u-m-b-2 {
  359. margin-bottom: 2rpx !important;
  360. }
  361. .u-p-b-2 {
  362. padding-bottom: 2rpx !important;
  363. }
  364. .u-margin-bottom-2 {
  365. margin-bottom: 2rpx !important;
  366. }
  367. .u-padding-bottom-2 {
  368. padding-bottom: 2rpx !important;
  369. }
  370. .u-margin-4, .u-m-4 {
  371. margin: 4rpx !important;
  372. }
  373. .u-padding-4, .u-p-4 {
  374. padding: 4rpx !important;
  375. }
  376. .u-m-l-4 {
  377. margin-left: 4rpx !important;
  378. }
  379. .u-p-l-4 {
  380. padding-left: 4rpx !important;
  381. }
  382. .u-margin-left-4 {
  383. margin-left: 4rpx !important;
  384. }
  385. .u-padding-left-4 {
  386. padding-left: 4rpx !important;
  387. }
  388. .u-m-t-4 {
  389. margin-top: 4rpx !important;
  390. }
  391. .u-p-t-4 {
  392. padding-top: 4rpx !important;
  393. }
  394. .u-margin-top-4 {
  395. margin-top: 4rpx !important;
  396. }
  397. .u-padding-top-4 {
  398. padding-top: 4rpx !important;
  399. }
  400. .u-m-r-4 {
  401. margin-right: 4rpx !important;
  402. }
  403. .u-p-r-4 {
  404. padding-right: 4rpx !important;
  405. }
  406. .u-margin-right-4 {
  407. margin-right: 4rpx !important;
  408. }
  409. .u-padding-right-4 {
  410. padding-right: 4rpx !important;
  411. }
  412. .u-m-b-4 {
  413. margin-bottom: 4rpx !important;
  414. }
  415. .u-p-b-4 {
  416. padding-bottom: 4rpx !important;
  417. }
  418. .u-margin-bottom-4 {
  419. margin-bottom: 4rpx !important;
  420. }
  421. .u-padding-bottom-4 {
  422. padding-bottom: 4rpx !important;
  423. }
  424. .u-margin-5, .u-m-5 {
  425. margin: 5rpx !important;
  426. }
  427. .u-padding-5, .u-p-5 {
  428. padding: 5rpx !important;
  429. }
  430. .u-m-l-5 {
  431. margin-left: 5rpx !important;
  432. }
  433. .u-p-l-5 {
  434. padding-left: 5rpx !important;
  435. }
  436. .u-margin-left-5 {
  437. margin-left: 5rpx !important;
  438. }
  439. .u-padding-left-5 {
  440. padding-left: 5rpx !important;
  441. }
  442. .u-m-t-5 {
  443. margin-top: 5rpx !important;
  444. }
  445. .u-p-t-5 {
  446. padding-top: 5rpx !important;
  447. }
  448. .u-margin-top-5 {
  449. margin-top: 5rpx !important;
  450. }
  451. .u-padding-top-5 {
  452. padding-top: 5rpx !important;
  453. }
  454. .u-m-r-5 {
  455. margin-right: 5rpx !important;
  456. }
  457. .u-p-r-5 {
  458. padding-right: 5rpx !important;
  459. }
  460. .u-margin-right-5 {
  461. margin-right: 5rpx !important;
  462. }
  463. .u-padding-right-5 {
  464. padding-right: 5rpx !important;
  465. }
  466. .u-m-b-5 {
  467. margin-bottom: 5rpx !important;
  468. }
  469. .u-p-b-5 {
  470. padding-bottom: 5rpx !important;
  471. }
  472. .u-margin-bottom-5 {
  473. margin-bottom: 5rpx !important;
  474. }
  475. .u-padding-bottom-5 {
  476. padding-bottom: 5rpx !important;
  477. }
  478. .u-margin-6, .u-m-6 {
  479. margin: 6rpx !important;
  480. }
  481. .u-padding-6, .u-p-6 {
  482. padding: 6rpx !important;
  483. }
  484. .u-m-l-6 {
  485. margin-left: 6rpx !important;
  486. }
  487. .u-p-l-6 {
  488. padding-left: 6rpx !important;
  489. }
  490. .u-margin-left-6 {
  491. margin-left: 6rpx !important;
  492. }
  493. .u-padding-left-6 {
  494. padding-left: 6rpx !important;
  495. }
  496. .u-m-t-6 {
  497. margin-top: 6rpx !important;
  498. }
  499. .u-p-t-6 {
  500. padding-top: 6rpx !important;
  501. }
  502. .u-margin-top-6 {
  503. margin-top: 6rpx !important;
  504. }
  505. .u-padding-top-6 {
  506. padding-top: 6rpx !important;
  507. }
  508. .u-m-r-6 {
  509. margin-right: 6rpx !important;
  510. }
  511. .u-p-r-6 {
  512. padding-right: 6rpx !important;
  513. }
  514. .u-margin-right-6 {
  515. margin-right: 6rpx !important;
  516. }
  517. .u-padding-right-6 {
  518. padding-right: 6rpx !important;
  519. }
  520. .u-m-b-6 {
  521. margin-bottom: 6rpx !important;
  522. }
  523. .u-p-b-6 {
  524. padding-bottom: 6rpx !important;
  525. }
  526. .u-margin-bottom-6 {
  527. margin-bottom: 6rpx !important;
  528. }
  529. .u-padding-bottom-6 {
  530. padding-bottom: 6rpx !important;
  531. }
  532. .u-margin-8, .u-m-8 {
  533. margin: 8rpx !important;
  534. }
  535. .u-padding-8, .u-p-8 {
  536. padding: 8rpx !important;
  537. }
  538. .u-m-l-8 {
  539. margin-left: 8rpx !important;
  540. }
  541. .u-p-l-8 {
  542. padding-left: 8rpx !important;
  543. }
  544. .u-margin-left-8 {
  545. margin-left: 8rpx !important;
  546. }
  547. .u-padding-left-8 {
  548. padding-left: 8rpx !important;
  549. }
  550. .u-m-t-8 {
  551. margin-top: 8rpx !important;
  552. }
  553. .u-p-t-8 {
  554. padding-top: 8rpx !important;
  555. }
  556. .u-margin-top-8 {
  557. margin-top: 8rpx !important;
  558. }
  559. .u-padding-top-8 {
  560. padding-top: 8rpx !important;
  561. }
  562. .u-m-r-8 {
  563. margin-right: 8rpx !important;
  564. }
  565. .u-p-r-8 {
  566. padding-right: 8rpx !important;
  567. }
  568. .u-margin-right-8 {
  569. margin-right: 8rpx !important;
  570. }
  571. .u-padding-right-8 {
  572. padding-right: 8rpx !important;
  573. }
  574. .u-m-b-8 {
  575. margin-bottom: 8rpx !important;
  576. }
  577. .u-p-b-8 {
  578. padding-bottom: 8rpx !important;
  579. }
  580. .u-margin-bottom-8 {
  581. margin-bottom: 8rpx !important;
  582. }
  583. .u-padding-bottom-8 {
  584. padding-bottom: 8rpx !important;
  585. }
  586. .u-margin-10, .u-m-10 {
  587. margin: 10rpx !important;
  588. }
  589. .u-padding-10, .u-p-10 {
  590. padding: 10rpx !important;
  591. }
  592. .u-m-l-10 {
  593. margin-left: 10rpx !important;
  594. }
  595. .u-p-l-10 {
  596. padding-left: 10rpx !important;
  597. }
  598. .u-margin-left-10 {
  599. margin-left: 10rpx !important;
  600. }
  601. .u-padding-left-10 {
  602. padding-left: 10rpx !important;
  603. }
  604. .u-m-t-10 {
  605. margin-top: 10rpx !important;
  606. }
  607. .u-p-t-10 {
  608. padding-top: 10rpx !important;
  609. }
  610. .u-margin-top-10 {
  611. margin-top: 10rpx !important;
  612. }
  613. .u-padding-top-10 {
  614. padding-top: 10rpx !important;
  615. }
  616. .u-m-r-10 {
  617. margin-right: 10rpx !important;
  618. }
  619. .u-p-r-10 {
  620. padding-right: 10rpx !important;
  621. }
  622. .u-margin-right-10 {
  623. margin-right: 10rpx !important;
  624. }
  625. .u-padding-right-10 {
  626. padding-right: 10rpx !important;
  627. }
  628. .u-m-b-10 {
  629. margin-bottom: 10rpx !important;
  630. }
  631. .u-p-b-10 {
  632. padding-bottom: 10rpx !important;
  633. }
  634. .u-margin-bottom-10 {
  635. margin-bottom: 10rpx !important;
  636. }
  637. .u-padding-bottom-10 {
  638. padding-bottom: 10rpx !important;
  639. }
  640. .u-margin-12, .u-m-12 {
  641. margin: 12rpx !important;
  642. }
  643. .u-padding-12, .u-p-12 {
  644. padding: 12rpx !important;
  645. }
  646. .u-m-l-12 {
  647. margin-left: 12rpx !important;
  648. }
  649. .u-p-l-12 {
  650. padding-left: 12rpx !important;
  651. }
  652. .u-margin-left-12 {
  653. margin-left: 12rpx !important;
  654. }
  655. .u-padding-left-12 {
  656. padding-left: 12rpx !important;
  657. }
  658. .u-m-t-12 {
  659. margin-top: 12rpx !important;
  660. }
  661. .u-p-t-12 {
  662. padding-top: 12rpx !important;
  663. }
  664. .u-margin-top-12 {
  665. margin-top: 12rpx !important;
  666. }
  667. .u-padding-top-12 {
  668. padding-top: 12rpx !important;
  669. }
  670. .u-m-r-12 {
  671. margin-right: 12rpx !important;
  672. }
  673. .u-p-r-12 {
  674. padding-right: 12rpx !important;
  675. }
  676. .u-margin-right-12 {
  677. margin-right: 12rpx !important;
  678. }
  679. .u-padding-right-12 {
  680. padding-right: 12rpx !important;
  681. }
  682. .u-m-b-12 {
  683. margin-bottom: 12rpx !important;
  684. }
  685. .u-p-b-12 {
  686. padding-bottom: 12rpx !important;
  687. }
  688. .u-margin-bottom-12 {
  689. margin-bottom: 12rpx !important;
  690. }
  691. .u-padding-bottom-12 {
  692. padding-bottom: 12rpx !important;
  693. }
  694. .u-margin-14, .u-m-14 {
  695. margin: 14rpx !important;
  696. }
  697. .u-padding-14, .u-p-14 {
  698. padding: 14rpx !important;
  699. }
  700. .u-m-l-14 {
  701. margin-left: 14rpx !important;
  702. }
  703. .u-p-l-14 {
  704. padding-left: 14rpx !important;
  705. }
  706. .u-margin-left-14 {
  707. margin-left: 14rpx !important;
  708. }
  709. .u-padding-left-14 {
  710. padding-left: 14rpx !important;
  711. }
  712. .u-m-t-14 {
  713. margin-top: 14rpx !important;
  714. }
  715. .u-p-t-14 {
  716. padding-top: 14rpx !important;
  717. }
  718. .u-margin-top-14 {
  719. margin-top: 14rpx !important;
  720. }
  721. .u-padding-top-14 {
  722. padding-top: 14rpx !important;
  723. }
  724. .u-m-r-14 {
  725. margin-right: 14rpx !important;
  726. }
  727. .u-p-r-14 {
  728. padding-right: 14rpx !important;
  729. }
  730. .u-margin-right-14 {
  731. margin-right: 14rpx !important;
  732. }
  733. .u-padding-right-14 {
  734. padding-right: 14rpx !important;
  735. }
  736. .u-m-b-14 {
  737. margin-bottom: 14rpx !important;
  738. }
  739. .u-p-b-14 {
  740. padding-bottom: 14rpx !important;
  741. }
  742. .u-margin-bottom-14 {
  743. margin-bottom: 14rpx !important;
  744. }
  745. .u-padding-bottom-14 {
  746. padding-bottom: 14rpx !important;
  747. }
  748. .u-margin-15, .u-m-15 {
  749. margin: 15rpx !important;
  750. }
  751. .u-padding-15, .u-p-15 {
  752. padding: 15rpx !important;
  753. }
  754. .u-m-l-15 {
  755. margin-left: 15rpx !important;
  756. }
  757. .u-p-l-15 {
  758. padding-left: 15rpx !important;
  759. }
  760. .u-margin-left-15 {
  761. margin-left: 15rpx !important;
  762. }
  763. .u-padding-left-15 {
  764. padding-left: 15rpx !important;
  765. }
  766. .u-m-t-15 {
  767. margin-top: 15rpx !important;
  768. }
  769. .u-p-t-15 {
  770. padding-top: 15rpx !important;
  771. }
  772. .u-margin-top-15 {
  773. margin-top: 15rpx !important;
  774. }
  775. .u-padding-top-15 {
  776. padding-top: 15rpx !important;
  777. }
  778. .u-m-r-15 {
  779. margin-right: 15rpx !important;
  780. }
  781. .u-p-r-15 {
  782. padding-right: 15rpx !important;
  783. }
  784. .u-margin-right-15 {
  785. margin-right: 15rpx !important;
  786. }
  787. .u-padding-right-15 {
  788. padding-right: 15rpx !important;
  789. }
  790. .u-m-b-15 {
  791. margin-bottom: 15rpx !important;
  792. }
  793. .u-p-b-15 {
  794. padding-bottom: 15rpx !important;
  795. }
  796. .u-margin-bottom-15 {
  797. margin-bottom: 15rpx !important;
  798. }
  799. .u-padding-bottom-15 {
  800. padding-bottom: 15rpx !important;
  801. }
  802. .u-margin-16, .u-m-16 {
  803. margin: 16rpx !important;
  804. }
  805. .u-padding-16, .u-p-16 {
  806. padding: 16rpx !important;
  807. }
  808. .u-m-l-16 {
  809. margin-left: 16rpx !important;
  810. }
  811. .u-p-l-16 {
  812. padding-left: 16rpx !important;
  813. }
  814. .u-margin-left-16 {
  815. margin-left: 16rpx !important;
  816. }
  817. .u-padding-left-16 {
  818. padding-left: 16rpx !important;
  819. }
  820. .u-m-t-16 {
  821. margin-top: 16rpx !important;
  822. }
  823. .u-p-t-16 {
  824. padding-top: 16rpx !important;
  825. }
  826. .u-margin-top-16 {
  827. margin-top: 16rpx !important;
  828. }
  829. .u-padding-top-16 {
  830. padding-top: 16rpx !important;
  831. }
  832. .u-m-r-16 {
  833. margin-right: 16rpx !important;
  834. }
  835. .u-p-r-16 {
  836. padding-right: 16rpx !important;
  837. }
  838. .u-margin-right-16 {
  839. margin-right: 16rpx !important;
  840. }
  841. .u-padding-right-16 {
  842. padding-right: 16rpx !important;
  843. }
  844. .u-m-b-16 {
  845. margin-bottom: 16rpx !important;
  846. }
  847. .u-p-b-16 {
  848. padding-bottom: 16rpx !important;
  849. }
  850. .u-margin-bottom-16 {
  851. margin-bottom: 16rpx !important;
  852. }
  853. .u-padding-bottom-16 {
  854. padding-bottom: 16rpx !important;
  855. }
  856. .u-margin-18, .u-m-18 {
  857. margin: 18rpx !important;
  858. }
  859. .u-padding-18, .u-p-18 {
  860. padding: 18rpx !important;
  861. }
  862. .u-m-l-18 {
  863. margin-left: 18rpx !important;
  864. }
  865. .u-p-l-18 {
  866. padding-left: 18rpx !important;
  867. }
  868. .u-margin-left-18 {
  869. margin-left: 18rpx !important;
  870. }
  871. .u-padding-left-18 {
  872. padding-left: 18rpx !important;
  873. }
  874. .u-m-t-18 {
  875. margin-top: 18rpx !important;
  876. }
  877. .u-p-t-18 {
  878. padding-top: 18rpx !important;
  879. }
  880. .u-margin-top-18 {
  881. margin-top: 18rpx !important;
  882. }
  883. .u-padding-top-18 {
  884. padding-top: 18rpx !important;
  885. }
  886. .u-m-r-18 {
  887. margin-right: 18rpx !important;
  888. }
  889. .u-p-r-18 {
  890. padding-right: 18rpx !important;
  891. }
  892. .u-margin-right-18 {
  893. margin-right: 18rpx !important;
  894. }
  895. .u-padding-right-18 {
  896. padding-right: 18rpx !important;
  897. }
  898. .u-m-b-18 {
  899. margin-bottom: 18rpx !important;
  900. }
  901. .u-p-b-18 {
  902. padding-bottom: 18rpx !important;
  903. }
  904. .u-margin-bottom-18 {
  905. margin-bottom: 18rpx !important;
  906. }
  907. .u-padding-bottom-18 {
  908. padding-bottom: 18rpx !important;
  909. }
  910. .u-margin-20, .u-m-20 {
  911. margin: 20rpx !important;
  912. }
  913. .u-padding-20, .u-p-20 {
  914. padding: 20rpx !important;
  915. }
  916. .u-m-l-20 {
  917. margin-left: 20rpx !important;
  918. }
  919. .u-p-l-20 {
  920. padding-left: 20rpx !important;
  921. }
  922. .u-margin-left-20 {
  923. margin-left: 20rpx !important;
  924. }
  925. .u-padding-left-20 {
  926. padding-left: 20rpx !important;
  927. }
  928. .u-m-t-20 {
  929. margin-top: 20rpx !important;
  930. }
  931. .u-p-t-20 {
  932. padding-top: 20rpx !important;
  933. }
  934. .u-margin-top-20 {
  935. margin-top: 20rpx !important;
  936. }
  937. .u-padding-top-20 {
  938. padding-top: 20rpx !important;
  939. }
  940. .u-m-r-20 {
  941. margin-right: 20rpx !important;
  942. }
  943. .u-p-r-20 {
  944. padding-right: 20rpx !important;
  945. }
  946. .u-margin-right-20 {
  947. margin-right: 20rpx !important;
  948. }
  949. .u-padding-right-20 {
  950. padding-right: 20rpx !important;
  951. }
  952. .u-m-b-20 {
  953. margin-bottom: 20rpx !important;
  954. }
  955. .u-p-b-20 {
  956. padding-bottom: 20rpx !important;
  957. }
  958. .u-margin-bottom-20 {
  959. margin-bottom: 20rpx !important;
  960. }
  961. .u-padding-bottom-20 {
  962. padding-bottom: 20rpx !important;
  963. }
  964. .u-margin-22, .u-m-22 {
  965. margin: 22rpx !important;
  966. }
  967. .u-padding-22, .u-p-22 {
  968. padding: 22rpx !important;
  969. }
  970. .u-m-l-22 {
  971. margin-left: 22rpx !important;
  972. }
  973. .u-p-l-22 {
  974. padding-left: 22rpx !important;
  975. }
  976. .u-margin-left-22 {
  977. margin-left: 22rpx !important;
  978. }
  979. .u-padding-left-22 {
  980. padding-left: 22rpx !important;
  981. }
  982. .u-m-t-22 {
  983. margin-top: 22rpx !important;
  984. }
  985. .u-p-t-22 {
  986. padding-top: 22rpx !important;
  987. }
  988. .u-margin-top-22 {
  989. margin-top: 22rpx !important;
  990. }
  991. .u-padding-top-22 {
  992. padding-top: 22rpx !important;
  993. }
  994. .u-m-r-22 {
  995. margin-right: 22rpx !important;
  996. }
  997. .u-p-r-22 {
  998. padding-right: 22rpx !important;
  999. }
  1000. .u-margin-right-22 {
  1001. margin-right: 22rpx !important;
  1002. }
  1003. .u-padding-right-22 {
  1004. padding-right: 22rpx !important;
  1005. }
  1006. .u-m-b-22 {
  1007. margin-bottom: 22rpx !important;
  1008. }
  1009. .u-p-b-22 {
  1010. padding-bottom: 22rpx !important;
  1011. }
  1012. .u-margin-bottom-22 {
  1013. margin-bottom: 22rpx !important;
  1014. }
  1015. .u-padding-bottom-22 {
  1016. padding-bottom: 22rpx !important;
  1017. }
  1018. .u-margin-24, .u-m-24 {
  1019. margin: 24rpx !important;
  1020. }
  1021. .u-padding-24, .u-p-24 {
  1022. padding: 24rpx !important;
  1023. }
  1024. .u-m-l-24 {
  1025. margin-left: 24rpx !important;
  1026. }
  1027. .u-p-l-24 {
  1028. padding-left: 24rpx !important;
  1029. }
  1030. .u-margin-left-24 {
  1031. margin-left: 24rpx !important;
  1032. }
  1033. .u-padding-left-24 {
  1034. padding-left: 24rpx !important;
  1035. }
  1036. .u-m-t-24 {
  1037. margin-top: 24rpx !important;
  1038. }
  1039. .u-p-t-24 {
  1040. padding-top: 24rpx !important;
  1041. }
  1042. .u-margin-top-24 {
  1043. margin-top: 24rpx !important;
  1044. }
  1045. .u-padding-top-24 {
  1046. padding-top: 24rpx !important;
  1047. }
  1048. .u-m-r-24 {
  1049. margin-right: 24rpx !important;
  1050. }
  1051. .u-p-r-24 {
  1052. padding-right: 24rpx !important;
  1053. }
  1054. .u-margin-right-24 {
  1055. margin-right: 24rpx !important;
  1056. }
  1057. .u-padding-right-24 {
  1058. padding-right: 24rpx !important;
  1059. }
  1060. .u-m-b-24 {
  1061. margin-bottom: 24rpx !important;
  1062. }
  1063. .u-p-b-24 {
  1064. padding-bottom: 24rpx !important;
  1065. }
  1066. .u-margin-bottom-24 {
  1067. margin-bottom: 24rpx !important;
  1068. }
  1069. .u-padding-bottom-24 {
  1070. padding-bottom: 24rpx !important;
  1071. }
  1072. .u-margin-25, .u-m-25 {
  1073. margin: 25rpx !important;
  1074. }
  1075. .u-padding-25, .u-p-25 {
  1076. padding: 25rpx !important;
  1077. }
  1078. .u-m-l-25 {
  1079. margin-left: 25rpx !important;
  1080. }
  1081. .u-p-l-25 {
  1082. padding-left: 25rpx !important;
  1083. }
  1084. .u-margin-left-25 {
  1085. margin-left: 25rpx !important;
  1086. }
  1087. .u-padding-left-25 {
  1088. padding-left: 25rpx !important;
  1089. }
  1090. .u-m-t-25 {
  1091. margin-top: 25rpx !important;
  1092. }
  1093. .u-p-t-25 {
  1094. padding-top: 25rpx !important;
  1095. }
  1096. .u-margin-top-25 {
  1097. margin-top: 25rpx !important;
  1098. }
  1099. .u-padding-top-25 {
  1100. padding-top: 25rpx !important;
  1101. }
  1102. .u-m-r-25 {
  1103. margin-right: 25rpx !important;
  1104. }
  1105. .u-p-r-25 {
  1106. padding-right: 25rpx !important;
  1107. }
  1108. .u-margin-right-25 {
  1109. margin-right: 25rpx !important;
  1110. }
  1111. .u-padding-right-25 {
  1112. padding-right: 25rpx !important;
  1113. }
  1114. .u-m-b-25 {
  1115. margin-bottom: 25rpx !important;
  1116. }
  1117. .u-p-b-25 {
  1118. padding-bottom: 25rpx !important;
  1119. }
  1120. .u-margin-bottom-25 {
  1121. margin-bottom: 25rpx !important;
  1122. }
  1123. .u-padding-bottom-25 {
  1124. padding-bottom: 25rpx !important;
  1125. }
  1126. .u-margin-26, .u-m-26 {
  1127. margin: 26rpx !important;
  1128. }
  1129. .u-padding-26, .u-p-26 {
  1130. padding: 26rpx !important;
  1131. }
  1132. .u-m-l-26 {
  1133. margin-left: 26rpx !important;
  1134. }
  1135. .u-p-l-26 {
  1136. padding-left: 26rpx !important;
  1137. }
  1138. .u-margin-left-26 {
  1139. margin-left: 26rpx !important;
  1140. }
  1141. .u-padding-left-26 {
  1142. padding-left: 26rpx !important;
  1143. }
  1144. .u-m-t-26 {
  1145. margin-top: 26rpx !important;
  1146. }
  1147. .u-p-t-26 {
  1148. padding-top: 26rpx !important;
  1149. }
  1150. .u-margin-top-26 {
  1151. margin-top: 26rpx !important;
  1152. }
  1153. .u-padding-top-26 {
  1154. padding-top: 26rpx !important;
  1155. }
  1156. .u-m-r-26 {
  1157. margin-right: 26rpx !important;
  1158. }
  1159. .u-p-r-26 {
  1160. padding-right: 26rpx !important;
  1161. }
  1162. .u-margin-right-26 {
  1163. margin-right: 26rpx !important;
  1164. }
  1165. .u-padding-right-26 {
  1166. padding-right: 26rpx !important;
  1167. }
  1168. .u-m-b-26 {
  1169. margin-bottom: 26rpx !important;
  1170. }
  1171. .u-p-b-26 {
  1172. padding-bottom: 26rpx !important;
  1173. }
  1174. .u-margin-bottom-26 {
  1175. margin-bottom: 26rpx !important;
  1176. }
  1177. .u-padding-bottom-26 {
  1178. padding-bottom: 26rpx !important;
  1179. }
  1180. .u-margin-28, .u-m-28 {
  1181. margin: 28rpx !important;
  1182. }
  1183. .u-padding-28, .u-p-28 {
  1184. padding: 28rpx !important;
  1185. }
  1186. .u-m-l-28 {
  1187. margin-left: 28rpx !important;
  1188. }
  1189. .u-p-l-28 {
  1190. padding-left: 28rpx !important;
  1191. }
  1192. .u-margin-left-28 {
  1193. margin-left: 28rpx !important;
  1194. }
  1195. .u-padding-left-28 {
  1196. padding-left: 28rpx !important;
  1197. }
  1198. .u-m-t-28 {
  1199. margin-top: 28rpx !important;
  1200. }
  1201. .u-p-t-28 {
  1202. padding-top: 28rpx !important;
  1203. }
  1204. .u-margin-top-28 {
  1205. margin-top: 28rpx !important;
  1206. }
  1207. .u-padding-top-28 {
  1208. padding-top: 28rpx !important;
  1209. }
  1210. .u-m-r-28 {
  1211. margin-right: 28rpx !important;
  1212. }
  1213. .u-p-r-28 {
  1214. padding-right: 28rpx !important;
  1215. }
  1216. .u-margin-right-28 {
  1217. margin-right: 28rpx !important;
  1218. }
  1219. .u-padding-right-28 {
  1220. padding-right: 28rpx !important;
  1221. }
  1222. .u-m-b-28 {
  1223. margin-bottom: 28rpx !important;
  1224. }
  1225. .u-p-b-28 {
  1226. padding-bottom: 28rpx !important;
  1227. }
  1228. .u-margin-bottom-28 {
  1229. margin-bottom: 28rpx !important;
  1230. }
  1231. .u-padding-bottom-28 {
  1232. padding-bottom: 28rpx !important;
  1233. }
  1234. .u-margin-30, .u-m-30 {
  1235. margin: 30rpx !important;
  1236. }
  1237. .u-padding-30, .u-p-30 {
  1238. padding: 30rpx !important;
  1239. }
  1240. .u-m-l-30 {
  1241. margin-left: 30rpx !important;
  1242. }
  1243. .u-p-l-30 {
  1244. padding-left: 30rpx !important;
  1245. }
  1246. .u-margin-left-30 {
  1247. margin-left: 30rpx !important;
  1248. }
  1249. .u-padding-left-30 {
  1250. padding-left: 30rpx !important;
  1251. }
  1252. .u-m-t-30 {
  1253. margin-top: 30rpx !important;
  1254. }
  1255. .u-p-t-30 {
  1256. padding-top: 30rpx !important;
  1257. }
  1258. .u-margin-top-30 {
  1259. margin-top: 30rpx !important;
  1260. }
  1261. .u-padding-top-30 {
  1262. padding-top: 30rpx !important;
  1263. }
  1264. .u-m-r-30 {
  1265. margin-right: 30rpx !important;
  1266. }
  1267. .u-p-r-30 {
  1268. padding-right: 30rpx !important;
  1269. }
  1270. .u-margin-right-30 {
  1271. margin-right: 30rpx !important;
  1272. }
  1273. .u-padding-right-30 {
  1274. padding-right: 30rpx !important;
  1275. }
  1276. .u-m-b-30 {
  1277. margin-bottom: 30rpx !important;
  1278. }
  1279. .u-p-b-30 {
  1280. padding-bottom: 30rpx !important;
  1281. }
  1282. .u-margin-bottom-30 {
  1283. margin-bottom: 30rpx !important;
  1284. }
  1285. .u-padding-bottom-30 {
  1286. padding-bottom: 30rpx !important;
  1287. }
  1288. .u-margin-32, .u-m-32 {
  1289. margin: 32rpx !important;
  1290. }
  1291. .u-padding-32, .u-p-32 {
  1292. padding: 32rpx !important;
  1293. }
  1294. .u-m-l-32 {
  1295. margin-left: 32rpx !important;
  1296. }
  1297. .u-p-l-32 {
  1298. padding-left: 32rpx !important;
  1299. }
  1300. .u-margin-left-32 {
  1301. margin-left: 32rpx !important;
  1302. }
  1303. .u-padding-left-32 {
  1304. padding-left: 32rpx !important;
  1305. }
  1306. .u-m-t-32 {
  1307. margin-top: 32rpx !important;
  1308. }
  1309. .u-p-t-32 {
  1310. padding-top: 32rpx !important;
  1311. }
  1312. .u-margin-top-32 {
  1313. margin-top: 32rpx !important;
  1314. }
  1315. .u-padding-top-32 {
  1316. padding-top: 32rpx !important;
  1317. }
  1318. .u-m-r-32 {
  1319. margin-right: 32rpx !important;
  1320. }
  1321. .u-p-r-32 {
  1322. padding-right: 32rpx !important;
  1323. }
  1324. .u-margin-right-32 {
  1325. margin-right: 32rpx !important;
  1326. }
  1327. .u-padding-right-32 {
  1328. padding-right: 32rpx !important;
  1329. }
  1330. .u-m-b-32 {
  1331. margin-bottom: 32rpx !important;
  1332. }
  1333. .u-p-b-32 {
  1334. padding-bottom: 32rpx !important;
  1335. }
  1336. .u-margin-bottom-32 {
  1337. margin-bottom: 32rpx !important;
  1338. }
  1339. .u-padding-bottom-32 {
  1340. padding-bottom: 32rpx !important;
  1341. }
  1342. .u-margin-34, .u-m-34 {
  1343. margin: 34rpx !important;
  1344. }
  1345. .u-padding-34, .u-p-34 {
  1346. padding: 34rpx !important;
  1347. }
  1348. .u-m-l-34 {
  1349. margin-left: 34rpx !important;
  1350. }
  1351. .u-p-l-34 {
  1352. padding-left: 34rpx !important;
  1353. }
  1354. .u-margin-left-34 {
  1355. margin-left: 34rpx !important;
  1356. }
  1357. .u-padding-left-34 {
  1358. padding-left: 34rpx !important;
  1359. }
  1360. .u-m-t-34 {
  1361. margin-top: 34rpx !important;
  1362. }
  1363. .u-p-t-34 {
  1364. padding-top: 34rpx !important;
  1365. }
  1366. .u-margin-top-34 {
  1367. margin-top: 34rpx !important;
  1368. }
  1369. .u-padding-top-34 {
  1370. padding-top: 34rpx !important;
  1371. }
  1372. .u-m-r-34 {
  1373. margin-right: 34rpx !important;
  1374. }
  1375. .u-p-r-34 {
  1376. padding-right: 34rpx !important;
  1377. }
  1378. .u-margin-right-34 {
  1379. margin-right: 34rpx !important;
  1380. }
  1381. .u-padding-right-34 {
  1382. padding-right: 34rpx !important;
  1383. }
  1384. .u-m-b-34 {
  1385. margin-bottom: 34rpx !important;
  1386. }
  1387. .u-p-b-34 {
  1388. padding-bottom: 34rpx !important;
  1389. }
  1390. .u-margin-bottom-34 {
  1391. margin-bottom: 34rpx !important;
  1392. }
  1393. .u-padding-bottom-34 {
  1394. padding-bottom: 34rpx !important;
  1395. }
  1396. .u-margin-35, .u-m-35 {
  1397. margin: 35rpx !important;
  1398. }
  1399. .u-padding-35, .u-p-35 {
  1400. padding: 35rpx !important;
  1401. }
  1402. .u-m-l-35 {
  1403. margin-left: 35rpx !important;
  1404. }
  1405. .u-p-l-35 {
  1406. padding-left: 35rpx !important;
  1407. }
  1408. .u-margin-left-35 {
  1409. margin-left: 35rpx !important;
  1410. }
  1411. .u-padding-left-35 {
  1412. padding-left: 35rpx !important;
  1413. }
  1414. .u-m-t-35 {
  1415. margin-top: 35rpx !important;
  1416. }
  1417. .u-p-t-35 {
  1418. padding-top: 35rpx !important;
  1419. }
  1420. .u-margin-top-35 {
  1421. margin-top: 35rpx !important;
  1422. }
  1423. .u-padding-top-35 {
  1424. padding-top: 35rpx !important;
  1425. }
  1426. .u-m-r-35 {
  1427. margin-right: 35rpx !important;
  1428. }
  1429. .u-p-r-35 {
  1430. padding-right: 35rpx !important;
  1431. }
  1432. .u-margin-right-35 {
  1433. margin-right: 35rpx !important;
  1434. }
  1435. .u-padding-right-35 {
  1436. padding-right: 35rpx !important;
  1437. }
  1438. .u-m-b-35 {
  1439. margin-bottom: 35rpx !important;
  1440. }
  1441. .u-p-b-35 {
  1442. padding-bottom: 35rpx !important;
  1443. }
  1444. .u-margin-bottom-35 {
  1445. margin-bottom: 35rpx !important;
  1446. }
  1447. .u-padding-bottom-35 {
  1448. padding-bottom: 35rpx !important;
  1449. }
  1450. .u-margin-36, .u-m-36 {
  1451. margin: 36rpx !important;
  1452. }
  1453. .u-padding-36, .u-p-36 {
  1454. padding: 36rpx !important;
  1455. }
  1456. .u-m-l-36 {
  1457. margin-left: 36rpx !important;
  1458. }
  1459. .u-p-l-36 {
  1460. padding-left: 36rpx !important;
  1461. }
  1462. .u-margin-left-36 {
  1463. margin-left: 36rpx !important;
  1464. }
  1465. .u-padding-left-36 {
  1466. padding-left: 36rpx !important;
  1467. }
  1468. .u-m-t-36 {
  1469. margin-top: 36rpx !important;
  1470. }
  1471. .u-p-t-36 {
  1472. padding-top: 36rpx !important;
  1473. }
  1474. .u-margin-top-36 {
  1475. margin-top: 36rpx !important;
  1476. }
  1477. .u-padding-top-36 {
  1478. padding-top: 36rpx !important;
  1479. }
  1480. .u-m-r-36 {
  1481. margin-right: 36rpx !important;
  1482. }
  1483. .u-p-r-36 {
  1484. padding-right: 36rpx !important;
  1485. }
  1486. .u-margin-right-36 {
  1487. margin-right: 36rpx !important;
  1488. }
  1489. .u-padding-right-36 {
  1490. padding-right: 36rpx !important;
  1491. }
  1492. .u-m-b-36 {
  1493. margin-bottom: 36rpx !important;
  1494. }
  1495. .u-p-b-36 {
  1496. padding-bottom: 36rpx !important;
  1497. }
  1498. .u-margin-bottom-36 {
  1499. margin-bottom: 36rpx !important;
  1500. }
  1501. .u-padding-bottom-36 {
  1502. padding-bottom: 36rpx !important;
  1503. }
  1504. .u-margin-38, .u-m-38 {
  1505. margin: 38rpx !important;
  1506. }
  1507. .u-padding-38, .u-p-38 {
  1508. padding: 38rpx !important;
  1509. }
  1510. .u-m-l-38 {
  1511. margin-left: 38rpx !important;
  1512. }
  1513. .u-p-l-38 {
  1514. padding-left: 38rpx !important;
  1515. }
  1516. .u-margin-left-38 {
  1517. margin-left: 38rpx !important;
  1518. }
  1519. .u-padding-left-38 {
  1520. padding-left: 38rpx !important;
  1521. }
  1522. .u-m-t-38 {
  1523. margin-top: 38rpx !important;
  1524. }
  1525. .u-p-t-38 {
  1526. padding-top: 38rpx !important;
  1527. }
  1528. .u-margin-top-38 {
  1529. margin-top: 38rpx !important;
  1530. }
  1531. .u-padding-top-38 {
  1532. padding-top: 38rpx !important;
  1533. }
  1534. .u-m-r-38 {
  1535. margin-right: 38rpx !important;
  1536. }
  1537. .u-p-r-38 {
  1538. padding-right: 38rpx !important;
  1539. }
  1540. .u-margin-right-38 {
  1541. margin-right: 38rpx !important;
  1542. }
  1543. .u-padding-right-38 {
  1544. padding-right: 38rpx !important;
  1545. }
  1546. .u-m-b-38 {
  1547. margin-bottom: 38rpx !important;
  1548. }
  1549. .u-p-b-38 {
  1550. padding-bottom: 38rpx !important;
  1551. }
  1552. .u-margin-bottom-38 {
  1553. margin-bottom: 38rpx !important;
  1554. }
  1555. .u-padding-bottom-38 {
  1556. padding-bottom: 38rpx !important;
  1557. }
  1558. .u-margin-40, .u-m-40 {
  1559. margin: 40rpx !important;
  1560. }
  1561. .u-padding-40, .u-p-40 {
  1562. padding: 40rpx !important;
  1563. }
  1564. .u-m-l-40 {
  1565. margin-left: 40rpx !important;
  1566. }
  1567. .u-p-l-40 {
  1568. padding-left: 40rpx !important;
  1569. }
  1570. .u-margin-left-40 {
  1571. margin-left: 40rpx !important;
  1572. }
  1573. .u-padding-left-40 {
  1574. padding-left: 40rpx !important;
  1575. }
  1576. .u-m-t-40 {
  1577. margin-top: 40rpx !important;
  1578. }
  1579. .u-p-t-40 {
  1580. padding-top: 40rpx !important;
  1581. }
  1582. .u-margin-top-40 {
  1583. margin-top: 40rpx !important;
  1584. }
  1585. .u-padding-top-40 {
  1586. padding-top: 40rpx !important;
  1587. }
  1588. .u-m-r-40 {
  1589. margin-right: 40rpx !important;
  1590. }
  1591. .u-p-r-40 {
  1592. padding-right: 40rpx !important;
  1593. }
  1594. .u-margin-right-40 {
  1595. margin-right: 40rpx !important;
  1596. }
  1597. .u-padding-right-40 {
  1598. padding-right: 40rpx !important;
  1599. }
  1600. .u-m-b-40 {
  1601. margin-bottom: 40rpx !important;
  1602. }
  1603. .u-p-b-40 {
  1604. padding-bottom: 40rpx !important;
  1605. }
  1606. .u-margin-bottom-40 {
  1607. margin-bottom: 40rpx !important;
  1608. }
  1609. .u-padding-bottom-40 {
  1610. padding-bottom: 40rpx !important;
  1611. }
  1612. .u-margin-42, .u-m-42 {
  1613. margin: 42rpx !important;
  1614. }
  1615. .u-padding-42, .u-p-42 {
  1616. padding: 42rpx !important;
  1617. }
  1618. .u-m-l-42 {
  1619. margin-left: 42rpx !important;
  1620. }
  1621. .u-p-l-42 {
  1622. padding-left: 42rpx !important;
  1623. }
  1624. .u-margin-left-42 {
  1625. margin-left: 42rpx !important;
  1626. }
  1627. .u-padding-left-42 {
  1628. padding-left: 42rpx !important;
  1629. }
  1630. .u-m-t-42 {
  1631. margin-top: 42rpx !important;
  1632. }
  1633. .u-p-t-42 {
  1634. padding-top: 42rpx !important;
  1635. }
  1636. .u-margin-top-42 {
  1637. margin-top: 42rpx !important;
  1638. }
  1639. .u-padding-top-42 {
  1640. padding-top: 42rpx !important;
  1641. }
  1642. .u-m-r-42 {
  1643. margin-right: 42rpx !important;
  1644. }
  1645. .u-p-r-42 {
  1646. padding-right: 42rpx !important;
  1647. }
  1648. .u-margin-right-42 {
  1649. margin-right: 42rpx !important;
  1650. }
  1651. .u-padding-right-42 {
  1652. padding-right: 42rpx !important;
  1653. }
  1654. .u-m-b-42 {
  1655. margin-bottom: 42rpx !important;
  1656. }
  1657. .u-p-b-42 {
  1658. padding-bottom: 42rpx !important;
  1659. }
  1660. .u-margin-bottom-42 {
  1661. margin-bottom: 42rpx !important;
  1662. }
  1663. .u-padding-bottom-42 {
  1664. padding-bottom: 42rpx !important;
  1665. }
  1666. .u-margin-44, .u-m-44 {
  1667. margin: 44rpx !important;
  1668. }
  1669. .u-padding-44, .u-p-44 {
  1670. padding: 44rpx !important;
  1671. }
  1672. .u-m-l-44 {
  1673. margin-left: 44rpx !important;
  1674. }
  1675. .u-p-l-44 {
  1676. padding-left: 44rpx !important;
  1677. }
  1678. .u-margin-left-44 {
  1679. margin-left: 44rpx !important;
  1680. }
  1681. .u-padding-left-44 {
  1682. padding-left: 44rpx !important;
  1683. }
  1684. .u-m-t-44 {
  1685. margin-top: 44rpx !important;
  1686. }
  1687. .u-p-t-44 {
  1688. padding-top: 44rpx !important;
  1689. }
  1690. .u-margin-top-44 {
  1691. margin-top: 44rpx !important;
  1692. }
  1693. .u-padding-top-44 {
  1694. padding-top: 44rpx !important;
  1695. }
  1696. .u-m-r-44 {
  1697. margin-right: 44rpx !important;
  1698. }
  1699. .u-p-r-44 {
  1700. padding-right: 44rpx !important;
  1701. }
  1702. .u-margin-right-44 {
  1703. margin-right: 44rpx !important;
  1704. }
  1705. .u-padding-right-44 {
  1706. padding-right: 44rpx !important;
  1707. }
  1708. .u-m-b-44 {
  1709. margin-bottom: 44rpx !important;
  1710. }
  1711. .u-p-b-44 {
  1712. padding-bottom: 44rpx !important;
  1713. }
  1714. .u-margin-bottom-44 {
  1715. margin-bottom: 44rpx !important;
  1716. }
  1717. .u-padding-bottom-44 {
  1718. padding-bottom: 44rpx !important;
  1719. }
  1720. .u-margin-45, .u-m-45 {
  1721. margin: 45rpx !important;
  1722. }
  1723. .u-padding-45, .u-p-45 {
  1724. padding: 45rpx !important;
  1725. }
  1726. .u-m-l-45 {
  1727. margin-left: 45rpx !important;
  1728. }
  1729. .u-p-l-45 {
  1730. padding-left: 45rpx !important;
  1731. }
  1732. .u-margin-left-45 {
  1733. margin-left: 45rpx !important;
  1734. }
  1735. .u-padding-left-45 {
  1736. padding-left: 45rpx !important;
  1737. }
  1738. .u-m-t-45 {
  1739. margin-top: 45rpx !important;
  1740. }
  1741. .u-p-t-45 {
  1742. padding-top: 45rpx !important;
  1743. }
  1744. .u-margin-top-45 {
  1745. margin-top: 45rpx !important;
  1746. }
  1747. .u-padding-top-45 {
  1748. padding-top: 45rpx !important;
  1749. }
  1750. .u-m-r-45 {
  1751. margin-right: 45rpx !important;
  1752. }
  1753. .u-p-r-45 {
  1754. padding-right: 45rpx !important;
  1755. }
  1756. .u-margin-right-45 {
  1757. margin-right: 45rpx !important;
  1758. }
  1759. .u-padding-right-45 {
  1760. padding-right: 45rpx !important;
  1761. }
  1762. .u-m-b-45 {
  1763. margin-bottom: 45rpx !important;
  1764. }
  1765. .u-p-b-45 {
  1766. padding-bottom: 45rpx !important;
  1767. }
  1768. .u-margin-bottom-45 {
  1769. margin-bottom: 45rpx !important;
  1770. }
  1771. .u-padding-bottom-45 {
  1772. padding-bottom: 45rpx !important;
  1773. }
  1774. .u-margin-46, .u-m-46 {
  1775. margin: 46rpx !important;
  1776. }
  1777. .u-padding-46, .u-p-46 {
  1778. padding: 46rpx !important;
  1779. }
  1780. .u-m-l-46 {
  1781. margin-left: 46rpx !important;
  1782. }
  1783. .u-p-l-46 {
  1784. padding-left: 46rpx !important;
  1785. }
  1786. .u-margin-left-46 {
  1787. margin-left: 46rpx !important;
  1788. }
  1789. .u-padding-left-46 {
  1790. padding-left: 46rpx !important;
  1791. }
  1792. .u-m-t-46 {
  1793. margin-top: 46rpx !important;
  1794. }
  1795. .u-p-t-46 {
  1796. padding-top: 46rpx !important;
  1797. }
  1798. .u-margin-top-46 {
  1799. margin-top: 46rpx !important;
  1800. }
  1801. .u-padding-top-46 {
  1802. padding-top: 46rpx !important;
  1803. }
  1804. .u-m-r-46 {
  1805. margin-right: 46rpx !important;
  1806. }
  1807. .u-p-r-46 {
  1808. padding-right: 46rpx !important;
  1809. }
  1810. .u-margin-right-46 {
  1811. margin-right: 46rpx !important;
  1812. }
  1813. .u-padding-right-46 {
  1814. padding-right: 46rpx !important;
  1815. }
  1816. .u-m-b-46 {
  1817. margin-bottom: 46rpx !important;
  1818. }
  1819. .u-p-b-46 {
  1820. padding-bottom: 46rpx !important;
  1821. }
  1822. .u-margin-bottom-46 {
  1823. margin-bottom: 46rpx !important;
  1824. }
  1825. .u-padding-bottom-46 {
  1826. padding-bottom: 46rpx !important;
  1827. }
  1828. .u-margin-48, .u-m-48 {
  1829. margin: 48rpx !important;
  1830. }
  1831. .u-padding-48, .u-p-48 {
  1832. padding: 48rpx !important;
  1833. }
  1834. .u-m-l-48 {
  1835. margin-left: 48rpx !important;
  1836. }
  1837. .u-p-l-48 {
  1838. padding-left: 48rpx !important;
  1839. }
  1840. .u-margin-left-48 {
  1841. margin-left: 48rpx !important;
  1842. }
  1843. .u-padding-left-48 {
  1844. padding-left: 48rpx !important;
  1845. }
  1846. .u-m-t-48 {
  1847. margin-top: 48rpx !important;
  1848. }
  1849. .u-p-t-48 {
  1850. padding-top: 48rpx !important;
  1851. }
  1852. .u-margin-top-48 {
  1853. margin-top: 48rpx !important;
  1854. }
  1855. .u-padding-top-48 {
  1856. padding-top: 48rpx !important;
  1857. }
  1858. .u-m-r-48 {
  1859. margin-right: 48rpx !important;
  1860. }
  1861. .u-p-r-48 {
  1862. padding-right: 48rpx !important;
  1863. }
  1864. .u-margin-right-48 {
  1865. margin-right: 48rpx !important;
  1866. }
  1867. .u-padding-right-48 {
  1868. padding-right: 48rpx !important;
  1869. }
  1870. .u-m-b-48 {
  1871. margin-bottom: 48rpx !important;
  1872. }
  1873. .u-p-b-48 {
  1874. padding-bottom: 48rpx !important;
  1875. }
  1876. .u-margin-bottom-48 {
  1877. margin-bottom: 48rpx !important;
  1878. }
  1879. .u-padding-bottom-48 {
  1880. padding-bottom: 48rpx !important;
  1881. }
  1882. .u-margin-50, .u-m-50 {
  1883. margin: 50rpx !important;
  1884. }
  1885. .u-padding-50, .u-p-50 {
  1886. padding: 50rpx !important;
  1887. }
  1888. .u-m-l-50 {
  1889. margin-left: 50rpx !important;
  1890. }
  1891. .u-p-l-50 {
  1892. padding-left: 50rpx !important;
  1893. }
  1894. .u-margin-left-50 {
  1895. margin-left: 50rpx !important;
  1896. }
  1897. .u-padding-left-50 {
  1898. padding-left: 50rpx !important;
  1899. }
  1900. .u-m-t-50 {
  1901. margin-top: 50rpx !important;
  1902. }
  1903. .u-p-t-50 {
  1904. padding-top: 50rpx !important;
  1905. }
  1906. .u-margin-top-50 {
  1907. margin-top: 50rpx !important;
  1908. }
  1909. .u-padding-top-50 {
  1910. padding-top: 50rpx !important;
  1911. }
  1912. .u-m-r-50 {
  1913. margin-right: 50rpx !important;
  1914. }
  1915. .u-p-r-50 {
  1916. padding-right: 50rpx !important;
  1917. }
  1918. .u-margin-right-50 {
  1919. margin-right: 50rpx !important;
  1920. }
  1921. .u-padding-right-50 {
  1922. padding-right: 50rpx !important;
  1923. }
  1924. .u-m-b-50 {
  1925. margin-bottom: 50rpx !important;
  1926. }
  1927. .u-p-b-50 {
  1928. padding-bottom: 50rpx !important;
  1929. }
  1930. .u-margin-bottom-50 {
  1931. margin-bottom: 50rpx !important;
  1932. }
  1933. .u-padding-bottom-50 {
  1934. padding-bottom: 50rpx !important;
  1935. }
  1936. .u-margin-52, .u-m-52 {
  1937. margin: 52rpx !important;
  1938. }
  1939. .u-padding-52, .u-p-52 {
  1940. padding: 52rpx !important;
  1941. }
  1942. .u-m-l-52 {
  1943. margin-left: 52rpx !important;
  1944. }
  1945. .u-p-l-52 {
  1946. padding-left: 52rpx !important;
  1947. }
  1948. .u-margin-left-52 {
  1949. margin-left: 52rpx !important;
  1950. }
  1951. .u-padding-left-52 {
  1952. padding-left: 52rpx !important;
  1953. }
  1954. .u-m-t-52 {
  1955. margin-top: 52rpx !important;
  1956. }
  1957. .u-p-t-52 {
  1958. padding-top: 52rpx !important;
  1959. }
  1960. .u-margin-top-52 {
  1961. margin-top: 52rpx !important;
  1962. }
  1963. .u-padding-top-52 {
  1964. padding-top: 52rpx !important;
  1965. }
  1966. .u-m-r-52 {
  1967. margin-right: 52rpx !important;
  1968. }
  1969. .u-p-r-52 {
  1970. padding-right: 52rpx !important;
  1971. }
  1972. .u-margin-right-52 {
  1973. margin-right: 52rpx !important;
  1974. }
  1975. .u-padding-right-52 {
  1976. padding-right: 52rpx !important;
  1977. }
  1978. .u-m-b-52 {
  1979. margin-bottom: 52rpx !important;
  1980. }
  1981. .u-p-b-52 {
  1982. padding-bottom: 52rpx !important;
  1983. }
  1984. .u-margin-bottom-52 {
  1985. margin-bottom: 52rpx !important;
  1986. }
  1987. .u-padding-bottom-52 {
  1988. padding-bottom: 52rpx !important;
  1989. }
  1990. .u-margin-54, .u-m-54 {
  1991. margin: 54rpx !important;
  1992. }
  1993. .u-padding-54, .u-p-54 {
  1994. padding: 54rpx !important;
  1995. }
  1996. .u-m-l-54 {
  1997. margin-left: 54rpx !important;
  1998. }
  1999. .u-p-l-54 {
  2000. padding-left: 54rpx !important;
  2001. }
  2002. .u-margin-left-54 {
  2003. margin-left: 54rpx !important;
  2004. }
  2005. .u-padding-left-54 {
  2006. padding-left: 54rpx !important;
  2007. }
  2008. .u-m-t-54 {
  2009. margin-top: 54rpx !important;
  2010. }
  2011. .u-p-t-54 {
  2012. padding-top: 54rpx !important;
  2013. }
  2014. .u-margin-top-54 {
  2015. margin-top: 54rpx !important;
  2016. }
  2017. .u-padding-top-54 {
  2018. padding-top: 54rpx !important;
  2019. }
  2020. .u-m-r-54 {
  2021. margin-right: 54rpx !important;
  2022. }
  2023. .u-p-r-54 {
  2024. padding-right: 54rpx !important;
  2025. }
  2026. .u-margin-right-54 {
  2027. margin-right: 54rpx !important;
  2028. }
  2029. .u-padding-right-54 {
  2030. padding-right: 54rpx !important;
  2031. }
  2032. .u-m-b-54 {
  2033. margin-bottom: 54rpx !important;
  2034. }
  2035. .u-p-b-54 {
  2036. padding-bottom: 54rpx !important;
  2037. }
  2038. .u-margin-bottom-54 {
  2039. margin-bottom: 54rpx !important;
  2040. }
  2041. .u-padding-bottom-54 {
  2042. padding-bottom: 54rpx !important;
  2043. }
  2044. .u-margin-55, .u-m-55 {
  2045. margin: 55rpx !important;
  2046. }
  2047. .u-padding-55, .u-p-55 {
  2048. padding: 55rpx !important;
  2049. }
  2050. .u-m-l-55 {
  2051. margin-left: 55rpx !important;
  2052. }
  2053. .u-p-l-55 {
  2054. padding-left: 55rpx !important;
  2055. }
  2056. .u-margin-left-55 {
  2057. margin-left: 55rpx !important;
  2058. }
  2059. .u-padding-left-55 {
  2060. padding-left: 55rpx !important;
  2061. }
  2062. .u-m-t-55 {
  2063. margin-top: 55rpx !important;
  2064. }
  2065. .u-p-t-55 {
  2066. padding-top: 55rpx !important;
  2067. }
  2068. .u-margin-top-55 {
  2069. margin-top: 55rpx !important;
  2070. }
  2071. .u-padding-top-55 {
  2072. padding-top: 55rpx !important;
  2073. }
  2074. .u-m-r-55 {
  2075. margin-right: 55rpx !important;
  2076. }
  2077. .u-p-r-55 {
  2078. padding-right: 55rpx !important;
  2079. }
  2080. .u-margin-right-55 {
  2081. margin-right: 55rpx !important;
  2082. }
  2083. .u-padding-right-55 {
  2084. padding-right: 55rpx !important;
  2085. }
  2086. .u-m-b-55 {
  2087. margin-bottom: 55rpx !important;
  2088. }
  2089. .u-p-b-55 {
  2090. padding-bottom: 55rpx !important;
  2091. }
  2092. .u-margin-bottom-55 {
  2093. margin-bottom: 55rpx !important;
  2094. }
  2095. .u-padding-bottom-55 {
  2096. padding-bottom: 55rpx !important;
  2097. }
  2098. .u-margin-56, .u-m-56 {
  2099. margin: 56rpx !important;
  2100. }
  2101. .u-padding-56, .u-p-56 {
  2102. padding: 56rpx !important;
  2103. }
  2104. .u-m-l-56 {
  2105. margin-left: 56rpx !important;
  2106. }
  2107. .u-p-l-56 {
  2108. padding-left: 56rpx !important;
  2109. }
  2110. .u-margin-left-56 {
  2111. margin-left: 56rpx !important;
  2112. }
  2113. .u-padding-left-56 {
  2114. padding-left: 56rpx !important;
  2115. }
  2116. .u-m-t-56 {
  2117. margin-top: 56rpx !important;
  2118. }
  2119. .u-p-t-56 {
  2120. padding-top: 56rpx !important;
  2121. }
  2122. .u-margin-top-56 {
  2123. margin-top: 56rpx !important;
  2124. }
  2125. .u-padding-top-56 {
  2126. padding-top: 56rpx !important;
  2127. }
  2128. .u-m-r-56 {
  2129. margin-right: 56rpx !important;
  2130. }
  2131. .u-p-r-56 {
  2132. padding-right: 56rpx !important;
  2133. }
  2134. .u-margin-right-56 {
  2135. margin-right: 56rpx !important;
  2136. }
  2137. .u-padding-right-56 {
  2138. padding-right: 56rpx !important;
  2139. }
  2140. .u-m-b-56 {
  2141. margin-bottom: 56rpx !important;
  2142. }
  2143. .u-p-b-56 {
  2144. padding-bottom: 56rpx !important;
  2145. }
  2146. .u-margin-bottom-56 {
  2147. margin-bottom: 56rpx !important;
  2148. }
  2149. .u-padding-bottom-56 {
  2150. padding-bottom: 56rpx !important;
  2151. }
  2152. .u-margin-58, .u-m-58 {
  2153. margin: 58rpx !important;
  2154. }
  2155. .u-padding-58, .u-p-58 {
  2156. padding: 58rpx !important;
  2157. }
  2158. .u-m-l-58 {
  2159. margin-left: 58rpx !important;
  2160. }
  2161. .u-p-l-58 {
  2162. padding-left: 58rpx !important;
  2163. }
  2164. .u-margin-left-58 {
  2165. margin-left: 58rpx !important;
  2166. }
  2167. .u-padding-left-58 {
  2168. padding-left: 58rpx !important;
  2169. }
  2170. .u-m-t-58 {
  2171. margin-top: 58rpx !important;
  2172. }
  2173. .u-p-t-58 {
  2174. padding-top: 58rpx !important;
  2175. }
  2176. .u-margin-top-58 {
  2177. margin-top: 58rpx !important;
  2178. }
  2179. .u-padding-top-58 {
  2180. padding-top: 58rpx !important;
  2181. }
  2182. .u-m-r-58 {
  2183. margin-right: 58rpx !important;
  2184. }
  2185. .u-p-r-58 {
  2186. padding-right: 58rpx !important;
  2187. }
  2188. .u-margin-right-58 {
  2189. margin-right: 58rpx !important;
  2190. }
  2191. .u-padding-right-58 {
  2192. padding-right: 58rpx !important;
  2193. }
  2194. .u-m-b-58 {
  2195. margin-bottom: 58rpx !important;
  2196. }
  2197. .u-p-b-58 {
  2198. padding-bottom: 58rpx !important;
  2199. }
  2200. .u-margin-bottom-58 {
  2201. margin-bottom: 58rpx !important;
  2202. }
  2203. .u-padding-bottom-58 {
  2204. padding-bottom: 58rpx !important;
  2205. }
  2206. .u-margin-60, .u-m-60 {
  2207. margin: 60rpx !important;
  2208. }
  2209. .u-padding-60, .u-p-60 {
  2210. padding: 60rpx !important;
  2211. }
  2212. .u-m-l-60 {
  2213. margin-left: 60rpx !important;
  2214. }
  2215. .u-p-l-60 {
  2216. padding-left: 60rpx !important;
  2217. }
  2218. .u-margin-left-60 {
  2219. margin-left: 60rpx !important;
  2220. }
  2221. .u-padding-left-60 {
  2222. padding-left: 60rpx !important;
  2223. }
  2224. .u-m-t-60 {
  2225. margin-top: 60rpx !important;
  2226. }
  2227. .u-p-t-60 {
  2228. padding-top: 60rpx !important;
  2229. }
  2230. .u-margin-top-60 {
  2231. margin-top: 60rpx !important;
  2232. }
  2233. .u-padding-top-60 {
  2234. padding-top: 60rpx !important;
  2235. }
  2236. .u-m-r-60 {
  2237. margin-right: 60rpx !important;
  2238. }
  2239. .u-p-r-60 {
  2240. padding-right: 60rpx !important;
  2241. }
  2242. .u-margin-right-60 {
  2243. margin-right: 60rpx !important;
  2244. }
  2245. .u-padding-right-60 {
  2246. padding-right: 60rpx !important;
  2247. }
  2248. .u-m-b-60 {
  2249. margin-bottom: 60rpx !important;
  2250. }
  2251. .u-p-b-60 {
  2252. padding-bottom: 60rpx !important;
  2253. }
  2254. .u-margin-bottom-60 {
  2255. margin-bottom: 60rpx !important;
  2256. }
  2257. .u-padding-bottom-60 {
  2258. padding-bottom: 60rpx !important;
  2259. }
  2260. .u-margin-62, .u-m-62 {
  2261. margin: 62rpx !important;
  2262. }
  2263. .u-padding-62, .u-p-62 {
  2264. padding: 62rpx !important;
  2265. }
  2266. .u-m-l-62 {
  2267. margin-left: 62rpx !important;
  2268. }
  2269. .u-p-l-62 {
  2270. padding-left: 62rpx !important;
  2271. }
  2272. .u-margin-left-62 {
  2273. margin-left: 62rpx !important;
  2274. }
  2275. .u-padding-left-62 {
  2276. padding-left: 62rpx !important;
  2277. }
  2278. .u-m-t-62 {
  2279. margin-top: 62rpx !important;
  2280. }
  2281. .u-p-t-62 {
  2282. padding-top: 62rpx !important;
  2283. }
  2284. .u-margin-top-62 {
  2285. margin-top: 62rpx !important;
  2286. }
  2287. .u-padding-top-62 {
  2288. padding-top: 62rpx !important;
  2289. }
  2290. .u-m-r-62 {
  2291. margin-right: 62rpx !important;
  2292. }
  2293. .u-p-r-62 {
  2294. padding-right: 62rpx !important;
  2295. }
  2296. .u-margin-right-62 {
  2297. margin-right: 62rpx !important;
  2298. }
  2299. .u-padding-right-62 {
  2300. padding-right: 62rpx !important;
  2301. }
  2302. .u-m-b-62 {
  2303. margin-bottom: 62rpx !important;
  2304. }
  2305. .u-p-b-62 {
  2306. padding-bottom: 62rpx !important;
  2307. }
  2308. .u-margin-bottom-62 {
  2309. margin-bottom: 62rpx !important;
  2310. }
  2311. .u-padding-bottom-62 {
  2312. padding-bottom: 62rpx !important;
  2313. }
  2314. .u-margin-64, .u-m-64 {
  2315. margin: 64rpx !important;
  2316. }
  2317. .u-padding-64, .u-p-64 {
  2318. padding: 64rpx !important;
  2319. }
  2320. .u-m-l-64 {
  2321. margin-left: 64rpx !important;
  2322. }
  2323. .u-p-l-64 {
  2324. padding-left: 64rpx !important;
  2325. }
  2326. .u-margin-left-64 {
  2327. margin-left: 64rpx !important;
  2328. }
  2329. .u-padding-left-64 {
  2330. padding-left: 64rpx !important;
  2331. }
  2332. .u-m-t-64 {
  2333. margin-top: 64rpx !important;
  2334. }
  2335. .u-p-t-64 {
  2336. padding-top: 64rpx !important;
  2337. }
  2338. .u-margin-top-64 {
  2339. margin-top: 64rpx !important;
  2340. }
  2341. .u-padding-top-64 {
  2342. padding-top: 64rpx !important;
  2343. }
  2344. .u-m-r-64 {
  2345. margin-right: 64rpx !important;
  2346. }
  2347. .u-p-r-64 {
  2348. padding-right: 64rpx !important;
  2349. }
  2350. .u-margin-right-64 {
  2351. margin-right: 64rpx !important;
  2352. }
  2353. .u-padding-right-64 {
  2354. padding-right: 64rpx !important;
  2355. }
  2356. .u-m-b-64 {
  2357. margin-bottom: 64rpx !important;
  2358. }
  2359. .u-p-b-64 {
  2360. padding-bottom: 64rpx !important;
  2361. }
  2362. .u-margin-bottom-64 {
  2363. margin-bottom: 64rpx !important;
  2364. }
  2365. .u-padding-bottom-64 {
  2366. padding-bottom: 64rpx !important;
  2367. }
  2368. .u-margin-65, .u-m-65 {
  2369. margin: 65rpx !important;
  2370. }
  2371. .u-padding-65, .u-p-65 {
  2372. padding: 65rpx !important;
  2373. }
  2374. .u-m-l-65 {
  2375. margin-left: 65rpx !important;
  2376. }
  2377. .u-p-l-65 {
  2378. padding-left: 65rpx !important;
  2379. }
  2380. .u-margin-left-65 {
  2381. margin-left: 65rpx !important;
  2382. }
  2383. .u-padding-left-65 {
  2384. padding-left: 65rpx !important;
  2385. }
  2386. .u-m-t-65 {
  2387. margin-top: 65rpx !important;
  2388. }
  2389. .u-p-t-65 {
  2390. padding-top: 65rpx !important;
  2391. }
  2392. .u-margin-top-65 {
  2393. margin-top: 65rpx !important;
  2394. }
  2395. .u-padding-top-65 {
  2396. padding-top: 65rpx !important;
  2397. }
  2398. .u-m-r-65 {
  2399. margin-right: 65rpx !important;
  2400. }
  2401. .u-p-r-65 {
  2402. padding-right: 65rpx !important;
  2403. }
  2404. .u-margin-right-65 {
  2405. margin-right: 65rpx !important;
  2406. }
  2407. .u-padding-right-65 {
  2408. padding-right: 65rpx !important;
  2409. }
  2410. .u-m-b-65 {
  2411. margin-bottom: 65rpx !important;
  2412. }
  2413. .u-p-b-65 {
  2414. padding-bottom: 65rpx !important;
  2415. }
  2416. .u-margin-bottom-65 {
  2417. margin-bottom: 65rpx !important;
  2418. }
  2419. .u-padding-bottom-65 {
  2420. padding-bottom: 65rpx !important;
  2421. }
  2422. .u-margin-66, .u-m-66 {
  2423. margin: 66rpx !important;
  2424. }
  2425. .u-padding-66, .u-p-66 {
  2426. padding: 66rpx !important;
  2427. }
  2428. .u-m-l-66 {
  2429. margin-left: 66rpx !important;
  2430. }
  2431. .u-p-l-66 {
  2432. padding-left: 66rpx !important;
  2433. }
  2434. .u-margin-left-66 {
  2435. margin-left: 66rpx !important;
  2436. }
  2437. .u-padding-left-66 {
  2438. padding-left: 66rpx !important;
  2439. }
  2440. .u-m-t-66 {
  2441. margin-top: 66rpx !important;
  2442. }
  2443. .u-p-t-66 {
  2444. padding-top: 66rpx !important;
  2445. }
  2446. .u-margin-top-66 {
  2447. margin-top: 66rpx !important;
  2448. }
  2449. .u-padding-top-66 {
  2450. padding-top: 66rpx !important;
  2451. }
  2452. .u-m-r-66 {
  2453. margin-right: 66rpx !important;
  2454. }
  2455. .u-p-r-66 {
  2456. padding-right: 66rpx !important;
  2457. }
  2458. .u-margin-right-66 {
  2459. margin-right: 66rpx !important;
  2460. }
  2461. .u-padding-right-66 {
  2462. padding-right: 66rpx !important;
  2463. }
  2464. .u-m-b-66 {
  2465. margin-bottom: 66rpx !important;
  2466. }
  2467. .u-p-b-66 {
  2468. padding-bottom: 66rpx !important;
  2469. }
  2470. .u-margin-bottom-66 {
  2471. margin-bottom: 66rpx !important;
  2472. }
  2473. .u-padding-bottom-66 {
  2474. padding-bottom: 66rpx !important;
  2475. }
  2476. .u-margin-68, .u-m-68 {
  2477. margin: 68rpx !important;
  2478. }
  2479. .u-padding-68, .u-p-68 {
  2480. padding: 68rpx !important;
  2481. }
  2482. .u-m-l-68 {
  2483. margin-left: 68rpx !important;
  2484. }
  2485. .u-p-l-68 {
  2486. padding-left: 68rpx !important;
  2487. }
  2488. .u-margin-left-68 {
  2489. margin-left: 68rpx !important;
  2490. }
  2491. .u-padding-left-68 {
  2492. padding-left: 68rpx !important;
  2493. }
  2494. .u-m-t-68 {
  2495. margin-top: 68rpx !important;
  2496. }
  2497. .u-p-t-68 {
  2498. padding-top: 68rpx !important;
  2499. }
  2500. .u-margin-top-68 {
  2501. margin-top: 68rpx !important;
  2502. }
  2503. .u-padding-top-68 {
  2504. padding-top: 68rpx !important;
  2505. }
  2506. .u-m-r-68 {
  2507. margin-right: 68rpx !important;
  2508. }
  2509. .u-p-r-68 {
  2510. padding-right: 68rpx !important;
  2511. }
  2512. .u-margin-right-68 {
  2513. margin-right: 68rpx !important;
  2514. }
  2515. .u-padding-right-68 {
  2516. padding-right: 68rpx !important;
  2517. }
  2518. .u-m-b-68 {
  2519. margin-bottom: 68rpx !important;
  2520. }
  2521. .u-p-b-68 {
  2522. padding-bottom: 68rpx !important;
  2523. }
  2524. .u-margin-bottom-68 {
  2525. margin-bottom: 68rpx !important;
  2526. }
  2527. .u-padding-bottom-68 {
  2528. padding-bottom: 68rpx !important;
  2529. }
  2530. .u-margin-70, .u-m-70 {
  2531. margin: 70rpx !important;
  2532. }
  2533. .u-padding-70, .u-p-70 {
  2534. padding: 70rpx !important;
  2535. }
  2536. .u-m-l-70 {
  2537. margin-left: 70rpx !important;
  2538. }
  2539. .u-p-l-70 {
  2540. padding-left: 70rpx !important;
  2541. }
  2542. .u-margin-left-70 {
  2543. margin-left: 70rpx !important;
  2544. }
  2545. .u-padding-left-70 {
  2546. padding-left: 70rpx !important;
  2547. }
  2548. .u-m-t-70 {
  2549. margin-top: 70rpx !important;
  2550. }
  2551. .u-p-t-70 {
  2552. padding-top: 70rpx !important;
  2553. }
  2554. .u-margin-top-70 {
  2555. margin-top: 70rpx !important;
  2556. }
  2557. .u-padding-top-70 {
  2558. padding-top: 70rpx !important;
  2559. }
  2560. .u-m-r-70 {
  2561. margin-right: 70rpx !important;
  2562. }
  2563. .u-p-r-70 {
  2564. padding-right: 70rpx !important;
  2565. }
  2566. .u-margin-right-70 {
  2567. margin-right: 70rpx !important;
  2568. }
  2569. .u-padding-right-70 {
  2570. padding-right: 70rpx !important;
  2571. }
  2572. .u-m-b-70 {
  2573. margin-bottom: 70rpx !important;
  2574. }
  2575. .u-p-b-70 {
  2576. padding-bottom: 70rpx !important;
  2577. }
  2578. .u-margin-bottom-70 {
  2579. margin-bottom: 70rpx !important;
  2580. }
  2581. .u-padding-bottom-70 {
  2582. padding-bottom: 70rpx !important;
  2583. }
  2584. .u-margin-72, .u-m-72 {
  2585. margin: 72rpx !important;
  2586. }
  2587. .u-padding-72, .u-p-72 {
  2588. padding: 72rpx !important;
  2589. }
  2590. .u-m-l-72 {
  2591. margin-left: 72rpx !important;
  2592. }
  2593. .u-p-l-72 {
  2594. padding-left: 72rpx !important;
  2595. }
  2596. .u-margin-left-72 {
  2597. margin-left: 72rpx !important;
  2598. }
  2599. .u-padding-left-72 {
  2600. padding-left: 72rpx !important;
  2601. }
  2602. .u-m-t-72 {
  2603. margin-top: 72rpx !important;
  2604. }
  2605. .u-p-t-72 {
  2606. padding-top: 72rpx !important;
  2607. }
  2608. .u-margin-top-72 {
  2609. margin-top: 72rpx !important;
  2610. }
  2611. .u-padding-top-72 {
  2612. padding-top: 72rpx !important;
  2613. }
  2614. .u-m-r-72 {
  2615. margin-right: 72rpx !important;
  2616. }
  2617. .u-p-r-72 {
  2618. padding-right: 72rpx !important;
  2619. }
  2620. .u-margin-right-72 {
  2621. margin-right: 72rpx !important;
  2622. }
  2623. .u-padding-right-72 {
  2624. padding-right: 72rpx !important;
  2625. }
  2626. .u-m-b-72 {
  2627. margin-bottom: 72rpx !important;
  2628. }
  2629. .u-p-b-72 {
  2630. padding-bottom: 72rpx !important;
  2631. }
  2632. .u-margin-bottom-72 {
  2633. margin-bottom: 72rpx !important;
  2634. }
  2635. .u-padding-bottom-72 {
  2636. padding-bottom: 72rpx !important;
  2637. }
  2638. .u-margin-74, .u-m-74 {
  2639. margin: 74rpx !important;
  2640. }
  2641. .u-padding-74, .u-p-74 {
  2642. padding: 74rpx !important;
  2643. }
  2644. .u-m-l-74 {
  2645. margin-left: 74rpx !important;
  2646. }
  2647. .u-p-l-74 {
  2648. padding-left: 74rpx !important;
  2649. }
  2650. .u-margin-left-74 {
  2651. margin-left: 74rpx !important;
  2652. }
  2653. .u-padding-left-74 {
  2654. padding-left: 74rpx !important;
  2655. }
  2656. .u-m-t-74 {
  2657. margin-top: 74rpx !important;
  2658. }
  2659. .u-p-t-74 {
  2660. padding-top: 74rpx !important;
  2661. }
  2662. .u-margin-top-74 {
  2663. margin-top: 74rpx !important;
  2664. }
  2665. .u-padding-top-74 {
  2666. padding-top: 74rpx !important;
  2667. }
  2668. .u-m-r-74 {
  2669. margin-right: 74rpx !important;
  2670. }
  2671. .u-p-r-74 {
  2672. padding-right: 74rpx !important;
  2673. }
  2674. .u-margin-right-74 {
  2675. margin-right: 74rpx !important;
  2676. }
  2677. .u-padding-right-74 {
  2678. padding-right: 74rpx !important;
  2679. }
  2680. .u-m-b-74 {
  2681. margin-bottom: 74rpx !important;
  2682. }
  2683. .u-p-b-74 {
  2684. padding-bottom: 74rpx !important;
  2685. }
  2686. .u-margin-bottom-74 {
  2687. margin-bottom: 74rpx !important;
  2688. }
  2689. .u-padding-bottom-74 {
  2690. padding-bottom: 74rpx !important;
  2691. }
  2692. .u-margin-75, .u-m-75 {
  2693. margin: 75rpx !important;
  2694. }
  2695. .u-padding-75, .u-p-75 {
  2696. padding: 75rpx !important;
  2697. }
  2698. .u-m-l-75 {
  2699. margin-left: 75rpx !important;
  2700. }
  2701. .u-p-l-75 {
  2702. padding-left: 75rpx !important;
  2703. }
  2704. .u-margin-left-75 {
  2705. margin-left: 75rpx !important;
  2706. }
  2707. .u-padding-left-75 {
  2708. padding-left: 75rpx !important;
  2709. }
  2710. .u-m-t-75 {
  2711. margin-top: 75rpx !important;
  2712. }
  2713. .u-p-t-75 {
  2714. padding-top: 75rpx !important;
  2715. }
  2716. .u-margin-top-75 {
  2717. margin-top: 75rpx !important;
  2718. }
  2719. .u-padding-top-75 {
  2720. padding-top: 75rpx !important;
  2721. }
  2722. .u-m-r-75 {
  2723. margin-right: 75rpx !important;
  2724. }
  2725. .u-p-r-75 {
  2726. padding-right: 75rpx !important;
  2727. }
  2728. .u-margin-right-75 {
  2729. margin-right: 75rpx !important;
  2730. }
  2731. .u-padding-right-75 {
  2732. padding-right: 75rpx !important;
  2733. }
  2734. .u-m-b-75 {
  2735. margin-bottom: 75rpx !important;
  2736. }
  2737. .u-p-b-75 {
  2738. padding-bottom: 75rpx !important;
  2739. }
  2740. .u-margin-bottom-75 {
  2741. margin-bottom: 75rpx !important;
  2742. }
  2743. .u-padding-bottom-75 {
  2744. padding-bottom: 75rpx !important;
  2745. }
  2746. .u-margin-76, .u-m-76 {
  2747. margin: 76rpx !important;
  2748. }
  2749. .u-padding-76, .u-p-76 {
  2750. padding: 76rpx !important;
  2751. }
  2752. .u-m-l-76 {
  2753. margin-left: 76rpx !important;
  2754. }
  2755. .u-p-l-76 {
  2756. padding-left: 76rpx !important;
  2757. }
  2758. .u-margin-left-76 {
  2759. margin-left: 76rpx !important;
  2760. }
  2761. .u-padding-left-76 {
  2762. padding-left: 76rpx !important;
  2763. }
  2764. .u-m-t-76 {
  2765. margin-top: 76rpx !important;
  2766. }
  2767. .u-p-t-76 {
  2768. padding-top: 76rpx !important;
  2769. }
  2770. .u-margin-top-76 {
  2771. margin-top: 76rpx !important;
  2772. }
  2773. .u-padding-top-76 {
  2774. padding-top: 76rpx !important;
  2775. }
  2776. .u-m-r-76 {
  2777. margin-right: 76rpx !important;
  2778. }
  2779. .u-p-r-76 {
  2780. padding-right: 76rpx !important;
  2781. }
  2782. .u-margin-right-76 {
  2783. margin-right: 76rpx !important;
  2784. }
  2785. .u-padding-right-76 {
  2786. padding-right: 76rpx !important;
  2787. }
  2788. .u-m-b-76 {
  2789. margin-bottom: 76rpx !important;
  2790. }
  2791. .u-p-b-76 {
  2792. padding-bottom: 76rpx !important;
  2793. }
  2794. .u-margin-bottom-76 {
  2795. margin-bottom: 76rpx !important;
  2796. }
  2797. .u-padding-bottom-76 {
  2798. padding-bottom: 76rpx !important;
  2799. }
  2800. .u-margin-78, .u-m-78 {
  2801. margin: 78rpx !important;
  2802. }
  2803. .u-padding-78, .u-p-78 {
  2804. padding: 78rpx !important;
  2805. }
  2806. .u-m-l-78 {
  2807. margin-left: 78rpx !important;
  2808. }
  2809. .u-p-l-78 {
  2810. padding-left: 78rpx !important;
  2811. }
  2812. .u-margin-left-78 {
  2813. margin-left: 78rpx !important;
  2814. }
  2815. .u-padding-left-78 {
  2816. padding-left: 78rpx !important;
  2817. }
  2818. .u-m-t-78 {
  2819. margin-top: 78rpx !important;
  2820. }
  2821. .u-p-t-78 {
  2822. padding-top: 78rpx !important;
  2823. }
  2824. .u-margin-top-78 {
  2825. margin-top: 78rpx !important;
  2826. }
  2827. .u-padding-top-78 {
  2828. padding-top: 78rpx !important;
  2829. }
  2830. .u-m-r-78 {
  2831. margin-right: 78rpx !important;
  2832. }
  2833. .u-p-r-78 {
  2834. padding-right: 78rpx !important;
  2835. }
  2836. .u-margin-right-78 {
  2837. margin-right: 78rpx !important;
  2838. }
  2839. .u-padding-right-78 {
  2840. padding-right: 78rpx !important;
  2841. }
  2842. .u-m-b-78 {
  2843. margin-bottom: 78rpx !important;
  2844. }
  2845. .u-p-b-78 {
  2846. padding-bottom: 78rpx !important;
  2847. }
  2848. .u-margin-bottom-78 {
  2849. margin-bottom: 78rpx !important;
  2850. }
  2851. .u-padding-bottom-78 {
  2852. padding-bottom: 78rpx !important;
  2853. }
  2854. .u-margin-80, .u-m-80 {
  2855. margin: 80rpx !important;
  2856. }
  2857. .u-padding-80, .u-p-80 {
  2858. padding: 80rpx !important;
  2859. }
  2860. .u-m-l-80 {
  2861. margin-left: 80rpx !important;
  2862. }
  2863. .u-p-l-80 {
  2864. padding-left: 80rpx !important;
  2865. }
  2866. .u-margin-left-80 {
  2867. margin-left: 80rpx !important;
  2868. }
  2869. .u-padding-left-80 {
  2870. padding-left: 80rpx !important;
  2871. }
  2872. .u-m-t-80 {
  2873. margin-top: 80rpx !important;
  2874. }
  2875. .u-p-t-80 {
  2876. padding-top: 80rpx !important;
  2877. }
  2878. .u-margin-top-80 {
  2879. margin-top: 80rpx !important;
  2880. }
  2881. .u-padding-top-80 {
  2882. padding-top: 80rpx !important;
  2883. }
  2884. .u-m-r-80 {
  2885. margin-right: 80rpx !important;
  2886. }
  2887. .u-p-r-80 {
  2888. padding-right: 80rpx !important;
  2889. }
  2890. .u-margin-right-80 {
  2891. margin-right: 80rpx !important;
  2892. }
  2893. .u-padding-right-80 {
  2894. padding-right: 80rpx !important;
  2895. }
  2896. .u-m-b-80 {
  2897. margin-bottom: 80rpx !important;
  2898. }
  2899. .u-p-b-80 {
  2900. padding-bottom: 80rpx !important;
  2901. }
  2902. .u-margin-bottom-80 {
  2903. margin-bottom: 80rpx !important;
  2904. }
  2905. .u-padding-bottom-80 {
  2906. padding-bottom: 80rpx !important;
  2907. }
  2908. .u-reset-nvue {
  2909. flex-direction: row;
  2910. align-items: center;
  2911. }
  2912. .u-type-primary-light {
  2913. color: #ecf5ff;
  2914. }
  2915. .u-type-warning-light {
  2916. color: #fdf6ec;
  2917. }
  2918. .u-type-success-light {
  2919. color: #dbf1e1;
  2920. }
  2921. .u-type-error-light {
  2922. color: #fef0f0;
  2923. }
  2924. .u-type-info-light {
  2925. color: #f4f4f5;
  2926. }
  2927. .u-type-primary-light-bg {
  2928. background-color: #ecf5ff;
  2929. }
  2930. .u-type-warning-light-bg {
  2931. background-color: #fdf6ec;
  2932. }
  2933. .u-type-success-light-bg {
  2934. background-color: #dbf1e1;
  2935. }
  2936. .u-type-error-light-bg {
  2937. background-color: #fef0f0;
  2938. }
  2939. .u-type-info-light-bg {
  2940. background-color: #f4f4f5;
  2941. }
  2942. .u-type-primary-dark {
  2943. color: #2b85e4;
  2944. }
  2945. .u-type-warning-dark {
  2946. color: #f29100;
  2947. }
  2948. .u-type-success-dark {
  2949. color: #18b566;
  2950. }
  2951. .u-type-error-dark {
  2952. color: #dd6161;
  2953. }
  2954. .u-type-info-dark {
  2955. color: #82848a;
  2956. }
  2957. .u-type-primary-dark-bg {
  2958. background-color: #2b85e4;
  2959. }
  2960. .u-type-warning-dark-bg {
  2961. background-color: #f29100;
  2962. }
  2963. .u-type-success-dark-bg {
  2964. background-color: #18b566;
  2965. }
  2966. .u-type-error-dark-bg {
  2967. background-color: #dd6161;
  2968. }
  2969. .u-type-info-dark-bg {
  2970. background-color: #82848a;
  2971. }
  2972. .u-type-primary-disabled {
  2973. color: #a0cfff;
  2974. }
  2975. .u-type-warning-disabled {
  2976. color: #fcbd71;
  2977. }
  2978. .u-type-success-disabled {
  2979. color: #71d5a1;
  2980. }
  2981. .u-type-error-disabled {
  2982. color: #fab6b6;
  2983. }
  2984. .u-type-info-disabled {
  2985. color: #c8c9cc;
  2986. }
  2987. .u-type-primary {
  2988. color: #2979ff;
  2989. }
  2990. .u-type-warning {
  2991. color: #ff9900;
  2992. }
  2993. .u-type-success {
  2994. color: #19be6b;
  2995. }
  2996. .u-type-error {
  2997. color: #fa3534;
  2998. }
  2999. .u-type-info {
  3000. color: #909399;
  3001. }
  3002. .u-type-primary-bg {
  3003. background-color: #2979ff;
  3004. }
  3005. .u-type-warning-bg {
  3006. background-color: #ff9900;
  3007. }
  3008. .u-type-success-bg {
  3009. background-color: #19be6b;
  3010. }
  3011. .u-type-error-bg {
  3012. background-color: #fa3534;
  3013. }
  3014. .u-type-info-bg {
  3015. background-color: #909399;
  3016. }
  3017. .u-main-color {
  3018. color: #303133;
  3019. }
  3020. .u-content-color {
  3021. color: #606266;
  3022. }
  3023. .u-tips-color {
  3024. color: #909399;
  3025. }
  3026. .u-light-color {
  3027. color: #c0c4cc;
  3028. }
  3029. page {
  3030. color: #303133;
  3031. font-size: 28rpx;
  3032. }
  3033. /* start--去除webkit的默认样式--start */
  3034. .u-fix-ios-appearance {
  3035. -webkit-appearance: none;
  3036. }
  3037. /* end--去除webkit的默认样式--end */
  3038. /* start--icon图标外层套一个view,让其达到更好的垂直居中的效果--start */
  3039. .u-icon-wrap {
  3040. display: flex;
  3041. align-items: center;
  3042. }
  3043. /* end-icon图标外层套一个view,让其达到更好的垂直居中的效果--end */
  3044. /* start--iPhoneX底部安全区定义--start */
  3045. .safe-area-inset-bottom {
  3046. padding-bottom: 0;
  3047. padding-bottom: constant(safe-area-inset-bottom);
  3048. padding-bottom: env(safe-area-inset-bottom);
  3049. }
  3050. /* end-iPhoneX底部安全区定义--end */
  3051. /* start--各种hover点击反馈相关的类名-start */
  3052. .u-hover-class {
  3053. opacity: 0.6;
  3054. }
  3055. .u-cell-hover {
  3056. background-color: #f7f8f9 !important;
  3057. }
  3058. /* end--各种hover点击反馈相关的类名--end */
  3059. /* start--文本行数限制--start */
  3060. .u-line-1 {
  3061. overflow: hidden;
  3062. white-space: nowrap;
  3063. text-overflow: ellipsis;
  3064. }
  3065. .u-line-2 {
  3066. -webkit-line-clamp: 2;
  3067. }
  3068. .u-line-3 {
  3069. -webkit-line-clamp: 3;
  3070. }
  3071. .u-line-4 {
  3072. -webkit-line-clamp: 4;
  3073. }
  3074. .u-line-5 {
  3075. -webkit-line-clamp: 5;
  3076. }
  3077. .u-line-2, .u-line-3, .u-line-4, .u-line-5 {
  3078. overflow: hidden;
  3079. word-break: break-all;
  3080. text-overflow: ellipsis;
  3081. display: -webkit-box;
  3082. -webkit-box-orient: vertical;
  3083. }
  3084. /* end--文本行数限制--end */
  3085. /* start--Retina 屏幕下的 1px 边框--start */
  3086. .u-border,
  3087. .u-border-bottom,
  3088. .u-border-left,
  3089. .u-border-right,
  3090. .u-border-top,
  3091. .u-border-top-bottom {
  3092. position: relative;
  3093. }
  3094. .u-border-bottom:after,
  3095. .u-border-left:after,
  3096. .u-border-right:after,
  3097. .u-border-top-bottom:after,
  3098. .u-border-top:after,
  3099. .u-border:after {
  3100. content: ' ';
  3101. position: absolute;
  3102. left: 0;
  3103. top: 0;
  3104. pointer-events: none;
  3105. box-sizing: border-box;
  3106. -webkit-transform-origin: 0 0;
  3107. transform-origin: 0 0;
  3108. width: 199.8%;
  3109. height: 199.7%;
  3110. -webkit-transform: scale(0.5, 0.5);
  3111. transform: scale(0.5, 0.5);
  3112. border: 0 solid #e4e7ed;
  3113. z-index: 2;
  3114. }
  3115. .u-border-top:after {
  3116. border-top-width: 1px;
  3117. }
  3118. .u-border-left:after {
  3119. border-left-width: 1px;
  3120. }
  3121. .u-border-right:after {
  3122. border-right-width: 1px;
  3123. }
  3124. .u-border-bottom:after {
  3125. border-bottom-width: 1px;
  3126. }
  3127. .u-border-top-bottom:after {
  3128. border-width: 1px 0;
  3129. }
  3130. .u-border:after {
  3131. border-width: 1px;
  3132. }
  3133. /* end--Retina 屏幕下的 1px 边框--end */
  3134. /* start--clearfix--start */
  3135. .u-clearfix:after,
  3136. .clearfix:after {
  3137. content: '';
  3138. display: table;
  3139. clear: both;
  3140. }
  3141. /* end--clearfix--end */
  3142. /* start--高斯模糊tabbar底部处理--start */
  3143. .u-blur-effect-inset {
  3144. width: 750rpx;
  3145. height: 0px;
  3146. background-color: #FFFFFF;
  3147. }
  3148. /* end--高斯模糊tabbar底部处理--end */
  3149. /* start--提升H5端uni.toast()的层级,避免被uView的modal等遮盖--start */
  3150. /* end--提升H5端uni.toast()的层级,避免被uView的modal等遮盖--end */
  3151. /* start--去除button的所有默认样式--start */
  3152. .u-reset-button {
  3153. padding: 0;
  3154. font-size: inherit;
  3155. line-height: inherit;
  3156. background-color: transparent;
  3157. color: inherit;
  3158. }
  3159. .u-reset-button::after {
  3160. border: none;
  3161. }
  3162. /* end--去除button的所有默认样式--end */
  3163. /* start--微信小程序编译后页面有组件名的元素,特别处理--start */
  3164. u-td, u-th {
  3165. flex: 1;
  3166. align-self: stretch;
  3167. }
  3168. .u-td {
  3169. height: 100%;
  3170. }
  3171. u-icon {
  3172. display: inline-flex;
  3173. align-items: center;
  3174. }
  3175. u-grid {
  3176. width: 100%;
  3177. flex: 0 0 100%;
  3178. }
  3179. u-line {
  3180. flex: 1;
  3181. }
  3182. u-switch {
  3183. display: inline-flex;
  3184. align-items: center;
  3185. }
  3186. u-dropdown {
  3187. flex: 1;
  3188. }
  3189. /* end-微信小程序编译后页面有组件名的元素,特别处理--end */
  3190. /* start--头条小程序编译后页面有组件名的元素,特别处理--start */
  3191. /* end-头条小程序编译后页面有组件名的元素,特别处理--end */
  3192. /*每个页面公共css */
  3193. .u-m-tb-0 {
  3194. margin: 0rpx 0 !important;
  3195. }
  3196. .u-m-lr-0 {
  3197. margin: 0 0rpx !important;
  3198. }
  3199. .u-p-tb-0 {
  3200. padding: 0rpx 0 !important;
  3201. }
  3202. .u-p-lr-0 {
  3203. padding: 0 0rpx !important;
  3204. }
  3205. .u-m-tb-2 {
  3206. margin: 2rpx 0 !important;
  3207. }
  3208. .u-m-lr-2 {
  3209. margin: 0 2rpx !important;
  3210. }
  3211. .u-p-tb-2 {
  3212. padding: 2rpx 0 !important;
  3213. }
  3214. .u-p-lr-2 {
  3215. padding: 0 2rpx !important;
  3216. }
  3217. .u-m-tb-4 {
  3218. margin: 4rpx 0 !important;
  3219. }
  3220. .u-m-lr-4 {
  3221. margin: 0 4rpx !important;
  3222. }
  3223. .u-p-tb-4 {
  3224. padding: 4rpx 0 !important;
  3225. }
  3226. .u-p-lr-4 {
  3227. padding: 0 4rpx !important;
  3228. }
  3229. .u-m-tb-5 {
  3230. margin: 5rpx 0 !important;
  3231. }
  3232. .u-m-lr-5 {
  3233. margin: 0 5rpx !important;
  3234. }
  3235. .u-p-tb-5 {
  3236. padding: 5rpx 0 !important;
  3237. }
  3238. .u-p-lr-5 {
  3239. padding: 0 5rpx !important;
  3240. }
  3241. .u-m-tb-6 {
  3242. margin: 6rpx 0 !important;
  3243. }
  3244. .u-m-lr-6 {
  3245. margin: 0 6rpx !important;
  3246. }
  3247. .u-p-tb-6 {
  3248. padding: 6rpx 0 !important;
  3249. }
  3250. .u-p-lr-6 {
  3251. padding: 0 6rpx !important;
  3252. }
  3253. .u-m-tb-8 {
  3254. margin: 8rpx 0 !important;
  3255. }
  3256. .u-m-lr-8 {
  3257. margin: 0 8rpx !important;
  3258. }
  3259. .u-p-tb-8 {
  3260. padding: 8rpx 0 !important;
  3261. }
  3262. .u-p-lr-8 {
  3263. padding: 0 8rpx !important;
  3264. }
  3265. .u-m-tb-10 {
  3266. margin: 10rpx 0 !important;
  3267. }
  3268. .u-m-lr-10 {
  3269. margin: 0 10rpx !important;
  3270. }
  3271. .u-p-tb-10 {
  3272. padding: 10rpx 0 !important;
  3273. }
  3274. .u-p-lr-10 {
  3275. padding: 0 10rpx !important;
  3276. }
  3277. .u-m-tb-12 {
  3278. margin: 12rpx 0 !important;
  3279. }
  3280. .u-m-lr-12 {
  3281. margin: 0 12rpx !important;
  3282. }
  3283. .u-p-tb-12 {
  3284. padding: 12rpx 0 !important;
  3285. }
  3286. .u-p-lr-12 {
  3287. padding: 0 12rpx !important;
  3288. }
  3289. .u-m-tb-14 {
  3290. margin: 14rpx 0 !important;
  3291. }
  3292. .u-m-lr-14 {
  3293. margin: 0 14rpx !important;
  3294. }
  3295. .u-p-tb-14 {
  3296. padding: 14rpx 0 !important;
  3297. }
  3298. .u-p-lr-14 {
  3299. padding: 0 14rpx !important;
  3300. }
  3301. .u-m-tb-15 {
  3302. margin: 15rpx 0 !important;
  3303. }
  3304. .u-m-lr-15 {
  3305. margin: 0 15rpx !important;
  3306. }
  3307. .u-p-tb-15 {
  3308. padding: 15rpx 0 !important;
  3309. }
  3310. .u-p-lr-15 {
  3311. padding: 0 15rpx !important;
  3312. }
  3313. .u-m-tb-16 {
  3314. margin: 16rpx 0 !important;
  3315. }
  3316. .u-m-lr-16 {
  3317. margin: 0 16rpx !important;
  3318. }
  3319. .u-p-tb-16 {
  3320. padding: 16rpx 0 !important;
  3321. }
  3322. .u-p-lr-16 {
  3323. padding: 0 16rpx !important;
  3324. }
  3325. .u-m-tb-18 {
  3326. margin: 18rpx 0 !important;
  3327. }
  3328. .u-m-lr-18 {
  3329. margin: 0 18rpx !important;
  3330. }
  3331. .u-p-tb-18 {
  3332. padding: 18rpx 0 !important;
  3333. }
  3334. .u-p-lr-18 {
  3335. padding: 0 18rpx !important;
  3336. }
  3337. .u-m-tb-20 {
  3338. margin: 20rpx 0 !important;
  3339. }
  3340. .u-m-lr-20 {
  3341. margin: 0 20rpx !important;
  3342. }
  3343. .u-p-tb-20 {
  3344. padding: 20rpx 0 !important;
  3345. }
  3346. .u-p-lr-20 {
  3347. padding: 0 20rpx !important;
  3348. }
  3349. .u-m-tb-22 {
  3350. margin: 22rpx 0 !important;
  3351. }
  3352. .u-m-lr-22 {
  3353. margin: 0 22rpx !important;
  3354. }
  3355. .u-p-tb-22 {
  3356. padding: 22rpx 0 !important;
  3357. }
  3358. .u-p-lr-22 {
  3359. padding: 0 22rpx !important;
  3360. }
  3361. .u-m-tb-24 {
  3362. margin: 24rpx 0 !important;
  3363. }
  3364. .u-m-lr-24 {
  3365. margin: 0 24rpx !important;
  3366. }
  3367. .u-p-tb-24 {
  3368. padding: 24rpx 0 !important;
  3369. }
  3370. .u-p-lr-24 {
  3371. padding: 0 24rpx !important;
  3372. }
  3373. .u-m-tb-25 {
  3374. margin: 25rpx 0 !important;
  3375. }
  3376. .u-m-lr-25 {
  3377. margin: 0 25rpx !important;
  3378. }
  3379. .u-p-tb-25 {
  3380. padding: 25rpx 0 !important;
  3381. }
  3382. .u-p-lr-25 {
  3383. padding: 0 25rpx !important;
  3384. }
  3385. .u-m-tb-26 {
  3386. margin: 26rpx 0 !important;
  3387. }
  3388. .u-m-lr-26 {
  3389. margin: 0 26rpx !important;
  3390. }
  3391. .u-p-tb-26 {
  3392. padding: 26rpx 0 !important;
  3393. }
  3394. .u-p-lr-26 {
  3395. padding: 0 26rpx !important;
  3396. }
  3397. .u-m-tb-28 {
  3398. margin: 28rpx 0 !important;
  3399. }
  3400. .u-m-lr-28 {
  3401. margin: 0 28rpx !important;
  3402. }
  3403. .u-p-tb-28 {
  3404. padding: 28rpx 0 !important;
  3405. }
  3406. .u-p-lr-28 {
  3407. padding: 0 28rpx !important;
  3408. }
  3409. .u-m-tb-30 {
  3410. margin: 30rpx 0 !important;
  3411. }
  3412. .u-m-lr-30 {
  3413. margin: 0 30rpx !important;
  3414. }
  3415. .u-p-tb-30 {
  3416. padding: 30rpx 0 !important;
  3417. }
  3418. .u-p-lr-30 {
  3419. padding: 0 30rpx !important;
  3420. }
  3421. .u-m-tb-32 {
  3422. margin: 32rpx 0 !important;
  3423. }
  3424. .u-m-lr-32 {
  3425. margin: 0 32rpx !important;
  3426. }
  3427. .u-p-tb-32 {
  3428. padding: 32rpx 0 !important;
  3429. }
  3430. .u-p-lr-32 {
  3431. padding: 0 32rpx !important;
  3432. }
  3433. .u-m-tb-34 {
  3434. margin: 34rpx 0 !important;
  3435. }
  3436. .u-m-lr-34 {
  3437. margin: 0 34rpx !important;
  3438. }
  3439. .u-p-tb-34 {
  3440. padding: 34rpx 0 !important;
  3441. }
  3442. .u-p-lr-34 {
  3443. padding: 0 34rpx !important;
  3444. }
  3445. .u-m-tb-35 {
  3446. margin: 35rpx 0 !important;
  3447. }
  3448. .u-m-lr-35 {
  3449. margin: 0 35rpx !important;
  3450. }
  3451. .u-p-tb-35 {
  3452. padding: 35rpx 0 !important;
  3453. }
  3454. .u-p-lr-35 {
  3455. padding: 0 35rpx !important;
  3456. }
  3457. .u-m-tb-36 {
  3458. margin: 36rpx 0 !important;
  3459. }
  3460. .u-m-lr-36 {
  3461. margin: 0 36rpx !important;
  3462. }
  3463. .u-p-tb-36 {
  3464. padding: 36rpx 0 !important;
  3465. }
  3466. .u-p-lr-36 {
  3467. padding: 0 36rpx !important;
  3468. }
  3469. .u-m-tb-38 {
  3470. margin: 38rpx 0 !important;
  3471. }
  3472. .u-m-lr-38 {
  3473. margin: 0 38rpx !important;
  3474. }
  3475. .u-p-tb-38 {
  3476. padding: 38rpx 0 !important;
  3477. }
  3478. .u-p-lr-38 {
  3479. padding: 0 38rpx !important;
  3480. }
  3481. .u-m-tb-40 {
  3482. margin: 40rpx 0 !important;
  3483. }
  3484. .u-m-lr-40 {
  3485. margin: 0 40rpx !important;
  3486. }
  3487. .u-p-tb-40 {
  3488. padding: 40rpx 0 !important;
  3489. }
  3490. .u-p-lr-40 {
  3491. padding: 0 40rpx !important;
  3492. }
  3493. .u-m-tb-42 {
  3494. margin: 42rpx 0 !important;
  3495. }
  3496. .u-m-lr-42 {
  3497. margin: 0 42rpx !important;
  3498. }
  3499. .u-p-tb-42 {
  3500. padding: 42rpx 0 !important;
  3501. }
  3502. .u-p-lr-42 {
  3503. padding: 0 42rpx !important;
  3504. }
  3505. .u-m-tb-44 {
  3506. margin: 44rpx 0 !important;
  3507. }
  3508. .u-m-lr-44 {
  3509. margin: 0 44rpx !important;
  3510. }
  3511. .u-p-tb-44 {
  3512. padding: 44rpx 0 !important;
  3513. }
  3514. .u-p-lr-44 {
  3515. padding: 0 44rpx !important;
  3516. }
  3517. .u-m-tb-45 {
  3518. margin: 45rpx 0 !important;
  3519. }
  3520. .u-m-lr-45 {
  3521. margin: 0 45rpx !important;
  3522. }
  3523. .u-p-tb-45 {
  3524. padding: 45rpx 0 !important;
  3525. }
  3526. .u-p-lr-45 {
  3527. padding: 0 45rpx !important;
  3528. }
  3529. .u-m-tb-46 {
  3530. margin: 46rpx 0 !important;
  3531. }
  3532. .u-m-lr-46 {
  3533. margin: 0 46rpx !important;
  3534. }
  3535. .u-p-tb-46 {
  3536. padding: 46rpx 0 !important;
  3537. }
  3538. .u-p-lr-46 {
  3539. padding: 0 46rpx !important;
  3540. }
  3541. .u-m-tb-48 {
  3542. margin: 48rpx 0 !important;
  3543. }
  3544. .u-m-lr-48 {
  3545. margin: 0 48rpx !important;
  3546. }
  3547. .u-p-tb-48 {
  3548. padding: 48rpx 0 !important;
  3549. }
  3550. .u-p-lr-48 {
  3551. padding: 0 48rpx !important;
  3552. }
  3553. .u-m-tb-50 {
  3554. margin: 50rpx 0 !important;
  3555. }
  3556. .u-m-lr-50 {
  3557. margin: 0 50rpx !important;
  3558. }
  3559. .u-p-tb-50 {
  3560. padding: 50rpx 0 !important;
  3561. }
  3562. .u-p-lr-50 {
  3563. padding: 0 50rpx !important;
  3564. }
  3565. .u-m-tb-52 {
  3566. margin: 52rpx 0 !important;
  3567. }
  3568. .u-m-lr-52 {
  3569. margin: 0 52rpx !important;
  3570. }
  3571. .u-p-tb-52 {
  3572. padding: 52rpx 0 !important;
  3573. }
  3574. .u-p-lr-52 {
  3575. padding: 0 52rpx !important;
  3576. }
  3577. .u-m-tb-54 {
  3578. margin: 54rpx 0 !important;
  3579. }
  3580. .u-m-lr-54 {
  3581. margin: 0 54rpx !important;
  3582. }
  3583. .u-p-tb-54 {
  3584. padding: 54rpx 0 !important;
  3585. }
  3586. .u-p-lr-54 {
  3587. padding: 0 54rpx !important;
  3588. }
  3589. .u-m-tb-55 {
  3590. margin: 55rpx 0 !important;
  3591. }
  3592. .u-m-lr-55 {
  3593. margin: 0 55rpx !important;
  3594. }
  3595. .u-p-tb-55 {
  3596. padding: 55rpx 0 !important;
  3597. }
  3598. .u-p-lr-55 {
  3599. padding: 0 55rpx !important;
  3600. }
  3601. .u-m-tb-56 {
  3602. margin: 56rpx 0 !important;
  3603. }
  3604. .u-m-lr-56 {
  3605. margin: 0 56rpx !important;
  3606. }
  3607. .u-p-tb-56 {
  3608. padding: 56rpx 0 !important;
  3609. }
  3610. .u-p-lr-56 {
  3611. padding: 0 56rpx !important;
  3612. }
  3613. .u-m-tb-58 {
  3614. margin: 58rpx 0 !important;
  3615. }
  3616. .u-m-lr-58 {
  3617. margin: 0 58rpx !important;
  3618. }
  3619. .u-p-tb-58 {
  3620. padding: 58rpx 0 !important;
  3621. }
  3622. .u-p-lr-58 {
  3623. padding: 0 58rpx !important;
  3624. }
  3625. .u-m-tb-60 {
  3626. margin: 60rpx 0 !important;
  3627. }
  3628. .u-m-lr-60 {
  3629. margin: 0 60rpx !important;
  3630. }
  3631. .u-p-tb-60 {
  3632. padding: 60rpx 0 !important;
  3633. }
  3634. .u-p-lr-60 {
  3635. padding: 0 60rpx !important;
  3636. }
  3637. .u-m-tb-62 {
  3638. margin: 62rpx 0 !important;
  3639. }
  3640. .u-m-lr-62 {
  3641. margin: 0 62rpx !important;
  3642. }
  3643. .u-p-tb-62 {
  3644. padding: 62rpx 0 !important;
  3645. }
  3646. .u-p-lr-62 {
  3647. padding: 0 62rpx !important;
  3648. }
  3649. .u-m-tb-64 {
  3650. margin: 64rpx 0 !important;
  3651. }
  3652. .u-m-lr-64 {
  3653. margin: 0 64rpx !important;
  3654. }
  3655. .u-p-tb-64 {
  3656. padding: 64rpx 0 !important;
  3657. }
  3658. .u-p-lr-64 {
  3659. padding: 0 64rpx !important;
  3660. }
  3661. .u-m-tb-65 {
  3662. margin: 65rpx 0 !important;
  3663. }
  3664. .u-m-lr-65 {
  3665. margin: 0 65rpx !important;
  3666. }
  3667. .u-p-tb-65 {
  3668. padding: 65rpx 0 !important;
  3669. }
  3670. .u-p-lr-65 {
  3671. padding: 0 65rpx !important;
  3672. }
  3673. .u-m-tb-66 {
  3674. margin: 66rpx 0 !important;
  3675. }
  3676. .u-m-lr-66 {
  3677. margin: 0 66rpx !important;
  3678. }
  3679. .u-p-tb-66 {
  3680. padding: 66rpx 0 !important;
  3681. }
  3682. .u-p-lr-66 {
  3683. padding: 0 66rpx !important;
  3684. }
  3685. .u-m-tb-68 {
  3686. margin: 68rpx 0 !important;
  3687. }
  3688. .u-m-lr-68 {
  3689. margin: 0 68rpx !important;
  3690. }
  3691. .u-p-tb-68 {
  3692. padding: 68rpx 0 !important;
  3693. }
  3694. .u-p-lr-68 {
  3695. padding: 0 68rpx !important;
  3696. }
  3697. .u-m-tb-70 {
  3698. margin: 70rpx 0 !important;
  3699. }
  3700. .u-m-lr-70 {
  3701. margin: 0 70rpx !important;
  3702. }
  3703. .u-p-tb-70 {
  3704. padding: 70rpx 0 !important;
  3705. }
  3706. .u-p-lr-70 {
  3707. padding: 0 70rpx !important;
  3708. }
  3709. .u-m-tb-72 {
  3710. margin: 72rpx 0 !important;
  3711. }
  3712. .u-m-lr-72 {
  3713. margin: 0 72rpx !important;
  3714. }
  3715. .u-p-tb-72 {
  3716. padding: 72rpx 0 !important;
  3717. }
  3718. .u-p-lr-72 {
  3719. padding: 0 72rpx !important;
  3720. }
  3721. .u-m-tb-74 {
  3722. margin: 74rpx 0 !important;
  3723. }
  3724. .u-m-lr-74 {
  3725. margin: 0 74rpx !important;
  3726. }
  3727. .u-p-tb-74 {
  3728. padding: 74rpx 0 !important;
  3729. }
  3730. .u-p-lr-74 {
  3731. padding: 0 74rpx !important;
  3732. }
  3733. .u-m-tb-75 {
  3734. margin: 75rpx 0 !important;
  3735. }
  3736. .u-m-lr-75 {
  3737. margin: 0 75rpx !important;
  3738. }
  3739. .u-p-tb-75 {
  3740. padding: 75rpx 0 !important;
  3741. }
  3742. .u-p-lr-75 {
  3743. padding: 0 75rpx !important;
  3744. }
  3745. .u-m-tb-76 {
  3746. margin: 76rpx 0 !important;
  3747. }
  3748. .u-m-lr-76 {
  3749. margin: 0 76rpx !important;
  3750. }
  3751. .u-p-tb-76 {
  3752. padding: 76rpx 0 !important;
  3753. }
  3754. .u-p-lr-76 {
  3755. padding: 0 76rpx !important;
  3756. }
  3757. .u-m-tb-78 {
  3758. margin: 78rpx 0 !important;
  3759. }
  3760. .u-m-lr-78 {
  3761. margin: 0 78rpx !important;
  3762. }
  3763. .u-p-tb-78 {
  3764. padding: 78rpx 0 !important;
  3765. }
  3766. .u-p-lr-78 {
  3767. padding: 0 78rpx !important;
  3768. }
  3769. .u-m-tb-80 {
  3770. margin: 80rpx 0 !important;
  3771. }
  3772. .u-m-lr-80 {
  3773. margin: 0 80rpx !important;
  3774. }
  3775. .u-p-tb-80 {
  3776. padding: 80rpx 0 !important;
  3777. }
  3778. .u-p-lr-80 {
  3779. padding: 0 80rpx !important;
  3780. }
  3781. .u-font-bold {
  3782. font-weight: bold;
  3783. }
  3784. .u-border-bottom {
  3785. border-bottom: 1rpx solid #fafafa;
  3786. }
  3787. .main-color {
  3788. color: #e54a48;
  3789. }
  3790. .orange {
  3791. color: #ff6f2f;
  3792. }
  3793. .green {
  3794. color: #07c160;
  3795. }
  3796. .grey {
  3797. color: #c0c4cc;
  3798. }
  3799. .white {
  3800. color: #fff;
  3801. }
  3802. .empty {
  3803. text-align: center;
  3804. }
  3805. .empty image {
  3806. width: 50vw;
  3807. margin-top: 25vh;
  3808. }
  3809. .empty .empty-text {
  3810. margin-top: 30rpx;
  3811. }
  3812. /*基础字体样式*/
  3813. .mim-font-12 {
  3814. font-size: 12px;
  3815. font-weight: 400;
  3816. line-height: 16px;
  3817. opacity: 1;
  3818. }
  3819. .mim-fontBold-12 {
  3820. font-size: 12px;
  3821. font-weight: bold;
  3822. line-height: 16px;
  3823. opacity: 1;
  3824. }
  3825. .mim-font-14 {
  3826. font-size: 14px;
  3827. font-weight: 400;
  3828. line-height: 20px;
  3829. opacity: 1;
  3830. }
  3831. .mim-fontBold-14 {
  3832. font-size: 14px;
  3833. font-weight: bold;
  3834. line-height: 20px;
  3835. opacity: 1;
  3836. }
  3837. .mim-font-16 {
  3838. font-size: 16px;
  3839. font-weight: 400;
  3840. line-height: 22px;
  3841. opacity: 1;
  3842. }
  3843. .mim-fontBold-16 {
  3844. font-size: 16px;
  3845. font-weight: bold;
  3846. line-height: 22px;
  3847. opacity: 1;
  3848. }
  3849. page {
  3850. padding: 0;
  3851. margin: 0;
  3852. box-sizing: border-box;
  3853. opacity: 1;
  3854. color: #333333;
  3855. }
  3856. /*清除浮动*/
  3857. .mimClear:after {
  3858. content: "";
  3859. display: block;
  3860. height: 0;
  3861. clear: both;
  3862. visibility: hidden;
  3863. }
  3864. /*单行溢出文字省略*/
  3865. .mim-ellipsis {
  3866. overflow: hidden;
  3867. text-overflow: ellipsis;
  3868. white-space: nowrap;
  3869. }
  3870. /*文字不折行*/
  3871. .mim-nowrap {
  3872. white-space: nowrap;
  3873. }
  3874. /*多行文字溢出省略号*/
  3875. .mim-multi-line {
  3876. display: -webkit-box;
  3877. -webkit-box-orient: vertical;
  3878. -webkit-line-clamp: 2;
  3879. overflow: hidden;
  3880. }
  3881. /*去除标签默认样式*/
  3882. input[type="button"],
  3883. input[type="submit"],
  3884. input[type="reset"],
  3885. textarea,
  3886. input,
  3887. button,
  3888. ._select {
  3889. -webkit-appearance: none;
  3890. -moz-appearance: none;
  3891. border: 0;
  3892. outline: none;
  3893. }
  3894. /*input公共样式*/
  3895. input {
  3896. background-color: #f5f6f7;
  3897. width: 100%;
  3898. }
  3899. ::-webkit-input-placeholder {
  3900. color: #8088A8;
  3901. }
  3902. ::-moz-placeholder {
  3903. color: #8088A8;
  3904. }
  3905. ::-moz-placeholder {
  3906. color: #8088A8;
  3907. }
  3908. ::-ms-input-placeholder {
  3909. color: #8088A8;
  3910. }
  3911. /* flex布局 */
  3912. .mim-flex-wrap {
  3913. display: flex;
  3914. justify-content: center;
  3915. align-items: center;
  3916. }
  3917. .mim-flex-wrap-left {
  3918. display: flex;
  3919. justify-content: flex-start;
  3920. align-items: center;
  3921. }
  3922. .mim-flex-wrap-right {
  3923. display: flex;
  3924. justify-content: flex-end;
  3925. align-items: center;
  3926. }
  3927. .mim-flex-wrap-space-between {
  3928. display: flex;
  3929. justify-content: space-between;
  3930. align-items: center;
  3931. }
  3932. .mim-flex-vertical {
  3933. display: flex;
  3934. flex-direction: column;
  3935. flex-flow: column;
  3936. }
  3937. .mim-flex-vertical-center {
  3938. display: flex;
  3939. flex-direction: column;
  3940. flex-flow: column;
  3941. align-items: center;
  3942. }
  3943. .mim-view {
  3944. margin: 24rpx;
  3945. min-height: 24rpx;
  3946. padding: 24rpx;
  3947. border-radius: 24rpx;
  3948. opacity: 1;
  3949. background: #FFFFFF;
  3950. position: relative;
  3951. background-position: center;
  3952. background-repeat: no-repeat;
  3953. background-size: 100% 100%;
  3954. box-sizing: border-box;
  3955. }
  3956. .mim-button {
  3957. display: flex;
  3958. justify-content: center;
  3959. align-items: center;
  3960. border-radius: 32rpx;
  3961. opacity: 1;
  3962. background: #DE2E27;
  3963. color: #FFFFFF;
  3964. border: none;
  3965. cursor: pointer;
  3966. }
  3967. .mim-button.disabled {
  3968. pointer-events: none;
  3969. background-color: #8088A8 !important;
  3970. cursor: none;
  3971. }
  3972. .mim-view-list {
  3973. margin: 24rpx;
  3974. min-height: 1rpx;
  3975. }
  3976. /* 文字尺寸 */
  3977. .mim-font-10 {
  3978. font-weight: normal;
  3979. opacity: 1;
  3980. letter-spacing: 0;
  3981. font-size: 20rpx !important;
  3982. }
  3983. .mim-font-12 {
  3984. font-weight: normal;
  3985. opacity: 1;
  3986. letter-spacing: 0;
  3987. font-size: 24rpx !important;
  3988. }
  3989. .mim-font-14 {
  3990. font-weight: normal;
  3991. opacity: 1;
  3992. letter-spacing: 0;
  3993. font-size: 28rpx !important;
  3994. }
  3995. .mim-font-15 {
  3996. font-weight: normal;
  3997. opacity: 1;
  3998. letter-spacing: 0;
  3999. font-size: 30rpx !important;
  4000. }
  4001. .mim-font-16 {
  4002. font-weight: normal;
  4003. opacity: 1;
  4004. letter-spacing: 0;
  4005. font-size: 32rpx !important;
  4006. }
  4007. .mim-font-24 {
  4008. font-weight: normal;
  4009. opacity: 1;
  4010. letter-spacing: 0;
  4011. font-size: 48rpx !important;
  4012. }
  4013. .bold {
  4014. font-weight: bold !important;
  4015. }
  4016. .mimRed {
  4017. color: #ff0000 !important;
  4018. }
  4019. /*toast字体图标*/