colorui.css 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622
  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. main 初始化
  9. ==================== */
  10. /* #ifdef APP-ANDROID */
  11. .my-body {
  12. background-color: #f1f1f1;
  13. font-size: 28rpx;
  14. color: #333333;
  15. font-family: Helvetica Neue, Helvetica, sans-serif;
  16. }
  17. .my-view,
  18. .my-scroll-view,
  19. .my-swiper,
  20. .my-button,
  21. .my-input,
  22. .my-textarea,
  23. .my-label,
  24. .my-navigator,
  25. .my-image {
  26. box-sizing: border-box;
  27. }
  28. /* #endif */
  29. /* #ifndef APP-ANDROID */
  30. body {
  31. background-color: #f1f1f1;
  32. font-size: 28rpx;
  33. color: #333333;
  34. font-family: Helvetica Neue, Helvetica, sans-serif;
  35. }
  36. view,
  37. scroll-view,
  38. swiper,
  39. button,
  40. input,
  41. textarea,
  42. label,
  43. navigator,
  44. image {
  45. box-sizing: border-box;
  46. }
  47. /* #endif */
  48. .round {
  49. border-radius: 5000rpx;
  50. }
  51. .radius {
  52. border-radius: 6rpx;
  53. }
  54. /* ==================
  55. 图片
  56. ==================== */
  57. /* #ifndef APP-ANDROID */
  58. image {
  59. max-width: 100%;
  60. display: inline-block;
  61. position: relative;
  62. z-index: 0;
  63. }
  64. image.loading::before {
  65. content: "";
  66. background-color: #f5f5f5;
  67. display: block;
  68. position: absolute;
  69. width: 100%;
  70. height: 100%;
  71. z-index: -2;
  72. }
  73. image.loading::after {
  74. content: "\e7f1";
  75. font-family: "cuIcon";
  76. position: absolute;
  77. top: 0;
  78. left: 0;
  79. width: 32rpx;
  80. height: 32rpx;
  81. line-height: 32rpx;
  82. right: 0;
  83. bottom: 0;
  84. z-index: -1;
  85. font-size: 32rpx;
  86. margin: auto;
  87. color: #ccc;
  88. -webkit-animation: cuIcon-spin 2s infinite linear;
  89. animation: cuIcon-spin 2s infinite linear;
  90. display: block;
  91. }
  92. /* #endif */
  93. .response {
  94. width: 100%;
  95. }
  96. /* ==================
  97. 开关
  98. ==================== */
  99. /* #ifndef APP-ANDROID */
  100. switch,
  101. checkbox,
  102. radio {
  103. position: relative;
  104. }
  105. switch::after,
  106. switch::before {
  107. font-family: "cuIcon";
  108. content: "\e645";
  109. position: absolute;
  110. color: #ffffff !important;
  111. top: 0%;
  112. left: 0rpx;
  113. font-size: 26rpx;
  114. line-height: 26px;
  115. width: 50%;
  116. text-align: center;
  117. pointer-events: none;
  118. transform: scale(0, 0);
  119. transition: all 0.3s ease-in-out 0s;
  120. z-index: 9;
  121. bottom: 0;
  122. height: 26px;
  123. margin: auto;
  124. }
  125. switch::before {
  126. content: "\e646";
  127. right: 0;
  128. transform: scale(1, 1);
  129. left: auto;
  130. }
  131. switch[checked]::after,
  132. switch.checked::after {
  133. transform: scale(1, 1);
  134. }
  135. switch[checked]::before,
  136. switch.checked::before {
  137. transform: scale(0, 0);
  138. }
  139. /* #endif */
  140. /* #ifndef APP-ANDROID */
  141. radio::before,
  142. checkbox::before {
  143. font-family: "cuIcon";
  144. content: "\e645";
  145. position: absolute;
  146. color: #ffffff !important;
  147. top: 50%;
  148. margin-top: -8px;
  149. right: 5px;
  150. font-size: 32rpx;
  151. line-height: 16px;
  152. pointer-events: none;
  153. transform: scale(1, 1);
  154. transition: all 0.3s ease-in-out 0s;
  155. z-index: 9;
  156. }
  157. radio .wx-radio-input,
  158. checkbox .wx-checkbox-input,
  159. radio .uni-radio-input,
  160. checkbox .uni-checkbox-input {
  161. margin: 0;
  162. width: 24px;
  163. height: 24px;
  164. }
  165. checkbox.round .wx-checkbox-input,
  166. checkbox.round .uni-checkbox-input {
  167. border-radius: 100rpx;
  168. }
  169. /* #endif */
  170. /* #ifndef APP-ANDROID */
  171. switch[checked]::before {
  172. transform: scale(0, 0);
  173. }
  174. switch .wx-switch-input,
  175. switch .uni-switch-input {
  176. border: none;
  177. padding: 0 24px;
  178. width: 48px;
  179. height: 26px;
  180. margin: 0;
  181. border-radius: 100rpx;
  182. }
  183. switch .wx-switch-input:not([class*="bg-"]),
  184. switch .uni-switch-input:not([class*="bg-"]) {
  185. background: #8799a3 !important;
  186. }
  187. switch .wx-switch-input::after,
  188. switch .uni-switch-input::after {
  189. margin: auto;
  190. width: 26px;
  191. height: 26px;
  192. border-radius: 100rpx;
  193. left: 0rpx;
  194. top: 0rpx;
  195. bottom: 0rpx;
  196. position: absolute;
  197. transform: scale(0.9, 0.9);
  198. transition: all 0.1s ease-in-out 0s;
  199. }
  200. switch .wx-switch-input.wx-switch-input-checked::after,
  201. switch .uni-switch-input.uni-switch-input-checked::after {
  202. margin: auto;
  203. left: 22px;
  204. box-shadow: none;
  205. transform: scale(0.9, 0.9);
  206. }
  207. radio-group {
  208. display: inline-block;
  209. }
  210. switch.radius .wx-switch-input::after,
  211. switch.radius .wx-switch-input,
  212. switch.radius .wx-switch-input::before,
  213. switch.radius .uni-switch-input::after,
  214. switch.radius .uni-switch-input,
  215. switch.radius .uni-switch-input::before {
  216. border-radius: 10rpx;
  217. }
  218. switch .wx-switch-input::before,
  219. radio.radio::before,
  220. checkbox .wx-checkbox-input::before,
  221. radio .wx-radio-input::before,
  222. switch .uni-switch-input::before,
  223. radio.radio::before,
  224. checkbox .uni-checkbox-input::before,
  225. radio .uni-radio-input::before {
  226. display: none;
  227. }
  228. radio.radio[checked]::after,
  229. radio.radio .uni-radio-input-checked::after {
  230. content: "";
  231. background-color: transparent;
  232. display: block;
  233. position: absolute;
  234. width: 8px;
  235. height: 8px;
  236. z-index: 999;
  237. top: 0rpx;
  238. left: 0rpx;
  239. right: 0;
  240. bottom: 0;
  241. margin: auto;
  242. border-radius: 200rpx;
  243. /* #ifndef MP */
  244. border: 7px solid #ffffff !important;
  245. /* #endif */
  246. /* #ifdef MP */
  247. border: 8px solid #ffffff !important;
  248. /* #endif */
  249. }
  250. /* #endif */
  251. /* #ifndef APP-ANDROID */
  252. .switch-sex::after {
  253. content: "\e71c";
  254. }
  255. .switch-sex::before {
  256. content: "\e71a";
  257. }
  258. .switch-sex .wx-switch-input,
  259. .switch-sex .uni-switch-input {
  260. background: #e54d42 !important;
  261. border-color: #e54d42 !important;
  262. }
  263. .switch-sex.checked .uni-switch-input {
  264. background: #0081ff !important;
  265. border-color: #0081ff !important;
  266. }
  267. .switch-sex[checked] .wx-switch-input{
  268. background: #0081ff !important;
  269. border-color: #0081ff !important;
  270. }
  271. switch.red[checked] .wx-switch-input.wx-switch-input-checked,
  272. checkbox.red[checked] .wx-checkbox-input,
  273. radio.red[checked] .wx-radio-input,
  274. switch.red.checked .uni-switch-input.uni-switch-input-checked,
  275. checkbox.red.checked .uni-checkbox-input,
  276. radio.red.checked .uni-radio-input {
  277. background-color: #e54d42 !important;
  278. border-color: #e54d42 !important;
  279. color: #ffffff !important;
  280. }
  281. switch.orange[checked] .wx-switch-input,
  282. checkbox.orange[checked] .wx-checkbox-input,
  283. radio.orange[checked] .wx-radio-input,
  284. switch.orange.checked .uni-switch-input,
  285. checkbox.orange.checked .uni-checkbox-input,
  286. radio.orange.checked .uni-radio-input {
  287. background-color: #f37b1d !important;
  288. border-color: #f37b1d !important;
  289. color: #ffffff !important;
  290. }
  291. switch.yellow[checked] .wx-switch-input,
  292. checkbox.yellow[checked] .wx-checkbox-input,
  293. radio.yellow[checked] .wx-radio-input,
  294. switch.yellow.checked .uni-switch-input,
  295. checkbox.yellow.checked .uni-checkbox-input,
  296. radio.yellow.checked .uni-radio-input {
  297. background-color: #fbbd08 !important;
  298. border-color: #fbbd08 !important;
  299. color: #333333 !important;
  300. }
  301. switch.olive[checked] .wx-switch-input,
  302. checkbox.olive[checked] .wx-checkbox-input,
  303. radio.olive[checked] .wx-radio-input,
  304. switch.olive.checked .uni-switch-input,
  305. checkbox.olive.checked .uni-checkbox-input,
  306. radio.olive.checked .uni-radio-input {
  307. background-color: #8dc63f !important;
  308. border-color: #8dc63f !important;
  309. color: #ffffff !important;
  310. }
  311. switch.green[checked] .wx-switch-input,
  312. switch[checked] .wx-switch-input,
  313. checkbox.green[checked] .wx-checkbox-input,
  314. checkbox[checked] .wx-checkbox-input,
  315. radio.green[checked] .wx-radio-input,
  316. radio[checked] .wx-radio-input,
  317. switch.green.checked .uni-switch-input,
  318. switch.checked .uni-switch-input,
  319. checkbox.green.checked .uni-checkbox-input,
  320. checkbox.checked .uni-checkbox-input,
  321. radio.green.checked .uni-radio-input,
  322. radio.checked .uni-radio-input {
  323. background-color: #39b54a !important;
  324. border-color: #39b54a !important;
  325. color: #ffffff !important;
  326. border-color: #39B54A !important;
  327. }
  328. switch.cyan[checked] .wx-switch-input,
  329. checkbox.cyan[checked] .wx-checkbox-input,
  330. radio.cyan[checked] .wx-radio-input,
  331. switch.cyan.checked .uni-switch-input,
  332. checkbox.cyan.checked .uni-checkbox-input,
  333. radio.cyan.checked .uni-radio-input {
  334. background-color: #1cbbb4 !important;
  335. border-color: #1cbbb4 !important;
  336. color: #ffffff !important;
  337. }
  338. switch.blue[checked] .wx-switch-input,
  339. checkbox.blue[checked] .wx-checkbox-input,
  340. radio.blue[checked] .wx-radio-input,
  341. switch.blue.checked .uni-switch-input,
  342. checkbox.blue.checked .uni-checkbox-input,
  343. radio.blue.checked .uni-radio-input {
  344. background-color: #0081ff !important;
  345. border-color: #0081ff !important;
  346. color: #ffffff !important;
  347. }
  348. switch.purple[checked] .wx-switch-input,
  349. checkbox.purple[checked] .wx-checkbox-input,
  350. radio.purple[checked] .wx-radio-input,
  351. switch.purple.checked .uni-switch-input,
  352. checkbox.purple.checked .uni-checkbox-input,
  353. radio.purple.checked .uni-radio-input {
  354. background-color: #6739b6 !important;
  355. border-color: #6739b6 !important;
  356. color: #ffffff !important;
  357. }
  358. switch.mauve[checked] .wx-switch-input,
  359. checkbox.mauve[checked] .wx-checkbox-input,
  360. radio.mauve[checked] .wx-radio-input,
  361. switch.mauve.checked .uni-switch-input,
  362. checkbox.mauve.checked .uni-checkbox-input,
  363. radio.mauve.checked .uni-radio-input {
  364. background-color: #9c26b0 !important;
  365. border-color: #9c26b0 !important;
  366. color: #ffffff !important;
  367. }
  368. switch.pink[checked] .wx-switch-input,
  369. checkbox.pink[checked] .wx-checkbox-input,
  370. radio.pink[checked] .wx-radio-input,
  371. switch.pink.checked .uni-switch-input,
  372. checkbox.pink.checked .uni-checkbox-input,
  373. radio.pink.checked .uni-radio-input {
  374. background-color: #e03997 !important;
  375. border-color: #e03997 !important;
  376. color: #ffffff !important;
  377. }
  378. switch.brown[checked] .wx-switch-input,
  379. checkbox.brown[checked] .wx-checkbox-input,
  380. radio.brown[checked] .wx-radio-input,
  381. switch.brown.checked .uni-switch-input,
  382. checkbox.brown.checked .uni-checkbox-input,
  383. radio.brown.checked .uni-radio-input {
  384. background-color: #a5673f !important;
  385. border-color: #a5673f !important;
  386. color: #ffffff !important;
  387. }
  388. switch.grey[checked] .wx-switch-input,
  389. checkbox.grey[checked] .wx-checkbox-input,
  390. radio.grey[checked] .wx-radio-input,
  391. switch.grey.checked .uni-switch-input,
  392. checkbox.grey.checked .uni-checkbox-input,
  393. radio.grey.checked .uni-radio-input {
  394. background-color: #8799a3 !important;
  395. border-color: #8799a3 !important;
  396. color: #ffffff !important;
  397. }
  398. switch.gray[checked] .wx-switch-input,
  399. checkbox.gray[checked] .wx-checkbox-input,
  400. radio.gray[checked] .wx-radio-input,
  401. switch.gray.checked .uni-switch-input,
  402. checkbox.gray.checked .uni-checkbox-input,
  403. radio.gray.checked .uni-radio-input {
  404. background-color: #f0f0f0 !important;
  405. border-color: #f0f0f0 !important;
  406. color: #333333 !important;
  407. }
  408. switch.black[checked] .wx-switch-input,
  409. checkbox.black[checked] .wx-checkbox-input,
  410. radio.black[checked] .wx-radio-input,
  411. switch.black.checked .uni-switch-input,
  412. checkbox.black.checked .uni-checkbox-input,
  413. radio.black.checked .uni-radio-input {
  414. background-color: #333333 !important;
  415. border-color: #333333 !important;
  416. color: #ffffff !important;
  417. }
  418. switch.white[checked] .wx-switch-input,
  419. checkbox.white[checked] .wx-checkbox-input,
  420. radio.white[checked] .wx-radio-input,
  421. switch.white.checked .uni-switch-input,
  422. checkbox.white.checked .uni-checkbox-input,
  423. radio.white.checked .uni-radio-input {
  424. background-color: #ffffff !important;
  425. border-color: #ffffff !important;
  426. color: #333333 !important;
  427. }
  428. /* #endif */
  429. /* ==================
  430. 边框
  431. ==================== */
  432. /* -- 实线 -- */
  433. .solid,
  434. .solid-top,
  435. .solid-right,
  436. .solid-bottom,
  437. .solid-left,
  438. .solids,
  439. .solids-top,
  440. .solids-right,
  441. .solids-bottom,
  442. .solids-left,
  443. .dashed,
  444. .dashed-top,
  445. .dashed-right,
  446. .dashed-bottom,
  447. .dashed-left {
  448. position: relative;
  449. }
  450. /* #ifndef APP-ANDROID */
  451. .solid::after,
  452. .solid-top::after,
  453. .solid-right::after,
  454. .solid-bottom::after,
  455. .solid-left::after,
  456. .solids::after,
  457. .solids-top::after,
  458. .solids-right::after,
  459. .solids-bottom::after,
  460. .solids-left::after,
  461. .dashed::after,
  462. .dashed-top::after,
  463. .dashed-right::after,
  464. .dashed-bottom::after,
  465. .dashed-left::after {
  466. /* #ifndef APP-ANDROID */
  467. content: " ";
  468. /* #endif */
  469. width: 200%;
  470. height: 200%;
  471. position: absolute;
  472. top: 0;
  473. left: 0;
  474. /* #ifndef APP-ANDROID */
  475. border-radius: inherit;
  476. /* #endif */
  477. transform: scale(0.5);
  478. transform-origin: 0 0;
  479. pointer-events: none;
  480. box-sizing: border-box;
  481. }
  482. .solid::after {
  483. border: 1rpx solid rgba(0, 0, 0, 0.1);
  484. }
  485. .solid-top::after {
  486. border-top: 1rpx solid rgba(0, 0, 0, 0.1);
  487. }
  488. .solid-right::after {
  489. border-right: 1rpx solid rgba(0, 0, 0, 0.1);
  490. }
  491. .solid-bottom::after {
  492. border-bottom: 1rpx solid rgba(0, 0, 0, 0.1);
  493. }
  494. .solid-left::after {
  495. border-left: 1rpx solid rgba(0, 0, 0, 0.1);
  496. }
  497. .solids::after {
  498. border: 8rpx solid #eee;
  499. }
  500. .solids-top::after {
  501. border-top: 8rpx solid #eee;
  502. }
  503. .solids-right::after {
  504. border-right: 8rpx solid #eee;
  505. }
  506. .solids-bottom::after {
  507. border-bottom: 8rpx solid #eee;
  508. }
  509. .solids-left::after {
  510. border-left: 8rpx solid #eee;
  511. }
  512. /* -- 虚线 -- */
  513. .dashed::after {
  514. border: 1rpx dashed #ddd;
  515. }
  516. .dashed-top::after {
  517. border-top: 1rpx dashed #ddd;
  518. }
  519. .dashed-right::after {
  520. border-right: 1rpx dashed #ddd;
  521. }
  522. .dashed-bottom::after {
  523. border-bottom: 1rpx dashed #ddd;
  524. }
  525. .dashed-left::after {
  526. border-left: 1rpx dashed #ddd;
  527. }
  528. /* #endif */
  529. /* -- 阴影 -- */
  530. /* #ifndef APP-ANDROID */
  531. .shadow[class*='white'] {
  532. --ShadowSize: 0 1rpx 6rpx;
  533. }
  534. /* #endif */
  535. .shadow-lg {
  536. --ShadowSize: 0rpx 40rpx 100rpx 0rpx;
  537. }
  538. .shadow-warp {
  539. position: relative;
  540. box-shadow: 0 0 10rpx rgba(0, 0, 0, 0.1);
  541. }
  542. /* #ifndef APP-ANDROID */
  543. .shadow-warp:before,
  544. .shadow-warp:after {
  545. position: absolute;
  546. content: "";
  547. top: 20rpx;
  548. bottom: 30rpx;
  549. left: 20rpx;
  550. width: 50%;
  551. box-shadow: 0 30rpx 20rpx rgba(0, 0, 0, 0.2);
  552. transform: rotate(-3deg);
  553. z-index: -1;
  554. }
  555. .shadow-warp:after {
  556. right: 20rpx;
  557. left: auto;
  558. transform: rotate(3deg);
  559. }
  560. /* #endif */
  561. .shadow-blur {
  562. position: relative;
  563. }
  564. /* #ifndef APP-ANDROID */
  565. .shadow-blur::before {
  566. content: "";
  567. display: block;
  568. background: inherit;
  569. border-radius: inherit;
  570. filter: blur(10rpx);
  571. position: absolute;
  572. width: 100%;
  573. height: 100%;
  574. top: 10rpx;
  575. left: 10rpx;
  576. z-index: -1;
  577. opacity: 0.4;
  578. transform-origin: 0 0;
  579. transform: scale(1, 1);
  580. }
  581. /* #endif */
  582. /* ==================
  583. 按钮
  584. ==================== */
  585. .cu-btn {
  586. position: relative;
  587. border: 0rpx;
  588. /* #ifndef APP-ANDROID */
  589. display: inline-flex;
  590. margin-left: initial;
  591. margin-right: initial;
  592. text-decoration: none;
  593. align-items: center;
  594. justify-content: center;
  595. /* #endif */
  596. box-sizing: border-box;
  597. padding: 0 30rpx;
  598. font-size: 28rpx;
  599. height: 64rpx;
  600. line-height: 1;
  601. text-align: center;
  602. overflow: visible;
  603. transform: translate(0rpx, 0rpx);
  604. }
  605. .cu-btn::after {
  606. display: none;
  607. }
  608. .cu-btn:not([class*="bg-"]) {
  609. background-color: #f0f0f0;
  610. }
  611. .cu-btn[class*="line"] {
  612. background-color: transparent;
  613. }
  614. .cu-btn[class*="line"]::after {
  615. content: " ";
  616. display: block;
  617. width: 200%;
  618. height: 200%;
  619. position: absolute;
  620. top: 0;
  621. left: 0;
  622. border: 1rpx solid currentColor;
  623. transform: scale(0.5);
  624. transform-origin: 0 0;
  625. box-sizing: border-box;
  626. border-radius: 12rpx;
  627. z-index: 1;
  628. pointer-events: none;
  629. }
  630. .cu-btn.round[class*="line"]::after {
  631. border-radius: 1000rpx;
  632. }
  633. .cu-btn[class*="lines"]::after {
  634. border: 6rpx solid currentColor;
  635. }
  636. .cu-btn[class*="bg-"]::after {
  637. display: none;
  638. }
  639. .cu-btn.sm {
  640. padding: 0 20rpx;
  641. font-size: 20rpx;
  642. height: 48rpx;
  643. }
  644. .cu-btn.lg {
  645. padding: 0 40rpx;
  646. font-size: 32rpx;
  647. height: 80rpx;
  648. }
  649. .cu-btn.cuIcon.sm {
  650. width: 48rpx;
  651. height: 48rpx;
  652. }
  653. .cu-btn.cuIcon {
  654. width: 64rpx;
  655. height: 64rpx;
  656. border-radius: 500rpx;
  657. padding: 0;
  658. }
  659. /* button.cuIcon.lg {
  660. width: 80rpx;
  661. height: 80rpx;
  662. } */
  663. /* #ifndef APP-ANDROID */
  664. .cu-btn.shadow-blur::before {
  665. top: 4rpx;
  666. left: 4rpx;
  667. filter: blur(6rpx);
  668. opacity: 0.6;
  669. }
  670. /* #endif */
  671. .cu-btn.button-hover {
  672. transform: translate(1rpx, 1rpx);
  673. }
  674. /* #ifndef APP-ANDROID */
  675. .block {
  676. display: block;
  677. }
  678. /* #endif */
  679. .cu-btn.block {
  680. display: flex;
  681. }
  682. /* #ifndef APP-ANDROID */
  683. .cu-btn[disabled] {
  684. opacity: 0.6;
  685. color: #ffffff;
  686. }
  687. /* #endif */
  688. /* ==================
  689. 徽章
  690. ==================== */
  691. .cu-tag {
  692. font-size: 24rpx;
  693. position: relative;
  694. /* #ifndef APP-ANDROID */
  695. vertical-align: middle;
  696. display: inline-flex;
  697. /* #endif */
  698. align-items: center;
  699. justify-content: center;
  700. box-sizing: border-box;
  701. padding: 0rpx 16rpx;
  702. height: 48rpx;
  703. font-family: Helvetica Neue, Helvetica, sans-serif;
  704. white-space: nowrap;
  705. }
  706. /* #ifndef APP-ANDROID */
  707. .cu-tag:not([class*="bg"]):not([class*="line"]) {
  708. background-color: #f1f1f1;
  709. }
  710. .cu-tag[class*="line-"]::after {
  711. content: " ";
  712. width: 200%;
  713. height: 200%;
  714. position: absolute;
  715. top: 0;
  716. left: 0;
  717. border: 1rpx solid currentColor;
  718. transform: scale(0.5);
  719. transform-origin: 0 0;
  720. box-sizing: border-box;
  721. border-radius: inherit;
  722. z-index: 1;
  723. pointer-events: none;
  724. }
  725. .cu-tag.radius[class*="line"]::after {
  726. border-radius: 12rpx;
  727. }
  728. .cu-tag.round[class*="line"]::after {
  729. border-radius: 1000rpx;
  730. }
  731. .cu-tag[class*="line-"]::after {
  732. border-radius: 0;
  733. }
  734. /* #endif */
  735. .cu-tag+.cu-tag {
  736. margin-left: 10rpx;
  737. }
  738. .cu-tag.sm {
  739. font-size: 20rpx;
  740. padding: 0rpx 12rpx;
  741. height: 32rpx;
  742. }
  743. /* #ifndef APP-ANDROID */
  744. .cu-capsule {
  745. display: inline-flex;
  746. vertical-align: middle;
  747. }
  748. /* #endif */
  749. .cu-capsule+.cu-capsule {
  750. margin-left: 10rpx;
  751. }
  752. .cu-capsule .cu-tag {
  753. margin: 0;
  754. }
  755. /* #ifndef APP-ANDROID */
  756. .cu-capsule .cu-tag[class*="line-"]:last-child::after {
  757. border-left: 0rpx solid transparent;
  758. }
  759. .cu-capsule .cu-tag[class*="line-"]:first-child::after {
  760. border-right: 0rpx solid transparent;
  761. }
  762. /* #endif */
  763. /* #ifndef APP-ANDROID */
  764. .cu-capsule.radius .cu-tag:first-child {
  765. border-top-left-radius: 6rpx;
  766. border-bottom-left-radius: 6rpx;
  767. }
  768. .cu-capsule.radius .cu-tag:last-child::after{
  769. border-top-right-radius: 12rpx;
  770. border-bottom-right-radius: 12rpx;
  771. }
  772. /* #endif */
  773. /* #ifndef APP-ANDROID */
  774. .cu-capsule.radius .cu-tag[class*="line-"] {
  775. border-top-right-radius: 12rpx;
  776. border-bottom-right-radius: 12rpx;
  777. }
  778. /* #endif */
  779. /* #ifndef APP-ANDROID */
  780. .cu-capsule.round .cu-tag:first-child {
  781. border-top-left-radius: 200rpx;
  782. border-bottom-left-radius: 200rpx;
  783. text-indent: 4rpx;
  784. }
  785. /* #endif */
  786. /* #ifndef APP-ANDROID */
  787. .cu-capsule.round .cu-tag:last-child::after,
  788. .cu-capsule.round .cu-tag:last-child {
  789. border-top-right-radius: 200rpx;
  790. border-bottom-right-radius: 200rpx;
  791. text-indent: -4rpx;
  792. }
  793. /* #endif */
  794. .cu-tag.badge {
  795. border-radius: 200rpx;
  796. position: absolute;
  797. top: -10rpx;
  798. right: -10rpx;
  799. font-size: 20rpx;
  800. padding: 0rpx 10rpx;
  801. height: 28rpx;
  802. color: #ffffff;
  803. }
  804. /* #ifndef APP-ANDROID */
  805. .cu-tag.badge:not([class*="bg-"]) {
  806. background-color: #dd514c;
  807. }
  808. .cu-tag:empty:not([class*="cuIcon-"]) {
  809. padding: 0rpx;
  810. width: 16rpx;
  811. height: 16rpx;
  812. top: -4rpx;
  813. right: -4rpx;
  814. }
  815. .cu-tag[class*="cuIcon-"] {
  816. width: 32rpx;
  817. height: 32rpx;
  818. top: -4rpx;
  819. right: -4rpx;
  820. }
  821. /* #endif */
  822. /* ==================
  823. 头像
  824. ==================== */
  825. .cu-avatar {
  826. margin: 0;
  827. padding: 0;
  828. /* #ifndef APP-ANDROID */
  829. display: inline-flex;
  830. font-size: 1.5em;
  831. vertical-align: middle;
  832. font-variant: small-caps;
  833. background-size: cover;
  834. background-position: center;
  835. /* #endif */
  836. text-align: center;
  837. justify-content: center;
  838. align-items: center;
  839. background-color: #ccc;
  840. color: #ffffff;
  841. white-space: nowrap;
  842. position: relative;
  843. width: 64rpx;
  844. height: 64rpx;
  845. }
  846. .cu-avatar.sm {
  847. width: 48rpx;
  848. height: 48rpx;
  849. /* #ifndef APP-ANDROID */
  850. font-size: 1em;
  851. /* #endif */
  852. }
  853. .cu-avatar.lg {
  854. width: 96rpx;
  855. height: 96rpx;
  856. /* #ifndef APP-ANDROID */
  857. font-size: 2em;
  858. /* #endif */
  859. }
  860. .cu-avatar.xl {
  861. width: 128rpx;
  862. height: 128rpx;
  863. /* #ifndef APP-ANDROID */
  864. font-size: 2.5em;
  865. /* #endif */
  866. }
  867. .cu-avatar .avatar-text {
  868. /* #ifndef APP-ANDROID */
  869. font-size: 0.4em;
  870. /* #endif */
  871. }
  872. .cu-avatar-group {
  873. padding: 0 10rpx 0 40rpx;
  874. /* #ifndef APP-ANDROID */
  875. direction: rtl;
  876. unicode-bidi: bidi-override;
  877. display: inline-block;
  878. /* #endif */
  879. }
  880. .cu-avatar-group .cu-avatar {
  881. margin-left: -30rpx;
  882. border: 4rpx solid #f1f1f1;
  883. /* #ifndef APP-ANDROID */
  884. vertical-align: middle;
  885. /* #endif */
  886. }
  887. .cu-avatar-group .cu-avatar.sm {
  888. margin-left: -20rpx;
  889. border: 1rpx solid #f1f1f1;
  890. }
  891. /* ==================
  892. 进度条
  893. ==================== */
  894. .cu-progress {
  895. overflow: hidden;
  896. height: 28rpx;
  897. background-color: #ebeef5;
  898. /* #ifndef APP-ANDROID */
  899. display: inline-flex;
  900. /* #endif */
  901. align-items: center;
  902. width: 100%;
  903. }
  904. /* #ifndef APP-ANDROID */
  905. .cu-progress+view,
  906. .cu-progress+text {
  907. line-height: 1;
  908. }
  909. /* #endif */
  910. .cu-progress.xs {
  911. height: 10rpx;
  912. }
  913. .cu-progress.sm {
  914. height: 20rpx;
  915. }
  916. /* #ifndef APP-ANDROID */
  917. .cu-progress view {
  918. width: 0;
  919. height: 100%;
  920. align-items: center;
  921. display: flex;
  922. justify-items: flex-end;
  923. justify-content: space-around;
  924. font-size: 20rpx;
  925. color: #ffffff;
  926. transition: width 0.6s ease;
  927. }
  928. .cu-progress text {
  929. align-items: center;
  930. display: flex;
  931. font-size: 20rpx;
  932. color: #333333;
  933. text-indent: 10rpx;
  934. }
  935. /* #endif */
  936. .cu-progress.text-progress {
  937. padding-right: 60rpx;
  938. }
  939. /* #ifndef APP-ANDROID */
  940. .cu-progress.striped view {
  941. 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);
  942. background-size: 72rpx 72rpx;
  943. }
  944. .cu-progress.active view {
  945. animation: progress-stripes 2s linear infinite;
  946. }
  947. @keyframes progress-stripes {
  948. from {
  949. background-position: 72rpx 0;
  950. }
  951. to {
  952. background-position: 0 0;
  953. }
  954. }
  955. /* #endif */
  956. /* ==================
  957. 加载
  958. ==================== */
  959. .cu-load {
  960. /* #ifndef APP-ANDROID */
  961. display: block;
  962. /* #endif */
  963. line-height: 3em;
  964. text-align: center;
  965. }
  966. /* #ifndef APP-ANDROID */
  967. .cu-load::before {
  968. font-family: "cuIcon";
  969. display: inline-block;
  970. margin-right: 6rpx;
  971. }
  972. .cu-load.loading::before {
  973. content: "\e67a";
  974. animation: cuIcon-spin 2s infinite linear;
  975. }
  976. /* #endif */
  977. /* #ifndef APP-ANDROID */
  978. .cu-load.loading::after {
  979. content: "加载中...";
  980. }
  981. .cu-load.over::before {
  982. content: "\e64a";
  983. }
  984. .cu-load.over::after {
  985. content: "没有更多了";
  986. }
  987. .cu-load.erro::before {
  988. content: "\e658";
  989. }
  990. .cu-load.erro::after {
  991. content: "加载失败";
  992. }
  993. .cu-load.load-cuIcon::before {
  994. font-size: 32rpx;
  995. }
  996. .cu-load.load-cuIcon::after {
  997. display: none;
  998. }
  999. /* #endif */
  1000. .cu-load.load-cuIcon.over {
  1001. display: none;
  1002. }
  1003. .cu-load.load-modal {
  1004. position: fixed;
  1005. top: 0;
  1006. right: 0;
  1007. bottom: 140rpx;
  1008. left: 0;
  1009. margin: auto;
  1010. width: 260rpx;
  1011. height: 260rpx;
  1012. background-color: #ffffff;
  1013. border-radius: 10rpx;
  1014. box-shadow: 0 0 0rpx 2000rpx rgba(0, 0, 0, 0.5);
  1015. display: flex;
  1016. align-items: center;
  1017. flex-direction: column;
  1018. justify-content: center;
  1019. font-size: 28rpx;
  1020. z-index: 9999;
  1021. line-height: 2.4em;
  1022. }
  1023. /* #ifndef APP-ANDROID */
  1024. .cu-load.load-modal [class*="cuIcon-"] {
  1025. font-size: 60rpx;
  1026. }
  1027. .cu-load.load-modal image {
  1028. width: 70rpx;
  1029. height: 70rpx;
  1030. }
  1031. /* #endif */
  1032. /* #ifndef APP-ANDROID */
  1033. .cu-load.load-modal::after {
  1034. position: absolute;
  1035. background-color: #ffffff;
  1036. border-radius: 50%;
  1037. content: "";
  1038. animation: cuIcon-spin 1s infinite linear;
  1039. width: 200rpx;
  1040. height: 200rpx;
  1041. font-size: 10px;
  1042. border-top: 6rpx solid rgba(0, 0, 0, 0.05);
  1043. border-right: 6rpx solid rgba(0, 0, 0, 0.05);
  1044. border-bottom: 6rpx solid rgba(0, 0, 0, 0.05);
  1045. border-left: 6rpx solid #f37b1d;
  1046. z-index: -1;
  1047. }
  1048. /* #endif */
  1049. .load-progress {
  1050. pointer-events: none;
  1051. top: 0;
  1052. position: fixed;
  1053. width: 100%;
  1054. left: 0;
  1055. z-index: 2000;
  1056. }
  1057. .load-progress.hide {
  1058. display: none;
  1059. }
  1060. .load-progress .load-progress-bar {
  1061. position: relative;
  1062. width: 100%;
  1063. height: 4rpx;
  1064. overflow: hidden;
  1065. /* #ifndef APP-ANDROID */
  1066. transition: all 200ms ease 0s;
  1067. /* #endif */
  1068. }
  1069. .load-progress .load-progress-spinner {
  1070. position: absolute;
  1071. top: 10rpx;
  1072. right: 10rpx;
  1073. z-index: 2000;
  1074. /* #ifndef APP-ANDROID */
  1075. display: block;
  1076. /* #endif */
  1077. }
  1078. /* #ifndef APP-ANDROID */
  1079. .load-progress .load-progress-spinner::after {
  1080. border-radius: 50%;
  1081. display: block;
  1082. content: "";
  1083. width: 24rpx;
  1084. height: 24rpx;
  1085. box-sizing: border-box;
  1086. border: solid 4rpx transparent;
  1087. -webkit-box-sizing: border-box;
  1088. border-top-color: inherit;
  1089. border-left-color: inherit;
  1090. -webkit-animation: load-progress-spinner 0.4s linear infinite;
  1091. animation: load-progress-spinner 0.4s linear infinite;
  1092. }
  1093. /* #endif */
  1094. /* #ifndef APP-ANDROID */
  1095. @-webkit-keyframes load-progress-spinner {
  1096. 0% {
  1097. -webkit-transform: rotate(0);
  1098. transform: rotate(0);
  1099. }
  1100. 100% {
  1101. -webkit-transform: rotate(360deg);
  1102. transform: rotate(360deg);
  1103. }
  1104. }
  1105. @keyframes load-progress-spinner {
  1106. 0% {
  1107. -webkit-transform: rotate(0);
  1108. transform: rotate(0);
  1109. }
  1110. 100% {
  1111. -webkit-transform: rotate(360deg);
  1112. transform: rotate(360deg);
  1113. }
  1114. }
  1115. /* #endif */
  1116. /* ==================
  1117. 列表
  1118. ==================== */
  1119. /* #ifndef APP-ANDROID */
  1120. .grayscale {
  1121. filter: grayscale(1);
  1122. }
  1123. /* #endif */
  1124. .cu-list+.cu-list {
  1125. margin-top: 30rpx
  1126. }
  1127. .cu-list>.cu-item {
  1128. /* #ifndef APP-ANDROID */
  1129. transition: all .6s ease-in-out 0s;
  1130. /* #endif */
  1131. transform: translateX(0rpx)
  1132. }
  1133. .cu-list>.cu-item.move-cur {
  1134. transform: translateX(-260rpx)
  1135. }
  1136. .cu-list>.cu-item .move {
  1137. position: absolute;
  1138. right: 0;
  1139. display: flex;
  1140. width: 260rpx;
  1141. height: 100%;
  1142. transform: translateX(100%)
  1143. }
  1144. /* #ifndef APP-ANDROID */
  1145. .cu-list>.cu-item .move view {
  1146. display: flex;
  1147. flex: 1;
  1148. justify-content: center;
  1149. align-items: center
  1150. }
  1151. /* #endif */
  1152. .cu-list.menu-avatar {
  1153. overflow: hidden;
  1154. }
  1155. .cu-list.menu-avatar>.cu-item {
  1156. position: relative;
  1157. display: flex;
  1158. padding-right: 10rpx;
  1159. height: 140rpx;
  1160. background-color: #ffffff;
  1161. justify-content: flex-end;
  1162. align-items: center
  1163. }
  1164. .cu-list.menu-avatar>.cu-item>.cu-avatar {
  1165. position: absolute;
  1166. left: 30rpx
  1167. }
  1168. .cu-list.menu-avatar>.cu-item .flex .text-cut {
  1169. max-width: 510rpx
  1170. }
  1171. .cu-list.menu-avatar>.cu-item .content {
  1172. position: absolute;
  1173. left: 146rpx;
  1174. /* #ifndef APP-ANDROID */
  1175. width: calc(100% - 96rpx - 60rpx - 120rpx - 20rpx);
  1176. /* #endif */
  1177. line-height: 1.6em;
  1178. }
  1179. /* #ifndef APP-ANDROID */
  1180. .cu-list.menu-avatar>.cu-item .content.flex-sub {
  1181. width: calc(100% - 96rpx - 60rpx - 20rpx);
  1182. }
  1183. /* #endif */
  1184. /* #ifndef APP-ANDROID */
  1185. .cu-list.menu-avatar>.cu-item .content>view:first-child {
  1186. font-size: 30rpx;
  1187. display: flex;
  1188. align-items: center
  1189. }
  1190. /* #endif */
  1191. .cu-list.menu-avatar>.cu-item .content .cu-tag.sm {
  1192. /* #ifndef APP-ANDROID */
  1193. display: inline-block;
  1194. /* #endif */
  1195. margin-left: 10rpx;
  1196. height: 28rpx;
  1197. font-size: 16rpx;
  1198. line-height: 32rpx
  1199. }
  1200. .cu-list.menu-avatar>.cu-item .action {
  1201. width: 100rpx;
  1202. text-align: center
  1203. }
  1204. /* #ifndef APP-ANDROID */
  1205. .cu-list.menu-avatar>.cu-item .action view+view {
  1206. margin-top: 10rpx
  1207. }
  1208. /* #endif */
  1209. .cu-list.menu-avatar.comment>.cu-item .content {
  1210. position: relative;
  1211. left: 0;
  1212. width: auto;
  1213. flex: 1;
  1214. }
  1215. .cu-list.menu-avatar.comment>.cu-item {
  1216. padding: 30rpx 30rpx 30rpx 120rpx;
  1217. height: auto
  1218. }
  1219. .cu-list.menu-avatar.comment .cu-avatar {
  1220. align-self: flex-start
  1221. }
  1222. .cu-list.menu>.cu-item {
  1223. position: relative;
  1224. display: flex;
  1225. padding: 0 30rpx;
  1226. min-height: 100rpx;
  1227. background-color: #ffffff;
  1228. justify-content: space-between;
  1229. align-items: center
  1230. }
  1231. /* #ifndef APP-ANDROID */
  1232. .cu-list.menu>.cu-item:last-child:after {
  1233. border: none
  1234. }
  1235. /* #endif */
  1236. /* #ifndef APP-ANDROID */
  1237. .cu-list.menu-avatar>.cu-item:after,
  1238. .cu-list.menu>.cu-item:after {
  1239. position: absolute;
  1240. top: 0;
  1241. left: 0;
  1242. box-sizing: border-box;
  1243. width: 200%;
  1244. height: 200%;
  1245. border-bottom: 1rpx solid #ddd;
  1246. border-radius: inherit;
  1247. content: " ";
  1248. transform: scale(.5);
  1249. transform-origin: 0 0;
  1250. pointer-events: none
  1251. }
  1252. /* #endif */
  1253. .cu-list.menu>.cu-item.grayscale {
  1254. background-color: #f5f5f5
  1255. }
  1256. .cu-list.menu>.cu-item.cur {
  1257. background-color: #fcf7e9
  1258. }
  1259. .cu-list.menu>.cu-item.arrow {
  1260. padding-right: 90rpx
  1261. }
  1262. /* #ifndef APP-ANDROID */
  1263. .cu-list.menu>.cu-item.arrow:before {
  1264. position: absolute;
  1265. top: 0;
  1266. right: 30rpx;
  1267. bottom: 0;
  1268. display: block;
  1269. content: "\e6a3";
  1270. margin: auto;
  1271. width: 30rpx;
  1272. height: 30rpx;
  1273. color: #8799a3;
  1274. text-align: center;
  1275. font-size: 34rpx;
  1276. font-family: cuIcon;
  1277. line-height: 30rpx
  1278. }
  1279. /* #endif */
  1280. /* #ifndef APP-ANDROID */
  1281. .cu-list.menu>.cu-item button.content {
  1282. padding: 0;
  1283. background-color: transparent;
  1284. justify-content: flex-start
  1285. }
  1286. .cu-list.menu>.cu-item button.content:after {
  1287. display: none
  1288. }
  1289. /* #endif */
  1290. .cu-list.menu>.cu-item .cu-avatar-group .cu-avatar {
  1291. border-color: #ffffff
  1292. }
  1293. /* #ifndef APP-ANDROID */
  1294. .cu-list.menu>.cu-item .content>view:first-child {
  1295. display: flex;
  1296. align-items: center
  1297. }
  1298. .cu-list.menu>.cu-item .content>text[class*=cuIcon] {
  1299. display: inline-block;
  1300. margin-right: 10rpx;
  1301. width: 1.6em;
  1302. text-align: center
  1303. }
  1304. .cu-list.menu>.cu-item .content>image {
  1305. display: inline-block;
  1306. margin-right: 10rpx;
  1307. width: 1.6em;
  1308. height: 1.6em;
  1309. vertical-align: middle
  1310. }
  1311. /* #endif */
  1312. .cu-list.menu>.cu-item .content {
  1313. font-size: 30rpx;
  1314. line-height: 1.6em;
  1315. flex: 1
  1316. }
  1317. .cu-list.menu>.cu-item .content .cu-tag.sm {
  1318. /* #ifndef APP-ANDROID */
  1319. display: inline-block;
  1320. /* #endif */
  1321. margin-left: 10rpx;
  1322. height: 28rpx;
  1323. font-size: 16rpx;
  1324. line-height: 32rpx
  1325. }
  1326. .cu-list.menu>.cu-item .action .cu-tag:empty {
  1327. right: 10rpx
  1328. }
  1329. .cu-list.menu {
  1330. /* #ifndef APP-ANDROID */
  1331. display: block;
  1332. /* #endif */
  1333. overflow: hidden
  1334. }
  1335. /* #ifndef APP-ANDROID */
  1336. .cu-list.menu.sm-border>.cu-item:after {
  1337. left: 30rpx;
  1338. width: calc(200% - 120rpx)
  1339. }
  1340. /* #endif */
  1341. .cu-list.grid>.cu-item {
  1342. position: relative;
  1343. display: flex;
  1344. padding: 20rpx 0 30rpx;
  1345. transition-duration: 0s;
  1346. flex-direction: column
  1347. }
  1348. /* #ifndef APP-ANDROID */
  1349. .cu-list.grid>.cu-item:after {
  1350. position: absolute;
  1351. top: 0;
  1352. left: 0;
  1353. box-sizing: border-box;
  1354. width: 200%;
  1355. height: 200%;
  1356. border-right: 1px solid rgba(0, 0, 0, .1);
  1357. border-bottom: 1px solid rgba(0, 0, 0, .1);
  1358. border-radius: inherit;
  1359. content: " ";
  1360. transform: scale(.5);
  1361. transform-origin: 0 0;
  1362. pointer-events: none
  1363. }
  1364. /* #endif */
  1365. /* #ifndef APP-ANDROID */
  1366. .cu-list.grid>.cu-item text {
  1367. display: block;
  1368. margin-top: 10rpx;
  1369. color: #888;
  1370. font-size: 26rpx;
  1371. line-height: 40rpx
  1372. }
  1373. .cu-list.grid>.cu-item [class*=cuIcon] {
  1374. position: relative;
  1375. display: block;
  1376. margin-top: 20rpx;
  1377. width: 100%;
  1378. font-size: 48rpx
  1379. }
  1380. /* #endif */
  1381. .cu-list.grid>.cu-item .cu-tag {
  1382. right: auto;
  1383. left: 50%;
  1384. margin-left: 20rpx
  1385. }
  1386. .cu-list.grid {
  1387. background-color: #ffffff;
  1388. text-align: center
  1389. }
  1390. .cu-list.grid.no-border>.cu-item {
  1391. padding-top: 10rpx;
  1392. padding-bottom: 20rpx
  1393. }
  1394. /* #ifndef APP-ANDROID */
  1395. .cu-list.grid.no-border>.cu-item:after {
  1396. border: none
  1397. }
  1398. /* #endif */
  1399. .cu-list.grid.no-border {
  1400. padding: 20rpx 10rpx
  1401. }
  1402. /* #ifndef APP-ANDROID */
  1403. .cu-list.grid.col-3>.cu-item:nth-child(3n):after,
  1404. .cu-list.grid.col-4>.cu-item:nth-child(4n):after,
  1405. .cu-list.grid.col-5>.cu-item:nth-child(5n):after {
  1406. border-right-width: 0
  1407. }
  1408. /* #endif */
  1409. .cu-list.card-menu {
  1410. overflow: hidden;
  1411. margin-right: 30rpx;
  1412. margin-left: 30rpx;
  1413. border-radius: 20rpx
  1414. }
  1415. /* ==================
  1416. 操作条
  1417. ==================== */
  1418. .cu-bar {
  1419. display: flex;
  1420. position: relative;
  1421. align-items: center;
  1422. min-height: 100rpx;
  1423. justify-content: space-between;
  1424. }
  1425. .cu-bar .action {
  1426. display: flex;
  1427. align-items: center;
  1428. height: 100%;
  1429. justify-content: center;
  1430. /* #ifndef APP-ANDROID */
  1431. max-width: 100%;
  1432. /* #endif */
  1433. }
  1434. .cu-bar .action.border-title {
  1435. position: relative;
  1436. top: -10rpx;
  1437. }
  1438. /* #ifndef APP-ANDROID */
  1439. .cu-bar .action.border-title text[class*="bg-"]:last-child {
  1440. position: absolute;
  1441. bottom: -0.5rem;
  1442. min-width: 2rem;
  1443. height: 6rpx;
  1444. left: 0;
  1445. }
  1446. /* #endif */
  1447. .cu-bar .action.sub-title {
  1448. position: relative;
  1449. /* #ifndef APP-ANDROID */
  1450. top: -0.2rem;
  1451. /* #endif */
  1452. }
  1453. /* #ifndef APP-ANDROID */
  1454. .cu-bar .action.sub-title text {
  1455. position: relative;
  1456. z-index: 1;
  1457. }
  1458. .cu-bar .action.sub-title text[class*="bg-"]:last-child {
  1459. position: absolute;
  1460. display: inline-block;
  1461. bottom: -0.2rem;
  1462. border-radius: 6rpx;
  1463. width: 100%;
  1464. height: 0.6rem;
  1465. left: 0.6rem;
  1466. opacity: 0.3;
  1467. z-index: 0;
  1468. }
  1469. .cu-bar .action.sub-title text[class*="text-"]:last-child {
  1470. position: absolute;
  1471. display: inline-block;
  1472. bottom: -0.7rem;
  1473. left: 0.5rem;
  1474. opacity: 0.2;
  1475. z-index: 0;
  1476. text-align: right;
  1477. font-weight: 900;
  1478. font-size: 36rpx;
  1479. }
  1480. .cu-bar.justify-center .action.border-title text:last-child,
  1481. .cu-bar.justify-center .action.sub-title text:last-child {
  1482. left: 0;
  1483. right: 0;
  1484. margin: auto;
  1485. text-align: center;
  1486. }
  1487. /* #endif */
  1488. /* #ifndef APP-ANDROID */
  1489. .cu-bar .action:first-child {
  1490. margin-left: 30rpx;
  1491. font-size: 30rpx;
  1492. }
  1493. .cu-bar .action text.text-cut {
  1494. text-align: left;
  1495. width: 100%;
  1496. }
  1497. .cu-bar .cu-avatar:first-child {
  1498. margin-left: 20rpx;
  1499. }
  1500. .cu-bar .action:first-child>text[class*="cuIcon-"] {
  1501. margin-left: -0.3em;
  1502. margin-right: 0.3em;
  1503. }
  1504. .cu-bar .action:last-child {
  1505. margin-right: 30rpx;
  1506. }
  1507. .cu-bar .action>text[class*="cuIcon-"],
  1508. .cu-bar .action>view[class*="cuIcon-"] {
  1509. font-size: 36rpx;
  1510. }
  1511. .cu-bar .action>text[class*="cuIcon-"]+text[class*="cuIcon-"] {
  1512. margin-left: 0.5em;
  1513. }
  1514. /* #endif */
  1515. .cu-bar .content {
  1516. position: absolute;
  1517. text-align: center;
  1518. /* #ifndef APP-ANDROID */
  1519. width: calc(100% - 340rpx);
  1520. cursor: none;
  1521. /* #endif */
  1522. left: 0;
  1523. right: 0;
  1524. bottom: 0;
  1525. top: 0;
  1526. margin: auto;
  1527. height: 60rpx;
  1528. font-size: 32rpx;
  1529. line-height: 60rpx;
  1530. pointer-events: none;
  1531. text-overflow: ellipsis;
  1532. white-space: nowrap;
  1533. overflow: hidden;
  1534. }
  1535. .cu-bar.ios .content {
  1536. bottom: 7px;
  1537. height: 30px;
  1538. font-size: 32rpx;
  1539. line-height: 30px;
  1540. }
  1541. .cu-bar.btn-group {
  1542. justify-content: space-around;
  1543. }
  1544. /* .cu-bar.btn-group button {
  1545. padding: 20rpx 32rpx;
  1546. }
  1547. .cu-bar.btn-group button {
  1548. flex: 1;
  1549. margin: 0 20rpx;
  1550. max-width: 50%;
  1551. } */
  1552. .cu-bar .search-form {
  1553. background-color: #f5f5f5;
  1554. line-height: 64rpx;
  1555. height: 64rpx;
  1556. font-size: 24rpx;
  1557. color: #333333;
  1558. flex: 1;
  1559. display: flex;
  1560. align-items: center;
  1561. margin: 0 30rpx;
  1562. }
  1563. .cu-bar .search-form+.action {
  1564. margin-right: 30rpx;
  1565. }
  1566. /* #ifndef APP-ANDROID */
  1567. .cu-bar .search-form input {
  1568. flex: 1;
  1569. padding-right: 30rpx;
  1570. height: 64rpx;
  1571. line-height: 64rpx;
  1572. font-size: 26rpx;
  1573. background-color: transparent;
  1574. }
  1575. .cu-bar .search-form [class*="cuIcon-"] {
  1576. margin: 0 0.5em 0 0.8em;
  1577. }
  1578. .cu-bar .search-form [class*="cuIcon-"]::before {
  1579. top: 0rpx;
  1580. }
  1581. /* #endif */
  1582. .cu-bar.fixed,
  1583. .nav.fixed {
  1584. position: fixed;
  1585. width: 100%;
  1586. top: 0;
  1587. z-index: 1024;
  1588. box-shadow: 0 1rpx 6rpx rgba(0, 0, 0, 0.1);
  1589. }
  1590. .cu-bar.foot {
  1591. position: fixed;
  1592. width: 100%;
  1593. bottom: 0;
  1594. z-index: 1024;
  1595. box-shadow: 0 -1rpx 6rpx rgba(0, 0, 0, 0.1);
  1596. }
  1597. .cu-bar.tabbar {
  1598. padding: 0;
  1599. /* #ifndef APP-ANDROID */
  1600. height: calc(100rpx + env(safe-area-inset-bottom) / 2);
  1601. padding-bottom: calc(env(safe-area-inset-bottom) / 2);
  1602. /* #endif */
  1603. }
  1604. .cu-tabbar-height {
  1605. min-height: 100rpx;
  1606. /* #ifndef APP-ANDROID */
  1607. height: calc(100rpx + env(safe-area-inset-bottom) / 2);
  1608. /* #endif */
  1609. }
  1610. .cu-bar.tabbar.shadow {
  1611. box-shadow: 0 -1rpx 6rpx rgba(0, 0, 0, 0.1);
  1612. }
  1613. .cu-bar.tabbar .action {
  1614. font-size: 22rpx;
  1615. position: relative;
  1616. flex: 1;
  1617. text-align: center;
  1618. padding: 0;
  1619. /* #ifndef APP-ANDROID */
  1620. display: block;
  1621. overflow: initial;
  1622. background-color: inherit;
  1623. /* #endif */
  1624. height: auto;
  1625. line-height: 1;
  1626. margin: 0;
  1627. }
  1628. .cu-bar.tabbar.shop .action {
  1629. width: 140rpx;
  1630. flex: initial;
  1631. }
  1632. .cu-bar.tabbar .action.add-action {
  1633. position: relative;
  1634. z-index: 2;
  1635. padding-top: 50rpx;
  1636. }
  1637. /* #ifndef APP-ANDROID */
  1638. .cu-bar.tabbar .action.add-action [class*="cuIcon-"] {
  1639. position: absolute;
  1640. width: 70rpx;
  1641. z-index: 2;
  1642. height: 70rpx;
  1643. border-radius: 50%;
  1644. line-height: 70rpx;
  1645. font-size: 50rpx;
  1646. top: -35rpx;
  1647. left: 0;
  1648. right: 0;
  1649. margin: auto;
  1650. padding: 0;
  1651. }
  1652. .cu-bar.tabbar .action.add-action::after {
  1653. position: absolute;
  1654. width: 100rpx;
  1655. height: 100rpx;
  1656. top: -50rpx;
  1657. left: 0;
  1658. right: 0;
  1659. margin: auto;
  1660. box-shadow: 0 -3rpx 8rpx rgba(0, 0, 0, 0.08);
  1661. border-radius: 50rpx;
  1662. background-color: inherit;
  1663. content: "";
  1664. z-index: 0;
  1665. }
  1666. .cu-bar.tabbar .action.add-action::before {
  1667. position: absolute;
  1668. width: 100rpx;
  1669. height: 30rpx;
  1670. bottom: 30rpx;
  1671. left: 0;
  1672. right: 0;
  1673. margin: auto;
  1674. background-color: inherit;
  1675. content: "";
  1676. z-index: 1;
  1677. }
  1678. /* #endif */
  1679. .cu-bar.tabbar .btn-group {
  1680. flex: 1;
  1681. display: flex;
  1682. justify-content: space-around;
  1683. align-items: center;
  1684. padding: 0 10rpx;
  1685. }
  1686. /* #ifndef APP-ANDROID */
  1687. .cu-bar.tabbar button.action::after {
  1688. border: 0;
  1689. }
  1690. .cu-bar.tabbar .action [class*="cuIcon-"] {
  1691. width: 100rpx;
  1692. position: relative;
  1693. display: block;
  1694. height: auto;
  1695. margin: 0 auto 10rpx;
  1696. text-align: center;
  1697. font-size: 40rpx;
  1698. }
  1699. /* #endif */
  1700. .cu-bar.tabbar .action .cuIcon-cu-image {
  1701. margin: 0 auto;
  1702. }
  1703. /* #ifndef APP-ANDROID */
  1704. .cu-bar.tabbar .action .cuIcon-cu-image image {
  1705. width: 50rpx;
  1706. height: 50rpx;
  1707. display: inline-block;
  1708. }
  1709. /* #endif */
  1710. .cu-bar.tabbar .submit {
  1711. align-items: center;
  1712. display: flex;
  1713. justify-content: center;
  1714. text-align: center;
  1715. position: relative;
  1716. flex: 2;
  1717. align-self: stretch;
  1718. }
  1719. /* #ifndef APP-ANDROID */
  1720. .cu-bar.tabbar .submit:last-child {
  1721. flex: 2.6;
  1722. }
  1723. .cu-bar.tabbar .submit+.submit {
  1724. flex: 2;
  1725. }
  1726. .cu-bar.tabbar.border .action::before {
  1727. content: " ";
  1728. width: 200%;
  1729. height: 200%;
  1730. position: absolute;
  1731. top: 0;
  1732. left: 0;
  1733. transform: scale(0.5);
  1734. transform-origin: 0 0;
  1735. border-right: 1rpx solid rgba(0, 0, 0, 0.1);
  1736. z-index: 3;
  1737. }
  1738. .cu-bar.tabbar.border .action:last-child:before {
  1739. display: none;
  1740. }
  1741. /* #endif */
  1742. .cu-bar.input {
  1743. padding-right: 20rpx;
  1744. background-color: #ffffff;
  1745. }
  1746. /* #ifndef APP-ANDROID */
  1747. .cu-bar.input input {
  1748. overflow: initial;
  1749. line-height: 64rpx;
  1750. height: 64rpx;
  1751. min-height: 64rpx;
  1752. flex: 1;
  1753. font-size: 30rpx;
  1754. margin: 0 20rpx;
  1755. }
  1756. /* #endif */
  1757. .cu-bar.input .action {
  1758. margin-left: 20rpx;
  1759. }
  1760. /* #ifndef APP-ANDROID */
  1761. .cu-bar.input .action [class*="cuIcon-"] {
  1762. font-size: 48rpx;
  1763. }
  1764. .cu-bar.input input+.action {
  1765. margin-right: 20rpx;
  1766. margin-left: 0rpx;
  1767. }
  1768. .cu-bar.input .action:first-child [class*="cuIcon-"] {
  1769. margin-left: 0rpx;
  1770. }
  1771. /* #endif */
  1772. .cu-custom {
  1773. /* #ifndef APP-ANDROID */
  1774. display: block;
  1775. /* #endif */
  1776. position: relative;
  1777. }
  1778. /* #ifndef APP-ANDROID */
  1779. .cu-custom .cu-bar .content {
  1780. width: calc(100% - 440rpx);
  1781. }
  1782. /* #endif */
  1783. /* #ifdef MP-ALIPAY */
  1784. .cu-custom .cu-bar .action .cuIcon-back {
  1785. opacity: 0;
  1786. }
  1787. /* #endif */
  1788. /* #ifndef APP-ANDROID */
  1789. .cu-custom .cu-bar .content image {
  1790. height: 60rpx;
  1791. width: 240rpx;
  1792. }
  1793. /* #endif */
  1794. .cu-custom .cu-bar {
  1795. min-height: 0px;
  1796. /* #ifdef MP-WEIXIN */
  1797. padding-right: 220rpx;
  1798. /* #endif */
  1799. /* #ifdef MP-ALIPAY */
  1800. padding-right: 150rpx;
  1801. /* #endif */
  1802. box-shadow: 0rpx 0rpx 0rpx;
  1803. z-index: 9999;
  1804. }
  1805. .cu-custom .cu-bar .border-custom {
  1806. position: relative;
  1807. background: rgba(0, 0, 0, 0.15);
  1808. border-radius: 1000rpx;
  1809. height: 30px;
  1810. }
  1811. /* #ifndef APP-ANDROID */
  1812. .cu-custom .cu-bar .border-custom::after {
  1813. width: 200%;
  1814. height: 200%;
  1815. position: absolute;
  1816. top: 0;
  1817. left: 0;
  1818. border-radius: inherit;
  1819. content: " ";
  1820. transform: scale(0.5);
  1821. transform-origin: 0 0;
  1822. pointer-events: none;
  1823. box-sizing: border-box;
  1824. border: 1rpx solid #ffffff;
  1825. opacity: 0.5;
  1826. }
  1827. .cu-custom .cu-bar .border-custom::before {
  1828. content: " ";
  1829. width: 1rpx;
  1830. height: 110%;
  1831. position: absolute;
  1832. top: 22.5%;
  1833. left: 0;
  1834. right: 0;
  1835. margin: auto;
  1836. transform: scale(0.5);
  1837. transform-origin: 0 0;
  1838. pointer-events: none;
  1839. box-sizing: border-box;
  1840. opacity: 0.6;
  1841. background-color: #ffffff;
  1842. }
  1843. .cu-custom .cu-bar .border-custom text {
  1844. display: block;
  1845. flex: 1;
  1846. margin: auto !important;
  1847. text-align: center;
  1848. font-size: 34rpx;
  1849. }
  1850. /* #endif */
  1851. /* ==================
  1852. 导航栏
  1853. ==================== */
  1854. .nav {
  1855. white-space: nowrap;
  1856. }
  1857. /* #ifdef WEB */
  1858. ::-webkit-scrollbar {
  1859. display: none;
  1860. }
  1861. /* #endif */
  1862. .nav .cu-item {
  1863. height: 90rpx;
  1864. /* #ifndef APP-ANDROID */
  1865. display: inline-block;
  1866. /* #endif */
  1867. line-height: 90rpx;
  1868. margin: 0 10rpx;
  1869. padding: 0 20rpx;
  1870. }
  1871. .nav .cu-item.cur {
  1872. border-bottom: 4rpx solid;
  1873. }
  1874. /* ==================
  1875. 时间轴
  1876. ==================== */
  1877. .cu-timeline {
  1878. /* #ifndef APP-ANDROID */
  1879. display: block;
  1880. /* #endif */
  1881. background-color: #ffffff;
  1882. }
  1883. .cu-timeline .cu-time {
  1884. width: 120rpx;
  1885. text-align: center;
  1886. padding: 20rpx 0;
  1887. font-size: 26rpx;
  1888. color: #888;
  1889. /* #ifndef APP-ANDROID */
  1890. display: block;
  1891. /* #endif */
  1892. }
  1893. .cu-timeline>.cu-item {
  1894. padding: 30rpx 30rpx 30rpx 120rpx;
  1895. position: relative;
  1896. /* #ifndef APP-ANDROID */
  1897. display: block;
  1898. /* #endif */
  1899. z-index: 0;
  1900. }
  1901. /* #ifndef APP-ANDROID */
  1902. .cu-timeline>.cu-item:not([class*="text-"]) {
  1903. color: #ccc;
  1904. }
  1905. /* #endif */
  1906. /* #ifndef APP-ANDROID */
  1907. .cu-timeline>.cu-item::after {
  1908. display: block;
  1909. content: "";
  1910. position: absolute;
  1911. width: 1rpx;
  1912. background-color: #ddd;
  1913. left: 60rpx;
  1914. height: 100%;
  1915. top: 0;
  1916. z-index: 8;
  1917. }
  1918. .cu-timeline>.cu-item::before {
  1919. font-family: "cuIcon";
  1920. display: block;
  1921. position: absolute;
  1922. top: 36rpx;
  1923. z-index: 9;
  1924. background-color: #ffffff;
  1925. width: 50rpx;
  1926. height: 50rpx;
  1927. text-align: center;
  1928. border: none;
  1929. line-height: 50rpx;
  1930. left: 36rpx;
  1931. }
  1932. .cu-timeline>.cu-item:not([class*="cuIcon-"])::before {
  1933. content: "\e763";
  1934. }
  1935. .cu-timeline>.cu-item[class*="cuIcon-"]::before {
  1936. background-color: #ffffff;
  1937. width: 50rpx;
  1938. height: 50rpx;
  1939. text-align: center;
  1940. border: none;
  1941. line-height: 50rpx;
  1942. left: 36rpx;
  1943. }
  1944. /* #endif */
  1945. .cu-timeline>.cu-item>.content {
  1946. padding: 30rpx;
  1947. border-radius: 6rpx;
  1948. /* #ifndef APP-ANDROID */
  1949. display: block;
  1950. /* #endif */
  1951. line-height: 1.6;
  1952. }
  1953. /* #ifndef APP-ANDROID */
  1954. .cu-timeline>.cu-item>.content:not([class*="bg-"]) {
  1955. background-color: #f1f1f1;
  1956. color: #333333;
  1957. }
  1958. /* #endif */
  1959. .cu-timeline>.cu-item>.content+.content {
  1960. margin-top: 20rpx;
  1961. }
  1962. /* ==================
  1963. 聊天
  1964. ==================== */
  1965. .cu-chat {
  1966. display: flex;
  1967. flex-direction: column;
  1968. }
  1969. .cu-chat .cu-item {
  1970. display: flex;
  1971. padding: 30rpx 30rpx 70rpx;
  1972. position: relative;
  1973. }
  1974. .cu-chat .cu-item>.cu-avatar {
  1975. width: 80rpx;
  1976. height: 80rpx;
  1977. }
  1978. .cu-chat .cu-item>.main {
  1979. /* #ifndef APP-ANDROID */
  1980. max-width: calc(100% - 260rpx);
  1981. /* #endif */
  1982. margin: 0 40rpx;
  1983. display: flex;
  1984. align-items: center;
  1985. }
  1986. /* #ifndef APP-ANDROID */
  1987. .cu-chat .cu-item>image {
  1988. height: 320rpx;
  1989. }
  1990. /* #endif */
  1991. .cu-chat .cu-item>.main .content {
  1992. padding: 20rpx;
  1993. border-radius: 6rpx;
  1994. /* #ifndef APP-ANDROID */
  1995. display: inline-flex;
  1996. max-width: 100%;
  1997. /* #endif */
  1998. align-items: center;
  1999. font-size: 30rpx;
  2000. position: relative;
  2001. min-height: 80rpx;
  2002. line-height: 40rpx;
  2003. text-align: left;
  2004. }
  2005. /* #ifndef APP-ANDROID */
  2006. .cu-chat .cu-item>.main .content:not([class*="bg-"]) {
  2007. background-color: #ffffff;
  2008. color: #333333;
  2009. }
  2010. /* #endif */
  2011. .cu-chat .cu-item .date {
  2012. position: absolute;
  2013. font-size: 24rpx;
  2014. color: #8799a3;
  2015. /* #ifndef APP-ANDROID */
  2016. width: calc(100% - 320rpx);
  2017. /* #endif */
  2018. bottom: 20rpx;
  2019. left: 160rpx;
  2020. }
  2021. .cu-chat .cu-item .action {
  2022. padding: 0 30rpx;
  2023. display: flex;
  2024. align-items: center;
  2025. }
  2026. /* #ifndef APP-ANDROID */
  2027. .cu-chat .cu-item>.main .content::after {
  2028. top: 27rpx;
  2029. transform: rotate(45deg);
  2030. position: absolute;
  2031. z-index: 100;
  2032. display: inline-block;
  2033. background-color: inherit;
  2034. right: initial;
  2035. content: "";
  2036. overflow: hidden;
  2037. width: 24rpx;
  2038. height: 24rpx;
  2039. left: -12rpx;
  2040. }
  2041. .cu-chat .cu-item.self>.main .content::after {
  2042. left: auto;
  2043. right: -12rpx;
  2044. }
  2045. .cu-chat .cu-item>.main .content::before {
  2046. top: 30rpx;
  2047. transform: rotate(45deg);
  2048. position: absolute;
  2049. z-index: -1;
  2050. /* #ifndef APP-ANDROID */
  2051. display: inline-block;
  2052. background-color: inherit;
  2053. right: initial;
  2054. content: "";
  2055. filter: blur(5rpx);
  2056. /* #endif */
  2057. overflow: hidden;
  2058. width: 24rpx;
  2059. height: 24rpx;
  2060. left: -12rpx;
  2061. opacity: 0.3;
  2062. }
  2063. .cu-chat .cu-item>.main .content:not([class*="bg-"])::before {
  2064. background-color: #333333;
  2065. opacity: 0.1;
  2066. }
  2067. .cu-chat .cu-item.self>.main .content::before {
  2068. left: auto;
  2069. right: -12rpx;
  2070. }
  2071. /* #endif */
  2072. .cu-chat .cu-item.self {
  2073. justify-content: flex-end;
  2074. text-align: right;
  2075. }
  2076. .cu-chat .cu-info {
  2077. /* #ifndef APP-ANDROID */
  2078. display: inline-block;
  2079. /* #endif */
  2080. margin: 20rpx auto;
  2081. font-size: 24rpx;
  2082. padding: 8rpx 12rpx;
  2083. background-color: rgba(0, 0, 0, 0.2);
  2084. border-radius: 6rpx;
  2085. color: #ffffff;
  2086. max-width: 400rpx;
  2087. line-height: 1.4;
  2088. }
  2089. /* ==================
  2090. 卡片
  2091. ==================== */
  2092. .cu-card {
  2093. /* #ifndef APP-ANDROID */
  2094. display: block;
  2095. /* #endif */
  2096. overflow: hidden;
  2097. }
  2098. .cu-card>.cu-item {
  2099. /* #ifndef APP-ANDROID */
  2100. display: block;
  2101. /* #endif */
  2102. background-color: #ffffff;
  2103. overflow: hidden;
  2104. border-radius: 10rpx;
  2105. margin: 30rpx;
  2106. }
  2107. /* #ifndef APP-ANDROID */
  2108. .cu-card>.cu-item.shadow-blur {
  2109. overflow: initial;
  2110. }
  2111. /* #endif */
  2112. .cu-card.no-card>.cu-item {
  2113. margin: 0rpx;
  2114. border-radius: 0rpx;
  2115. }
  2116. .cu-card .grid.grid-square {
  2117. margin-bottom: -20rpx;
  2118. }
  2119. .cu-card.case .image {
  2120. position: relative;
  2121. }
  2122. /* #ifndef APP-ANDROID */
  2123. .cu-card.case .image image {
  2124. width: 100%;
  2125. }
  2126. /* #endif */
  2127. .cu-card.case .image .cu-tag {
  2128. position: absolute;
  2129. right: 0;
  2130. top: 0;
  2131. }
  2132. .cu-card.case .image .cu-bar {
  2133. position: absolute;
  2134. bottom: 0;
  2135. width: 100%;
  2136. background-color: transparent;
  2137. padding: 0rpx 30rpx;
  2138. }
  2139. .cu-card.case.no-card .image {
  2140. margin: 30rpx 30rpx 0;
  2141. overflow: hidden;
  2142. border-radius: 10rpx;
  2143. }
  2144. /* #ifndef APP-ANDROID */
  2145. .cu-card.dynamic {
  2146. display: block;
  2147. }
  2148. /* #endif */
  2149. .cu-card.dynamic>.cu-item {
  2150. /* #ifndef APP-ANDROID */
  2151. display: block;
  2152. /* #endif */
  2153. background-color: #ffffff;
  2154. overflow: hidden;
  2155. }
  2156. .cu-card.dynamic>.cu-item>.text-content {
  2157. padding: 0 30rpx 0;
  2158. /* #ifndef APP-ANDROID */
  2159. max-height: 6.4em;
  2160. /* #endif */
  2161. overflow: hidden;
  2162. font-size: 30rpx;
  2163. margin-bottom: 20rpx;
  2164. }
  2165. .cu-card.dynamic>.cu-item .square-img {
  2166. width: 100%;
  2167. height: 200rpx;
  2168. border-radius: 6rpx;
  2169. }
  2170. .cu-card.dynamic>.cu-item .only-img {
  2171. width: 100%;
  2172. height: 320rpx;
  2173. border-radius: 6rpx;
  2174. }
  2175. /* #ifndef APP-ANDROID */
  2176. card.dynamic>.cu-item .comment {
  2177. padding: 20rpx;
  2178. background-color: #f1f1f1;
  2179. margin: 0 30rpx 30rpx;
  2180. border-radius: 6rpx;
  2181. }
  2182. /* #endif */
  2183. /* #ifndef APP-ANDROID */
  2184. .cu-card.article {
  2185. display: block;
  2186. }
  2187. /* #endif */
  2188. .cu-card.article>.cu-item {
  2189. padding-bottom: 30rpx;
  2190. }
  2191. .cu-card.article>.cu-item .title {
  2192. font-size: 30rpx;
  2193. /* #ifndef APP-ANDROID */
  2194. font-weight: 900;
  2195. /* #endif */
  2196. color: #333333;
  2197. line-height: 100rpx;
  2198. padding: 0 30rpx;
  2199. }
  2200. .cu-card.article>.cu-item .content {
  2201. display: flex;
  2202. padding: 0 30rpx;
  2203. }
  2204. /* #ifndef APP-ANDROID */
  2205. .cu-card.article>.cu-item .content>image {
  2206. width: 240rpx;
  2207. height: 6.4em;
  2208. margin-right: 20rpx;
  2209. border-radius: 6rpx;
  2210. }
  2211. /* #endif */
  2212. .cu-card.article>.cu-item .content .desc {
  2213. flex: 1;
  2214. display: flex;
  2215. flex-direction: column;
  2216. justify-content: space-between;
  2217. }
  2218. .cu-card.article>.cu-item .content .text-content {
  2219. font-size: 28rpx;
  2220. color: #888;
  2221. /* #ifndef APP-ANDROID */
  2222. height: 4.8em;
  2223. /* #endif */
  2224. overflow: hidden;
  2225. }
  2226. /* ==================
  2227. 表单
  2228. ==================== */
  2229. .cu-form-group {
  2230. background-color: #ffffff;
  2231. padding: 1rpx 30rpx;
  2232. display: flex;
  2233. align-items: center;
  2234. min-height: 100rpx;
  2235. justify-content: space-between;
  2236. }
  2237. .cu-form-group+.cu-form-group {
  2238. border-top: 1rpx solid #eee;
  2239. }
  2240. .cu-form-group .title {
  2241. /* #ifndef APP-ANDROID */
  2242. text-align: justify;
  2243. /* #endif */
  2244. padding-right: 30rpx;
  2245. font-size: 30rpx;
  2246. position: relative;
  2247. height: 60rpx;
  2248. line-height: 60rpx;
  2249. }
  2250. .cu-form-group.align-start .title {
  2251. margin-top: 32rpx;
  2252. /* #ifndef APP-ANDROID */
  2253. height: 1em;
  2254. line-height: 1em;
  2255. /* #endif */
  2256. }
  2257. /* #ifndef APP-ANDROID */
  2258. .cu-form-group input {
  2259. flex: 1;
  2260. font-size: 30rpx;
  2261. color: #555;
  2262. padding-right: 20rpx;
  2263. }
  2264. .cu-form-group>text[class*="cuIcon-"] {
  2265. font-size: 36rpx;
  2266. padding: 0;
  2267. box-sizing: border-box;
  2268. }
  2269. .cu-form-group textarea {
  2270. margin: 32rpx 0 30rpx;
  2271. height: 4.6em;
  2272. width: 100%;
  2273. line-height: 1.2em;
  2274. flex: 1;
  2275. font-size: 28rpx;
  2276. padding: 0;
  2277. }
  2278. .cu-form-group picker {
  2279. flex: 1;
  2280. padding-right: 40rpx;
  2281. overflow: hidden;
  2282. position: relative;
  2283. }
  2284. .cu-form-group picker .picker {
  2285. line-height: 100rpx;
  2286. font-size: 28rpx;
  2287. text-overflow: ellipsis;
  2288. white-space: nowrap;
  2289. overflow: hidden;
  2290. width: 100%;
  2291. text-align: right;
  2292. }
  2293. .cu-form-group picker::after {
  2294. font-family: cuIcon;
  2295. /* #ifndef APP-ANDROID */
  2296. display: block;
  2297. /* #endif */
  2298. content: "\e6a3";
  2299. position: absolute;
  2300. font-size: 34rpx;
  2301. color: #8799a3;
  2302. line-height: 100rpx;
  2303. width: 60rpx;
  2304. text-align: center;
  2305. top: 0;
  2306. bottom: 0;
  2307. right: -20rpx;
  2308. margin: auto;
  2309. }
  2310. .cu-form-group textarea[disabled],
  2311. .cu-form-group textarea[disabled] .placeholder {
  2312. color: transparent;
  2313. }
  2314. /* #endif */
  2315. .uni-form-item{
  2316. margin-bottom: 22px;
  2317. }
  2318. .uni-form-item .title{
  2319. display: flex;
  2320. flex-direction: row;
  2321. width: 20%;
  2322. justify-content: flex-start;
  2323. font-size: 14px;
  2324. color: #606266;
  2325. align-items: center;
  2326. text-align: left;
  2327. }
  2328. .uni-form-item .uni-input{
  2329. font-size: 14px;
  2330. border: 1px solid #dcdfe6;
  2331. border-radius: 4px;
  2332. padding-left: 10px;
  2333. height: 35px;
  2334. width: 80%;
  2335. }
  2336. .uni-form-item .uni-icon{
  2337. padding: 0 5px;
  2338. }
  2339. .uni-form-item .my-blur{
  2340. border: 1px solid #dcdfe6;
  2341. }
  2342. .uni-form-item .my-focus{
  2343. border: 1px solid #2979ff;
  2344. }
  2345. .uni-form-item .group-item{
  2346. margin-right: 25px;
  2347. }
  2348. .uni-form-item .group-item .my-radio{
  2349. transform: scale(0.8)
  2350. }
  2351. .uni-form-item .group-item .my-text{
  2352. display: flex;
  2353. align-items: center;
  2354. font-size: 14px;
  2355. }
  2356. /* ==================
  2357. 模态窗口
  2358. ==================== */
  2359. .cu-modal {
  2360. position: fixed;
  2361. top: 0;
  2362. right: 0;
  2363. bottom: 0;
  2364. left: 0;
  2365. z-index: 1110;
  2366. opacity: 0;
  2367. text-align: center;
  2368. transform: scale(1.185);
  2369. background: rgba(0, 0, 0, 0.6);
  2370. /* #ifndef APP-ANDROID */
  2371. transition: all 0.3s ease-in-out 0s;
  2372. -ms-transform: scale(1.185);
  2373. backface-visibility: hidden;
  2374. perspective: 2000rpx;
  2375. outline: 0;
  2376. /* #endif */
  2377. pointer-events: none;
  2378. }
  2379. /* #ifndef APP-ANDROID */
  2380. .cu-modal::before {
  2381. content: "\200B";
  2382. display: inline-block;
  2383. vertical-align: middle;
  2384. height: 100%;
  2385. }
  2386. /* #endif */
  2387. .cu-modal.show {
  2388. opacity: 1;
  2389. /* #ifndef APP-ANDROID */
  2390. transition-duration: 0.3s;
  2391. -ms-transform: scale(1);
  2392. transform: scale(1);
  2393. overflow-x: hidden;
  2394. overflow-y: auto;
  2395. pointer-events: auto;
  2396. /* #endif */
  2397. }
  2398. .cu-dialog {
  2399. position: relative;
  2400. /* #ifndef APP-ANDROID */
  2401. display: inline-block;
  2402. vertical-align: middle;
  2403. /* #endif */
  2404. margin-left: auto;
  2405. margin-right: auto;
  2406. width: 680rpx;
  2407. /* #ifndef APP */
  2408. max-width: 100%;
  2409. /* #endif */
  2410. background-color: #f8f8f8;
  2411. border-radius: 10rpx;
  2412. overflow: hidden;
  2413. }
  2414. /* #ifndef APP-ANDROID */
  2415. .cu-modal.bottom-modal::before {
  2416. vertical-align: bottom;
  2417. }
  2418. /* #endif */
  2419. .cu-modal.bottom-modal .cu-dialog {
  2420. width: 100%;
  2421. border-radius: 0;
  2422. }
  2423. .cu-modal.bottom-modal {
  2424. margin-bottom: -1000rpx;
  2425. }
  2426. .cu-modal.bottom-modal.show {
  2427. margin-bottom: 0;
  2428. }
  2429. .cu-modal.drawer-modal {
  2430. transform: scale(1);
  2431. display: flex;
  2432. }
  2433. .cu-modal.drawer-modal .cu-dialog {
  2434. height: 100%;
  2435. min-width: 200rpx;
  2436. border-radius: 0;
  2437. /* #ifndef APP-ANDROID */
  2438. margin: initial;
  2439. /* #endif */
  2440. transition-duration: 0.3s;
  2441. }
  2442. .cu-modal.drawer-modal.justify-start .cu-dialog {
  2443. transform: translateX(-100%);
  2444. }
  2445. .cu-modal.drawer-modal.justify-end .cu-dialog {
  2446. transform: translateX(100%);
  2447. }
  2448. .cu-modal.drawer-modal.show .cu-dialog {
  2449. transform: translateX(0%);
  2450. }
  2451. /* #ifndef APP-ANDROID */
  2452. .cu-modal .cu-dialog>.cu-bar:first-child .action{
  2453. min-width: 100rpx;
  2454. margin-right: 0;
  2455. min-height: 100rpx;
  2456. }
  2457. /* #endif */
  2458. /* ==================
  2459. 轮播
  2460. ==================== */
  2461. .screen-swiper {
  2462. min-height: 375rpx;
  2463. }
  2464. /* #ifdef APP-ANDROID */
  2465. .screen-swiper .my-image,
  2466. .screen-swiper .my-image,
  2467. .swiper-item .my-image,
  2468. .swiper-item .my-image {
  2469. width: 100%;
  2470. height: 100%;
  2471. margin: 0;
  2472. pointer-events: none;
  2473. }
  2474. /* #endif */
  2475. /* #ifndef APP-ANDROID */
  2476. swiper .a-swiper-dot {
  2477. display: inline-block;
  2478. width: 16rpx;
  2479. height: 16rpx;
  2480. background: rgba(0, 0, 0, .3);
  2481. border-radius: 50%;
  2482. vertical-align: middle;
  2483. }
  2484. swiper[class*="-dot"] .wx-swiper-dots,
  2485. swiper[class*="-dot"] .a-swiper-dots,
  2486. swiper[class*="-dot"] .uni-swiper-dots {
  2487. display: flex;
  2488. align-items: center;
  2489. width: 100%;
  2490. justify-content: center;
  2491. }
  2492. swiper.square-dot .wx-swiper-dot,
  2493. swiper.square-dot .a-swiper-dot,
  2494. swiper.square-dot .uni-swiper-dot {
  2495. background-color: #ffffff;
  2496. opacity: 0.4;
  2497. width: 10rpx;
  2498. height: 10rpx;
  2499. border-radius: 20rpx;
  2500. margin: 0 8rpx !important;
  2501. }
  2502. swiper.square-dot .wx-swiper-dot.wx-swiper-dot-active,
  2503. swiper.square-dot .a-swiper-dot.a-swiper-dot-active,
  2504. swiper.square-dot .uni-swiper-dot.uni-swiper-dot-active {
  2505. opacity: 1;
  2506. width: 30rpx;
  2507. }
  2508. swiper.round-dot .wx-swiper-dot,
  2509. swiper.round-dot .a-swiper-dot,
  2510. swiper.round-dot .uni-swiper-dot {
  2511. width: 10rpx;
  2512. height: 10rpx;
  2513. position: relative;
  2514. margin: 4rpx 8rpx !important;
  2515. }
  2516. swiper.round-dot .wx-swiper-dot.wx-swiper-dot-active::after,
  2517. swiper.round-dot .a-swiper-dot.a-swiper-dot-active::after,
  2518. swiper.round-dot .uni-swiper-dot.uni-swiper-dot-active::after {
  2519. content: "";
  2520. position: absolute;
  2521. width: 10rpx;
  2522. height: 10rpx;
  2523. top: 0rpx;
  2524. left: 0rpx;
  2525. right: 0;
  2526. bottom: 0;
  2527. margin: auto;
  2528. background-color: #ffffff;
  2529. border-radius: 20rpx;
  2530. }
  2531. swiper.round-dot .wx-swiper-dot.wx-swiper-dot-active,
  2532. swiper.round-dot .a-swiper-dot.a-swiper-dot-active,
  2533. swiper.round-dot .uni-swiper-dot.uni-swiper-dot-active {
  2534. width: 18rpx;
  2535. height: 18rpx;
  2536. }
  2537. .screen-swiper image,
  2538. .screen-swiper image,
  2539. .swiper-item image,
  2540. .swiper-item image {
  2541. width: 100%;
  2542. display: block;
  2543. height: 100%;
  2544. margin: 0;
  2545. pointer-events: none;
  2546. }
  2547. /* #endif */
  2548. .card-swiper {
  2549. height: 420rpx !important;
  2550. }
  2551. /* #ifndef APP-ANDROID */
  2552. .card-swiper swiper-item {
  2553. width: 610rpx !important;
  2554. left: 70rpx;
  2555. box-sizing: border-box;
  2556. padding: 40rpx 0rpx 70rpx;
  2557. overflow: initial;
  2558. }
  2559. .card-swiper swiper-item .swiper-item {
  2560. width: 100%;
  2561. display: block;
  2562. height: 100%;
  2563. border-radius: 10rpx;
  2564. transform: scale(0.9);
  2565. /* #ifndef APP-ANDROID */
  2566. transition: all 0.2s ease-in 0s;
  2567. /* #endif */
  2568. overflow: hidden;
  2569. }
  2570. .card-swiper swiper-item.cur .swiper-item {
  2571. transform: none;
  2572. /* #ifndef APP-ANDROID */
  2573. transition: all 0.2s ease-in 0s;
  2574. /* #endif */
  2575. }
  2576. /* #endif */
  2577. .tower-swiper {
  2578. height: 420rpx;
  2579. position: relative;
  2580. max-width: 750rpx;
  2581. overflow: hidden;
  2582. }
  2583. .tower-swiper .tower-item {
  2584. position: absolute;
  2585. width: 300rpx;
  2586. height: 380rpx;
  2587. top: 0;
  2588. bottom: 0;
  2589. left: 50%;
  2590. margin: auto;
  2591. /* #ifndef APP-ANDROID */
  2592. transition: all 0.2s ease-in 0s;
  2593. /* #endif */
  2594. opacity: 1;
  2595. }
  2596. .tower-swiper .tower-item.none {
  2597. opacity: 0;
  2598. }
  2599. .tower-swiper .tower-item .swiper-item {
  2600. width: 100%;
  2601. height: 100%;
  2602. border-radius: 6rpx;
  2603. overflow: hidden;
  2604. }
  2605. /* ==================
  2606. 步骤条
  2607. ==================== */
  2608. .cu-steps {
  2609. display: flex;
  2610. }
  2611. /* #ifndef APP-ANDROID */
  2612. scroll-view.cu-steps {
  2613. display: block;
  2614. white-space: nowrap;
  2615. }
  2616. scroll-view.cu-steps .cu-item {
  2617. display: inline-block;
  2618. }
  2619. /* #endif */
  2620. .cu-steps .cu-item {
  2621. flex: 1;
  2622. text-align: center;
  2623. position: relative;
  2624. min-width: 100rpx;
  2625. }
  2626. /* #ifndef APP-ANDROID */
  2627. .cu-steps .cu-item:not([class*="text-"]) {
  2628. color: #8799a3;
  2629. }
  2630. /* #endif */
  2631. /* #ifndef APP-ANDROID */
  2632. .cu-steps .cu-item [class*="cuIcon-"]{
  2633. display: block;
  2634. font-size: 40rpx;
  2635. line-height: 80rpx;
  2636. }
  2637. /* #endif */
  2638. .cu-steps .cu-item .num {
  2639. /* #ifndef APP-ANDROID */
  2640. display: block;
  2641. /* #endif */
  2642. font-size: 40rpx;
  2643. line-height: 80rpx;
  2644. }
  2645. /* #ifndef APP-ANDROID */
  2646. .cu-steps .cu-item::before,
  2647. .cu-steps .cu-item::after,
  2648. .cu-steps.steps-arrow .cu-item::before,
  2649. .cu-steps.steps-arrow .cu-item::after {
  2650. display: block;
  2651. width: calc(100% - 80rpx);
  2652. left: calc(0px - (100% - 80rpx) / 2);
  2653. content: "";
  2654. position: absolute;
  2655. height: 0px;
  2656. border-bottom: 1px solid #ccc;
  2657. top: 40rpx;
  2658. z-index: 0;
  2659. }
  2660. .cu-steps.steps-arrow .cu-item::before,
  2661. .cu-steps.steps-arrow .cu-item::after {
  2662. content: "\e6a3";
  2663. font-family: 'cuIcon';
  2664. height: 30rpx;
  2665. border-bottom-width: 0px;
  2666. line-height: 30rpx;
  2667. top: 0;
  2668. bottom: 0;
  2669. margin: auto;
  2670. color: #ccc;
  2671. }
  2672. .cu-steps.steps-bottom .cu-item::before,
  2673. .cu-steps.steps-bottom .cu-item::after {
  2674. bottom: 40rpx;
  2675. /* #ifndef APP-ANDROID */
  2676. top: initial;
  2677. /* #endif */
  2678. }
  2679. .cu-steps .cu-item::after {
  2680. /* #ifdef WEB */
  2681. border-bottom: 1px solid currentColor;
  2682. /* #endif */
  2683. width: 0px;
  2684. /* #ifndef APP-ANDROID */
  2685. transition: all 0.3s ease-in-out 0s;
  2686. /* #endif */
  2687. }
  2688. /* #ifndef APP-ANDROID */
  2689. .cu-steps .cu-item[class*="text-"]::after {
  2690. width: calc(100% - 80rpx);
  2691. /* #ifdef WEB */
  2692. color: currentColor;
  2693. /* #endif */
  2694. }
  2695. /* #endif */
  2696. .cu-steps .cu-item:first-child::before,
  2697. .cu-steps .cu-item:first-child::after {
  2698. display: none;
  2699. }
  2700. /* #endif */
  2701. .cu-steps .cu-item .num {
  2702. width: 40rpx;
  2703. height: 40rpx;
  2704. /* #ifndef APP-ANDROID */
  2705. border-radius: 50%;
  2706. /* #endif */
  2707. line-height: 40rpx;
  2708. margin: 20rpx auto;
  2709. font-size: 24rpx;
  2710. /* #ifdef WEB */
  2711. border: 1px solid currentColor;
  2712. /* #endif */
  2713. position: relative;
  2714. overflow: hidden;
  2715. }
  2716. /* #ifndef APP-ANDROID */
  2717. .cu-steps .cu-item[class*="text-"] .num {
  2718. background-color: currentColor;
  2719. }
  2720. .cu-steps .cu-item .num::before,
  2721. .cu-steps .cu-item .num::after {
  2722. position: absolute;
  2723. left: 0;
  2724. right: 0;
  2725. top: 0;
  2726. bottom: 0;
  2727. margin: auto;
  2728. /* #ifndef APP-ANDROID */
  2729. transition: all 0.3s ease-in-out 0s;
  2730. content: attr(data-index);
  2731. /* #endif */
  2732. transform: translateY(0rpx);
  2733. }
  2734. /* #endif */
  2735. /* #ifndef APP-ANDROID */
  2736. .cu-steps .cu-item .num::after {
  2737. transform: translateY(40rpx);
  2738. color: #ffffff;
  2739. transition: all 0.3s ease-in-out 0s;
  2740. }
  2741. .cu-steps .cu-item[class*="text-"] .num::before {
  2742. transform: translateY(-40rpx);
  2743. color: #ffffff;
  2744. }
  2745. .cu-steps .cu-item[class*="text-"] .num::after {
  2746. content: "\e645";
  2747. font-family: 'cuIcon';
  2748. color: #ffffff;
  2749. transform: translateY(0rpx);
  2750. }
  2751. .cu-steps .cu-item[class*="text-"] .num.err::after {
  2752. content: "\e646";
  2753. }
  2754. /* #endif */
  2755. /* ==================
  2756. 布局
  2757. ==================== */
  2758. /* -- flex弹性布局 -- */
  2759. .flex {
  2760. display: flex;
  2761. }
  2762. .basis-xs {
  2763. flex-basis: 20%;
  2764. }
  2765. .basis-sm {
  2766. flex-basis: 40%;
  2767. }
  2768. .basis-df {
  2769. flex-basis: 50%;
  2770. }
  2771. .basis-lg {
  2772. flex-basis: 60%;
  2773. }
  2774. .basis-xl {
  2775. flex-basis: 80%;
  2776. }
  2777. .flex-sub {
  2778. flex: 1;
  2779. }
  2780. .flex-twice {
  2781. flex: 2;
  2782. }
  2783. .flex-treble {
  2784. flex: 3;
  2785. }
  2786. .flex-direction {
  2787. flex-direction: column;
  2788. }
  2789. .flex-wrap {
  2790. flex-wrap: wrap;
  2791. }
  2792. .align-start {
  2793. align-items: flex-start;
  2794. }
  2795. .align-end {
  2796. align-items: flex-end;
  2797. }
  2798. .align-center {
  2799. align-items: center;
  2800. }
  2801. .align-stretch {
  2802. align-items: stretch;
  2803. }
  2804. .self-start {
  2805. align-self: flex-start;
  2806. }
  2807. .self-center {
  2808. /* align-self: flex-center; */
  2809. align-self: center;
  2810. }
  2811. .self-end {
  2812. align-self: flex-end;
  2813. }
  2814. .self-stretch {
  2815. align-self: stretch;
  2816. }
  2817. .align-stretch {
  2818. align-items: stretch;
  2819. }
  2820. .justify-start {
  2821. justify-content: flex-start;
  2822. }
  2823. .justify-end {
  2824. justify-content: flex-end;
  2825. }
  2826. .justify-center {
  2827. justify-content: center;
  2828. }
  2829. .justify-between {
  2830. justify-content: space-between;
  2831. }
  2832. .justify-around {
  2833. justify-content: space-around;
  2834. }
  2835. /* grid布局 */
  2836. .grid {
  2837. display: flex;
  2838. flex-wrap: wrap;
  2839. }
  2840. .grid.grid-square {
  2841. overflow: hidden;
  2842. }
  2843. .grid.grid-square .cu-tag {
  2844. position: absolute;
  2845. right: 0;
  2846. top: 0;
  2847. border-bottom-left-radius: 6rpx;
  2848. padding: 6rpx 12rpx;
  2849. height: auto;
  2850. background-color: rgba(0, 0, 0, 0.5);
  2851. }
  2852. /* #ifndef APP-ANDROID */
  2853. .grid.grid-square>.my-view>.my-text[class*="cuIcon-"] {
  2854. font-size: 52rpx;
  2855. position: absolute;
  2856. color: #8799a3;
  2857. margin: auto;
  2858. top: 0;
  2859. bottom: 0;
  2860. left: 0;
  2861. right: 0;
  2862. display: flex;
  2863. justify-content: center;
  2864. align-items: center;
  2865. flex-direction: column;
  2866. }
  2867. /* #endif */
  2868. .grid.grid-square>.my-view {
  2869. margin-right: 20rpx;
  2870. margin-bottom: 20rpx;
  2871. border-radius: 6rpx;
  2872. position: relative;
  2873. overflow: hidden;
  2874. }
  2875. .grid.grid-square>.my-view.bg-img .my-image {
  2876. width: 100%;
  2877. height: 100%;
  2878. position: absolute;
  2879. }
  2880. .grid.col-1.grid-square>.my-view {
  2881. padding-bottom: 100%;
  2882. height: 0;
  2883. margin-right: 0;
  2884. }
  2885. /* #ifndef APP-ANDROID */
  2886. .grid.col-2.grid-square>.my-view {
  2887. padding-bottom: calc((100% - 20rpx)/2);
  2888. height: 0;
  2889. width: calc((100% - 20rpx)/2);
  2890. }
  2891. .grid.col-3.grid-square>.my-view {
  2892. padding-bottom: calc((100% - 40rpx)/3);
  2893. height: 0;
  2894. width: calc((100% - 40rpx)/3);
  2895. }
  2896. .grid.col-4.grid-square>.my-view {
  2897. padding-bottom: calc((100% - 60rpx)/4);
  2898. height: 0;
  2899. width: calc((100% - 60rpx)/4);
  2900. }
  2901. .grid.col-5.grid-square>.my-view {
  2902. padding-bottom: calc((100% - 80rpx)/5);
  2903. height: 0;
  2904. width: calc((100% - 80rpx)/5);
  2905. }
  2906. .grid.col-2.grid-square>.my-view:nth-child(2n),
  2907. .grid.col-3.grid-square>.my-view:nth-child(3n),
  2908. .grid.col-4.grid-square>.my-view:nth-child(4n),
  2909. .grid.col-5.grid-square>.my-view:nth-child(5n) {
  2910. margin-right: 0;
  2911. }
  2912. /* #endif */
  2913. .grid.col-1>.my-view {
  2914. width: 100%;
  2915. }
  2916. .grid.col-2>.my-view {
  2917. width: 50%;
  2918. }
  2919. .grid.col-3>.my-view {
  2920. width: 33.33%;
  2921. }
  2922. .grid.col-4>.my-view {
  2923. width: 25%;
  2924. }
  2925. .grid.col-5>.my-view {
  2926. width: 20%;
  2927. }
  2928. /* -- 内外边距 -- */
  2929. .margin-0 {
  2930. margin: 0;
  2931. }
  2932. .margin-xs {
  2933. margin: 10rpx;
  2934. }
  2935. .margin-sm {
  2936. margin: 20rpx;
  2937. }
  2938. .margin {
  2939. margin: 30rpx;
  2940. }
  2941. .margin-lg {
  2942. margin: 40rpx;
  2943. }
  2944. .margin-xl {
  2945. margin: 50rpx;
  2946. }
  2947. .margin-top-xs {
  2948. margin-top: 10rpx;
  2949. }
  2950. .margin-top-sm {
  2951. margin-top: 20rpx;
  2952. }
  2953. .margin-top {
  2954. margin-top: 30rpx;
  2955. }
  2956. .margin-top-lg {
  2957. margin-top: 40rpx;
  2958. }
  2959. .margin-top-xl {
  2960. margin-top: 50rpx;
  2961. }
  2962. .margin-right-xs {
  2963. margin-right: 10rpx;
  2964. }
  2965. .margin-right-sm {
  2966. margin-right: 20rpx;
  2967. }
  2968. .margin-right {
  2969. margin-right: 30rpx;
  2970. }
  2971. .margin-right-lg {
  2972. margin-right: 40rpx;
  2973. }
  2974. .margin-right-xl {
  2975. margin-right: 50rpx;
  2976. }
  2977. .margin-bottom-xs {
  2978. margin-bottom: 10rpx;
  2979. }
  2980. .margin-bottom-sm {
  2981. margin-bottom: 20rpx;
  2982. }
  2983. .margin-bottom {
  2984. margin-bottom: 30rpx;
  2985. }
  2986. .margin-bottom-lg {
  2987. margin-bottom: 40rpx;
  2988. }
  2989. .margin-bottom-xl {
  2990. margin-bottom: 50rpx;
  2991. }
  2992. .margin-left-xs {
  2993. margin-left: 10rpx;
  2994. }
  2995. .margin-left-sm {
  2996. margin-left: 20rpx;
  2997. }
  2998. .margin-left {
  2999. margin-left: 30rpx;
  3000. }
  3001. .margin-left-lg {
  3002. margin-left: 40rpx;
  3003. }
  3004. .margin-left-xl {
  3005. margin-left: 50rpx;
  3006. }
  3007. .margin-lr-xs {
  3008. margin-left: 10rpx;
  3009. margin-right: 10rpx;
  3010. }
  3011. .margin-lr-sm {
  3012. margin-left: 20rpx;
  3013. margin-right: 20rpx;
  3014. }
  3015. .margin-lr {
  3016. margin-left: 30rpx;
  3017. margin-right: 30rpx;
  3018. }
  3019. .margin-lr-lg {
  3020. margin-left: 40rpx;
  3021. margin-right: 40rpx;
  3022. }
  3023. .margin-lr-xl {
  3024. margin-left: 50rpx;
  3025. margin-right: 50rpx;
  3026. }
  3027. .margin-tb-xs {
  3028. margin-top: 10rpx;
  3029. margin-bottom: 10rpx;
  3030. }
  3031. .margin-tb-sm {
  3032. margin-top: 20rpx;
  3033. margin-bottom: 20rpx;
  3034. }
  3035. .margin-tb {
  3036. margin-top: 30rpx;
  3037. margin-bottom: 30rpx;
  3038. }
  3039. .margin-tb-lg {
  3040. margin-top: 40rpx;
  3041. margin-bottom: 40rpx;
  3042. }
  3043. .margin-tb-xl {
  3044. margin-top: 50rpx;
  3045. margin-bottom: 50rpx;
  3046. }
  3047. .padding-0 {
  3048. padding: 0;
  3049. }
  3050. .padding-xs {
  3051. padding: 10rpx;
  3052. }
  3053. .padding-sm {
  3054. padding: 20rpx;
  3055. }
  3056. .padding {
  3057. padding: 30rpx;
  3058. }
  3059. .padding-lg {
  3060. padding: 40rpx;
  3061. }
  3062. .padding-xl {
  3063. padding: 50rpx;
  3064. }
  3065. .padding-top-xs {
  3066. padding-top: 10rpx;
  3067. }
  3068. .padding-top-sm {
  3069. padding-top: 20rpx;
  3070. }
  3071. .padding-top {
  3072. padding-top: 30rpx;
  3073. }
  3074. .padding-top-lg {
  3075. padding-top: 40rpx;
  3076. }
  3077. .padding-top-xl {
  3078. padding-top: 50rpx;
  3079. }
  3080. .padding-right-xs {
  3081. padding-right: 10rpx;
  3082. }
  3083. .padding-right-sm {
  3084. padding-right: 20rpx;
  3085. }
  3086. .padding-right {
  3087. padding-right: 30rpx;
  3088. }
  3089. .padding-right-lg {
  3090. padding-right: 40rpx;
  3091. }
  3092. .padding-right-xl {
  3093. padding-right: 50rpx;
  3094. }
  3095. .padding-bottom-xs {
  3096. padding-bottom: 10rpx;
  3097. }
  3098. .padding-bottom-sm {
  3099. padding-bottom: 20rpx;
  3100. }
  3101. .padding-bottom {
  3102. padding-bottom: 30rpx;
  3103. }
  3104. .padding-bottom-lg {
  3105. padding-bottom: 40rpx;
  3106. }
  3107. .padding-bottom-xl {
  3108. padding-bottom: 50rpx;
  3109. }
  3110. .padding-left-xs {
  3111. padding-left: 10rpx;
  3112. }
  3113. .padding-left-sm {
  3114. padding-left: 20rpx;
  3115. }
  3116. .padding-left {
  3117. padding-left: 30rpx;
  3118. }
  3119. .padding-left-lg {
  3120. padding-left: 40rpx;
  3121. }
  3122. .padding-left-xl {
  3123. padding-left: 50rpx;
  3124. }
  3125. .padding-lr-xs {
  3126. padding-left: 10rpx;
  3127. padding-right: 10rpx;
  3128. }
  3129. .padding-lr-sm {
  3130. padding-left: 20rpx;
  3131. padding-right: 20rpx;
  3132. }
  3133. .padding-lr {
  3134. padding-left: 30rpx;
  3135. padding-right: 30rpx;
  3136. }
  3137. .padding-lr-lg {
  3138. padding-left: 40rpx;
  3139. padding-right: 40rpx;
  3140. }
  3141. .padding-lr-xl {
  3142. padding-left: 50rpx;
  3143. padding-right: 50rpx;
  3144. }
  3145. .padding-tb-xs {
  3146. padding-top: 10rpx;
  3147. padding-bottom: 10rpx;
  3148. }
  3149. .padding-tb-sm {
  3150. padding-top: 20rpx;
  3151. padding-bottom: 20rpx;
  3152. }
  3153. .padding-tb {
  3154. padding-top: 30rpx;
  3155. padding-bottom: 30rpx;
  3156. }
  3157. .padding-tb-lg {
  3158. padding-top: 40rpx;
  3159. padding-bottom: 40rpx;
  3160. }
  3161. .padding-tb-xl {
  3162. padding-top: 50rpx;
  3163. padding-bottom: 50rpx;
  3164. }
  3165. /* -- 浮动 -- */
  3166. /* #ifndef APP-ANDROID */
  3167. .cf::after,
  3168. .cf::before {
  3169. content: " ";
  3170. display: table;
  3171. }
  3172. .cf::after {
  3173. clear: both;
  3174. }
  3175. .fl {
  3176. float: left;
  3177. }
  3178. .fr {
  3179. float: right;
  3180. }
  3181. /* #endif */
  3182. /* ==================
  3183. 背景
  3184. ==================== */
  3185. /* #ifndef APP-ANDROID */
  3186. .line-red::after,
  3187. .lines-red::after {
  3188. border-color: #e54d42;
  3189. }
  3190. .line-orange::after,
  3191. .lines-orange::after {
  3192. border-color: #f37b1d;
  3193. }
  3194. .line-yellow::after,
  3195. .lines-yellow::after {
  3196. border-color: #fbbd08;
  3197. }
  3198. .line-olive::after,
  3199. .lines-olive::after {
  3200. border-color: #8dc63f;
  3201. }
  3202. .line-green::after,
  3203. .lines-green::after {
  3204. border-color: #39b54a;
  3205. }
  3206. .line-cyan::after,
  3207. .lines-cyan::after {
  3208. border-color: #1cbbb4;
  3209. }
  3210. .line-blue::after,
  3211. .lines-blue::after {
  3212. border-color: #0081ff;
  3213. }
  3214. .line-purple::after,
  3215. .lines-purple::after {
  3216. border-color: #6739b6;
  3217. }
  3218. .line-mauve::after,
  3219. .lines-mauve::after {
  3220. border-color: #9c26b0;
  3221. }
  3222. .line-pink::after,
  3223. .lines-pink::after {
  3224. border-color: #e03997;
  3225. }
  3226. .line-brown::after,
  3227. .lines-brown::after {
  3228. border-color: #a5673f;
  3229. }
  3230. .line-grey::after,
  3231. .lines-grey::after {
  3232. border-color: #8799a3;
  3233. }
  3234. .line-gray::after,
  3235. .lines-gray::after {
  3236. border-color: #aaaaaa;
  3237. }
  3238. .line-black::after,
  3239. .lines-black::after {
  3240. border-color: #333333;
  3241. }
  3242. .line-white::after,
  3243. .lines-white::after {
  3244. border-color: #ffffff;
  3245. }
  3246. /* #endif */
  3247. .bg-red {
  3248. background-color: #e54d42;
  3249. color: #ffffff;
  3250. }
  3251. .bg-orange {
  3252. background-color: #f37b1d;
  3253. color: #ffffff;
  3254. }
  3255. .bg-yellow {
  3256. background-color: #fbbd08;
  3257. color: #333333;
  3258. }
  3259. .bg-olive {
  3260. background-color: #8dc63f;
  3261. color: #ffffff;
  3262. }
  3263. .bg-green {
  3264. background-color: #39b54a;
  3265. color: #ffffff;
  3266. }
  3267. .bg-cyan {
  3268. background-color: #1cbbb4;
  3269. color: #ffffff;
  3270. }
  3271. .bg-blue {
  3272. background-color: #0081ff;
  3273. color: #ffffff;
  3274. }
  3275. .bg-purple {
  3276. background-color: #6739b6;
  3277. color: #ffffff;
  3278. }
  3279. .bg-mauve {
  3280. background-color: #9c26b0;
  3281. color: #ffffff;
  3282. }
  3283. .bg-pink {
  3284. background-color: #e03997;
  3285. color: #ffffff;
  3286. }
  3287. .bg-brown {
  3288. background-color: #a5673f;
  3289. color: #ffffff;
  3290. }
  3291. .bg-grey {
  3292. background-color: #8799a3;
  3293. color: #ffffff;
  3294. }
  3295. .bg-gray {
  3296. background-color: #f0f0f0;
  3297. color: #333333;
  3298. }
  3299. .bg-black {
  3300. background-color: #333333;
  3301. color: #ffffff;
  3302. }
  3303. .bg-white {
  3304. background-color: #ffffff;
  3305. color: #666666;
  3306. }
  3307. .bg-shadeTop {
  3308. background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.01));
  3309. color: #ffffff;
  3310. }
  3311. .bg-shadeBottom {
  3312. background-image: linear-gradient(rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 1));
  3313. color: #ffffff;
  3314. }
  3315. .bg-red.light {
  3316. color: #e54d42;
  3317. background-color: #fadbd9;
  3318. }
  3319. .bg-orange.light {
  3320. color: #f37b1d;
  3321. background-color: #fde6d2;
  3322. }
  3323. .bg-yellow.light {
  3324. color: #fbbd08;
  3325. /* background-color: #fef2ced2; */
  3326. background-color: rgba(254, 242, 206, 0.82);
  3327. }
  3328. .bg-olive.light {
  3329. color: #8dc63f;
  3330. background-color: #e8f4d9;
  3331. }
  3332. .bg-green.light {
  3333. color: #39b54a;
  3334. /* background-color: #d7f0dbff; */
  3335. background-color: rgba(215, 240, 219, 1);
  3336. }
  3337. .bg-cyan.light {
  3338. color: #1cbbb4;
  3339. background-color: #d2f1f0;
  3340. }
  3341. .bg-blue.light {
  3342. color: #0081ff;
  3343. background-color: #cce6ff;
  3344. }
  3345. .bg-purple.light {
  3346. color: #6739b6;
  3347. background-color: #e1d7f0;
  3348. }
  3349. .bg-mauve.light {
  3350. color: #9c26b0;
  3351. background-color: #ebd4ef;
  3352. }
  3353. .bg-pink.light {
  3354. color: #e03997;
  3355. background-color: #f9d7ea;
  3356. }
  3357. .bg-brown.light {
  3358. color: #a5673f;
  3359. background-color: #ede1d9;
  3360. }
  3361. .bg-grey.light {
  3362. color: #8799a3;
  3363. background-color: #e7ebed;
  3364. }
  3365. /* #ifndef APP-ANDROID */
  3366. .bg-gradual-red {
  3367. background-image: linear-gradient(45deg, #f43f3b, #ec008c);
  3368. color: #ffffff;
  3369. }
  3370. .bg-gradual-orange {
  3371. background-image: linear-gradient(45deg, #ff9700, #ed1c24);
  3372. color: #ffffff;
  3373. }
  3374. .bg-gradual-green {
  3375. background-image: linear-gradient(45deg, #39b54a, #8dc63f);
  3376. color: #ffffff;
  3377. }
  3378. .bg-gradual-purple {
  3379. background-image: linear-gradient(45deg, #9000ff, #5e00ff);
  3380. color: #ffffff;
  3381. }
  3382. .bg-gradual-pink {
  3383. background-image: linear-gradient(45deg, #ec008c, #6739b6);
  3384. color: #ffffff;
  3385. }
  3386. .bg-gradual-blue {
  3387. background-image: linear-gradient(45deg, #0081ff, #1cbbb4);
  3388. color: #ffffff;
  3389. }
  3390. .shadow[class*="-red"] {
  3391. box-shadow: 6rpx 6rpx 8rpx rgba(204, 69, 59, 0.2);
  3392. }
  3393. .shadow[class*="-orange"] {
  3394. box-shadow: 6rpx 6rpx 8rpx rgba(217, 109, 26, 0.2);
  3395. }
  3396. .shadow[class*="-yellow"] {
  3397. box-shadow: 6rpx 6rpx 8rpx rgba(224, 170, 7, 0.2);
  3398. }
  3399. .shadow[class*="-olive"] {
  3400. box-shadow: 6rpx 6rpx 8rpx rgba(124, 173, 55, 0.2);
  3401. }
  3402. .shadow[class*="-green"] {
  3403. box-shadow: 6rpx 6rpx 8rpx rgba(48, 156, 63, 0.2);
  3404. }
  3405. .shadow[class*="-cyan"] {
  3406. box-shadow: 6rpx 6rpx 8rpx rgba(28, 187, 180, 0.2);
  3407. }
  3408. .shadow[class*="-blue"] {
  3409. box-shadow: 6rpx 6rpx 8rpx rgba(0, 102, 204, 0.2);
  3410. }
  3411. .shadow[class*="-purple"] {
  3412. box-shadow: 6rpx 6rpx 8rpx rgba(88, 48, 156, 0.2);
  3413. }
  3414. .shadow[class*="-mauve"] {
  3415. box-shadow: 6rpx 6rpx 8rpx rgba(133, 33, 150, 0.2);
  3416. }
  3417. .shadow[class*="-pink"] {
  3418. box-shadow: 6rpx 6rpx 8rpx rgba(199, 50, 134, 0.2);
  3419. }
  3420. .shadow[class*="-brown"] {
  3421. box-shadow: 6rpx 6rpx 8rpx rgba(140, 88, 53, 0.2);
  3422. }
  3423. .shadow[class*="-grey"] {
  3424. box-shadow: 6rpx 6rpx 8rpx rgba(114, 130, 138, 0.2);
  3425. }
  3426. .shadow[class*="-gray"] {
  3427. box-shadow: 6rpx 6rpx 8rpx rgba(114, 130, 138, 0.2);
  3428. }
  3429. .shadow[class*="-black"] {
  3430. box-shadow: 6rpx 6rpx 8rpx rgba(26, 26, 26, 0.2);
  3431. }
  3432. .shadow[class*="-white"] {
  3433. box-shadow: 6rpx 6rpx 8rpx rgba(26, 26, 26, 0.2);
  3434. }
  3435. .text-shadow[class*="-red"] {
  3436. text-shadow: 6rpx 6rpx 8rpx rgba(204, 69, 59, 0.2);
  3437. }
  3438. .text-shadow[class*="-orange"] {
  3439. text-shadow: 6rpx 6rpx 8rpx rgba(217, 109, 26, 0.2);
  3440. }
  3441. .text-shadow[class*="-yellow"] {
  3442. text-shadow: 6rpx 6rpx 8rpx rgba(224, 170, 7, 0.2);
  3443. }
  3444. .text-shadow[class*="-olive"] {
  3445. text-shadow: 6rpx 6rpx 8rpx rgba(124, 173, 55, 0.2);
  3446. }
  3447. .text-shadow[class*="-green"] {
  3448. text-shadow: 6rpx 6rpx 8rpx rgba(48, 156, 63, 0.2);
  3449. }
  3450. .text-shadow[class*="-cyan"] {
  3451. text-shadow: 6rpx 6rpx 8rpx rgba(28, 187, 180, 0.2);
  3452. }
  3453. .text-shadow[class*="-blue"] {
  3454. text-shadow: 6rpx 6rpx 8rpx rgba(0, 102, 204, 0.2);
  3455. }
  3456. .text-shadow[class*="-purple"] {
  3457. text-shadow: 6rpx 6rpx 8rpx rgba(88, 48, 156, 0.2);
  3458. }
  3459. .text-shadow[class*="-mauve"] {
  3460. text-shadow: 6rpx 6rpx 8rpx rgba(133, 33, 150, 0.2);
  3461. }
  3462. .text-shadow[class*="-pink"] {
  3463. text-shadow: 6rpx 6rpx 8rpx rgba(199, 50, 134, 0.2);
  3464. }
  3465. .text-shadow[class*="-brown"] {
  3466. text-shadow: 6rpx 6rpx 8rpx rgba(140, 88, 53, 0.2);
  3467. }
  3468. .text-shadow[class*="-grey"] {
  3469. text-shadow: 6rpx 6rpx 8rpx rgba(114, 130, 138, 0.2);
  3470. }
  3471. .text-shadow[class*="-gray"] {
  3472. text-shadow: 6rpx 6rpx 8rpx rgba(114, 130, 138, 0.2);
  3473. }
  3474. .text-shadow[class*="-black"] {
  3475. text-shadow: 6rpx 6rpx 8rpx rgba(26, 26, 26, 0.2);
  3476. }
  3477. /* #endif */
  3478. /* #ifndef APP-ANDROID */
  3479. .bg-img {
  3480. background-position: center;
  3481. background-size: cover;
  3482. background-repeat: no-repeat;
  3483. }
  3484. /* #endif */
  3485. .bg-mask {
  3486. background-color: #333333;
  3487. position: relative;
  3488. }
  3489. /* #ifndef APP-ANDROID */
  3490. .bg-mask::after {
  3491. display: block;
  3492. content: "";
  3493. border-radius: inherit;
  3494. width: 100%;
  3495. height: 100%;
  3496. background-color: rgba(0, 0, 0, 0.4);
  3497. position: absolute;
  3498. left: 0;
  3499. right: 0;
  3500. bottom: 0;
  3501. top: 0;
  3502. }
  3503. /* #endif */
  3504. .bg-video {
  3505. position: relative;
  3506. }
  3507. /* #ifndef APP-ANDROID */
  3508. .bg-mask view,
  3509. .bg-mask cover-view {
  3510. z-index: 5;
  3511. position: relative;
  3512. }
  3513. .bg-video video {
  3514. display: block;
  3515. height: 100%;
  3516. width: 100%;
  3517. -o-object-fit: cover;
  3518. object-fit: cover;
  3519. position: absolute;
  3520. top: 0;
  3521. z-index: 0;
  3522. pointer-events: none;
  3523. }
  3524. /* #endif */
  3525. /* ==================
  3526. 文本
  3527. ==================== */
  3528. .text-xs {
  3529. font-size: 20rpx;
  3530. }
  3531. .text-sm {
  3532. font-size: 24rpx;
  3533. }
  3534. .text-df {
  3535. font-size: 28rpx;
  3536. }
  3537. .text-lg {
  3538. font-size: 32rpx;
  3539. }
  3540. .text-xl {
  3541. font-size: 36rpx;
  3542. }
  3543. .text-xxl {
  3544. font-size: 44rpx;
  3545. }
  3546. .text-sl {
  3547. font-size: 80rpx;
  3548. }
  3549. .text-xsl {
  3550. font-size: 120rpx;
  3551. }
  3552. /* #ifndef APP-ANDROID */
  3553. .text-Abc {
  3554. text-transform: Capitalize;
  3555. }
  3556. .text-ABC {
  3557. text-transform: Uppercase;
  3558. }
  3559. .text-abc {
  3560. text-transform: Lowercase;
  3561. }
  3562. .text-price::before {
  3563. /* #ifndef APP-ANDROID */
  3564. font-size: 80%;
  3565. content: "¥";
  3566. /* #endif */
  3567. margin-right: 4rpx;
  3568. }
  3569. /* #endif */
  3570. .text-cut {
  3571. text-overflow: ellipsis;
  3572. white-space: nowrap;
  3573. overflow: hidden;
  3574. }
  3575. .text-bold {
  3576. font-weight: bold;
  3577. }
  3578. .text-center {
  3579. text-align: center;
  3580. }
  3581. .text-content {
  3582. line-height: 1.6;
  3583. }
  3584. .text-left {
  3585. text-align: left;
  3586. }
  3587. .text-right {
  3588. text-align: right;
  3589. }
  3590. .text-red,
  3591. .line-red,
  3592. .lines-red {
  3593. color: #e54d42;
  3594. }
  3595. .text-orange,
  3596. .line-orange,
  3597. .lines-orange {
  3598. color: #f37b1d;
  3599. }
  3600. .text-yellow,
  3601. .line-yellow,
  3602. .lines-yellow {
  3603. color: #fbbd08;
  3604. }
  3605. .text-olive,
  3606. .line-olive,
  3607. .lines-olive {
  3608. color: #8dc63f;
  3609. }
  3610. .text-green,
  3611. .line-green,
  3612. .lines-green {
  3613. color: #39b54a;
  3614. }
  3615. .text-cyan,
  3616. .line-cyan,
  3617. .lines-cyan {
  3618. color: #1cbbb4;
  3619. }
  3620. .text-blue,
  3621. .line-blue,
  3622. .lines-blue {
  3623. color: #0081ff;
  3624. }
  3625. .text-purple,
  3626. .line-purple,
  3627. .lines-purple {
  3628. color: #6739b6;
  3629. }
  3630. .text-mauve,
  3631. .line-mauve,
  3632. .lines-mauve {
  3633. color: #9c26b0;
  3634. }
  3635. .text-pink,
  3636. .line-pink,
  3637. .lines-pink {
  3638. color: #e03997;
  3639. }
  3640. .text-brown,
  3641. .line-brown,
  3642. .lines-brown {
  3643. color: #a5673f;
  3644. }
  3645. .text-grey,
  3646. .line-grey,
  3647. .lines-grey {
  3648. color: #8799a3;
  3649. }
  3650. .text-gray,
  3651. .line-gray,
  3652. .lines-gray {
  3653. color: #aaaaaa;
  3654. }
  3655. .text-black,
  3656. .line-black,
  3657. .lines-black {
  3658. color: #333333;
  3659. }
  3660. .text-white,
  3661. .line-white,
  3662. .lines-white {
  3663. color: #ffffff;
  3664. }
  3665. /* ==================
  3666. icon 初始化
  3667. ==================== */
  3668. /* #ifndef APP-ANDROID */
  3669. @keyframes cuIcon-spin {
  3670. 0% {
  3671. -webkit-transform: rotate(0);
  3672. transform: rotate(0);
  3673. }
  3674. 100% {
  3675. -webkit-transform: rotate(359deg);
  3676. transform: rotate(359deg);
  3677. }
  3678. }
  3679. .cuIconfont-spin {
  3680. -webkit-animation: cuIcon-spin 2s infinite linear;
  3681. animation: cuIcon-spin 2s infinite linear;
  3682. display: inline-block;
  3683. }
  3684. .cuIconfont-pulse {
  3685. -webkit-animation: cuIcon-spin 1s infinite steps(8);
  3686. animation: cuIcon-spin 1s infinite steps(8);
  3687. display: inline-block;
  3688. }
  3689. [class*="cuIcon-"] {
  3690. font-family: "cuIcon";
  3691. font-size: inherit;
  3692. font-style: normal;
  3693. }
  3694. /* #endif */
  3695. /* #ifndef APP-ANDROID */
  3696. .cuIcon-appreciate:before {
  3697. content: "\e644";
  3698. }
  3699. .cuIcon-check:before {
  3700. content: "\e645";
  3701. }
  3702. .cuIcon-close:before {
  3703. content: "\e646";
  3704. }
  3705. .cuIcon-edit:before {
  3706. content: "\e649";
  3707. }
  3708. .cuIcon-emoji:before {
  3709. content: "\e64a";
  3710. }
  3711. .cuIcon-favorfill:before {
  3712. content: "\e64b";
  3713. }
  3714. .cuIcon-favor:before {
  3715. content: "\e64c";
  3716. }
  3717. .cuIcon-loading:before {
  3718. content: "\e64f";
  3719. }
  3720. .cuIcon-locationfill:before {
  3721. content: "\e650";
  3722. }
  3723. .cuIcon-location:before {
  3724. content: "\e651";
  3725. }
  3726. .cuIcon-phone:before {
  3727. content: "\e652";
  3728. }
  3729. .cuIcon-roundcheckfill:before {
  3730. content: "\e656";
  3731. }
  3732. .cuIcon-roundcheck:before {
  3733. content: "\e657";
  3734. }
  3735. .cuIcon-roundclosefill:before {
  3736. content: "\e658";
  3737. }
  3738. .cuIcon-roundclose:before {
  3739. content: "\e659";
  3740. }
  3741. .cuIcon-roundrightfill:before {
  3742. content: "\e65a";
  3743. }
  3744. .cuIcon-roundright:before {
  3745. content: "\e65b";
  3746. }
  3747. .cuIcon-search:before {
  3748. content: "\e65c";
  3749. }
  3750. .cuIcon-taxi:before {
  3751. content: "\e65d";
  3752. }
  3753. .cuIcon-timefill:before {
  3754. content: "\e65e";
  3755. }
  3756. .cuIcon-time:before {
  3757. content: "\e65f";
  3758. }
  3759. .cuIcon-unfold:before {
  3760. content: "\e661";
  3761. }
  3762. .cuIcon-warnfill:before {
  3763. content: "\e662";
  3764. }
  3765. .cuIcon-warn:before {
  3766. content: "\e663";
  3767. }
  3768. .cuIcon-camerafill:before {
  3769. content: "\e664";
  3770. }
  3771. .cuIcon-camera:before {
  3772. content: "\e665";
  3773. }
  3774. .cuIcon-commentfill:before {
  3775. content: "\e666";
  3776. }
  3777. .cuIcon-comment:before {
  3778. content: "\e667";
  3779. }
  3780. .cuIcon-likefill:before {
  3781. content: "\e668";
  3782. }
  3783. .cuIcon-like:before {
  3784. content: "\e669";
  3785. }
  3786. .cuIcon-notificationfill:before {
  3787. content: "\e66a";
  3788. }
  3789. .cuIcon-notification:before {
  3790. content: "\e66b";
  3791. }
  3792. .cuIcon-order:before {
  3793. content: "\e66c";
  3794. }
  3795. .cuIcon-samefill:before {
  3796. content: "\e66d";
  3797. }
  3798. .cuIcon-same:before {
  3799. content: "\e66e";
  3800. }
  3801. .cuIcon-deliver:before {
  3802. content: "\e671";
  3803. }
  3804. .cuIcon-evaluate:before {
  3805. content: "\e672";
  3806. }
  3807. .cuIcon-pay:before {
  3808. content: "\e673";
  3809. }
  3810. .cuIcon-send:before {
  3811. content: "\e675";
  3812. }
  3813. .cuIcon-shop:before {
  3814. content: "\e676";
  3815. }
  3816. .cuIcon-ticket:before {
  3817. content: "\e677";
  3818. }
  3819. .cuIcon-back:before {
  3820. content: "\e679";
  3821. }
  3822. .cuIcon-cascades:before {
  3823. content: "\e67c";
  3824. }
  3825. .cuIcon-discover:before {
  3826. content: "\e67e";
  3827. }
  3828. .cuIcon-list:before {
  3829. content: "\e682";
  3830. }
  3831. .cuIcon-more:before {
  3832. content: "\e684";
  3833. }
  3834. .cuIcon-scan:before {
  3835. content: "\e689";
  3836. }
  3837. .cuIcon-settings:before {
  3838. content: "\e68a";
  3839. }
  3840. .cuIcon-questionfill:before {
  3841. content: "\e690";
  3842. }
  3843. .cuIcon-question:before {
  3844. content: "\e691";
  3845. }
  3846. .cuIcon-shopfill:before {
  3847. content: "\e697";
  3848. }
  3849. .cuIcon-form:before {
  3850. content: "\e699";
  3851. }
  3852. .cuIcon-pic:before {
  3853. content: "\e69b";
  3854. }
  3855. .cuIcon-filter:before {
  3856. content: "\e69c";
  3857. }
  3858. .cuIcon-footprint:before {
  3859. content: "\e69d";
  3860. }
  3861. .cuIcon-top:before {
  3862. content: "\e69e";
  3863. }
  3864. .cuIcon-pulldown:before {
  3865. content: "\e69f";
  3866. }
  3867. .cuIcon-pullup:before {
  3868. content: "\e6a0";
  3869. }
  3870. .cuIcon-right:before {
  3871. content: "\e6a3";
  3872. }
  3873. .cuIcon-refresh:before {
  3874. content: "\e6a4";
  3875. }
  3876. .cuIcon-moreandroid:before {
  3877. content: "\e6a5";
  3878. }
  3879. .cuIcon-deletefill:before {
  3880. content: "\e6a6";
  3881. }
  3882. .cuIcon-refund:before {
  3883. content: "\e6ac";
  3884. }
  3885. .cuIcon-cart:before {
  3886. content: "\e6af";
  3887. }
  3888. .cuIcon-qrcode:before {
  3889. content: "\e6b0";
  3890. }
  3891. .cuIcon-remind:before {
  3892. content: "\e6b2";
  3893. }
  3894. .cuIcon-delete:before {
  3895. content: "\e6b4";
  3896. }
  3897. .cuIcon-profile:before {
  3898. content: "\e6b7";
  3899. }
  3900. .cuIcon-home:before {
  3901. content: "\e6b8";
  3902. }
  3903. .cuIcon-cartfill:before {
  3904. content: "\e6b9";
  3905. }
  3906. .cuIcon-discoverfill:before {
  3907. content: "\e6ba";
  3908. }
  3909. .cuIcon-homefill:before {
  3910. content: "\e6bb";
  3911. }
  3912. .cuIcon-message:before {
  3913. content: "\e6bc";
  3914. }
  3915. .cuIcon-addressbook:before {
  3916. content: "\e6bd";
  3917. }
  3918. .cuIcon-link:before {
  3919. content: "\e6bf";
  3920. }
  3921. .cuIcon-lock:before {
  3922. content: "\e6c0";
  3923. }
  3924. .cuIcon-unlock:before {
  3925. content: "\e6c2";
  3926. }
  3927. .cuIcon-vip:before {
  3928. content: "\e6c3";
  3929. }
  3930. .cuIcon-weibo:before {
  3931. content: "\e6c4";
  3932. }
  3933. .cuIcon-activity:before {
  3934. content: "\e6c5";
  3935. }
  3936. .cuIcon-friendaddfill:before {
  3937. content: "\e6c9";
  3938. }
  3939. .cuIcon-friendadd:before {
  3940. content: "\e6ca";
  3941. }
  3942. .cuIcon-friendfamous:before {
  3943. content: "\e6cb";
  3944. }
  3945. .cuIcon-friend:before {
  3946. content: "\e6cc";
  3947. }
  3948. .cuIcon-goods:before {
  3949. content: "\e6cd";
  3950. }
  3951. .cuIcon-selection:before {
  3952. content: "\e6ce";
  3953. }
  3954. .cuIcon-explore:before {
  3955. content: "\e6d2";
  3956. }
  3957. .cuIcon-present:before {
  3958. content: "\e6d3";
  3959. }
  3960. .cuIcon-squarecheckfill:before {
  3961. content: "\e6d4";
  3962. }
  3963. .cuIcon-square:before {
  3964. content: "\e6d5";
  3965. }
  3966. .cuIcon-squarecheck:before {
  3967. content: "\e6d6";
  3968. }
  3969. .cuIcon-round:before {
  3970. content: "\e6d7";
  3971. }
  3972. .cuIcon-roundaddfill:before {
  3973. content: "\e6d8";
  3974. }
  3975. .cuIcon-roundadd:before {
  3976. content: "\e6d9";
  3977. }
  3978. .cuIcon-add:before {
  3979. content: "\e6da";
  3980. }
  3981. .cuIcon-notificationforbidfill:before {
  3982. content: "\e6db";
  3983. }
  3984. .cuIcon-explorefill:before {
  3985. content: "\e6dd";
  3986. }
  3987. .cuIcon-fold:before {
  3988. content: "\e6de";
  3989. }
  3990. .cuIcon-game:before {
  3991. content: "\e6df";
  3992. }
  3993. .cuIcon-redpacket:before {
  3994. content: "\e6e0";
  3995. }
  3996. .cuIcon-selectionfill:before {
  3997. content: "\e6e1";
  3998. }
  3999. .cuIcon-similar:before {
  4000. content: "\e6e2";
  4001. }
  4002. .cuIcon-appreciatefill:before {
  4003. content: "\e6e3";
  4004. }
  4005. .cuIcon-infofill:before {
  4006. content: "\e6e4";
  4007. }
  4008. .cuIcon-info:before {
  4009. content: "\e6e5";
  4010. }
  4011. .cuIcon-forwardfill:before {
  4012. content: "\e6ea";
  4013. }
  4014. .cuIcon-forward:before {
  4015. content: "\e6eb";
  4016. }
  4017. .cuIcon-rechargefill:before {
  4018. content: "\e6ec";
  4019. }
  4020. .cuIcon-recharge:before {
  4021. content: "\e6ed";
  4022. }
  4023. .cuIcon-vipcard:before {
  4024. content: "\e6ee";
  4025. }
  4026. .cuIcon-voice:before {
  4027. content: "\e6ef";
  4028. }
  4029. .cuIcon-voicefill:before {
  4030. content: "\e6f0";
  4031. }
  4032. .cuIcon-friendfavor:before {
  4033. content: "\e6f1";
  4034. }
  4035. .cuIcon-wifi:before {
  4036. content: "\e6f2";
  4037. }
  4038. .cuIcon-share:before {
  4039. content: "\e6f3";
  4040. }
  4041. .cuIcon-wefill:before {
  4042. content: "\e6f4";
  4043. }
  4044. .cuIcon-we:before {
  4045. content: "\e6f5";
  4046. }
  4047. .cuIcon-lightauto:before {
  4048. content: "\e6f6";
  4049. }
  4050. .cuIcon-lightforbid:before {
  4051. content: "\e6f7";
  4052. }
  4053. .cuIcon-lightfill:before {
  4054. content: "\e6f8";
  4055. }
  4056. .cuIcon-camerarotate:before {
  4057. content: "\e6f9";
  4058. }
  4059. .cuIcon-light:before {
  4060. content: "\e6fa";
  4061. }
  4062. .cuIcon-barcode:before {
  4063. content: "\e6fb";
  4064. }
  4065. .cuIcon-flashlightclose:before {
  4066. content: "\e6fc";
  4067. }
  4068. .cuIcon-flashlightopen:before {
  4069. content: "\e6fd";
  4070. }
  4071. .cuIcon-searchlist:before {
  4072. content: "\e6fe";
  4073. }
  4074. .cuIcon-service:before {
  4075. content: "\e6ff";
  4076. }
  4077. .cuIcon-sort:before {
  4078. content: "\e700";
  4079. }
  4080. .cuIcon-down:before {
  4081. content: "\e703";
  4082. }
  4083. .cuIcon-mobile:before {
  4084. content: "\e704";
  4085. }
  4086. .cuIcon-mobilefill:before {
  4087. content: "\e705";
  4088. }
  4089. .cuIcon-copy:before {
  4090. content: "\e706";
  4091. }
  4092. .cuIcon-countdownfill:before {
  4093. content: "\e707";
  4094. }
  4095. .cuIcon-countdown:before {
  4096. content: "\e708";
  4097. }
  4098. .cuIcon-noticefill:before {
  4099. content: "\e709";
  4100. }
  4101. .cuIcon-notice:before {
  4102. content: "\e70a";
  4103. }
  4104. .cuIcon-upstagefill:before {
  4105. content: "\e70e";
  4106. }
  4107. .cuIcon-upstage:before {
  4108. content: "\e70f";
  4109. }
  4110. .cuIcon-babyfill:before {
  4111. content: "\e710";
  4112. }
  4113. .cuIcon-baby:before {
  4114. content: "\e711";
  4115. }
  4116. .cuIcon-brandfill:before {
  4117. content: "\e712";
  4118. }
  4119. .cuIcon-brand:before {
  4120. content: "\e713";
  4121. }
  4122. .cuIcon-choicenessfill:before {
  4123. content: "\e714";
  4124. }
  4125. .cuIcon-choiceness:before {
  4126. content: "\e715";
  4127. }
  4128. .cuIcon-clothesfill:before {
  4129. content: "\e716";
  4130. }
  4131. .cuIcon-clothes:before {
  4132. content: "\e717";
  4133. }
  4134. .cuIcon-creativefill:before {
  4135. content: "\e718";
  4136. }
  4137. .cuIcon-creative:before {
  4138. content: "\e719";
  4139. }
  4140. .cuIcon-female:before {
  4141. content: "\e71a";
  4142. }
  4143. .cuIcon-keyboard:before {
  4144. content: "\e71b";
  4145. }
  4146. .cuIcon-male:before {
  4147. content: "\e71c";
  4148. }
  4149. .cuIcon-newfill:before {
  4150. content: "\e71d";
  4151. }
  4152. .cuIcon-new:before {
  4153. content: "\e71e";
  4154. }
  4155. .cuIcon-pullleft:before {
  4156. content: "\e71f";
  4157. }
  4158. .cuIcon-pullright:before {
  4159. content: "\e720";
  4160. }
  4161. .cuIcon-rankfill:before {
  4162. content: "\e721";
  4163. }
  4164. .cuIcon-rank:before {
  4165. content: "\e722";
  4166. }
  4167. .cuIcon-bad:before {
  4168. content: "\e723";
  4169. }
  4170. .cuIcon-cameraadd:before {
  4171. content: "\e724";
  4172. }
  4173. .cuIcon-focus:before {
  4174. content: "\e725";
  4175. }
  4176. .cuIcon-friendfill:before {
  4177. content: "\e726";
  4178. }
  4179. .cuIcon-cameraaddfill:before {
  4180. content: "\e727";
  4181. }
  4182. .cuIcon-apps:before {
  4183. content: "\e729";
  4184. }
  4185. .cuIcon-paintfill:before {
  4186. content: "\e72a";
  4187. }
  4188. .cuIcon-paint:before {
  4189. content: "\e72b";
  4190. }
  4191. .cuIcon-picfill:before {
  4192. content: "\e72c";
  4193. }
  4194. .cuIcon-refresharrow:before {
  4195. content: "\e72d";
  4196. }
  4197. .cuIcon-colorlens:before {
  4198. content: "\e6e6";
  4199. }
  4200. .cuIcon-markfill:before {
  4201. content: "\e730";
  4202. }
  4203. .cuIcon-mark:before {
  4204. content: "\e731";
  4205. }
  4206. .cuIcon-presentfill:before {
  4207. content: "\e732";
  4208. }
  4209. .cuIcon-repeal:before {
  4210. content: "\e733";
  4211. }
  4212. .cuIcon-album:before {
  4213. content: "\e734";
  4214. }
  4215. .cuIcon-peoplefill:before {
  4216. content: "\e735";
  4217. }
  4218. .cuIcon-people:before {
  4219. content: "\e736";
  4220. }
  4221. .cuIcon-servicefill:before {
  4222. content: "\e737";
  4223. }
  4224. .cuIcon-repair:before {
  4225. content: "\e738";
  4226. }
  4227. .cuIcon-file:before {
  4228. content: "\e739";
  4229. }
  4230. .cuIcon-repairfill:before {
  4231. content: "\e73a";
  4232. }
  4233. .cuIcon-taoxiaopu:before {
  4234. content: "\e73b";
  4235. }
  4236. .cuIcon-weixin:before {
  4237. content: "\e612";
  4238. }
  4239. .cuIcon-attentionfill:before {
  4240. content: "\e73c";
  4241. }
  4242. .cuIcon-attention:before {
  4243. content: "\e73d";
  4244. }
  4245. .cuIcon-commandfill:before {
  4246. content: "\e73e";
  4247. }
  4248. .cuIcon-command:before {
  4249. content: "\e73f";
  4250. }
  4251. .cuIcon-communityfill:before {
  4252. content: "\e740";
  4253. }
  4254. .cuIcon-community:before {
  4255. content: "\e741";
  4256. }
  4257. .cuIcon-read:before {
  4258. content: "\e742";
  4259. }
  4260. .cuIcon-calendar:before {
  4261. content: "\e74a";
  4262. }
  4263. .cuIcon-cut:before {
  4264. content: "\e74b";
  4265. }
  4266. .cuIcon-magic:before {
  4267. content: "\e74c";
  4268. }
  4269. .cuIcon-backwardfill:before {
  4270. content: "\e74d";
  4271. }
  4272. .cuIcon-playfill:before {
  4273. content: "\e74f";
  4274. }
  4275. .cuIcon-stop:before {
  4276. content: "\e750";
  4277. }
  4278. .cuIcon-tagfill:before {
  4279. content: "\e751";
  4280. }
  4281. .cuIcon-tag:before {
  4282. content: "\e752";
  4283. }
  4284. .cuIcon-group:before {
  4285. content: "\e753";
  4286. }
  4287. .cuIcon-all:before {
  4288. content: "\e755";
  4289. }
  4290. .cuIcon-backdelete:before {
  4291. content: "\e756";
  4292. }
  4293. .cuIcon-hotfill:before {
  4294. content: "\e757";
  4295. }
  4296. .cuIcon-hot:before {
  4297. content: "\e758";
  4298. }
  4299. .cuIcon-post:before {
  4300. content: "\e759";
  4301. }
  4302. .cuIcon-radiobox:before {
  4303. content: "\e75b";
  4304. }
  4305. .cuIcon-rounddown:before {
  4306. content: "\e75c";
  4307. }
  4308. .cuIcon-upload:before {
  4309. content: "\e75d";
  4310. }
  4311. .cuIcon-writefill:before {
  4312. content: "\e760";
  4313. }
  4314. .cuIcon-write:before {
  4315. content: "\e761";
  4316. }
  4317. .cuIcon-radioboxfill:before {
  4318. content: "\e763";
  4319. }
  4320. .cuIcon-punch:before {
  4321. content: "\e764";
  4322. }
  4323. .cuIcon-shake:before {
  4324. content: "\e765";
  4325. }
  4326. .cuIcon-move:before {
  4327. content: "\e768";
  4328. }
  4329. .cuIcon-safe:before {
  4330. content: "\e769";
  4331. }
  4332. .cuIcon-activityfill:before {
  4333. content: "\e775";
  4334. }
  4335. .cuIcon-crownfill:before {
  4336. content: "\e776";
  4337. }
  4338. .cuIcon-crown:before {
  4339. content: "\e777";
  4340. }
  4341. .cuIcon-goodsfill:before {
  4342. content: "\e778";
  4343. }
  4344. .cuIcon-messagefill:before {
  4345. content: "\e779";
  4346. }
  4347. .cuIcon-profilefill:before {
  4348. content: "\e77a";
  4349. }
  4350. .cuIcon-sound:before {
  4351. content: "\e77b";
  4352. }
  4353. .cuIcon-sponsorfill:before {
  4354. content: "\e77c";
  4355. }
  4356. .cuIcon-sponsor:before {
  4357. content: "\e77d";
  4358. }
  4359. .cuIcon-upblock:before {
  4360. content: "\e77e";
  4361. }
  4362. .cuIcon-weblock:before {
  4363. content: "\e77f";
  4364. }
  4365. .cuIcon-weunblock:before {
  4366. content: "\e780";
  4367. }
  4368. .cuIcon-my:before {
  4369. content: "\e78b";
  4370. }
  4371. .cuIcon-myfill:before {
  4372. content: "\e78c";
  4373. }
  4374. .cuIcon-emojifill:before {
  4375. content: "\e78d";
  4376. }
  4377. .cuIcon-emojiflashfill:before {
  4378. content: "\e78e";
  4379. }
  4380. .cuIcon-flashbuyfill:before {
  4381. content: "\e78f";
  4382. }
  4383. .cuIcon-text:before {
  4384. content: "\e791";
  4385. }
  4386. .cuIcon-goodsfavor:before {
  4387. content: "\e794";
  4388. }
  4389. .cuIcon-musicfill:before {
  4390. content: "\e795";
  4391. }
  4392. .cuIcon-musicforbidfill:before {
  4393. content: "\e796";
  4394. }
  4395. .cuIcon-card:before {
  4396. content: "\e624";
  4397. }
  4398. .cuIcon-triangledownfill:before {
  4399. content: "\e79b";
  4400. }
  4401. .cuIcon-triangleupfill:before {
  4402. content: "\e79c";
  4403. }
  4404. .cuIcon-roundleftfill-copy:before {
  4405. content: "\e79e";
  4406. }
  4407. .cuIcon-font:before {
  4408. content: "\e76a";
  4409. }
  4410. .cuIcon-title:before {
  4411. content: "\e82f";
  4412. }
  4413. .cuIcon-recordfill:before {
  4414. content: "\e7a4";
  4415. }
  4416. .cuIcon-record:before {
  4417. content: "\e7a6";
  4418. }
  4419. .cuIcon-cardboardfill:before {
  4420. content: "\e7a9";
  4421. }
  4422. .cuIcon-cardboard:before {
  4423. content: "\e7aa";
  4424. }
  4425. .cuIcon-formfill:before {
  4426. content: "\e7ab";
  4427. }
  4428. .cuIcon-coin:before {
  4429. content: "\e7ac";
  4430. }
  4431. .cuIcon-cardboardforbid:before {
  4432. content: "\e7af";
  4433. }
  4434. .cuIcon-circlefill:before {
  4435. content: "\e7b0";
  4436. }
  4437. .cuIcon-circle:before {
  4438. content: "\e7b1";
  4439. }
  4440. .cuIcon-attentionforbid:before {
  4441. content: "\e7b2";
  4442. }
  4443. .cuIcon-attentionforbidfill:before {
  4444. content: "\e7b3";
  4445. }
  4446. .cuIcon-attentionfavorfill:before {
  4447. content: "\e7b4";
  4448. }
  4449. .cuIcon-attentionfavor:before {
  4450. content: "\e7b5";
  4451. }
  4452. .cuIcon-titles:before {
  4453. content: "\e701";
  4454. }
  4455. .cuIcon-icloading:before {
  4456. content: "\e67a";
  4457. }
  4458. .cuIcon-full:before {
  4459. content: "\e7bc";
  4460. }
  4461. .cuIcon-mail:before {
  4462. content: "\e7bd";
  4463. }
  4464. .cuIcon-peoplelist:before {
  4465. content: "\e7be";
  4466. }
  4467. .cuIcon-goodsnewfill:before {
  4468. content: "\e7bf";
  4469. }
  4470. .cuIcon-goodsnew:before {
  4471. content: "\e7c0";
  4472. }
  4473. .cuIcon-medalfill:before {
  4474. content: "\e7c1";
  4475. }
  4476. .cuIcon-medal:before {
  4477. content: "\e7c2";
  4478. }
  4479. .cuIcon-newsfill:before {
  4480. content: "\e7c3";
  4481. }
  4482. .cuIcon-newshotfill:before {
  4483. content: "\e7c4";
  4484. }
  4485. .cuIcon-newshot:before {
  4486. content: "\e7c5";
  4487. }
  4488. .cuIcon-news:before {
  4489. content: "\e7c6";
  4490. }
  4491. .cuIcon-videofill:before {
  4492. content: "\e7c7";
  4493. }
  4494. .cuIcon-video:before {
  4495. content: "\e7c8";
  4496. }
  4497. .cuIcon-exit:before {
  4498. content: "\e7cb";
  4499. }
  4500. .cuIcon-skinfill:before {
  4501. content: "\e7cc";
  4502. }
  4503. .cuIcon-skin:before {
  4504. content: "\e7cd";
  4505. }
  4506. .cuIcon-moneybagfill:before {
  4507. content: "\e7ce";
  4508. }
  4509. .cuIcon-usefullfill:before {
  4510. content: "\e7cf";
  4511. }
  4512. .cuIcon-usefull:before {
  4513. content: "\e7d0";
  4514. }
  4515. .cuIcon-moneybag:before {
  4516. content: "\e7d1";
  4517. }
  4518. .cuIcon-redpacket_fill:before {
  4519. content: "\e7d3";
  4520. }
  4521. .cuIcon-subscription:before {
  4522. content: "\e7d4";
  4523. }
  4524. .cuIcon-loading1:before {
  4525. content: "\e633";
  4526. }
  4527. .cuIcon-github:before {
  4528. content: "\e692";
  4529. }
  4530. .cuIcon-global:before {
  4531. content: "\e7eb";
  4532. }
  4533. .cuIcon-settingsfill:before {
  4534. content: "\e6ab";
  4535. }
  4536. .cuIcon-back_android:before {
  4537. content: "\e7ed";
  4538. }
  4539. .cuIcon-expressman:before {
  4540. content: "\e7ef";
  4541. }
  4542. .cuIcon-evaluate_fill:before {
  4543. content: "\e7f0";
  4544. }
  4545. .cuIcon-group_fill:before {
  4546. content: "\e7f5";
  4547. }
  4548. .cuIcon-play_forward_fill:before {
  4549. content: "\e7f6";
  4550. }
  4551. .cuIcon-deliver_fill:before {
  4552. content: "\e7f7";
  4553. }
  4554. .cuIcon-notice_forbid_fill:before {
  4555. content: "\e7f8";
  4556. }
  4557. .cuIcon-fork:before {
  4558. content: "\e60c";
  4559. }
  4560. .cuIcon-pick:before {
  4561. content: "\e7fa";
  4562. }
  4563. .cuIcon-wenzi:before {
  4564. content: "\e6a7";
  4565. }
  4566. .cuIcon-ellipse:before {
  4567. content: "\e600";
  4568. }
  4569. .cuIcon-qr_code:before {
  4570. content: "\e61b";
  4571. }
  4572. .cuIcon-dianhua:before {
  4573. content: "\e64d";
  4574. }
  4575. .cuIcon-cuIcon:before {
  4576. content: "\e602";
  4577. }
  4578. .cuIcon-loading2:before {
  4579. content: "\e7f1";
  4580. }
  4581. .cuIcon-btn:before {
  4582. content: "\e601";
  4583. }
  4584. /* #endif */