main.wxss 69 KB

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