colorui.css 87 KB

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