main.wxss 62 KB

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