app.wxss 74 KB

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