main.ttss 54 KB

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