main.css 66 KB

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