main.wxss 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219
  1. @charset "UTF-8";
  2. /**
  3. * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
  4. * 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
  5. * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
  6. */
  7. .u-relative,
  8. .u-rela {
  9. position: relative;
  10. }
  11. .u-absolute,
  12. .u-abso {
  13. position: absolute;
  14. }
  15. image {
  16. display: inline-block;
  17. }
  18. view,
  19. text {
  20. box-sizing: border-box;
  21. }
  22. .u-font-xs {
  23. font-size: 22rpx;
  24. }
  25. .u-font-sm {
  26. font-size: 26rpx;
  27. }
  28. .u-font-md {
  29. font-size: 28rpx;
  30. }
  31. .u-font-lg {
  32. font-size: 30rpx;
  33. }
  34. .u-font-xl {
  35. font-size: 34rpx;
  36. }
  37. .u-flex {
  38. display: flex;
  39. flex-direction: row;
  40. align-items: center;
  41. }
  42. .u-flex-wrap {
  43. flex-wrap: wrap;
  44. }
  45. .u-flex-nowrap {
  46. flex-wrap: nowrap;
  47. }
  48. .u-col-center {
  49. align-items: center;
  50. }
  51. .u-col-top {
  52. align-items: flex-start;
  53. }
  54. .u-col-bottom {
  55. align-items: flex-end;
  56. }
  57. .u-row-center {
  58. justify-content: center;
  59. }
  60. .u-row-left {
  61. justify-content: flex-start;
  62. }
  63. .u-row-right {
  64. justify-content: flex-end;
  65. }
  66. .u-row-between {
  67. justify-content: space-between;
  68. }
  69. .u-row-around {
  70. justify-content: space-around;
  71. }
  72. .u-text-left {
  73. text-align: left;
  74. }
  75. .u-text-center {
  76. text-align: center;
  77. }
  78. .u-text-right {
  79. text-align: right;
  80. }
  81. .u-flex-col {
  82. display: flex;
  83. flex-direction: column;
  84. }
  85. .u-flex-0 {
  86. flex: 0;
  87. }
  88. .u-flex-1 {
  89. flex: 1;
  90. }
  91. .u-flex-2 {
  92. flex: 2;
  93. }
  94. .u-flex-3 {
  95. flex: 3;
  96. }
  97. .u-flex-4 {
  98. flex: 4;
  99. }
  100. .u-flex-5 {
  101. flex: 5;
  102. }
  103. .u-flex-6 {
  104. flex: 6;
  105. }
  106. .u-flex-7 {
  107. flex: 7;
  108. }
  109. .u-flex-8 {
  110. flex: 8;
  111. }
  112. .u-flex-9 {
  113. flex: 9;
  114. }
  115. .u-flex-10 {
  116. flex: 10;
  117. }
  118. .u-flex-11 {
  119. flex: 11;
  120. }
  121. .u-flex-12 {
  122. flex: 12;
  123. }
  124. .u-font-9 {
  125. font-size: 9px;
  126. }
  127. .u-font-10 {
  128. font-size: 10px;
  129. }
  130. .u-font-11 {
  131. font-size: 11px;
  132. }
  133. .u-font-12 {
  134. font-size: 12px;
  135. }
  136. .u-font-13 {
  137. font-size: 13px;
  138. }
  139. .u-font-14 {
  140. font-size: 14px;
  141. }
  142. .u-font-15 {
  143. font-size: 15px;
  144. }
  145. .u-font-16 {
  146. font-size: 16px;
  147. }
  148. .u-font-17 {
  149. font-size: 17px;
  150. }
  151. .u-font-18 {
  152. font-size: 18px;
  153. }
  154. .u-font-19 {
  155. font-size: 19px;
  156. }
  157. .u-font-20 {
  158. font-size: 20rpx;
  159. }
  160. .u-font-21 {
  161. font-size: 21rpx;
  162. }
  163. .u-font-22 {
  164. font-size: 22rpx;
  165. }
  166. .u-font-23 {
  167. font-size: 23rpx;
  168. }
  169. .u-font-24 {
  170. font-size: 24rpx;
  171. }
  172. .u-font-25 {
  173. font-size: 25rpx;
  174. }
  175. .u-font-26 {
  176. font-size: 26rpx;
  177. }
  178. .u-font-27 {
  179. font-size: 27rpx;
  180. }
  181. .u-font-28 {
  182. font-size: 28rpx;
  183. }
  184. .u-font-29 {
  185. font-size: 29rpx;
  186. }
  187. .u-font-30 {
  188. font-size: 30rpx;
  189. }
  190. .u-font-31 {
  191. font-size: 31rpx;
  192. }
  193. .u-font-32 {
  194. font-size: 32rpx;
  195. }
  196. .u-font-33 {
  197. font-size: 33rpx;
  198. }
  199. .u-font-34 {
  200. font-size: 34rpx;
  201. }
  202. .u-font-35 {
  203. font-size: 35rpx;
  204. }
  205. .u-font-36 {
  206. font-size: 36rpx;
  207. }
  208. .u-font-37 {
  209. font-size: 37rpx;
  210. }
  211. .u-font-38 {
  212. font-size: 38rpx;
  213. }
  214. .u-font-39 {
  215. font-size: 39rpx;
  216. }
  217. .u-font-40 {
  218. font-size: 40rpx;
  219. }
  220. .u-margin-0, .u-m-0 {
  221. margin: 0rpx !important;
  222. }
  223. .u-padding-0, .u-p-0 {
  224. padding: 0rpx !important;
  225. }
  226. .u-m-l-0 {
  227. margin-left: 0rpx !important;
  228. }
  229. .u-p-l-0 {
  230. padding-left: 0rpx !important;
  231. }
  232. .u-margin-left-0 {
  233. margin-left: 0rpx !important;
  234. }
  235. .u-padding-left-0 {
  236. padding-left: 0rpx !important;
  237. }
  238. .u-m-t-0 {
  239. margin-top: 0rpx !important;
  240. }
  241. .u-p-t-0 {
  242. padding-top: 0rpx !important;
  243. }
  244. .u-margin-top-0 {
  245. margin-top: 0rpx !important;
  246. }
  247. .u-padding-top-0 {
  248. padding-top: 0rpx !important;
  249. }
  250. .u-m-r-0 {
  251. margin-right: 0rpx !important;
  252. }
  253. .u-p-r-0 {
  254. padding-right: 0rpx !important;
  255. }
  256. .u-margin-right-0 {
  257. margin-right: 0rpx !important;
  258. }
  259. .u-padding-right-0 {
  260. padding-right: 0rpx !important;
  261. }
  262. .u-m-b-0 {
  263. margin-bottom: 0rpx !important;
  264. }
  265. .u-p-b-0 {
  266. padding-bottom: 0rpx !important;
  267. }
  268. .u-margin-bottom-0 {
  269. margin-bottom: 0rpx !important;
  270. }
  271. .u-padding-bottom-0 {
  272. padding-bottom: 0rpx !important;
  273. }
  274. .u-margin-2, .u-m-2 {
  275. margin: 2rpx !important;
  276. }
  277. .u-padding-2, .u-p-2 {
  278. padding: 2rpx !important;
  279. }
  280. .u-m-l-2 {
  281. margin-left: 2rpx !important;
  282. }
  283. .u-p-l-2 {
  284. padding-left: 2rpx !important;
  285. }
  286. .u-margin-left-2 {
  287. margin-left: 2rpx !important;
  288. }
  289. .u-padding-left-2 {
  290. padding-left: 2rpx !important;
  291. }
  292. .u-m-t-2 {
  293. margin-top: 2rpx !important;
  294. }
  295. .u-p-t-2 {
  296. padding-top: 2rpx !important;
  297. }
  298. .u-margin-top-2 {
  299. margin-top: 2rpx !important;
  300. }
  301. .u-padding-top-2 {
  302. padding-top: 2rpx !important;
  303. }
  304. .u-m-r-2 {
  305. margin-right: 2rpx !important;
  306. }
  307. .u-p-r-2 {
  308. padding-right: 2rpx !important;
  309. }
  310. .u-margin-right-2 {
  311. margin-right: 2rpx !important;
  312. }
  313. .u-padding-right-2 {
  314. padding-right: 2rpx !important;
  315. }
  316. .u-m-b-2 {
  317. margin-bottom: 2rpx !important;
  318. }
  319. .u-p-b-2 {
  320. padding-bottom: 2rpx !important;
  321. }
  322. .u-margin-bottom-2 {
  323. margin-bottom: 2rpx !important;
  324. }
  325. .u-padding-bottom-2 {
  326. padding-bottom: 2rpx !important;
  327. }
  328. .u-margin-4, .u-m-4 {
  329. margin: 4rpx !important;
  330. }
  331. .u-padding-4, .u-p-4 {
  332. padding: 4rpx !important;
  333. }
  334. .u-m-l-4 {
  335. margin-left: 4rpx !important;
  336. }
  337. .u-p-l-4 {
  338. padding-left: 4rpx !important;
  339. }
  340. .u-margin-left-4 {
  341. margin-left: 4rpx !important;
  342. }
  343. .u-padding-left-4 {
  344. padding-left: 4rpx !important;
  345. }
  346. .u-m-t-4 {
  347. margin-top: 4rpx !important;
  348. }
  349. .u-p-t-4 {
  350. padding-top: 4rpx !important;
  351. }
  352. .u-margin-top-4 {
  353. margin-top: 4rpx !important;
  354. }
  355. .u-padding-top-4 {
  356. padding-top: 4rpx !important;
  357. }
  358. .u-m-r-4 {
  359. margin-right: 4rpx !important;
  360. }
  361. .u-p-r-4 {
  362. padding-right: 4rpx !important;
  363. }
  364. .u-margin-right-4 {
  365. margin-right: 4rpx !important;
  366. }
  367. .u-padding-right-4 {
  368. padding-right: 4rpx !important;
  369. }
  370. .u-m-b-4 {
  371. margin-bottom: 4rpx !important;
  372. }
  373. .u-p-b-4 {
  374. padding-bottom: 4rpx !important;
  375. }
  376. .u-margin-bottom-4 {
  377. margin-bottom: 4rpx !important;
  378. }
  379. .u-padding-bottom-4 {
  380. padding-bottom: 4rpx !important;
  381. }
  382. .u-margin-5, .u-m-5 {
  383. margin: 5rpx !important;
  384. }
  385. .u-padding-5, .u-p-5 {
  386. padding: 5rpx !important;
  387. }
  388. .u-m-l-5 {
  389. margin-left: 5rpx !important;
  390. }
  391. .u-p-l-5 {
  392. padding-left: 5rpx !important;
  393. }
  394. .u-margin-left-5 {
  395. margin-left: 5rpx !important;
  396. }
  397. .u-padding-left-5 {
  398. padding-left: 5rpx !important;
  399. }
  400. .u-m-t-5 {
  401. margin-top: 5rpx !important;
  402. }
  403. .u-p-t-5 {
  404. padding-top: 5rpx !important;
  405. }
  406. .u-margin-top-5 {
  407. margin-top: 5rpx !important;
  408. }
  409. .u-padding-top-5 {
  410. padding-top: 5rpx !important;
  411. }
  412. .u-m-r-5 {
  413. margin-right: 5rpx !important;
  414. }
  415. .u-p-r-5 {
  416. padding-right: 5rpx !important;
  417. }
  418. .u-margin-right-5 {
  419. margin-right: 5rpx !important;
  420. }
  421. .u-padding-right-5 {
  422. padding-right: 5rpx !important;
  423. }
  424. .u-m-b-5 {
  425. margin-bottom: 5rpx !important;
  426. }
  427. .u-p-b-5 {
  428. padding-bottom: 5rpx !important;
  429. }
  430. .u-margin-bottom-5 {
  431. margin-bottom: 5rpx !important;
  432. }
  433. .u-padding-bottom-5 {
  434. padding-bottom: 5rpx !important;
  435. }
  436. .u-margin-6, .u-m-6 {
  437. margin: 6rpx !important;
  438. }
  439. .u-padding-6, .u-p-6 {
  440. padding: 6rpx !important;
  441. }
  442. .u-m-l-6 {
  443. margin-left: 6rpx !important;
  444. }
  445. .u-p-l-6 {
  446. padding-left: 6rpx !important;
  447. }
  448. .u-margin-left-6 {
  449. margin-left: 6rpx !important;
  450. }
  451. .u-padding-left-6 {
  452. padding-left: 6rpx !important;
  453. }
  454. .u-m-t-6 {
  455. margin-top: 6rpx !important;
  456. }
  457. .u-p-t-6 {
  458. padding-top: 6rpx !important;
  459. }
  460. .u-margin-top-6 {
  461. margin-top: 6rpx !important;
  462. }
  463. .u-padding-top-6 {
  464. padding-top: 6rpx !important;
  465. }
  466. .u-m-r-6 {
  467. margin-right: 6rpx !important;
  468. }
  469. .u-p-r-6 {
  470. padding-right: 6rpx !important;
  471. }
  472. .u-margin-right-6 {
  473. margin-right: 6rpx !important;
  474. }
  475. .u-padding-right-6 {
  476. padding-right: 6rpx !important;
  477. }
  478. .u-m-b-6 {
  479. margin-bottom: 6rpx !important;
  480. }
  481. .u-p-b-6 {
  482. padding-bottom: 6rpx !important;
  483. }
  484. .u-margin-bottom-6 {
  485. margin-bottom: 6rpx !important;
  486. }
  487. .u-padding-bottom-6 {
  488. padding-bottom: 6rpx !important;
  489. }
  490. .u-margin-8, .u-m-8 {
  491. margin: 8rpx !important;
  492. }
  493. .u-padding-8, .u-p-8 {
  494. padding: 8rpx !important;
  495. }
  496. .u-m-l-8 {
  497. margin-left: 8rpx !important;
  498. }
  499. .u-p-l-8 {
  500. padding-left: 8rpx !important;
  501. }
  502. .u-margin-left-8 {
  503. margin-left: 8rpx !important;
  504. }
  505. .u-padding-left-8 {
  506. padding-left: 8rpx !important;
  507. }
  508. .u-m-t-8 {
  509. margin-top: 8rpx !important;
  510. }
  511. .u-p-t-8 {
  512. padding-top: 8rpx !important;
  513. }
  514. .u-margin-top-8 {
  515. margin-top: 8rpx !important;
  516. }
  517. .u-padding-top-8 {
  518. padding-top: 8rpx !important;
  519. }
  520. .u-m-r-8 {
  521. margin-right: 8rpx !important;
  522. }
  523. .u-p-r-8 {
  524. padding-right: 8rpx !important;
  525. }
  526. .u-margin-right-8 {
  527. margin-right: 8rpx !important;
  528. }
  529. .u-padding-right-8 {
  530. padding-right: 8rpx !important;
  531. }
  532. .u-m-b-8 {
  533. margin-bottom: 8rpx !important;
  534. }
  535. .u-p-b-8 {
  536. padding-bottom: 8rpx !important;
  537. }
  538. .u-margin-bottom-8 {
  539. margin-bottom: 8rpx !important;
  540. }
  541. .u-padding-bottom-8 {
  542. padding-bottom: 8rpx !important;
  543. }
  544. .u-margin-10, .u-m-10 {
  545. margin: 10rpx !important;
  546. }
  547. .u-padding-10, .u-p-10 {
  548. padding: 10rpx !important;
  549. }
  550. .u-m-l-10 {
  551. margin-left: 10rpx !important;
  552. }
  553. .u-p-l-10 {
  554. padding-left: 10rpx !important;
  555. }
  556. .u-margin-left-10 {
  557. margin-left: 10rpx !important;
  558. }
  559. .u-padding-left-10 {
  560. padding-left: 10rpx !important;
  561. }
  562. .u-m-t-10 {
  563. margin-top: 10rpx !important;
  564. }
  565. .u-p-t-10 {
  566. padding-top: 10rpx !important;
  567. }
  568. .u-margin-top-10 {
  569. margin-top: 10rpx !important;
  570. }
  571. .u-padding-top-10 {
  572. padding-top: 10rpx !important;
  573. }
  574. .u-m-r-10 {
  575. margin-right: 10rpx !important;
  576. }
  577. .u-p-r-10 {
  578. padding-right: 10rpx !important;
  579. }
  580. .u-margin-right-10 {
  581. margin-right: 10rpx !important;
  582. }
  583. .u-padding-right-10 {
  584. padding-right: 10rpx !important;
  585. }
  586. .u-m-b-10 {
  587. margin-bottom: 10rpx !important;
  588. }
  589. .u-p-b-10 {
  590. padding-bottom: 10rpx !important;
  591. }
  592. .u-margin-bottom-10 {
  593. margin-bottom: 10rpx !important;
  594. }
  595. .u-padding-bottom-10 {
  596. padding-bottom: 10rpx !important;
  597. }
  598. .u-margin-12, .u-m-12 {
  599. margin: 12rpx !important;
  600. }
  601. .u-padding-12, .u-p-12 {
  602. padding: 12rpx !important;
  603. }
  604. .u-m-l-12 {
  605. margin-left: 12rpx !important;
  606. }
  607. .u-p-l-12 {
  608. padding-left: 12rpx !important;
  609. }
  610. .u-margin-left-12 {
  611. margin-left: 12rpx !important;
  612. }
  613. .u-padding-left-12 {
  614. padding-left: 12rpx !important;
  615. }
  616. .u-m-t-12 {
  617. margin-top: 12rpx !important;
  618. }
  619. .u-p-t-12 {
  620. padding-top: 12rpx !important;
  621. }
  622. .u-margin-top-12 {
  623. margin-top: 12rpx !important;
  624. }
  625. .u-padding-top-12 {
  626. padding-top: 12rpx !important;
  627. }
  628. .u-m-r-12 {
  629. margin-right: 12rpx !important;
  630. }
  631. .u-p-r-12 {
  632. padding-right: 12rpx !important;
  633. }
  634. .u-margin-right-12 {
  635. margin-right: 12rpx !important;
  636. }
  637. .u-padding-right-12 {
  638. padding-right: 12rpx !important;
  639. }
  640. .u-m-b-12 {
  641. margin-bottom: 12rpx !important;
  642. }
  643. .u-p-b-12 {
  644. padding-bottom: 12rpx !important;
  645. }
  646. .u-margin-bottom-12 {
  647. margin-bottom: 12rpx !important;
  648. }
  649. .u-padding-bottom-12 {
  650. padding-bottom: 12rpx !important;
  651. }
  652. .u-margin-14, .u-m-14 {
  653. margin: 14rpx !important;
  654. }
  655. .u-padding-14, .u-p-14 {
  656. padding: 14rpx !important;
  657. }
  658. .u-m-l-14 {
  659. margin-left: 14rpx !important;
  660. }
  661. .u-p-l-14 {
  662. padding-left: 14rpx !important;
  663. }
  664. .u-margin-left-14 {
  665. margin-left: 14rpx !important;
  666. }
  667. .u-padding-left-14 {
  668. padding-left: 14rpx !important;
  669. }
  670. .u-m-t-14 {
  671. margin-top: 14rpx !important;
  672. }
  673. .u-p-t-14 {
  674. padding-top: 14rpx !important;
  675. }
  676. .u-margin-top-14 {
  677. margin-top: 14rpx !important;
  678. }
  679. .u-padding-top-14 {
  680. padding-top: 14rpx !important;
  681. }
  682. .u-m-r-14 {
  683. margin-right: 14rpx !important;
  684. }
  685. .u-p-r-14 {
  686. padding-right: 14rpx !important;
  687. }
  688. .u-margin-right-14 {
  689. margin-right: 14rpx !important;
  690. }
  691. .u-padding-right-14 {
  692. padding-right: 14rpx !important;
  693. }
  694. .u-m-b-14 {
  695. margin-bottom: 14rpx !important;
  696. }
  697. .u-p-b-14 {
  698. padding-bottom: 14rpx !important;
  699. }
  700. .u-margin-bottom-14 {
  701. margin-bottom: 14rpx !important;
  702. }
  703. .u-padding-bottom-14 {
  704. padding-bottom: 14rpx !important;
  705. }
  706. .u-margin-15, .u-m-15 {
  707. margin: 15rpx !important;
  708. }
  709. .u-padding-15, .u-p-15 {
  710. padding: 15rpx !important;
  711. }
  712. .u-m-l-15 {
  713. margin-left: 15rpx !important;
  714. }
  715. .u-p-l-15 {
  716. padding-left: 15rpx !important;
  717. }
  718. .u-margin-left-15 {
  719. margin-left: 15rpx !important;
  720. }
  721. .u-padding-left-15 {
  722. padding-left: 15rpx !important;
  723. }
  724. .u-m-t-15 {
  725. margin-top: 15rpx !important;
  726. }
  727. .u-p-t-15 {
  728. padding-top: 15rpx !important;
  729. }
  730. .u-margin-top-15 {
  731. margin-top: 15rpx !important;
  732. }
  733. .u-padding-top-15 {
  734. padding-top: 15rpx !important;
  735. }
  736. .u-m-r-15 {
  737. margin-right: 15rpx !important;
  738. }
  739. .u-p-r-15 {
  740. padding-right: 15rpx !important;
  741. }
  742. .u-margin-right-15 {
  743. margin-right: 15rpx !important;
  744. }
  745. .u-padding-right-15 {
  746. padding-right: 15rpx !important;
  747. }
  748. .u-m-b-15 {
  749. margin-bottom: 15rpx !important;
  750. }
  751. .u-p-b-15 {
  752. padding-bottom: 15rpx !important;
  753. }
  754. .u-margin-bottom-15 {
  755. margin-bottom: 15rpx !important;
  756. }
  757. .u-padding-bottom-15 {
  758. padding-bottom: 15rpx !important;
  759. }
  760. .u-margin-16, .u-m-16 {
  761. margin: 16rpx !important;
  762. }
  763. .u-padding-16, .u-p-16 {
  764. padding: 16rpx !important;
  765. }
  766. .u-m-l-16 {
  767. margin-left: 16rpx !important;
  768. }
  769. .u-p-l-16 {
  770. padding-left: 16rpx !important;
  771. }
  772. .u-margin-left-16 {
  773. margin-left: 16rpx !important;
  774. }
  775. .u-padding-left-16 {
  776. padding-left: 16rpx !important;
  777. }
  778. .u-m-t-16 {
  779. margin-top: 16rpx !important;
  780. }
  781. .u-p-t-16 {
  782. padding-top: 16rpx !important;
  783. }
  784. .u-margin-top-16 {
  785. margin-top: 16rpx !important;
  786. }
  787. .u-padding-top-16 {
  788. padding-top: 16rpx !important;
  789. }
  790. .u-m-r-16 {
  791. margin-right: 16rpx !important;
  792. }
  793. .u-p-r-16 {
  794. padding-right: 16rpx !important;
  795. }
  796. .u-margin-right-16 {
  797. margin-right: 16rpx !important;
  798. }
  799. .u-padding-right-16 {
  800. padding-right: 16rpx !important;
  801. }
  802. .u-m-b-16 {
  803. margin-bottom: 16rpx !important;
  804. }
  805. .u-p-b-16 {
  806. padding-bottom: 16rpx !important;
  807. }
  808. .u-margin-bottom-16 {
  809. margin-bottom: 16rpx !important;
  810. }
  811. .u-padding-bottom-16 {
  812. padding-bottom: 16rpx !important;
  813. }
  814. .u-margin-18, .u-m-18 {
  815. margin: 18rpx !important;
  816. }
  817. .u-padding-18, .u-p-18 {
  818. padding: 18rpx !important;
  819. }
  820. .u-m-l-18 {
  821. margin-left: 18rpx !important;
  822. }
  823. .u-p-l-18 {
  824. padding-left: 18rpx !important;
  825. }
  826. .u-margin-left-18 {
  827. margin-left: 18rpx !important;
  828. }
  829. .u-padding-left-18 {
  830. padding-left: 18rpx !important;
  831. }
  832. .u-m-t-18 {
  833. margin-top: 18rpx !important;
  834. }
  835. .u-p-t-18 {
  836. padding-top: 18rpx !important;
  837. }
  838. .u-margin-top-18 {
  839. margin-top: 18rpx !important;
  840. }
  841. .u-padding-top-18 {
  842. padding-top: 18rpx !important;
  843. }
  844. .u-m-r-18 {
  845. margin-right: 18rpx !important;
  846. }
  847. .u-p-r-18 {
  848. padding-right: 18rpx !important;
  849. }
  850. .u-margin-right-18 {
  851. margin-right: 18rpx !important;
  852. }
  853. .u-padding-right-18 {
  854. padding-right: 18rpx !important;
  855. }
  856. .u-m-b-18 {
  857. margin-bottom: 18rpx !important;
  858. }
  859. .u-p-b-18 {
  860. padding-bottom: 18rpx !important;
  861. }
  862. .u-margin-bottom-18 {
  863. margin-bottom: 18rpx !important;
  864. }
  865. .u-padding-bottom-18 {
  866. padding-bottom: 18rpx !important;
  867. }
  868. .u-margin-20, .u-m-20 {
  869. margin: 20rpx !important;
  870. }
  871. .u-padding-20, .u-p-20 {
  872. padding: 20rpx !important;
  873. }
  874. .u-m-l-20 {
  875. margin-left: 20rpx !important;
  876. }
  877. .u-p-l-20 {
  878. padding-left: 20rpx !important;
  879. }
  880. .u-margin-left-20 {
  881. margin-left: 20rpx !important;
  882. }
  883. .u-padding-left-20 {
  884. padding-left: 20rpx !important;
  885. }
  886. .u-m-t-20 {
  887. margin-top: 20rpx !important;
  888. }
  889. .u-p-t-20 {
  890. padding-top: 20rpx !important;
  891. }
  892. .u-margin-top-20 {
  893. margin-top: 20rpx !important;
  894. }
  895. .u-padding-top-20 {
  896. padding-top: 20rpx !important;
  897. }
  898. .u-m-r-20 {
  899. margin-right: 20rpx !important;
  900. }
  901. .u-p-r-20 {
  902. padding-right: 20rpx !important;
  903. }
  904. .u-margin-right-20 {
  905. margin-right: 20rpx !important;
  906. }
  907. .u-padding-right-20 {
  908. padding-right: 20rpx !important;
  909. }
  910. .u-m-b-20 {
  911. margin-bottom: 20rpx !important;
  912. }
  913. .u-p-b-20 {
  914. padding-bottom: 20rpx !important;
  915. }
  916. .u-margin-bottom-20 {
  917. margin-bottom: 20rpx !important;
  918. }
  919. .u-padding-bottom-20 {
  920. padding-bottom: 20rpx !important;
  921. }
  922. .u-margin-22, .u-m-22 {
  923. margin: 22rpx !important;
  924. }
  925. .u-padding-22, .u-p-22 {
  926. padding: 22rpx !important;
  927. }
  928. .u-m-l-22 {
  929. margin-left: 22rpx !important;
  930. }
  931. .u-p-l-22 {
  932. padding-left: 22rpx !important;
  933. }
  934. .u-margin-left-22 {
  935. margin-left: 22rpx !important;
  936. }
  937. .u-padding-left-22 {
  938. padding-left: 22rpx !important;
  939. }
  940. .u-m-t-22 {
  941. margin-top: 22rpx !important;
  942. }
  943. .u-p-t-22 {
  944. padding-top: 22rpx !important;
  945. }
  946. .u-margin-top-22 {
  947. margin-top: 22rpx !important;
  948. }
  949. .u-padding-top-22 {
  950. padding-top: 22rpx !important;
  951. }
  952. .u-m-r-22 {
  953. margin-right: 22rpx !important;
  954. }
  955. .u-p-r-22 {
  956. padding-right: 22rpx !important;
  957. }
  958. .u-margin-right-22 {
  959. margin-right: 22rpx !important;
  960. }
  961. .u-padding-right-22 {
  962. padding-right: 22rpx !important;
  963. }
  964. .u-m-b-22 {
  965. margin-bottom: 22rpx !important;
  966. }
  967. .u-p-b-22 {
  968. padding-bottom: 22rpx !important;
  969. }
  970. .u-margin-bottom-22 {
  971. margin-bottom: 22rpx !important;
  972. }
  973. .u-padding-bottom-22 {
  974. padding-bottom: 22rpx !important;
  975. }
  976. .u-margin-24, .u-m-24 {
  977. margin: 24rpx !important;
  978. }
  979. .u-padding-24, .u-p-24 {
  980. padding: 24rpx !important;
  981. }
  982. .u-m-l-24 {
  983. margin-left: 24rpx !important;
  984. }
  985. .u-p-l-24 {
  986. padding-left: 24rpx !important;
  987. }
  988. .u-margin-left-24 {
  989. margin-left: 24rpx !important;
  990. }
  991. .u-padding-left-24 {
  992. padding-left: 24rpx !important;
  993. }
  994. .u-m-t-24 {
  995. margin-top: 24rpx !important;
  996. }
  997. .u-p-t-24 {
  998. padding-top: 24rpx !important;
  999. }
  1000. .u-margin-top-24 {
  1001. margin-top: 24rpx !important;
  1002. }
  1003. .u-padding-top-24 {
  1004. padding-top: 24rpx !important;
  1005. }
  1006. .u-m-r-24 {
  1007. margin-right: 24rpx !important;
  1008. }
  1009. .u-p-r-24 {
  1010. padding-right: 24rpx !important;
  1011. }
  1012. .u-margin-right-24 {
  1013. margin-right: 24rpx !important;
  1014. }
  1015. .u-padding-right-24 {
  1016. padding-right: 24rpx !important;
  1017. }
  1018. .u-m-b-24 {
  1019. margin-bottom: 24rpx !important;
  1020. }
  1021. .u-p-b-24 {
  1022. padding-bottom: 24rpx !important;
  1023. }
  1024. .u-margin-bottom-24 {
  1025. margin-bottom: 24rpx !important;
  1026. }
  1027. .u-padding-bottom-24 {
  1028. padding-bottom: 24rpx !important;
  1029. }
  1030. .u-margin-25, .u-m-25 {
  1031. margin: 25rpx !important;
  1032. }
  1033. .u-padding-25, .u-p-25 {
  1034. padding: 25rpx !important;
  1035. }
  1036. .u-m-l-25 {
  1037. margin-left: 25rpx !important;
  1038. }
  1039. .u-p-l-25 {
  1040. padding-left: 25rpx !important;
  1041. }
  1042. .u-margin-left-25 {
  1043. margin-left: 25rpx !important;
  1044. }
  1045. .u-padding-left-25 {
  1046. padding-left: 25rpx !important;
  1047. }
  1048. .u-m-t-25 {
  1049. margin-top: 25rpx !important;
  1050. }
  1051. .u-p-t-25 {
  1052. padding-top: 25rpx !important;
  1053. }
  1054. .u-margin-top-25 {
  1055. margin-top: 25rpx !important;
  1056. }
  1057. .u-padding-top-25 {
  1058. padding-top: 25rpx !important;
  1059. }
  1060. .u-m-r-25 {
  1061. margin-right: 25rpx !important;
  1062. }
  1063. .u-p-r-25 {
  1064. padding-right: 25rpx !important;
  1065. }
  1066. .u-margin-right-25 {
  1067. margin-right: 25rpx !important;
  1068. }
  1069. .u-padding-right-25 {
  1070. padding-right: 25rpx !important;
  1071. }
  1072. .u-m-b-25 {
  1073. margin-bottom: 25rpx !important;
  1074. }
  1075. .u-p-b-25 {
  1076. padding-bottom: 25rpx !important;
  1077. }
  1078. .u-margin-bottom-25 {
  1079. margin-bottom: 25rpx !important;
  1080. }
  1081. .u-padding-bottom-25 {
  1082. padding-bottom: 25rpx !important;
  1083. }
  1084. .u-margin-26, .u-m-26 {
  1085. margin: 26rpx !important;
  1086. }
  1087. .u-padding-26, .u-p-26 {
  1088. padding: 26rpx !important;
  1089. }
  1090. .u-m-l-26 {
  1091. margin-left: 26rpx !important;
  1092. }
  1093. .u-p-l-26 {
  1094. padding-left: 26rpx !important;
  1095. }
  1096. .u-margin-left-26 {
  1097. margin-left: 26rpx !important;
  1098. }
  1099. .u-padding-left-26 {
  1100. padding-left: 26rpx !important;
  1101. }
  1102. .u-m-t-26 {
  1103. margin-top: 26rpx !important;
  1104. }
  1105. .u-p-t-26 {
  1106. padding-top: 26rpx !important;
  1107. }
  1108. .u-margin-top-26 {
  1109. margin-top: 26rpx !important;
  1110. }
  1111. .u-padding-top-26 {
  1112. padding-top: 26rpx !important;
  1113. }
  1114. .u-m-r-26 {
  1115. margin-right: 26rpx !important;
  1116. }
  1117. .u-p-r-26 {
  1118. padding-right: 26rpx !important;
  1119. }
  1120. .u-margin-right-26 {
  1121. margin-right: 26rpx !important;
  1122. }
  1123. .u-padding-right-26 {
  1124. padding-right: 26rpx !important;
  1125. }
  1126. .u-m-b-26 {
  1127. margin-bottom: 26rpx !important;
  1128. }
  1129. .u-p-b-26 {
  1130. padding-bottom: 26rpx !important;
  1131. }
  1132. .u-margin-bottom-26 {
  1133. margin-bottom: 26rpx !important;
  1134. }
  1135. .u-padding-bottom-26 {
  1136. padding-bottom: 26rpx !important;
  1137. }
  1138. .u-margin-28, .u-m-28 {
  1139. margin: 28rpx !important;
  1140. }
  1141. .u-padding-28, .u-p-28 {
  1142. padding: 28rpx !important;
  1143. }
  1144. .u-m-l-28 {
  1145. margin-left: 28rpx !important;
  1146. }
  1147. .u-p-l-28 {
  1148. padding-left: 28rpx !important;
  1149. }
  1150. .u-margin-left-28 {
  1151. margin-left: 28rpx !important;
  1152. }
  1153. .u-padding-left-28 {
  1154. padding-left: 28rpx !important;
  1155. }
  1156. .u-m-t-28 {
  1157. margin-top: 28rpx !important;
  1158. }
  1159. .u-p-t-28 {
  1160. padding-top: 28rpx !important;
  1161. }
  1162. .u-margin-top-28 {
  1163. margin-top: 28rpx !important;
  1164. }
  1165. .u-padding-top-28 {
  1166. padding-top: 28rpx !important;
  1167. }
  1168. .u-m-r-28 {
  1169. margin-right: 28rpx !important;
  1170. }
  1171. .u-p-r-28 {
  1172. padding-right: 28rpx !important;
  1173. }
  1174. .u-margin-right-28 {
  1175. margin-right: 28rpx !important;
  1176. }
  1177. .u-padding-right-28 {
  1178. padding-right: 28rpx !important;
  1179. }
  1180. .u-m-b-28 {
  1181. margin-bottom: 28rpx !important;
  1182. }
  1183. .u-p-b-28 {
  1184. padding-bottom: 28rpx !important;
  1185. }
  1186. .u-margin-bottom-28 {
  1187. margin-bottom: 28rpx !important;
  1188. }
  1189. .u-padding-bottom-28 {
  1190. padding-bottom: 28rpx !important;
  1191. }
  1192. .u-margin-30, .u-m-30 {
  1193. margin: 30rpx !important;
  1194. }
  1195. .u-padding-30, .u-p-30 {
  1196. padding: 30rpx !important;
  1197. }
  1198. .u-m-l-30 {
  1199. margin-left: 30rpx !important;
  1200. }
  1201. .u-p-l-30 {
  1202. padding-left: 30rpx !important;
  1203. }
  1204. .u-margin-left-30 {
  1205. margin-left: 30rpx !important;
  1206. }
  1207. .u-padding-left-30 {
  1208. padding-left: 30rpx !important;
  1209. }
  1210. .u-m-t-30 {
  1211. margin-top: 30rpx !important;
  1212. }
  1213. .u-p-t-30 {
  1214. padding-top: 30rpx !important;
  1215. }
  1216. .u-margin-top-30 {
  1217. margin-top: 30rpx !important;
  1218. }
  1219. .u-padding-top-30 {
  1220. padding-top: 30rpx !important;
  1221. }
  1222. .u-m-r-30 {
  1223. margin-right: 30rpx !important;
  1224. }
  1225. .u-p-r-30 {
  1226. padding-right: 30rpx !important;
  1227. }
  1228. .u-margin-right-30 {
  1229. margin-right: 30rpx !important;
  1230. }
  1231. .u-padding-right-30 {
  1232. padding-right: 30rpx !important;
  1233. }
  1234. .u-m-b-30 {
  1235. margin-bottom: 30rpx !important;
  1236. }
  1237. .u-p-b-30 {
  1238. padding-bottom: 30rpx !important;
  1239. }
  1240. .u-margin-bottom-30 {
  1241. margin-bottom: 30rpx !important;
  1242. }
  1243. .u-padding-bottom-30 {
  1244. padding-bottom: 30rpx !important;
  1245. }
  1246. .u-margin-32, .u-m-32 {
  1247. margin: 32rpx !important;
  1248. }
  1249. .u-padding-32, .u-p-32 {
  1250. padding: 32rpx !important;
  1251. }
  1252. .u-m-l-32 {
  1253. margin-left: 32rpx !important;
  1254. }
  1255. .u-p-l-32 {
  1256. padding-left: 32rpx !important;
  1257. }
  1258. .u-margin-left-32 {
  1259. margin-left: 32rpx !important;
  1260. }
  1261. .u-padding-left-32 {
  1262. padding-left: 32rpx !important;
  1263. }
  1264. .u-m-t-32 {
  1265. margin-top: 32rpx !important;
  1266. }
  1267. .u-p-t-32 {
  1268. padding-top: 32rpx !important;
  1269. }
  1270. .u-margin-top-32 {
  1271. margin-top: 32rpx !important;
  1272. }
  1273. .u-padding-top-32 {
  1274. padding-top: 32rpx !important;
  1275. }
  1276. .u-m-r-32 {
  1277. margin-right: 32rpx !important;
  1278. }
  1279. .u-p-r-32 {
  1280. padding-right: 32rpx !important;
  1281. }
  1282. .u-margin-right-32 {
  1283. margin-right: 32rpx !important;
  1284. }
  1285. .u-padding-right-32 {
  1286. padding-right: 32rpx !important;
  1287. }
  1288. .u-m-b-32 {
  1289. margin-bottom: 32rpx !important;
  1290. }
  1291. .u-p-b-32 {
  1292. padding-bottom: 32rpx !important;
  1293. }
  1294. .u-margin-bottom-32 {
  1295. margin-bottom: 32rpx !important;
  1296. }
  1297. .u-padding-bottom-32 {
  1298. padding-bottom: 32rpx !important;
  1299. }
  1300. .u-margin-34, .u-m-34 {
  1301. margin: 34rpx !important;
  1302. }
  1303. .u-padding-34, .u-p-34 {
  1304. padding: 34rpx !important;
  1305. }
  1306. .u-m-l-34 {
  1307. margin-left: 34rpx !important;
  1308. }
  1309. .u-p-l-34 {
  1310. padding-left: 34rpx !important;
  1311. }
  1312. .u-margin-left-34 {
  1313. margin-left: 34rpx !important;
  1314. }
  1315. .u-padding-left-34 {
  1316. padding-left: 34rpx !important;
  1317. }
  1318. .u-m-t-34 {
  1319. margin-top: 34rpx !important;
  1320. }
  1321. .u-p-t-34 {
  1322. padding-top: 34rpx !important;
  1323. }
  1324. .u-margin-top-34 {
  1325. margin-top: 34rpx !important;
  1326. }
  1327. .u-padding-top-34 {
  1328. padding-top: 34rpx !important;
  1329. }
  1330. .u-m-r-34 {
  1331. margin-right: 34rpx !important;
  1332. }
  1333. .u-p-r-34 {
  1334. padding-right: 34rpx !important;
  1335. }
  1336. .u-margin-right-34 {
  1337. margin-right: 34rpx !important;
  1338. }
  1339. .u-padding-right-34 {
  1340. padding-right: 34rpx !important;
  1341. }
  1342. .u-m-b-34 {
  1343. margin-bottom: 34rpx !important;
  1344. }
  1345. .u-p-b-34 {
  1346. padding-bottom: 34rpx !important;
  1347. }
  1348. .u-margin-bottom-34 {
  1349. margin-bottom: 34rpx !important;
  1350. }
  1351. .u-padding-bottom-34 {
  1352. padding-bottom: 34rpx !important;
  1353. }
  1354. .u-margin-35, .u-m-35 {
  1355. margin: 35rpx !important;
  1356. }
  1357. .u-padding-35, .u-p-35 {
  1358. padding: 35rpx !important;
  1359. }
  1360. .u-m-l-35 {
  1361. margin-left: 35rpx !important;
  1362. }
  1363. .u-p-l-35 {
  1364. padding-left: 35rpx !important;
  1365. }
  1366. .u-margin-left-35 {
  1367. margin-left: 35rpx !important;
  1368. }
  1369. .u-padding-left-35 {
  1370. padding-left: 35rpx !important;
  1371. }
  1372. .u-m-t-35 {
  1373. margin-top: 35rpx !important;
  1374. }
  1375. .u-p-t-35 {
  1376. padding-top: 35rpx !important;
  1377. }
  1378. .u-margin-top-35 {
  1379. margin-top: 35rpx !important;
  1380. }
  1381. .u-padding-top-35 {
  1382. padding-top: 35rpx !important;
  1383. }
  1384. .u-m-r-35 {
  1385. margin-right: 35rpx !important;
  1386. }
  1387. .u-p-r-35 {
  1388. padding-right: 35rpx !important;
  1389. }
  1390. .u-margin-right-35 {
  1391. margin-right: 35rpx !important;
  1392. }
  1393. .u-padding-right-35 {
  1394. padding-right: 35rpx !important;
  1395. }
  1396. .u-m-b-35 {
  1397. margin-bottom: 35rpx !important;
  1398. }
  1399. .u-p-b-35 {
  1400. padding-bottom: 35rpx !important;
  1401. }
  1402. .u-margin-bottom-35 {
  1403. margin-bottom: 35rpx !important;
  1404. }
  1405. .u-padding-bottom-35 {
  1406. padding-bottom: 35rpx !important;
  1407. }
  1408. .u-margin-36, .u-m-36 {
  1409. margin: 36rpx !important;
  1410. }
  1411. .u-padding-36, .u-p-36 {
  1412. padding: 36rpx !important;
  1413. }
  1414. .u-m-l-36 {
  1415. margin-left: 36rpx !important;
  1416. }
  1417. .u-p-l-36 {
  1418. padding-left: 36rpx !important;
  1419. }
  1420. .u-margin-left-36 {
  1421. margin-left: 36rpx !important;
  1422. }
  1423. .u-padding-left-36 {
  1424. padding-left: 36rpx !important;
  1425. }
  1426. .u-m-t-36 {
  1427. margin-top: 36rpx !important;
  1428. }
  1429. .u-p-t-36 {
  1430. padding-top: 36rpx !important;
  1431. }
  1432. .u-margin-top-36 {
  1433. margin-top: 36rpx !important;
  1434. }
  1435. .u-padding-top-36 {
  1436. padding-top: 36rpx !important;
  1437. }
  1438. .u-m-r-36 {
  1439. margin-right: 36rpx !important;
  1440. }
  1441. .u-p-r-36 {
  1442. padding-right: 36rpx !important;
  1443. }
  1444. .u-margin-right-36 {
  1445. margin-right: 36rpx !important;
  1446. }
  1447. .u-padding-right-36 {
  1448. padding-right: 36rpx !important;
  1449. }
  1450. .u-m-b-36 {
  1451. margin-bottom: 36rpx !important;
  1452. }
  1453. .u-p-b-36 {
  1454. padding-bottom: 36rpx !important;
  1455. }
  1456. .u-margin-bottom-36 {
  1457. margin-bottom: 36rpx !important;
  1458. }
  1459. .u-padding-bottom-36 {
  1460. padding-bottom: 36rpx !important;
  1461. }
  1462. .u-margin-38, .u-m-38 {
  1463. margin: 38rpx !important;
  1464. }
  1465. .u-padding-38, .u-p-38 {
  1466. padding: 38rpx !important;
  1467. }
  1468. .u-m-l-38 {
  1469. margin-left: 38rpx !important;
  1470. }
  1471. .u-p-l-38 {
  1472. padding-left: 38rpx !important;
  1473. }
  1474. .u-margin-left-38 {
  1475. margin-left: 38rpx !important;
  1476. }
  1477. .u-padding-left-38 {
  1478. padding-left: 38rpx !important;
  1479. }
  1480. .u-m-t-38 {
  1481. margin-top: 38rpx !important;
  1482. }
  1483. .u-p-t-38 {
  1484. padding-top: 38rpx !important;
  1485. }
  1486. .u-margin-top-38 {
  1487. margin-top: 38rpx !important;
  1488. }
  1489. .u-padding-top-38 {
  1490. padding-top: 38rpx !important;
  1491. }
  1492. .u-m-r-38 {
  1493. margin-right: 38rpx !important;
  1494. }
  1495. .u-p-r-38 {
  1496. padding-right: 38rpx !important;
  1497. }
  1498. .u-margin-right-38 {
  1499. margin-right: 38rpx !important;
  1500. }
  1501. .u-padding-right-38 {
  1502. padding-right: 38rpx !important;
  1503. }
  1504. .u-m-b-38 {
  1505. margin-bottom: 38rpx !important;
  1506. }
  1507. .u-p-b-38 {
  1508. padding-bottom: 38rpx !important;
  1509. }
  1510. .u-margin-bottom-38 {
  1511. margin-bottom: 38rpx !important;
  1512. }
  1513. .u-padding-bottom-38 {
  1514. padding-bottom: 38rpx !important;
  1515. }
  1516. .u-margin-40, .u-m-40 {
  1517. margin: 40rpx !important;
  1518. }
  1519. .u-padding-40, .u-p-40 {
  1520. padding: 40rpx !important;
  1521. }
  1522. .u-m-l-40 {
  1523. margin-left: 40rpx !important;
  1524. }
  1525. .u-p-l-40 {
  1526. padding-left: 40rpx !important;
  1527. }
  1528. .u-margin-left-40 {
  1529. margin-left: 40rpx !important;
  1530. }
  1531. .u-padding-left-40 {
  1532. padding-left: 40rpx !important;
  1533. }
  1534. .u-m-t-40 {
  1535. margin-top: 40rpx !important;
  1536. }
  1537. .u-p-t-40 {
  1538. padding-top: 40rpx !important;
  1539. }
  1540. .u-margin-top-40 {
  1541. margin-top: 40rpx !important;
  1542. }
  1543. .u-padding-top-40 {
  1544. padding-top: 40rpx !important;
  1545. }
  1546. .u-m-r-40 {
  1547. margin-right: 40rpx !important;
  1548. }
  1549. .u-p-r-40 {
  1550. padding-right: 40rpx !important;
  1551. }
  1552. .u-margin-right-40 {
  1553. margin-right: 40rpx !important;
  1554. }
  1555. .u-padding-right-40 {
  1556. padding-right: 40rpx !important;
  1557. }
  1558. .u-m-b-40 {
  1559. margin-bottom: 40rpx !important;
  1560. }
  1561. .u-p-b-40 {
  1562. padding-bottom: 40rpx !important;
  1563. }
  1564. .u-margin-bottom-40 {
  1565. margin-bottom: 40rpx !important;
  1566. }
  1567. .u-padding-bottom-40 {
  1568. padding-bottom: 40rpx !important;
  1569. }
  1570. .u-margin-42, .u-m-42 {
  1571. margin: 42rpx !important;
  1572. }
  1573. .u-padding-42, .u-p-42 {
  1574. padding: 42rpx !important;
  1575. }
  1576. .u-m-l-42 {
  1577. margin-left: 42rpx !important;
  1578. }
  1579. .u-p-l-42 {
  1580. padding-left: 42rpx !important;
  1581. }
  1582. .u-margin-left-42 {
  1583. margin-left: 42rpx !important;
  1584. }
  1585. .u-padding-left-42 {
  1586. padding-left: 42rpx !important;
  1587. }
  1588. .u-m-t-42 {
  1589. margin-top: 42rpx !important;
  1590. }
  1591. .u-p-t-42 {
  1592. padding-top: 42rpx !important;
  1593. }
  1594. .u-margin-top-42 {
  1595. margin-top: 42rpx !important;
  1596. }
  1597. .u-padding-top-42 {
  1598. padding-top: 42rpx !important;
  1599. }
  1600. .u-m-r-42 {
  1601. margin-right: 42rpx !important;
  1602. }
  1603. .u-p-r-42 {
  1604. padding-right: 42rpx !important;
  1605. }
  1606. .u-margin-right-42 {
  1607. margin-right: 42rpx !important;
  1608. }
  1609. .u-padding-right-42 {
  1610. padding-right: 42rpx !important;
  1611. }
  1612. .u-m-b-42 {
  1613. margin-bottom: 42rpx !important;
  1614. }
  1615. .u-p-b-42 {
  1616. padding-bottom: 42rpx !important;
  1617. }
  1618. .u-margin-bottom-42 {
  1619. margin-bottom: 42rpx !important;
  1620. }
  1621. .u-padding-bottom-42 {
  1622. padding-bottom: 42rpx !important;
  1623. }
  1624. .u-margin-44, .u-m-44 {
  1625. margin: 44rpx !important;
  1626. }
  1627. .u-padding-44, .u-p-44 {
  1628. padding: 44rpx !important;
  1629. }
  1630. .u-m-l-44 {
  1631. margin-left: 44rpx !important;
  1632. }
  1633. .u-p-l-44 {
  1634. padding-left: 44rpx !important;
  1635. }
  1636. .u-margin-left-44 {
  1637. margin-left: 44rpx !important;
  1638. }
  1639. .u-padding-left-44 {
  1640. padding-left: 44rpx !important;
  1641. }
  1642. .u-m-t-44 {
  1643. margin-top: 44rpx !important;
  1644. }
  1645. .u-p-t-44 {
  1646. padding-top: 44rpx !important;
  1647. }
  1648. .u-margin-top-44 {
  1649. margin-top: 44rpx !important;
  1650. }
  1651. .u-padding-top-44 {
  1652. padding-top: 44rpx !important;
  1653. }
  1654. .u-m-r-44 {
  1655. margin-right: 44rpx !important;
  1656. }
  1657. .u-p-r-44 {
  1658. padding-right: 44rpx !important;
  1659. }
  1660. .u-margin-right-44 {
  1661. margin-right: 44rpx !important;
  1662. }
  1663. .u-padding-right-44 {
  1664. padding-right: 44rpx !important;
  1665. }
  1666. .u-m-b-44 {
  1667. margin-bottom: 44rpx !important;
  1668. }
  1669. .u-p-b-44 {
  1670. padding-bottom: 44rpx !important;
  1671. }
  1672. .u-margin-bottom-44 {
  1673. margin-bottom: 44rpx !important;
  1674. }
  1675. .u-padding-bottom-44 {
  1676. padding-bottom: 44rpx !important;
  1677. }
  1678. .u-margin-45, .u-m-45 {
  1679. margin: 45rpx !important;
  1680. }
  1681. .u-padding-45, .u-p-45 {
  1682. padding: 45rpx !important;
  1683. }
  1684. .u-m-l-45 {
  1685. margin-left: 45rpx !important;
  1686. }
  1687. .u-p-l-45 {
  1688. padding-left: 45rpx !important;
  1689. }
  1690. .u-margin-left-45 {
  1691. margin-left: 45rpx !important;
  1692. }
  1693. .u-padding-left-45 {
  1694. padding-left: 45rpx !important;
  1695. }
  1696. .u-m-t-45 {
  1697. margin-top: 45rpx !important;
  1698. }
  1699. .u-p-t-45 {
  1700. padding-top: 45rpx !important;
  1701. }
  1702. .u-margin-top-45 {
  1703. margin-top: 45rpx !important;
  1704. }
  1705. .u-padding-top-45 {
  1706. padding-top: 45rpx !important;
  1707. }
  1708. .u-m-r-45 {
  1709. margin-right: 45rpx !important;
  1710. }
  1711. .u-p-r-45 {
  1712. padding-right: 45rpx !important;
  1713. }
  1714. .u-margin-right-45 {
  1715. margin-right: 45rpx !important;
  1716. }
  1717. .u-padding-right-45 {
  1718. padding-right: 45rpx !important;
  1719. }
  1720. .u-m-b-45 {
  1721. margin-bottom: 45rpx !important;
  1722. }
  1723. .u-p-b-45 {
  1724. padding-bottom: 45rpx !important;
  1725. }
  1726. .u-margin-bottom-45 {
  1727. margin-bottom: 45rpx !important;
  1728. }
  1729. .u-padding-bottom-45 {
  1730. padding-bottom: 45rpx !important;
  1731. }
  1732. .u-margin-46, .u-m-46 {
  1733. margin: 46rpx !important;
  1734. }
  1735. .u-padding-46, .u-p-46 {
  1736. padding: 46rpx !important;
  1737. }
  1738. .u-m-l-46 {
  1739. margin-left: 46rpx !important;
  1740. }
  1741. .u-p-l-46 {
  1742. padding-left: 46rpx !important;
  1743. }
  1744. .u-margin-left-46 {
  1745. margin-left: 46rpx !important;
  1746. }
  1747. .u-padding-left-46 {
  1748. padding-left: 46rpx !important;
  1749. }
  1750. .u-m-t-46 {
  1751. margin-top: 46rpx !important;
  1752. }
  1753. .u-p-t-46 {
  1754. padding-top: 46rpx !important;
  1755. }
  1756. .u-margin-top-46 {
  1757. margin-top: 46rpx !important;
  1758. }
  1759. .u-padding-top-46 {
  1760. padding-top: 46rpx !important;
  1761. }
  1762. .u-m-r-46 {
  1763. margin-right: 46rpx !important;
  1764. }
  1765. .u-p-r-46 {
  1766. padding-right: 46rpx !important;
  1767. }
  1768. .u-margin-right-46 {
  1769. margin-right: 46rpx !important;
  1770. }
  1771. .u-padding-right-46 {
  1772. padding-right: 46rpx !important;
  1773. }
  1774. .u-m-b-46 {
  1775. margin-bottom: 46rpx !important;
  1776. }
  1777. .u-p-b-46 {
  1778. padding-bottom: 46rpx !important;
  1779. }
  1780. .u-margin-bottom-46 {
  1781. margin-bottom: 46rpx !important;
  1782. }
  1783. .u-padding-bottom-46 {
  1784. padding-bottom: 46rpx !important;
  1785. }
  1786. .u-margin-48, .u-m-48 {
  1787. margin: 48rpx !important;
  1788. }
  1789. .u-padding-48, .u-p-48 {
  1790. padding: 48rpx !important;
  1791. }
  1792. .u-m-l-48 {
  1793. margin-left: 48rpx !important;
  1794. }
  1795. .u-p-l-48 {
  1796. padding-left: 48rpx !important;
  1797. }
  1798. .u-margin-left-48 {
  1799. margin-left: 48rpx !important;
  1800. }
  1801. .u-padding-left-48 {
  1802. padding-left: 48rpx !important;
  1803. }
  1804. .u-m-t-48 {
  1805. margin-top: 48rpx !important;
  1806. }
  1807. .u-p-t-48 {
  1808. padding-top: 48rpx !important;
  1809. }
  1810. .u-margin-top-48 {
  1811. margin-top: 48rpx !important;
  1812. }
  1813. .u-padding-top-48 {
  1814. padding-top: 48rpx !important;
  1815. }
  1816. .u-m-r-48 {
  1817. margin-right: 48rpx !important;
  1818. }
  1819. .u-p-r-48 {
  1820. padding-right: 48rpx !important;
  1821. }
  1822. .u-margin-right-48 {
  1823. margin-right: 48rpx !important;
  1824. }
  1825. .u-padding-right-48 {
  1826. padding-right: 48rpx !important;
  1827. }
  1828. .u-m-b-48 {
  1829. margin-bottom: 48rpx !important;
  1830. }
  1831. .u-p-b-48 {
  1832. padding-bottom: 48rpx !important;
  1833. }
  1834. .u-margin-bottom-48 {
  1835. margin-bottom: 48rpx !important;
  1836. }
  1837. .u-padding-bottom-48 {
  1838. padding-bottom: 48rpx !important;
  1839. }
  1840. .u-margin-50, .u-m-50 {
  1841. margin: 50rpx !important;
  1842. }
  1843. .u-padding-50, .u-p-50 {
  1844. padding: 50rpx !important;
  1845. }
  1846. .u-m-l-50 {
  1847. margin-left: 50rpx !important;
  1848. }
  1849. .u-p-l-50 {
  1850. padding-left: 50rpx !important;
  1851. }
  1852. .u-margin-left-50 {
  1853. margin-left: 50rpx !important;
  1854. }
  1855. .u-padding-left-50 {
  1856. padding-left: 50rpx !important;
  1857. }
  1858. .u-m-t-50 {
  1859. margin-top: 50rpx !important;
  1860. }
  1861. .u-p-t-50 {
  1862. padding-top: 50rpx !important;
  1863. }
  1864. .u-margin-top-50 {
  1865. margin-top: 50rpx !important;
  1866. }
  1867. .u-padding-top-50 {
  1868. padding-top: 50rpx !important;
  1869. }
  1870. .u-m-r-50 {
  1871. margin-right: 50rpx !important;
  1872. }
  1873. .u-p-r-50 {
  1874. padding-right: 50rpx !important;
  1875. }
  1876. .u-margin-right-50 {
  1877. margin-right: 50rpx !important;
  1878. }
  1879. .u-padding-right-50 {
  1880. padding-right: 50rpx !important;
  1881. }
  1882. .u-m-b-50 {
  1883. margin-bottom: 50rpx !important;
  1884. }
  1885. .u-p-b-50 {
  1886. padding-bottom: 50rpx !important;
  1887. }
  1888. .u-margin-bottom-50 {
  1889. margin-bottom: 50rpx !important;
  1890. }
  1891. .u-padding-bottom-50 {
  1892. padding-bottom: 50rpx !important;
  1893. }
  1894. .u-margin-52, .u-m-52 {
  1895. margin: 52rpx !important;
  1896. }
  1897. .u-padding-52, .u-p-52 {
  1898. padding: 52rpx !important;
  1899. }
  1900. .u-m-l-52 {
  1901. margin-left: 52rpx !important;
  1902. }
  1903. .u-p-l-52 {
  1904. padding-left: 52rpx !important;
  1905. }
  1906. .u-margin-left-52 {
  1907. margin-left: 52rpx !important;
  1908. }
  1909. .u-padding-left-52 {
  1910. padding-left: 52rpx !important;
  1911. }
  1912. .u-m-t-52 {
  1913. margin-top: 52rpx !important;
  1914. }
  1915. .u-p-t-52 {
  1916. padding-top: 52rpx !important;
  1917. }
  1918. .u-margin-top-52 {
  1919. margin-top: 52rpx !important;
  1920. }
  1921. .u-padding-top-52 {
  1922. padding-top: 52rpx !important;
  1923. }
  1924. .u-m-r-52 {
  1925. margin-right: 52rpx !important;
  1926. }
  1927. .u-p-r-52 {
  1928. padding-right: 52rpx !important;
  1929. }
  1930. .u-margin-right-52 {
  1931. margin-right: 52rpx !important;
  1932. }
  1933. .u-padding-right-52 {
  1934. padding-right: 52rpx !important;
  1935. }
  1936. .u-m-b-52 {
  1937. margin-bottom: 52rpx !important;
  1938. }
  1939. .u-p-b-52 {
  1940. padding-bottom: 52rpx !important;
  1941. }
  1942. .u-margin-bottom-52 {
  1943. margin-bottom: 52rpx !important;
  1944. }
  1945. .u-padding-bottom-52 {
  1946. padding-bottom: 52rpx !important;
  1947. }
  1948. .u-margin-54, .u-m-54 {
  1949. margin: 54rpx !important;
  1950. }
  1951. .u-padding-54, .u-p-54 {
  1952. padding: 54rpx !important;
  1953. }
  1954. .u-m-l-54 {
  1955. margin-left: 54rpx !important;
  1956. }
  1957. .u-p-l-54 {
  1958. padding-left: 54rpx !important;
  1959. }
  1960. .u-margin-left-54 {
  1961. margin-left: 54rpx !important;
  1962. }
  1963. .u-padding-left-54 {
  1964. padding-left: 54rpx !important;
  1965. }
  1966. .u-m-t-54 {
  1967. margin-top: 54rpx !important;
  1968. }
  1969. .u-p-t-54 {
  1970. padding-top: 54rpx !important;
  1971. }
  1972. .u-margin-top-54 {
  1973. margin-top: 54rpx !important;
  1974. }
  1975. .u-padding-top-54 {
  1976. padding-top: 54rpx !important;
  1977. }
  1978. .u-m-r-54 {
  1979. margin-right: 54rpx !important;
  1980. }
  1981. .u-p-r-54 {
  1982. padding-right: 54rpx !important;
  1983. }
  1984. .u-margin-right-54 {
  1985. margin-right: 54rpx !important;
  1986. }
  1987. .u-padding-right-54 {
  1988. padding-right: 54rpx !important;
  1989. }
  1990. .u-m-b-54 {
  1991. margin-bottom: 54rpx !important;
  1992. }
  1993. .u-p-b-54 {
  1994. padding-bottom: 54rpx !important;
  1995. }
  1996. .u-margin-bottom-54 {
  1997. margin-bottom: 54rpx !important;
  1998. }
  1999. .u-padding-bottom-54 {
  2000. padding-bottom: 54rpx !important;
  2001. }
  2002. .u-margin-55, .u-m-55 {
  2003. margin: 55rpx !important;
  2004. }
  2005. .u-padding-55, .u-p-55 {
  2006. padding: 55rpx !important;
  2007. }
  2008. .u-m-l-55 {
  2009. margin-left: 55rpx !important;
  2010. }
  2011. .u-p-l-55 {
  2012. padding-left: 55rpx !important;
  2013. }
  2014. .u-margin-left-55 {
  2015. margin-left: 55rpx !important;
  2016. }
  2017. .u-padding-left-55 {
  2018. padding-left: 55rpx !important;
  2019. }
  2020. .u-m-t-55 {
  2021. margin-top: 55rpx !important;
  2022. }
  2023. .u-p-t-55 {
  2024. padding-top: 55rpx !important;
  2025. }
  2026. .u-margin-top-55 {
  2027. margin-top: 55rpx !important;
  2028. }
  2029. .u-padding-top-55 {
  2030. padding-top: 55rpx !important;
  2031. }
  2032. .u-m-r-55 {
  2033. margin-right: 55rpx !important;
  2034. }
  2035. .u-p-r-55 {
  2036. padding-right: 55rpx !important;
  2037. }
  2038. .u-margin-right-55 {
  2039. margin-right: 55rpx !important;
  2040. }
  2041. .u-padding-right-55 {
  2042. padding-right: 55rpx !important;
  2043. }
  2044. .u-m-b-55 {
  2045. margin-bottom: 55rpx !important;
  2046. }
  2047. .u-p-b-55 {
  2048. padding-bottom: 55rpx !important;
  2049. }
  2050. .u-margin-bottom-55 {
  2051. margin-bottom: 55rpx !important;
  2052. }
  2053. .u-padding-bottom-55 {
  2054. padding-bottom: 55rpx !important;
  2055. }
  2056. .u-margin-56, .u-m-56 {
  2057. margin: 56rpx !important;
  2058. }
  2059. .u-padding-56, .u-p-56 {
  2060. padding: 56rpx !important;
  2061. }
  2062. .u-m-l-56 {
  2063. margin-left: 56rpx !important;
  2064. }
  2065. .u-p-l-56 {
  2066. padding-left: 56rpx !important;
  2067. }
  2068. .u-margin-left-56 {
  2069. margin-left: 56rpx !important;
  2070. }
  2071. .u-padding-left-56 {
  2072. padding-left: 56rpx !important;
  2073. }
  2074. .u-m-t-56 {
  2075. margin-top: 56rpx !important;
  2076. }
  2077. .u-p-t-56 {
  2078. padding-top: 56rpx !important;
  2079. }
  2080. .u-margin-top-56 {
  2081. margin-top: 56rpx !important;
  2082. }
  2083. .u-padding-top-56 {
  2084. padding-top: 56rpx !important;
  2085. }
  2086. .u-m-r-56 {
  2087. margin-right: 56rpx !important;
  2088. }
  2089. .u-p-r-56 {
  2090. padding-right: 56rpx !important;
  2091. }
  2092. .u-margin-right-56 {
  2093. margin-right: 56rpx !important;
  2094. }
  2095. .u-padding-right-56 {
  2096. padding-right: 56rpx !important;
  2097. }
  2098. .u-m-b-56 {
  2099. margin-bottom: 56rpx !important;
  2100. }
  2101. .u-p-b-56 {
  2102. padding-bottom: 56rpx !important;
  2103. }
  2104. .u-margin-bottom-56 {
  2105. margin-bottom: 56rpx !important;
  2106. }
  2107. .u-padding-bottom-56 {
  2108. padding-bottom: 56rpx !important;
  2109. }
  2110. .u-margin-58, .u-m-58 {
  2111. margin: 58rpx !important;
  2112. }
  2113. .u-padding-58, .u-p-58 {
  2114. padding: 58rpx !important;
  2115. }
  2116. .u-m-l-58 {
  2117. margin-left: 58rpx !important;
  2118. }
  2119. .u-p-l-58 {
  2120. padding-left: 58rpx !important;
  2121. }
  2122. .u-margin-left-58 {
  2123. margin-left: 58rpx !important;
  2124. }
  2125. .u-padding-left-58 {
  2126. padding-left: 58rpx !important;
  2127. }
  2128. .u-m-t-58 {
  2129. margin-top: 58rpx !important;
  2130. }
  2131. .u-p-t-58 {
  2132. padding-top: 58rpx !important;
  2133. }
  2134. .u-margin-top-58 {
  2135. margin-top: 58rpx !important;
  2136. }
  2137. .u-padding-top-58 {
  2138. padding-top: 58rpx !important;
  2139. }
  2140. .u-m-r-58 {
  2141. margin-right: 58rpx !important;
  2142. }
  2143. .u-p-r-58 {
  2144. padding-right: 58rpx !important;
  2145. }
  2146. .u-margin-right-58 {
  2147. margin-right: 58rpx !important;
  2148. }
  2149. .u-padding-right-58 {
  2150. padding-right: 58rpx !important;
  2151. }
  2152. .u-m-b-58 {
  2153. margin-bottom: 58rpx !important;
  2154. }
  2155. .u-p-b-58 {
  2156. padding-bottom: 58rpx !important;
  2157. }
  2158. .u-margin-bottom-58 {
  2159. margin-bottom: 58rpx !important;
  2160. }
  2161. .u-padding-bottom-58 {
  2162. padding-bottom: 58rpx !important;
  2163. }
  2164. .u-margin-60, .u-m-60 {
  2165. margin: 60rpx !important;
  2166. }
  2167. .u-padding-60, .u-p-60 {
  2168. padding: 60rpx !important;
  2169. }
  2170. .u-m-l-60 {
  2171. margin-left: 60rpx !important;
  2172. }
  2173. .u-p-l-60 {
  2174. padding-left: 60rpx !important;
  2175. }
  2176. .u-margin-left-60 {
  2177. margin-left: 60rpx !important;
  2178. }
  2179. .u-padding-left-60 {
  2180. padding-left: 60rpx !important;
  2181. }
  2182. .u-m-t-60 {
  2183. margin-top: 60rpx !important;
  2184. }
  2185. .u-p-t-60 {
  2186. padding-top: 60rpx !important;
  2187. }
  2188. .u-margin-top-60 {
  2189. margin-top: 60rpx !important;
  2190. }
  2191. .u-padding-top-60 {
  2192. padding-top: 60rpx !important;
  2193. }
  2194. .u-m-r-60 {
  2195. margin-right: 60rpx !important;
  2196. }
  2197. .u-p-r-60 {
  2198. padding-right: 60rpx !important;
  2199. }
  2200. .u-margin-right-60 {
  2201. margin-right: 60rpx !important;
  2202. }
  2203. .u-padding-right-60 {
  2204. padding-right: 60rpx !important;
  2205. }
  2206. .u-m-b-60 {
  2207. margin-bottom: 60rpx !important;
  2208. }
  2209. .u-p-b-60 {
  2210. padding-bottom: 60rpx !important;
  2211. }
  2212. .u-margin-bottom-60 {
  2213. margin-bottom: 60rpx !important;
  2214. }
  2215. .u-padding-bottom-60 {
  2216. padding-bottom: 60rpx !important;
  2217. }
  2218. .u-margin-62, .u-m-62 {
  2219. margin: 62rpx !important;
  2220. }
  2221. .u-padding-62, .u-p-62 {
  2222. padding: 62rpx !important;
  2223. }
  2224. .u-m-l-62 {
  2225. margin-left: 62rpx !important;
  2226. }
  2227. .u-p-l-62 {
  2228. padding-left: 62rpx !important;
  2229. }
  2230. .u-margin-left-62 {
  2231. margin-left: 62rpx !important;
  2232. }
  2233. .u-padding-left-62 {
  2234. padding-left: 62rpx !important;
  2235. }
  2236. .u-m-t-62 {
  2237. margin-top: 62rpx !important;
  2238. }
  2239. .u-p-t-62 {
  2240. padding-top: 62rpx !important;
  2241. }
  2242. .u-margin-top-62 {
  2243. margin-top: 62rpx !important;
  2244. }
  2245. .u-padding-top-62 {
  2246. padding-top: 62rpx !important;
  2247. }
  2248. .u-m-r-62 {
  2249. margin-right: 62rpx !important;
  2250. }
  2251. .u-p-r-62 {
  2252. padding-right: 62rpx !important;
  2253. }
  2254. .u-margin-right-62 {
  2255. margin-right: 62rpx !important;
  2256. }
  2257. .u-padding-right-62 {
  2258. padding-right: 62rpx !important;
  2259. }
  2260. .u-m-b-62 {
  2261. margin-bottom: 62rpx !important;
  2262. }
  2263. .u-p-b-62 {
  2264. padding-bottom: 62rpx !important;
  2265. }
  2266. .u-margin-bottom-62 {
  2267. margin-bottom: 62rpx !important;
  2268. }
  2269. .u-padding-bottom-62 {
  2270. padding-bottom: 62rpx !important;
  2271. }
  2272. .u-margin-64, .u-m-64 {
  2273. margin: 64rpx !important;
  2274. }
  2275. .u-padding-64, .u-p-64 {
  2276. padding: 64rpx !important;
  2277. }
  2278. .u-m-l-64 {
  2279. margin-left: 64rpx !important;
  2280. }
  2281. .u-p-l-64 {
  2282. padding-left: 64rpx !important;
  2283. }
  2284. .u-margin-left-64 {
  2285. margin-left: 64rpx !important;
  2286. }
  2287. .u-padding-left-64 {
  2288. padding-left: 64rpx !important;
  2289. }
  2290. .u-m-t-64 {
  2291. margin-top: 64rpx !important;
  2292. }
  2293. .u-p-t-64 {
  2294. padding-top: 64rpx !important;
  2295. }
  2296. .u-margin-top-64 {
  2297. margin-top: 64rpx !important;
  2298. }
  2299. .u-padding-top-64 {
  2300. padding-top: 64rpx !important;
  2301. }
  2302. .u-m-r-64 {
  2303. margin-right: 64rpx !important;
  2304. }
  2305. .u-p-r-64 {
  2306. padding-right: 64rpx !important;
  2307. }
  2308. .u-margin-right-64 {
  2309. margin-right: 64rpx !important;
  2310. }
  2311. .u-padding-right-64 {
  2312. padding-right: 64rpx !important;
  2313. }
  2314. .u-m-b-64 {
  2315. margin-bottom: 64rpx !important;
  2316. }
  2317. .u-p-b-64 {
  2318. padding-bottom: 64rpx !important;
  2319. }
  2320. .u-margin-bottom-64 {
  2321. margin-bottom: 64rpx !important;
  2322. }
  2323. .u-padding-bottom-64 {
  2324. padding-bottom: 64rpx !important;
  2325. }
  2326. .u-margin-65, .u-m-65 {
  2327. margin: 65rpx !important;
  2328. }
  2329. .u-padding-65, .u-p-65 {
  2330. padding: 65rpx !important;
  2331. }
  2332. .u-m-l-65 {
  2333. margin-left: 65rpx !important;
  2334. }
  2335. .u-p-l-65 {
  2336. padding-left: 65rpx !important;
  2337. }
  2338. .u-margin-left-65 {
  2339. margin-left: 65rpx !important;
  2340. }
  2341. .u-padding-left-65 {
  2342. padding-left: 65rpx !important;
  2343. }
  2344. .u-m-t-65 {
  2345. margin-top: 65rpx !important;
  2346. }
  2347. .u-p-t-65 {
  2348. padding-top: 65rpx !important;
  2349. }
  2350. .u-margin-top-65 {
  2351. margin-top: 65rpx !important;
  2352. }
  2353. .u-padding-top-65 {
  2354. padding-top: 65rpx !important;
  2355. }
  2356. .u-m-r-65 {
  2357. margin-right: 65rpx !important;
  2358. }
  2359. .u-p-r-65 {
  2360. padding-right: 65rpx !important;
  2361. }
  2362. .u-margin-right-65 {
  2363. margin-right: 65rpx !important;
  2364. }
  2365. .u-padding-right-65 {
  2366. padding-right: 65rpx !important;
  2367. }
  2368. .u-m-b-65 {
  2369. margin-bottom: 65rpx !important;
  2370. }
  2371. .u-p-b-65 {
  2372. padding-bottom: 65rpx !important;
  2373. }
  2374. .u-margin-bottom-65 {
  2375. margin-bottom: 65rpx !important;
  2376. }
  2377. .u-padding-bottom-65 {
  2378. padding-bottom: 65rpx !important;
  2379. }
  2380. .u-margin-66, .u-m-66 {
  2381. margin: 66rpx !important;
  2382. }
  2383. .u-padding-66, .u-p-66 {
  2384. padding: 66rpx !important;
  2385. }
  2386. .u-m-l-66 {
  2387. margin-left: 66rpx !important;
  2388. }
  2389. .u-p-l-66 {
  2390. padding-left: 66rpx !important;
  2391. }
  2392. .u-margin-left-66 {
  2393. margin-left: 66rpx !important;
  2394. }
  2395. .u-padding-left-66 {
  2396. padding-left: 66rpx !important;
  2397. }
  2398. .u-m-t-66 {
  2399. margin-top: 66rpx !important;
  2400. }
  2401. .u-p-t-66 {
  2402. padding-top: 66rpx !important;
  2403. }
  2404. .u-margin-top-66 {
  2405. margin-top: 66rpx !important;
  2406. }
  2407. .u-padding-top-66 {
  2408. padding-top: 66rpx !important;
  2409. }
  2410. .u-m-r-66 {
  2411. margin-right: 66rpx !important;
  2412. }
  2413. .u-p-r-66 {
  2414. padding-right: 66rpx !important;
  2415. }
  2416. .u-margin-right-66 {
  2417. margin-right: 66rpx !important;
  2418. }
  2419. .u-padding-right-66 {
  2420. padding-right: 66rpx !important;
  2421. }
  2422. .u-m-b-66 {
  2423. margin-bottom: 66rpx !important;
  2424. }
  2425. .u-p-b-66 {
  2426. padding-bottom: 66rpx !important;
  2427. }
  2428. .u-margin-bottom-66 {
  2429. margin-bottom: 66rpx !important;
  2430. }
  2431. .u-padding-bottom-66 {
  2432. padding-bottom: 66rpx !important;
  2433. }
  2434. .u-margin-68, .u-m-68 {
  2435. margin: 68rpx !important;
  2436. }
  2437. .u-padding-68, .u-p-68 {
  2438. padding: 68rpx !important;
  2439. }
  2440. .u-m-l-68 {
  2441. margin-left: 68rpx !important;
  2442. }
  2443. .u-p-l-68 {
  2444. padding-left: 68rpx !important;
  2445. }
  2446. .u-margin-left-68 {
  2447. margin-left: 68rpx !important;
  2448. }
  2449. .u-padding-left-68 {
  2450. padding-left: 68rpx !important;
  2451. }
  2452. .u-m-t-68 {
  2453. margin-top: 68rpx !important;
  2454. }
  2455. .u-p-t-68 {
  2456. padding-top: 68rpx !important;
  2457. }
  2458. .u-margin-top-68 {
  2459. margin-top: 68rpx !important;
  2460. }
  2461. .u-padding-top-68 {
  2462. padding-top: 68rpx !important;
  2463. }
  2464. .u-m-r-68 {
  2465. margin-right: 68rpx !important;
  2466. }
  2467. .u-p-r-68 {
  2468. padding-right: 68rpx !important;
  2469. }
  2470. .u-margin-right-68 {
  2471. margin-right: 68rpx !important;
  2472. }
  2473. .u-padding-right-68 {
  2474. padding-right: 68rpx !important;
  2475. }
  2476. .u-m-b-68 {
  2477. margin-bottom: 68rpx !important;
  2478. }
  2479. .u-p-b-68 {
  2480. padding-bottom: 68rpx !important;
  2481. }
  2482. .u-margin-bottom-68 {
  2483. margin-bottom: 68rpx !important;
  2484. }
  2485. .u-padding-bottom-68 {
  2486. padding-bottom: 68rpx !important;
  2487. }
  2488. .u-margin-70, .u-m-70 {
  2489. margin: 70rpx !important;
  2490. }
  2491. .u-padding-70, .u-p-70 {
  2492. padding: 70rpx !important;
  2493. }
  2494. .u-m-l-70 {
  2495. margin-left: 70rpx !important;
  2496. }
  2497. .u-p-l-70 {
  2498. padding-left: 70rpx !important;
  2499. }
  2500. .u-margin-left-70 {
  2501. margin-left: 70rpx !important;
  2502. }
  2503. .u-padding-left-70 {
  2504. padding-left: 70rpx !important;
  2505. }
  2506. .u-m-t-70 {
  2507. margin-top: 70rpx !important;
  2508. }
  2509. .u-p-t-70 {
  2510. padding-top: 70rpx !important;
  2511. }
  2512. .u-margin-top-70 {
  2513. margin-top: 70rpx !important;
  2514. }
  2515. .u-padding-top-70 {
  2516. padding-top: 70rpx !important;
  2517. }
  2518. .u-m-r-70 {
  2519. margin-right: 70rpx !important;
  2520. }
  2521. .u-p-r-70 {
  2522. padding-right: 70rpx !important;
  2523. }
  2524. .u-margin-right-70 {
  2525. margin-right: 70rpx !important;
  2526. }
  2527. .u-padding-right-70 {
  2528. padding-right: 70rpx !important;
  2529. }
  2530. .u-m-b-70 {
  2531. margin-bottom: 70rpx !important;
  2532. }
  2533. .u-p-b-70 {
  2534. padding-bottom: 70rpx !important;
  2535. }
  2536. .u-margin-bottom-70 {
  2537. margin-bottom: 70rpx !important;
  2538. }
  2539. .u-padding-bottom-70 {
  2540. padding-bottom: 70rpx !important;
  2541. }
  2542. .u-margin-72, .u-m-72 {
  2543. margin: 72rpx !important;
  2544. }
  2545. .u-padding-72, .u-p-72 {
  2546. padding: 72rpx !important;
  2547. }
  2548. .u-m-l-72 {
  2549. margin-left: 72rpx !important;
  2550. }
  2551. .u-p-l-72 {
  2552. padding-left: 72rpx !important;
  2553. }
  2554. .u-margin-left-72 {
  2555. margin-left: 72rpx !important;
  2556. }
  2557. .u-padding-left-72 {
  2558. padding-left: 72rpx !important;
  2559. }
  2560. .u-m-t-72 {
  2561. margin-top: 72rpx !important;
  2562. }
  2563. .u-p-t-72 {
  2564. padding-top: 72rpx !important;
  2565. }
  2566. .u-margin-top-72 {
  2567. margin-top: 72rpx !important;
  2568. }
  2569. .u-padding-top-72 {
  2570. padding-top: 72rpx !important;
  2571. }
  2572. .u-m-r-72 {
  2573. margin-right: 72rpx !important;
  2574. }
  2575. .u-p-r-72 {
  2576. padding-right: 72rpx !important;
  2577. }
  2578. .u-margin-right-72 {
  2579. margin-right: 72rpx !important;
  2580. }
  2581. .u-padding-right-72 {
  2582. padding-right: 72rpx !important;
  2583. }
  2584. .u-m-b-72 {
  2585. margin-bottom: 72rpx !important;
  2586. }
  2587. .u-p-b-72 {
  2588. padding-bottom: 72rpx !important;
  2589. }
  2590. .u-margin-bottom-72 {
  2591. margin-bottom: 72rpx !important;
  2592. }
  2593. .u-padding-bottom-72 {
  2594. padding-bottom: 72rpx !important;
  2595. }
  2596. .u-margin-74, .u-m-74 {
  2597. margin: 74rpx !important;
  2598. }
  2599. .u-padding-74, .u-p-74 {
  2600. padding: 74rpx !important;
  2601. }
  2602. .u-m-l-74 {
  2603. margin-left: 74rpx !important;
  2604. }
  2605. .u-p-l-74 {
  2606. padding-left: 74rpx !important;
  2607. }
  2608. .u-margin-left-74 {
  2609. margin-left: 74rpx !important;
  2610. }
  2611. .u-padding-left-74 {
  2612. padding-left: 74rpx !important;
  2613. }
  2614. .u-m-t-74 {
  2615. margin-top: 74rpx !important;
  2616. }
  2617. .u-p-t-74 {
  2618. padding-top: 74rpx !important;
  2619. }
  2620. .u-margin-top-74 {
  2621. margin-top: 74rpx !important;
  2622. }
  2623. .u-padding-top-74 {
  2624. padding-top: 74rpx !important;
  2625. }
  2626. .u-m-r-74 {
  2627. margin-right: 74rpx !important;
  2628. }
  2629. .u-p-r-74 {
  2630. padding-right: 74rpx !important;
  2631. }
  2632. .u-margin-right-74 {
  2633. margin-right: 74rpx !important;
  2634. }
  2635. .u-padding-right-74 {
  2636. padding-right: 74rpx !important;
  2637. }
  2638. .u-m-b-74 {
  2639. margin-bottom: 74rpx !important;
  2640. }
  2641. .u-p-b-74 {
  2642. padding-bottom: 74rpx !important;
  2643. }
  2644. .u-margin-bottom-74 {
  2645. margin-bottom: 74rpx !important;
  2646. }
  2647. .u-padding-bottom-74 {
  2648. padding-bottom: 74rpx !important;
  2649. }
  2650. .u-margin-75, .u-m-75 {
  2651. margin: 75rpx !important;
  2652. }
  2653. .u-padding-75, .u-p-75 {
  2654. padding: 75rpx !important;
  2655. }
  2656. .u-m-l-75 {
  2657. margin-left: 75rpx !important;
  2658. }
  2659. .u-p-l-75 {
  2660. padding-left: 75rpx !important;
  2661. }
  2662. .u-margin-left-75 {
  2663. margin-left: 75rpx !important;
  2664. }
  2665. .u-padding-left-75 {
  2666. padding-left: 75rpx !important;
  2667. }
  2668. .u-m-t-75 {
  2669. margin-top: 75rpx !important;
  2670. }
  2671. .u-p-t-75 {
  2672. padding-top: 75rpx !important;
  2673. }
  2674. .u-margin-top-75 {
  2675. margin-top: 75rpx !important;
  2676. }
  2677. .u-padding-top-75 {
  2678. padding-top: 75rpx !important;
  2679. }
  2680. .u-m-r-75 {
  2681. margin-right: 75rpx !important;
  2682. }
  2683. .u-p-r-75 {
  2684. padding-right: 75rpx !important;
  2685. }
  2686. .u-margin-right-75 {
  2687. margin-right: 75rpx !important;
  2688. }
  2689. .u-padding-right-75 {
  2690. padding-right: 75rpx !important;
  2691. }
  2692. .u-m-b-75 {
  2693. margin-bottom: 75rpx !important;
  2694. }
  2695. .u-p-b-75 {
  2696. padding-bottom: 75rpx !important;
  2697. }
  2698. .u-margin-bottom-75 {
  2699. margin-bottom: 75rpx !important;
  2700. }
  2701. .u-padding-bottom-75 {
  2702. padding-bottom: 75rpx !important;
  2703. }
  2704. .u-margin-76, .u-m-76 {
  2705. margin: 76rpx !important;
  2706. }
  2707. .u-padding-76, .u-p-76 {
  2708. padding: 76rpx !important;
  2709. }
  2710. .u-m-l-76 {
  2711. margin-left: 76rpx !important;
  2712. }
  2713. .u-p-l-76 {
  2714. padding-left: 76rpx !important;
  2715. }
  2716. .u-margin-left-76 {
  2717. margin-left: 76rpx !important;
  2718. }
  2719. .u-padding-left-76 {
  2720. padding-left: 76rpx !important;
  2721. }
  2722. .u-m-t-76 {
  2723. margin-top: 76rpx !important;
  2724. }
  2725. .u-p-t-76 {
  2726. padding-top: 76rpx !important;
  2727. }
  2728. .u-margin-top-76 {
  2729. margin-top: 76rpx !important;
  2730. }
  2731. .u-padding-top-76 {
  2732. padding-top: 76rpx !important;
  2733. }
  2734. .u-m-r-76 {
  2735. margin-right: 76rpx !important;
  2736. }
  2737. .u-p-r-76 {
  2738. padding-right: 76rpx !important;
  2739. }
  2740. .u-margin-right-76 {
  2741. margin-right: 76rpx !important;
  2742. }
  2743. .u-padding-right-76 {
  2744. padding-right: 76rpx !important;
  2745. }
  2746. .u-m-b-76 {
  2747. margin-bottom: 76rpx !important;
  2748. }
  2749. .u-p-b-76 {
  2750. padding-bottom: 76rpx !important;
  2751. }
  2752. .u-margin-bottom-76 {
  2753. margin-bottom: 76rpx !important;
  2754. }
  2755. .u-padding-bottom-76 {
  2756. padding-bottom: 76rpx !important;
  2757. }
  2758. .u-margin-78, .u-m-78 {
  2759. margin: 78rpx !important;
  2760. }
  2761. .u-padding-78, .u-p-78 {
  2762. padding: 78rpx !important;
  2763. }
  2764. .u-m-l-78 {
  2765. margin-left: 78rpx !important;
  2766. }
  2767. .u-p-l-78 {
  2768. padding-left: 78rpx !important;
  2769. }
  2770. .u-margin-left-78 {
  2771. margin-left: 78rpx !important;
  2772. }
  2773. .u-padding-left-78 {
  2774. padding-left: 78rpx !important;
  2775. }
  2776. .u-m-t-78 {
  2777. margin-top: 78rpx !important;
  2778. }
  2779. .u-p-t-78 {
  2780. padding-top: 78rpx !important;
  2781. }
  2782. .u-margin-top-78 {
  2783. margin-top: 78rpx !important;
  2784. }
  2785. .u-padding-top-78 {
  2786. padding-top: 78rpx !important;
  2787. }
  2788. .u-m-r-78 {
  2789. margin-right: 78rpx !important;
  2790. }
  2791. .u-p-r-78 {
  2792. padding-right: 78rpx !important;
  2793. }
  2794. .u-margin-right-78 {
  2795. margin-right: 78rpx !important;
  2796. }
  2797. .u-padding-right-78 {
  2798. padding-right: 78rpx !important;
  2799. }
  2800. .u-m-b-78 {
  2801. margin-bottom: 78rpx !important;
  2802. }
  2803. .u-p-b-78 {
  2804. padding-bottom: 78rpx !important;
  2805. }
  2806. .u-margin-bottom-78 {
  2807. margin-bottom: 78rpx !important;
  2808. }
  2809. .u-padding-bottom-78 {
  2810. padding-bottom: 78rpx !important;
  2811. }
  2812. .u-margin-80, .u-m-80 {
  2813. margin: 80rpx !important;
  2814. }
  2815. .u-padding-80, .u-p-80 {
  2816. padding: 80rpx !important;
  2817. }
  2818. .u-m-l-80 {
  2819. margin-left: 80rpx !important;
  2820. }
  2821. .u-p-l-80 {
  2822. padding-left: 80rpx !important;
  2823. }
  2824. .u-margin-left-80 {
  2825. margin-left: 80rpx !important;
  2826. }
  2827. .u-padding-left-80 {
  2828. padding-left: 80rpx !important;
  2829. }
  2830. .u-m-t-80 {
  2831. margin-top: 80rpx !important;
  2832. }
  2833. .u-p-t-80 {
  2834. padding-top: 80rpx !important;
  2835. }
  2836. .u-margin-top-80 {
  2837. margin-top: 80rpx !important;
  2838. }
  2839. .u-padding-top-80 {
  2840. padding-top: 80rpx !important;
  2841. }
  2842. .u-m-r-80 {
  2843. margin-right: 80rpx !important;
  2844. }
  2845. .u-p-r-80 {
  2846. padding-right: 80rpx !important;
  2847. }
  2848. .u-margin-right-80 {
  2849. margin-right: 80rpx !important;
  2850. }
  2851. .u-padding-right-80 {
  2852. padding-right: 80rpx !important;
  2853. }
  2854. .u-m-b-80 {
  2855. margin-bottom: 80rpx !important;
  2856. }
  2857. .u-p-b-80 {
  2858. padding-bottom: 80rpx !important;
  2859. }
  2860. .u-margin-bottom-80 {
  2861. margin-bottom: 80rpx !important;
  2862. }
  2863. .u-padding-bottom-80 {
  2864. padding-bottom: 80rpx !important;
  2865. }
  2866. .u-reset-nvue {
  2867. flex-direction: row;
  2868. align-items: center;
  2869. }
  2870. .u-type-primary-light {
  2871. color: #ecf5ff;
  2872. }
  2873. .u-type-warning-light {
  2874. color: #fdf6ec;
  2875. }
  2876. .u-type-success-light {
  2877. color: #dbf1e1;
  2878. }
  2879. .u-type-error-light {
  2880. color: #fef0f0;
  2881. }
  2882. .u-type-info-light {
  2883. color: #f4f4f5;
  2884. }
  2885. .u-type-primary-light-bg {
  2886. background-color: #ecf5ff;
  2887. }
  2888. .u-type-warning-light-bg {
  2889. background-color: #fdf6ec;
  2890. }
  2891. .u-type-success-light-bg {
  2892. background-color: #dbf1e1;
  2893. }
  2894. .u-type-error-light-bg {
  2895. background-color: #fef0f0;
  2896. }
  2897. .u-type-info-light-bg {
  2898. background-color: #f4f4f5;
  2899. }
  2900. .u-type-primary-dark {
  2901. color: #2b85e4;
  2902. }
  2903. .u-type-warning-dark {
  2904. color: #f29100;
  2905. }
  2906. .u-type-success-dark {
  2907. color: #18b566;
  2908. }
  2909. .u-type-error-dark {
  2910. color: #dd6161;
  2911. }
  2912. .u-type-info-dark {
  2913. color: #82848a;
  2914. }
  2915. .u-type-primary-dark-bg {
  2916. background-color: #2b85e4;
  2917. }
  2918. .u-type-warning-dark-bg {
  2919. background-color: #f29100;
  2920. }
  2921. .u-type-success-dark-bg {
  2922. background-color: #18b566;
  2923. }
  2924. .u-type-error-dark-bg {
  2925. background-color: #dd6161;
  2926. }
  2927. .u-type-info-dark-bg {
  2928. background-color: #82848a;
  2929. }
  2930. .u-type-primary-disabled {
  2931. color: #a0cfff;
  2932. }
  2933. .u-type-warning-disabled {
  2934. color: #fcbd71;
  2935. }
  2936. .u-type-success-disabled {
  2937. color: #71d5a1;
  2938. }
  2939. .u-type-error-disabled {
  2940. color: #fab6b6;
  2941. }
  2942. .u-type-info-disabled {
  2943. color: #c8c9cc;
  2944. }
  2945. .u-type-primary {
  2946. color: #2979ff;
  2947. }
  2948. .u-type-warning {
  2949. color: #ff9900;
  2950. }
  2951. .u-type-success {
  2952. color: #19be6b;
  2953. }
  2954. .u-type-error {
  2955. color: #fa3534;
  2956. }
  2957. .u-type-info {
  2958. color: #909399;
  2959. }
  2960. .u-type-primary-bg {
  2961. background-color: #2979ff;
  2962. }
  2963. .u-type-warning-bg {
  2964. background-color: #ff9900;
  2965. }
  2966. .u-type-success-bg {
  2967. background-color: #19be6b;
  2968. }
  2969. .u-type-error-bg {
  2970. background-color: #fa3534;
  2971. }
  2972. .u-type-info-bg {
  2973. background-color: #909399;
  2974. }
  2975. .u-main-color {
  2976. color: #303133;
  2977. }
  2978. .u-content-color {
  2979. color: #606266;
  2980. }
  2981. .u-tips-color {
  2982. color: #909399;
  2983. }
  2984. .u-light-color {
  2985. color: #c0c4cc;
  2986. }
  2987. page {
  2988. color: #303133;
  2989. font-size: 28rpx;
  2990. }
  2991. /* start--去除webkit的默认样式--start */
  2992. .u-fix-ios-appearance {
  2993. -webkit-appearance: none;
  2994. }
  2995. /* end--去除webkit的默认样式--end */
  2996. /* start--icon图标外层套一个view,让其达到更好的垂直居中的效果--start */
  2997. .u-icon-wrap {
  2998. display: flex;
  2999. align-items: center;
  3000. }
  3001. /* end-icon图标外层套一个view,让其达到更好的垂直居中的效果--end */
  3002. /* start--iPhoneX底部安全区定义--start */
  3003. .safe-area-inset-bottom {
  3004. padding-bottom: 0;
  3005. padding-bottom: constant(safe-area-inset-bottom);
  3006. padding-bottom: env(safe-area-inset-bottom);
  3007. }
  3008. /* end-iPhoneX底部安全区定义--end */
  3009. /* start--各种hover点击反馈相关的类名-start */
  3010. .u-hover-class {
  3011. opacity: 0.6;
  3012. }
  3013. .u-cell-hover {
  3014. background-color: #f7f8f9 !important;
  3015. }
  3016. /* end--各种hover点击反馈相关的类名--end */
  3017. /* start--文本行数限制--start */
  3018. .u-line-1 {
  3019. overflow: hidden;
  3020. white-space: nowrap;
  3021. text-overflow: ellipsis;
  3022. }
  3023. .u-line-2 {
  3024. -webkit-line-clamp: 2;
  3025. }
  3026. .u-line-3 {
  3027. -webkit-line-clamp: 3;
  3028. }
  3029. .u-line-4 {
  3030. -webkit-line-clamp: 4;
  3031. }
  3032. .u-line-5 {
  3033. -webkit-line-clamp: 5;
  3034. }
  3035. .u-line-2, .u-line-3, .u-line-4, .u-line-5 {
  3036. overflow: hidden;
  3037. word-break: break-all;
  3038. text-overflow: ellipsis;
  3039. display: -webkit-box;
  3040. -webkit-box-orient: vertical;
  3041. }
  3042. /* end--文本行数限制--end */
  3043. /* start--Retina 屏幕下的 1px 边框--start */
  3044. .u-border,
  3045. .u-border-bottom,
  3046. .u-border-left,
  3047. .u-border-right,
  3048. .u-border-top,
  3049. .u-border-top-bottom {
  3050. position: relative;
  3051. }
  3052. .u-border-bottom:after,
  3053. .u-border-left:after,
  3054. .u-border-right:after,
  3055. .u-border-top-bottom:after,
  3056. .u-border-top:after,
  3057. .u-border:after {
  3058. content: ' ';
  3059. position: absolute;
  3060. left: 0;
  3061. top: 0;
  3062. pointer-events: none;
  3063. box-sizing: border-box;
  3064. -webkit-transform-origin: 0 0;
  3065. transform-origin: 0 0;
  3066. width: 199.8%;
  3067. height: 199.7%;
  3068. -webkit-transform: scale(0.5, 0.5);
  3069. transform: scale(0.5, 0.5);
  3070. border: 0 solid #e4e7ed;
  3071. z-index: 2;
  3072. }
  3073. .u-border-top:after {
  3074. border-top-width: 1px;
  3075. }
  3076. .u-border-left:after {
  3077. border-left-width: 1px;
  3078. }
  3079. .u-border-right:after {
  3080. border-right-width: 1px;
  3081. }
  3082. .u-border-bottom:after {
  3083. border-bottom-width: 1px;
  3084. }
  3085. .u-border-top-bottom:after {
  3086. border-width: 1px 0;
  3087. }
  3088. .u-border:after {
  3089. border-width: 1px;
  3090. }
  3091. /* end--Retina 屏幕下的 1px 边框--end */
  3092. /* start--clearfix--start */
  3093. .u-clearfix:after,
  3094. .clearfix:after {
  3095. content: '';
  3096. display: table;
  3097. clear: both;
  3098. }
  3099. /* end--clearfix--end */
  3100. /* start--高斯模糊tabbar底部处理--start */
  3101. .u-blur-effect-inset {
  3102. width: 750rpx;
  3103. height: 0px;
  3104. background-color: #FFFFFF;
  3105. }
  3106. /* end--高斯模糊tabbar底部处理--end */
  3107. /* start--提升H5端uni.toast()的层级,避免被uView的modal等遮盖--start */
  3108. /* end--提升H5端uni.toast()的层级,避免被uView的modal等遮盖--end */
  3109. /* start--去除button的所有默认样式--start */
  3110. .u-reset-button {
  3111. padding: 0;
  3112. font-size: inherit;
  3113. line-height: inherit;
  3114. background-color: transparent;
  3115. color: inherit;
  3116. }
  3117. .u-reset-button::after {
  3118. border: none;
  3119. }
  3120. /* end--去除button的所有默认样式--end */
  3121. /* start--微信小程序编译后页面有组件名的元素,特别处理--start */
  3122. u-td, u-th {
  3123. flex: 1;
  3124. align-self: stretch;
  3125. }
  3126. .u-td {
  3127. height: 100%;
  3128. }
  3129. u-icon {
  3130. display: inline-flex;
  3131. align-items: center;
  3132. }
  3133. u-grid {
  3134. width: 100%;
  3135. flex: 0 0 100%;
  3136. }
  3137. u-line {
  3138. flex: 1;
  3139. }
  3140. u-switch {
  3141. display: inline-flex;
  3142. align-items: center;
  3143. }
  3144. u-dropdown {
  3145. flex: 1;
  3146. }
  3147. /* end-微信小程序编译后页面有组件名的元素,特别处理--end */
  3148. /* start--头条小程序编译后页面有组件名的元素,特别处理--start */
  3149. /* end-头条小程序编译后页面有组件名的元素,特别处理--end */
  3150. view,
  3151. text {
  3152. box-sizing: border-box;
  3153. }
  3154. /* start--演示页面使用的统一样式--start */
  3155. .u-demo {
  3156. padding: 25px 20px;
  3157. }
  3158. .u-demo-wrap {
  3159. border-width: 1px;
  3160. border-color: #ddd;
  3161. border-style: dashed;
  3162. background-color: #fafafa;
  3163. padding: 20px 10px;
  3164. border-radius: 3px;
  3165. }
  3166. .u-demo-area {
  3167. text-align: center;
  3168. }
  3169. .u-no-demo-here {
  3170. color: #909399;
  3171. font-size: 13px;
  3172. }
  3173. .u-demo-result-line {
  3174. border-width: 1px;
  3175. border-color: #ddd;
  3176. border-style: dashed;
  3177. padding: 5px 20px;
  3178. margin-top: 30px;
  3179. border-radius: 5px;
  3180. background-color: #f0f0f0;
  3181. color: #606266;
  3182. font-size: 16px;
  3183. word-break: break-word;
  3184. display: inline-block;
  3185. text-align: left;
  3186. }
  3187. .u-demo-title,
  3188. .u-config-title {
  3189. text-align: center;
  3190. font-size: 16px;
  3191. font-weight: bold;
  3192. margin-bottom: 20px;
  3193. }
  3194. .u-config-item {
  3195. margin-top: 25px;
  3196. }
  3197. .u-config-title {
  3198. margin-top: 20px;
  3199. padding-bottom: 5px;
  3200. }
  3201. .u-item-title {
  3202. position: relative;
  3203. font-size: 15px;
  3204. padding-left: 8px;
  3205. line-height: 1;
  3206. margin-bottom: 11px;
  3207. }
  3208. .u-item-title:after {
  3209. position: absolute;
  3210. width: 4px;
  3211. top: -1px;
  3212. height: 16px;
  3213. content: '';
  3214. left: 0;
  3215. border-radius: 10px;
  3216. background-color: #606266;
  3217. }
  3218. /* end--演示页面使用的统一样式--end */