main.wxss 57 KB

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