main.wxss 59 KB

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