123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968 |
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .uniui-color[data-v-d31e1c47]:before {
- content: "\e6cf";
- }
- .uniui-wallet[data-v-d31e1c47]:before {
- content: "\e6b1";
- }
- .uniui-settings-filled[data-v-d31e1c47]:before {
- content: "\e6ce";
- }
- .uniui-auth-filled[data-v-d31e1c47]:before {
- content: "\e6cc";
- }
- .uniui-shop-filled[data-v-d31e1c47]:before {
- content: "\e6cd";
- }
- .uniui-staff-filled[data-v-d31e1c47]:before {
- content: "\e6cb";
- }
- .uniui-vip-filled[data-v-d31e1c47]:before {
- content: "\e6c6";
- }
- .uniui-plus-filled[data-v-d31e1c47]:before {
- content: "\e6c7";
- }
- .uniui-folder-add-filled[data-v-d31e1c47]:before {
- content: "\e6c8";
- }
- .uniui-color-filled[data-v-d31e1c47]:before {
- content: "\e6c9";
- }
- .uniui-tune-filled[data-v-d31e1c47]:before {
- content: "\e6ca";
- }
- .uniui-calendar-filled[data-v-d31e1c47]:before {
- content: "\e6c0";
- }
- .uniui-notification-filled[data-v-d31e1c47]:before {
- content: "\e6c1";
- }
- .uniui-wallet-filled[data-v-d31e1c47]:before {
- content: "\e6c2";
- }
- .uniui-medal-filled[data-v-d31e1c47]:before {
- content: "\e6c3";
- }
- .uniui-gift-filled[data-v-d31e1c47]:before {
- content: "\e6c4";
- }
- .uniui-fire-filled[data-v-d31e1c47]:before {
- content: "\e6c5";
- }
- .uniui-refreshempty[data-v-d31e1c47]:before {
- content: "\e6bf";
- }
- .uniui-location-filled[data-v-d31e1c47]:before {
- content: "\e6af";
- }
- .uniui-person-filled[data-v-d31e1c47]:before {
- content: "\e69d";
- }
- .uniui-personadd-filled[data-v-d31e1c47]:before {
- content: "\e698";
- }
- .uniui-back[data-v-d31e1c47]:before {
- content: "\e6b9";
- }
- .uniui-forward[data-v-d31e1c47]:before {
- content: "\e6ba";
- }
- .uniui-arrow-right[data-v-d31e1c47]:before {
- content: "\e6bb";
- }
- .uniui-arrowthinright[data-v-d31e1c47]:before {
- content: "\e6bb";
- }
- .uniui-arrow-left[data-v-d31e1c47]:before {
- content: "\e6bc";
- }
- .uniui-arrowthinleft[data-v-d31e1c47]:before {
- content: "\e6bc";
- }
- .uniui-arrow-up[data-v-d31e1c47]:before {
- content: "\e6bd";
- }
- .uniui-arrowthinup[data-v-d31e1c47]:before {
- content: "\e6bd";
- }
- .uniui-arrow-down[data-v-d31e1c47]:before {
- content: "\e6be";
- }
- .uniui-arrowthindown[data-v-d31e1c47]:before {
- content: "\e6be";
- }
- .uniui-bottom[data-v-d31e1c47]:before {
- content: "\e6b8";
- }
- .uniui-arrowdown[data-v-d31e1c47]:before {
- content: "\e6b8";
- }
- .uniui-right[data-v-d31e1c47]:before {
- content: "\e6b5";
- }
- .uniui-arrowright[data-v-d31e1c47]:before {
- content: "\e6b5";
- }
- .uniui-top[data-v-d31e1c47]:before {
- content: "\e6b6";
- }
- .uniui-arrowup[data-v-d31e1c47]:before {
- content: "\e6b6";
- }
- .uniui-left[data-v-d31e1c47]:before {
- content: "\e6b7";
- }
- .uniui-arrowleft[data-v-d31e1c47]:before {
- content: "\e6b7";
- }
- .uniui-eye[data-v-d31e1c47]:before {
- content: "\e651";
- }
- .uniui-eye-filled[data-v-d31e1c47]:before {
- content: "\e66a";
- }
- .uniui-eye-slash[data-v-d31e1c47]:before {
- content: "\e6b3";
- }
- .uniui-eye-slash-filled[data-v-d31e1c47]:before {
- content: "\e6b4";
- }
- .uniui-info-filled[data-v-d31e1c47]:before {
- content: "\e649";
- }
- .uniui-reload[data-v-d31e1c47]:before {
- content: "\e6b2";
- }
- .uniui-micoff-filled[data-v-d31e1c47]:before {
- content: "\e6b0";
- }
- .uniui-map-pin-ellipse[data-v-d31e1c47]:before {
- content: "\e6ac";
- }
- .uniui-map-pin[data-v-d31e1c47]:before {
- content: "\e6ad";
- }
- .uniui-location[data-v-d31e1c47]:before {
- content: "\e6ae";
- }
- .uniui-starhalf[data-v-d31e1c47]:before {
- content: "\e683";
- }
- .uniui-star[data-v-d31e1c47]:before {
- content: "\e688";
- }
- .uniui-star-filled[data-v-d31e1c47]:before {
- content: "\e68f";
- }
- .uniui-calendar[data-v-d31e1c47]:before {
- content: "\e6a0";
- }
- .uniui-fire[data-v-d31e1c47]:before {
- content: "\e6a1";
- }
- .uniui-medal[data-v-d31e1c47]:before {
- content: "\e6a2";
- }
- .uniui-font[data-v-d31e1c47]:before {
- content: "\e6a3";
- }
- .uniui-gift[data-v-d31e1c47]:before {
- content: "\e6a4";
- }
- .uniui-link[data-v-d31e1c47]:before {
- content: "\e6a5";
- }
- .uniui-notification[data-v-d31e1c47]:before {
- content: "\e6a6";
- }
- .uniui-staff[data-v-d31e1c47]:before {
- content: "\e6a7";
- }
- .uniui-vip[data-v-d31e1c47]:before {
- content: "\e6a8";
- }
- .uniui-folder-add[data-v-d31e1c47]:before {
- content: "\e6a9";
- }
- .uniui-tune[data-v-d31e1c47]:before {
- content: "\e6aa";
- }
- .uniui-auth[data-v-d31e1c47]:before {
- content: "\e6ab";
- }
- .uniui-person[data-v-d31e1c47]:before {
- content: "\e699";
- }
- .uniui-email-filled[data-v-d31e1c47]:before {
- content: "\e69a";
- }
- .uniui-phone-filled[data-v-d31e1c47]:before {
- content: "\e69b";
- }
- .uniui-phone[data-v-d31e1c47]:before {
- content: "\e69c";
- }
- .uniui-email[data-v-d31e1c47]:before {
- content: "\e69e";
- }
- .uniui-personadd[data-v-d31e1c47]:before {
- content: "\e69f";
- }
- .uniui-chatboxes-filled[data-v-d31e1c47]:before {
- content: "\e692";
- }
- .uniui-contact[data-v-d31e1c47]:before {
- content: "\e693";
- }
- .uniui-chatbubble-filled[data-v-d31e1c47]:before {
- content: "\e694";
- }
- .uniui-contact-filled[data-v-d31e1c47]:before {
- content: "\e695";
- }
- .uniui-chatboxes[data-v-d31e1c47]:before {
- content: "\e696";
- }
- .uniui-chatbubble[data-v-d31e1c47]:before {
- content: "\e697";
- }
- .uniui-upload-filled[data-v-d31e1c47]:before {
- content: "\e68e";
- }
- .uniui-upload[data-v-d31e1c47]:before {
- content: "\e690";
- }
- .uniui-weixin[data-v-d31e1c47]:before {
- content: "\e691";
- }
- .uniui-compose[data-v-d31e1c47]:before {
- content: "\e67f";
- }
- .uniui-qq[data-v-d31e1c47]:before {
- content: "\e680";
- }
- .uniui-download-filled[data-v-d31e1c47]:before {
- content: "\e681";
- }
- .uniui-pyq[data-v-d31e1c47]:before {
- content: "\e682";
- }
- .uniui-sound[data-v-d31e1c47]:before {
- content: "\e684";
- }
- .uniui-trash-filled[data-v-d31e1c47]:before {
- content: "\e685";
- }
- .uniui-sound-filled[data-v-d31e1c47]:before {
- content: "\e686";
- }
- .uniui-trash[data-v-d31e1c47]:before {
- content: "\e687";
- }
- .uniui-videocam-filled[data-v-d31e1c47]:before {
- content: "\e689";
- }
- .uniui-spinner-cycle[data-v-d31e1c47]:before {
- content: "\e68a";
- }
- .uniui-weibo[data-v-d31e1c47]:before {
- content: "\e68b";
- }
- .uniui-videocam[data-v-d31e1c47]:before {
- content: "\e68c";
- }
- .uniui-download[data-v-d31e1c47]:before {
- content: "\e68d";
- }
- .uniui-help[data-v-d31e1c47]:before {
- content: "\e679";
- }
- .uniui-navigate-filled[data-v-d31e1c47]:before {
- content: "\e67a";
- }
- .uniui-plusempty[data-v-d31e1c47]:before {
- content: "\e67b";
- }
- .uniui-smallcircle[data-v-d31e1c47]:before {
- content: "\e67c";
- }
- .uniui-minus-filled[data-v-d31e1c47]:before {
- content: "\e67d";
- }
- .uniui-micoff[data-v-d31e1c47]:before {
- content: "\e67e";
- }
- .uniui-closeempty[data-v-d31e1c47]:before {
- content: "\e66c";
- }
- .uniui-clear[data-v-d31e1c47]:before {
- content: "\e66d";
- }
- .uniui-navigate[data-v-d31e1c47]:before {
- content: "\e66e";
- }
- .uniui-minus[data-v-d31e1c47]:before {
- content: "\e66f";
- }
- .uniui-image[data-v-d31e1c47]:before {
- content: "\e670";
- }
- .uniui-mic[data-v-d31e1c47]:before {
- content: "\e671";
- }
- .uniui-paperplane[data-v-d31e1c47]:before {
- content: "\e672";
- }
- .uniui-close[data-v-d31e1c47]:before {
- content: "\e673";
- }
- .uniui-help-filled[data-v-d31e1c47]:before {
- content: "\e674";
- }
- .uniui-paperplane-filled[data-v-d31e1c47]:before {
- content: "\e675";
- }
- .uniui-plus[data-v-d31e1c47]:before {
- content: "\e676";
- }
- .uniui-mic-filled[data-v-d31e1c47]:before {
- content: "\e677";
- }
- .uniui-image-filled[data-v-d31e1c47]:before {
- content: "\e678";
- }
- .uniui-locked-filled[data-v-d31e1c47]:before {
- content: "\e668";
- }
- .uniui-info[data-v-d31e1c47]:before {
- content: "\e669";
- }
- .uniui-locked[data-v-d31e1c47]:before {
- content: "\e66b";
- }
- .uniui-camera-filled[data-v-d31e1c47]:before {
- content: "\e658";
- }
- .uniui-chat-filled[data-v-d31e1c47]:before {
- content: "\e659";
- }
- .uniui-camera[data-v-d31e1c47]:before {
- content: "\e65a";
- }
- .uniui-circle[data-v-d31e1c47]:before {
- content: "\e65b";
- }
- .uniui-checkmarkempty[data-v-d31e1c47]:before {
- content: "\e65c";
- }
- .uniui-chat[data-v-d31e1c47]:before {
- content: "\e65d";
- }
- .uniui-circle-filled[data-v-d31e1c47]:before {
- content: "\e65e";
- }
- .uniui-flag[data-v-d31e1c47]:before {
- content: "\e65f";
- }
- .uniui-flag-filled[data-v-d31e1c47]:before {
- content: "\e660";
- }
- .uniui-gear-filled[data-v-d31e1c47]:before {
- content: "\e661";
- }
- .uniui-home[data-v-d31e1c47]:before {
- content: "\e662";
- }
- .uniui-home-filled[data-v-d31e1c47]:before {
- content: "\e663";
- }
- .uniui-gear[data-v-d31e1c47]:before {
- content: "\e664";
- }
- .uniui-smallcircle-filled[data-v-d31e1c47]:before {
- content: "\e665";
- }
- .uniui-map-filled[data-v-d31e1c47]:before {
- content: "\e666";
- }
- .uniui-map[data-v-d31e1c47]:before {
- content: "\e667";
- }
- .uniui-refresh-filled[data-v-d31e1c47]:before {
- content: "\e656";
- }
- .uniui-refresh[data-v-d31e1c47]:before {
- content: "\e657";
- }
- .uniui-cloud-upload[data-v-d31e1c47]:before {
- content: "\e645";
- }
- .uniui-cloud-download-filled[data-v-d31e1c47]:before {
- content: "\e646";
- }
- .uniui-cloud-download[data-v-d31e1c47]:before {
- content: "\e647";
- }
- .uniui-cloud-upload-filled[data-v-d31e1c47]:before {
- content: "\e648";
- }
- .uniui-redo[data-v-d31e1c47]:before {
- content: "\e64a";
- }
- .uniui-images-filled[data-v-d31e1c47]:before {
- content: "\e64b";
- }
- .uniui-undo-filled[data-v-d31e1c47]:before {
- content: "\e64c";
- }
- .uniui-more[data-v-d31e1c47]:before {
- content: "\e64d";
- }
- .uniui-more-filled[data-v-d31e1c47]:before {
- content: "\e64e";
- }
- .uniui-undo[data-v-d31e1c47]:before {
- content: "\e64f";
- }
- .uniui-images[data-v-d31e1c47]:before {
- content: "\e650";
- }
- .uniui-paperclip[data-v-d31e1c47]:before {
- content: "\e652";
- }
- .uniui-settings[data-v-d31e1c47]:before {
- content: "\e653";
- }
- .uniui-search[data-v-d31e1c47]:before {
- content: "\e654";
- }
- .uniui-redo-filled[data-v-d31e1c47]:before {
- content: "\e655";
- }
- .uniui-list[data-v-d31e1c47]:before {
- content: "\e644";
- }
- .uniui-mail-open-filled[data-v-d31e1c47]:before {
- content: "\e63a";
- }
- .uniui-hand-down-filled[data-v-d31e1c47]:before {
- content: "\e63c";
- }
- .uniui-hand-down[data-v-d31e1c47]:before {
- content: "\e63d";
- }
- .uniui-hand-up-filled[data-v-d31e1c47]:before {
- content: "\e63e";
- }
- .uniui-hand-up[data-v-d31e1c47]:before {
- content: "\e63f";
- }
- .uniui-heart-filled[data-v-d31e1c47]:before {
- content: "\e641";
- }
- .uniui-mail-open[data-v-d31e1c47]:before {
- content: "\e643";
- }
- .uniui-heart[data-v-d31e1c47]:before {
- content: "\e639";
- }
- .uniui-loop[data-v-d31e1c47]:before {
- content: "\e633";
- }
- .uniui-pulldown[data-v-d31e1c47]:before {
- content: "\e632";
- }
- .uniui-scan[data-v-d31e1c47]:before {
- content: "\e62a";
- }
- .uniui-bars[data-v-d31e1c47]:before {
- content: "\e627";
- }
- .uniui-cart-filled[data-v-d31e1c47]:before {
- content: "\e629";
- }
- .uniui-checkbox[data-v-d31e1c47]:before {
- content: "\e62b";
- }
- .uniui-checkbox-filled[data-v-d31e1c47]:before {
- content: "\e62c";
- }
- .uniui-shop[data-v-d31e1c47]:before {
- content: "\e62f";
- }
- .uniui-headphones[data-v-d31e1c47]:before {
- content: "\e630";
- }
- .uniui-cart[data-v-d31e1c47]:before {
- content: "\e631";
- }
- @font-face {
- font-family: uniicons;
- src: url("../../assets/uniicons.89ed7d6d.ttf") format("truetype");
- }
- .uni-icons[data-v-d31e1c47] {
- font-family: uniicons;
- text-decoration: none;
- text-align: center;
- }
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .uni-easyinput[data-v-09fd5285] {
- width: 100%;
- flex: 1;
- position: relative;
- text-align: left;
- color: #333;
- font-size: 14px;
- }
- .uni-easyinput__content[data-v-09fd5285] {
- flex: 1;
- width: 100%;
- display: flex;
- box-sizing: border-box;
- flex-direction: row;
- align-items: center;
- border-color: #fff;
- transition-property: border-color;
- transition-duration: 0.3s;
- }
- .uni-easyinput__content-input[data-v-09fd5285] {
- width: auto;
- position: relative;
- overflow: hidden;
- flex: 1;
- line-height: 1;
- font-size: 20px;
- height: 40px;
- }
- .uni-easyinput__placeholder-class[data-v-09fd5285] {
- color: #999;
- font-size: 20px;
- }
- .is-textarea[data-v-09fd5285] {
- align-items: flex-start;
- }
- .is-textarea-icon[data-v-09fd5285] {
- margin-top: 5px;
- }
- .uni-easyinput__content-textarea[data-v-09fd5285] {
- position: relative;
- overflow: hidden;
- flex: 1;
- line-height: 1.5;
- font-size: 14px;
- margin: 6px;
- margin-left: 0;
- height: 80px;
- min-height: 80px;
- min-height: 80px;
- width: auto;
- }
- .input-padding[data-v-09fd5285] {
- padding-left: 10px;
- }
- .content-clear-icon[data-v-09fd5285] {
- padding: 0 5px;
- }
- .label-icon[data-v-09fd5285] {
- margin-right: 5px;
- margin-top: -1px;
- }
- .is-input-border[data-v-09fd5285] {
- display: flex;
- box-sizing: border-box;
- flex-direction: row;
- align-items: center;
- border: 1px solid #dcdfe6;
- border-radius: 4px;
- }
- .uni-error-message[data-v-09fd5285] {
- position: absolute;
- bottom: -17px;
- left: 0;
- line-height: 12px;
- color: #e43d33;
- font-size: 12px;
- text-align: left;
- }
- .uni-error-msg--boeder[data-v-09fd5285] {
- position: relative;
- bottom: 0;
- line-height: 22px;
- }
- .is-input-error-border[data-v-09fd5285] {
- border-color: #e43d33;
- }
- .is-input-error-border .uni-easyinput__placeholder-class[data-v-09fd5285] {
- color: #f29e99;
- }
- .uni-easyinput--border[data-v-09fd5285] {
- margin-bottom: 0;
- padding: 10px 15px;
- border-top: 1px #eee solid;
- }
- .uni-easyinput-error[data-v-09fd5285] {
- padding-bottom: 0;
- }
- .is-first-border[data-v-09fd5285] {
- border: none;
- }
- .is-disabled[data-v-09fd5285] {
- background-color: #f7f6f6;
- color: #d5d5d5;
- }
- .is-disabled .uni-easyinput__placeholder-class[data-v-09fd5285] {
- color: #d5d5d5;
- font-size: 12px;
- }
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .uni-calendar-item__weeks-box[data-v-3c762a01] {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- margin: 1px 0;
- position: relative;
- }
- .uni-calendar-item__weeks-box-text[data-v-3c762a01] {
- font-size: 14px;
- font-weight: bold;
- color: #001833;
- }
- .uni-calendar-item__weeks-box-item[data-v-3c762a01] {
- position: relative;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- width: 40px;
- height: 40px;
- }
- .uni-calendar-item__weeks-box-circle[data-v-3c762a01] {
- position: absolute;
- top: 5px;
- right: 5px;
- width: 8px;
- height: 8px;
- border-radius: 8px;
- background-color: #dd524d;
- }
- .uni-calendar-item__weeks-box .uni-calendar-item--disable[data-v-3c762a01] {
- cursor: default;
- }
- .uni-calendar-item--disable .uni-calendar-item__weeks-box-text-disable[data-v-3c762a01] {
- color: #D1D1D1;
- }
- .uni-calendar-item--today[data-v-3c762a01] {
- position: absolute;
- top: 10px;
- right: 17%;
- background-color: #dd524d;
- width: 6px;
- height: 6px;
- border-radius: 50%;
- }
- .uni-calendar-item--extra[data-v-3c762a01] {
- color: #dd524d;
- opacity: 0.8;
- }
- .uni-calendar-item__weeks-box .uni-calendar-item--checked[data-v-3c762a01] {
- background-color: #007aff;
- border-radius: 50%;
- box-sizing: border-box;
- border: 3px solid #fff;
- }
- .uni-calendar-item--checked .uni-calendar-item--checked-text[data-v-3c762a01] {
- color: #fff;
- }
- .uni-calendar-item--multiple .uni-calendar-item--checked-range-text[data-v-3c762a01] {
- color: #333;
- }
- .uni-calendar-item--multiple[data-v-3c762a01] {
- background-color: #F6F7FC;
- }
- .uni-calendar-item--multiple .uni-calendar-item--before-checked[data-v-3c762a01],
- .uni-calendar-item--multiple .uni-calendar-item--after-checked[data-v-3c762a01] {
- background-color: #007aff;
- border-radius: 50%;
- box-sizing: border-box;
- border: 3px solid #F6F7FC;
- }
- .uni-calendar-item--before-checked .uni-calendar-item--checked-text[data-v-3c762a01],
- .uni-calendar-item--after-checked .uni-calendar-item--checked-text[data-v-3c762a01] {
- color: #fff;
- }
- .uni-calendar-item--before-checked-x[data-v-3c762a01] {
- border-top-left-radius: 50px;
- border-bottom-left-radius: 50px;
- box-sizing: border-box;
- background-color: #F6F7FC;
- }
- .uni-calendar-item--after-checked-x[data-v-3c762a01] {
- border-top-right-radius: 50px;
- border-bottom-right-radius: 50px;
- background-color: #F6F7FC;
- }
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .uni-datetime-picker[data-v-1d532b70] {
- /* width: 100%; */
- }
- .uni-datetime-picker-view[data-v-1d532b70] {
- height: 130px;
- width: 270px;
- cursor: pointer;
- }
- .uni-datetime-picker-item[data-v-1d532b70] {
- height: 50px;
- line-height: 50px;
- text-align: center;
- font-size: 14px;
- }
- .uni-datetime-picker-btn[data-v-1d532b70] {
- margin-top: 60px;
- display: flex;
- cursor: pointer;
- flex-direction: row;
- justify-content: space-between;
- }
- .uni-datetime-picker-btn-text[data-v-1d532b70] {
- font-size: 14px;
- color: #007aff;
- }
- .uni-datetime-picker-btn-group[data-v-1d532b70] {
- display: flex;
- flex-direction: row;
- }
- .uni-datetime-picker-cancel[data-v-1d532b70] {
- margin-right: 30px;
- }
- .uni-datetime-picker-mask[data-v-1d532b70] {
- position: fixed;
- bottom: 0px;
- top: 0px;
- left: 0px;
- right: 0px;
- background-color: rgba(0, 0, 0, 0.4);
- transition-duration: 0.3s;
- z-index: 998;
- }
- .uni-datetime-picker-popup[data-v-1d532b70] {
- border-radius: 8px;
- padding: 30px;
- width: 270px;
- background-color: #fff;
- position: fixed;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- transition-duration: 0.3s;
- z-index: 999;
- }
- .uni-datetime-picker-time[data-v-1d532b70] {
- color: grey;
- }
- .uni-datetime-picker-column[data-v-1d532b70] {
- height: 50px;
- }
- .uni-datetime-picker-timebox[data-v-1d532b70] {
- border: 1px solid #E5E5E5;
- border-radius: 5px;
- padding: 7px 10px;
- box-sizing: border-box;
- cursor: pointer;
- }
- .uni-datetime-picker-timebox-pointer[data-v-1d532b70] {
- cursor: pointer;
- }
- .uni-datetime-picker-disabled[data-v-1d532b70] {
- opacity: 0.4;
- }
- .uni-datetime-picker-text[data-v-1d532b70] {
- font-size: 14px;
- line-height: 50px;
- }
- .uni-datetime-picker-sign[data-v-1d532b70] {
- position: absolute;
- top: 53px;
- /* 减掉 10px 的元素高度,兼容nvue */
- color: #999;
- }
- .sign-left[data-v-1d532b70] {
- left: 86px;
- }
- .sign-right[data-v-1d532b70] {
- right: 86px;
- }
- .sign-center[data-v-1d532b70] {
- left: 135px;
- }
- .uni-datetime-picker__container-box[data-v-1d532b70] {
- position: relative;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-top: 40px;
- }
- .time-hide-second[data-v-1d532b70] {
- width: 180px;
- }
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .uni-calendar[data-v-1d379219] {
- display: flex;
- display: flex;
- z-index: 999;
- flex-direction: column;
- }
- .uni-calendar__mask[data-v-1d379219] {
- position: fixed;
- bottom: 0;
- top: 0;
- left: 0;
- right: 0;
- background-color: rgba(0, 0, 0, 0.4);
- transition-property: opacity;
- transition-duration: 0.3s;
- opacity: 0;
- z-index: 99;
- }
- .uni-calendar--mask-show[data-v-1d379219] {
- opacity: 1;
- }
- .uni-calendar--fixed[data-v-1d379219] {
- position: fixed;
- bottom: calc(var(--window-bottom));
- left: 0;
- right: 0;
- transition-property: transform;
- transition-duration: 0.3s;
- transform: translateY(460px);
- z-index: 99;
- }
- .uni-calendar--ani-show[data-v-1d379219] {
- transform: translateY(0);
- }
- .uni-calendar__content[data-v-1d379219] {
- background-color: #fff;
- }
- .uni-calendar__content-mobile[data-v-1d379219] {
- border-top-left-radius: 10px;
- border-top-right-radius: 10px;
- box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.1);
- }
- .uni-calendar__header[data-v-1d379219] {
- position: relative;
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- height: 50px;
- }
- .uni-calendar__header-mobile[data-v-1d379219] {
- padding: 10px;
- padding-bottom: 0;
- }
- .uni-calendar--fixed-top[data-v-1d379219] {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- border-top-color: rgba(0, 0, 0, 0.4);
- border-top-style: solid;
- border-top-width: 1px;
- }
- .uni-calendar--fixed-width[data-v-1d379219] {
- width: 50px;
- }
- .uni-calendar__backtoday[data-v-1d379219] {
- position: absolute;
- right: 0;
- top: 0.78125rem;
- padding: 0 5px;
- padding-left: 10px;
- height: 25px;
- line-height: 25px;
- font-size: 12px;
- border-top-left-radius: 25px;
- border-bottom-left-radius: 25px;
- color: #fff;
- background-color: #f1f1f1;
- }
- .uni-calendar__header-text[data-v-1d379219] {
- text-align: center;
- width: 100px;
- font-size: 15px;
- color: #666;
- }
- .uni-calendar__button-text[data-v-1d379219] {
- text-align: center;
- width: 100px;
- font-size: 14px;
- color: #007aff;
- letter-spacing: 3px;
- }
- .uni-calendar__header-btn-box[data-v-1d379219] {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- width: 50px;
- height: 50px;
- }
- .uni-calendar__header-btn[data-v-1d379219] {
- width: 9px;
- height: 9px;
- border-left-color: #808080;
- border-left-style: solid;
- border-left-width: 1px;
- border-top-color: #555555;
- border-top-style: solid;
- border-top-width: 1px;
- }
- .uni-calendar--left[data-v-1d379219] {
- transform: rotate(-45deg);
- }
- .uni-calendar--right[data-v-1d379219] {
- transform: rotate(135deg);
- }
- .uni-calendar__weeks[data-v-1d379219] {
- position: relative;
- display: flex;
- flex-direction: row;
- }
- .uni-calendar__weeks-item[data-v-1d379219] {
- flex: 1;
- }
- .uni-calendar__weeks-day[data-v-1d379219] {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- height: 40px;
- border-bottom-color: #F5F5F5;
- border-bottom-style: solid;
- border-bottom-width: 1px;
- }
- .uni-calendar__weeks-day-text[data-v-1d379219] {
- font-size: 12px;
- color: #B2B2B2;
- }
- .uni-calendar__box[data-v-1d379219] {
- position: relative;
- padding-bottom: 7px;
- }
- .uni-calendar__box-bg[data-v-1d379219] {
- display: flex;
- justify-content: center;
- align-items: center;
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .uni-calendar__box-bg-text[data-v-1d379219] {
- font-size: 200px;
- font-weight: bold;
- color: #999;
- opacity: 0.1;
- text-align: center;
- line-height: 1;
- }
- .uni-date-changed[data-v-1d379219] {
- padding: 0 10px;
- text-align: center;
- color: #333;
- border-top-color: #DCDCDC;
- border-top-style: solid;
- border-top-width: 1px;
- flex: 1;
- }
- .uni-date-btn--ok[data-v-1d379219] {
- padding: 20px 15px;
- }
- .uni-date-changed--time-start[data-v-1d379219] {
- display: flex;
- align-items: center;
- }
- .uni-date-changed--time-end[data-v-1d379219] {
- display: flex;
- align-items: center;
- }
- .uni-date-changed--time-date[data-v-1d379219] {
- color: #999;
- line-height: 50px;
- margin-right: 5px;
- }
- .time-picker-style[data-v-1d379219] {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .mr-10[data-v-1d379219] {
- margin-right: 10px;
- }
- .dialog-close[data-v-1d379219] {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- display: flex;
- flex-direction: row;
- align-items: center;
- padding: 0 25px;
- margin-top: 10px;
- }
- .dialog-close-plus[data-v-1d379219] {
- width: 16px;
- height: 2px;
- background-color: #737987;
- border-radius: 2px;
- transform: rotate(45deg);
- }
- .dialog-close-rotate[data-v-1d379219] {
- position: absolute;
- transform: rotate(-45deg);
- }
- .uni-datetime-picker--btn[data-v-1d379219] {
- border-radius: 100px;
- height: 40px;
- line-height: 40px;
- background-color: #007aff;
- color: #fff;
- font-size: 16px;
- letter-spacing: 2px;
- }
- .uni-datetime-picker--btn[data-v-1d379219]:active {
- opacity: 0.7;
- }
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .uni-date[data-v-9802168a] {
- width: 100%;
- flex: 1;
- }
- .uni-date-x[data-v-9802168a] {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- border-radius: 4px;
- background-color: #fff;
- color: #666;
- font-size: 20px;
- flex: 1;
- }
- .uni-date-x .icon-calendar[data-v-9802168a] {
- padding-left: 3px;
- }
- .uni-date-x .range-separator[data-v-9802168a] {
- height: 35px;
- padding: 0 2px;
- line-height: 35px;
- }
- .uni-date-x--border[data-v-9802168a] {
- box-sizing: border-box;
- border-radius: 4px;
- border: 1px solid #e5e5e5;
- }
- .uni-date-editor--x[data-v-9802168a] {
- display: flex;
- align-items: center;
- position: relative;
- }
- .uni-date-editor--x .uni-date__icon-clear[data-v-9802168a] {
- padding-right: 3px;
- display: flex;
- align-items: center;
- }
- .uni-date__x-input[data-v-9802168a] {
- width: auto;
- height: 35px;
- padding-left: 5px;
- position: relative;
- flex: 1;
- line-height: 35px;
- font-size: 20px;
- overflow: hidden;
- }
- .text-center[data-v-9802168a] {
- text-align: center;
- }
- .uni-date__input[data-v-9802168a] {
- height: 40px;
- width: 100%;
- line-height: 40px;
- font-size: 20px;
- }
- .uni-date-range__input[data-v-9802168a] {
- text-align: center;
- max-width: 142px;
- }
- .uni-date-picker__container[data-v-9802168a] {
- position: relative;
- }
- .uni-date-mask--pc[data-v-9802168a] {
- position: fixed;
- bottom: 0px;
- top: 0px;
- left: 0px;
- right: 0px;
- background-color: rgba(0, 0, 0, 0);
- transition-duration: 0.3s;
- z-index: 996;
- }
- .uni-date-single--x[data-v-9802168a] {
- background-color: #fff;
- position: absolute;
- top: 0;
- z-index: 999;
- border: 1px solid #EBEEF5;
- box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
- border-radius: 4px;
- }
- .uni-date-range--x[data-v-9802168a] {
- background-color: #fff;
- position: absolute;
- top: 0;
- z-index: 999;
- border: 1px solid #EBEEF5;
- box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
- border-radius: 4px;
- }
- .uni-date-editor--x__disabled[data-v-9802168a] {
- opacity: 0.4;
- cursor: default;
- }
- .uni-date-editor--logo[data-v-9802168a] {
- width: 16px;
- height: 16px;
- vertical-align: middle;
- }
- /* 添加时间 */
- .popup-x-header[data-v-9802168a] {
- display: flex;
- flex-direction: row;
- }
- .popup-x-header--datetime[data-v-9802168a] {
- display: flex;
- flex-direction: row;
- flex: 1;
- }
- .popup-x-body[data-v-9802168a] {
- display: flex;
- }
- .popup-x-footer[data-v-9802168a] {
- padding: 0 15px;
- border-top-color: #F1F1F1;
- border-top-style: solid;
- border-top-width: 1px;
- line-height: 40px;
- text-align: right;
- color: #666;
- }
- .popup-x-footer uni-text[data-v-9802168a]:hover {
- color: #007aff;
- cursor: pointer;
- opacity: 0.8;
- }
- .popup-x-footer .confirm-text[data-v-9802168a] {
- margin-left: 20px;
- color: #007aff;
- }
- .uni-date-changed[data-v-9802168a] {
- text-align: center;
- color: #333;
- border-bottom-color: #F1F1F1;
- border-bottom-style: solid;
- border-bottom-width: 1px;
- }
- .uni-date-changed--time uni-text[data-v-9802168a] {
- height: 50px;
- line-height: 50px;
- }
- .uni-date-changed .uni-date-changed--time[data-v-9802168a] {
- flex: 1;
- }
- .uni-date-changed--time-date[data-v-9802168a] {
- color: #333;
- opacity: 0.6;
- }
- .mr-50[data-v-9802168a] {
- margin-right: 50px;
- }
- /* picker 弹出层通用的指示小三角, todo:扩展至上下左右方向定位 */
- .uni-popper__arrow[data-v-9802168a],
- .uni-popper__arrow[data-v-9802168a]::after {
- position: absolute;
- display: block;
- width: 0;
- height: 0;
- border: 6px solid transparent;
- border-top-width: 0;
- }
- .uni-popper__arrow[data-v-9802168a] {
- filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.03));
- top: -6px;
- left: 10%;
- margin-right: 3px;
- border-bottom-color: #EBEEF5;
- }
- .uni-popper__arrow[data-v-9802168a]::after {
- content: " ";
- top: 1px;
- margin-left: -6px;
- border-bottom-color: #fff;
- }
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .uni-tag[data-v-1f94d070] {
- line-height: 14px;
- font-size: 12px;
- font-weight: 200;
- padding: 4px 7px;
- color: #fff;
- border-radius: 3px;
- background-color: #18C7B0;
- border-width: 0.03125rem;
- border-style: solid;
- border-color: #18C7B0;
- }
- .uni-tag--default[data-v-1f94d070] {
- font-size: 12px;
- }
- .uni-tag--default--inverted[data-v-1f94d070] {
- color: #18C7B0;
- border-color: #18C7B0;
- }
- .uni-tag--small[data-v-1f94d070] {
- padding: 2px 5px;
- font-size: 12px;
- border-radius: 2px;
- }
- .uni-tag--mini[data-v-1f94d070] {
- padding: 1px 3px;
- font-size: 12px;
- border-radius: 2px;
- }
- .uni-tag--primary[data-v-1f94d070] {
- background-color: #2979ff;
- border-color: #2979ff;
- color: #fff;
- }
- .uni-tag--success[data-v-1f94d070] {
- color: #fff;
- background-color: #18bc37;
- border-color: #18bc37;
- }
- .uni-tag--warning[data-v-1f94d070] {
- color: #fff;
- background-color: #f3a73f;
- border-color: #f3a73f;
- }
- .uni-tag--error[data-v-1f94d070] {
- color: #fff;
- background-color: #e43d33;
- border-color: #e43d33;
- }
- .uni-tag--primary--inverted[data-v-1f94d070] {
- color: #2979ff;
- border-color: #2979ff;
- }
- .uni-tag--success--inverted[data-v-1f94d070] {
- color: #18bc37;
- border-color: #18bc37;
- }
- .uni-tag--warning--inverted[data-v-1f94d070] {
- color: #f3a73f;
- border-color: #f3a73f;
- }
- .uni-tag--error--inverted[data-v-1f94d070] {
- color: #e43d33;
- border-color: #e43d33;
- }
- .uni-tag--inverted[data-v-1f94d070] {
- background-color: #fff;
- }
- .uni-tag--circle[data-v-1f94d070] {
- border-radius: 15px !important;
- }
- .uni-tag--mark[data-v-1f94d070] {
- border-top-left-radius: 0 !important;
- border-bottom-left-radius: 0 !important;
- border-top-right-radius: 15px !important;
- border-bottom-right-radius: 15px !important;
- }
- .uni-tag--disabled[data-v-1f94d070] {
- opacity: 0.5;
- }
- .uni-tag-text[data-v-1f94d070] {
- color: #fff;
- font-size: 14px;
- }
- .uni-tag-text--primary[data-v-1f94d070] {
- color: #2979ff;
- }
- .uni-tag-text--success[data-v-1f94d070] {
- color: #18bc37;
- }
- .uni-tag-text--warning[data-v-1f94d070] {
- color: #f3a73f;
- }
- .uni-tag-text--error[data-v-1f94d070] {
- color: #e43d33;
- }
- .uni-tag-text--small[data-v-1f94d070] {
- font-size: 12px;
- }
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .nav[data-v-e9345f2e] {
- display: flex;
- justify-content: space-between;
- align-items: flex-end;
- width: 23.4375rem;
- background-color: #18C7B0;
- padding-bottom: 0.625rem;
- }
- .nav .navbar[data-v-e9345f2e] {
- width: 23.4375rem;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .nav .navbar .scanbara[data-v-e9345f2e] {
- display: flex;
- width: 2.84375rem;
- height: 1.025rem;
- font-size: 0.46875rem;
- color: #18C7B0;
- margin-left: 0.62813rem;
- }
- .nav .navbar .status[data-v-e9345f2e] {
- font-size: 0.58594rem;
- color: #fff;
- margin-right: 3.45219rem;
- }
- .nav .navbar .userinfo[data-v-e9345f2e] {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-right: 0.69344rem;
- }
- .nav .navbar .userinfo .lef[data-v-e9345f2e] {
- height: 1.05469rem;
- width: 2.84375rem;
- margin-right: 0.54688rem;
- font-size: 0.46875rem;
- color: #18C7B0;
- }
- .nav .navbar .userinfo .mid[data-v-e9345f2e] {
- height: 1.36719rem;
- width: 1.36719rem;
- margin-right: 0.18563rem;
- border-radius: 50%;
- }
- .nav .navbar .userinfo .rig[data-v-e9345f2e] {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .nav .navbar .userinfo .rig .name[data-v-e9345f2e] {
- font-size: 0.54688rem;
- color: #fff;
- text-align: center;
- }
- .nav .navbar .userinfo .rig .logout[data-v-e9345f2e] {
- background-color: #18C7B0;
- font-size: 0.46875rem;
- color: #fff;
- border: 1px solid #18C7B0;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .container[data-v-1ab9fcf6] {
- display: flex;
- width: 100%;
- display: flex;
- flex-direction: column;
- width: 100%;
- margin-top: 0.3125rem;
- }
- .container .t[data-v-1ab9fcf6] {
- display: flex;
- background-color: #EBF8F7;
- height: 1.05469rem;
- width: 22.16813rem;
- font-size: 0.42969rem;
- color: #999999;
- justify-content: flex-start;
- align-items: center;
- }
- .container .t .d1[data-v-1ab9fcf6]::before {
- content: "";
- display: inline-block;
- width: 20px;
- height: 20px;
- background: "#18C7B0";
- }
- .container .t .d2[data-v-1ab9fcf6] {
- margin-left: 0.5rem;
- }
- .container .t .d3[data-v-1ab9fcf6] {
- margin-left: 6.25rem;
- }
- .container .t .d4[data-v-1ab9fcf6] {
- margin-left: auto;
- }
- .container .t .d4 .source[data-v-1ab9fcf6] {
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 0.78125rem 0 0 0.78125rem;
- font-size: 0.42969rem;
- width: 1.5625rem;
- height: 0.66406rem;
- background-color: #18C7B0;
- color: #fff;
- }
- .container .t .d4 .zy[data-v-1ab9fcf6] {
- background-color: #82ABE1 !important;
- }
- .container .m[data-v-1ab9fcf6] {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- margin: 0.37125rem 0.78125rem 0.58594rem;
- }
- .container .m .faceu[data-v-1ab9fcf6] {
- width: 2.28531rem;
- height: 2.28531rem;
- margin-right: 0.3125rem;
- }
- .container .m .patie[data-v-1ab9fcf6] {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: flex-start;
- height: 2.28531rem;
- width: 8.4375rem;
- }
- .container .m .patie .name[data-v-1ab9fcf6] {
- font-size: 0.54688rem;
- color: #333333;
- display: flex;
- align-items: center;
- justify-content: flex-start;
- }
- .container .m .patie .seage[data-v-1ab9fcf6] {
- display: flex;
- margin-top: 0.25rem;
- }
- .container .m .patie .seage .img[data-v-1ab9fcf6] {
- height: 0.46875rem;
- width: 0.46875rem;
- }
- .container .m .patie .seage .sex[data-v-1ab9fcf6] {
- font-size: 0.375rem;
- color: #999999;
- padding-right: 0.27344rem;
- }
- .container .m .patie .seage .sep[data-v-1ab9fcf6] {
- font-size: 0.3125rem;
- color: #999999;
- }
- .container .m .patie .seage .age[data-v-1ab9fcf6] {
- font-size: 0.375rem;
- color: #999999;
- padding-left: 0.27344rem;
- }
- .container .m .patie .case[data-v-1ab9fcf6] {
- margin-top: 0.09375rem;
- font-size: 0.46875rem;
- color: #333333;
- }
- .container .m .pres[data-v-1ab9fcf6] {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: flex-start;
- margin-left: 0.125rem;
- height: 2.28531rem;
- }
- .container .m .pres .department[data-v-1ab9fcf6] {
- margin-top: 0.15625rem;
- font-size: 0.46875rem;
- color: #999999;
- }
- .container .m .pres .presInfo[data-v-1ab9fcf6] {
- margin-top: 0.3125rem;
- font-size: 0.46875rem;
- color: #333333;
- }
- .container .b[data-v-1ab9fcf6] {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- height: 1.05469rem;
- width: 22.16813rem;
- color: #999999;
- padding: 0.3125rem 1.52438rem;
- margin-bottom: 0.3125rem;
- }
- .container .b .zt[data-v-1ab9fcf6] {
- display: flex;
- width: 6.25rem;
- font-size: 0.42969rem;
- }
- .container .b .je[data-v-1ab9fcf6] {
- display: flex;
- width: 6.25rem;
- font-size: 0.46875rem;
- }
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .main {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- width: 23.4375rem;
- }
- .main .nav {
- display: flex;
- height: 2.32313rem;
- width: 23.4375rem;
- }
- .main .body {
- display: flex;
- height: calc(100% - 2.32313rem);
- flex-direction: column;
- justify-content: flex-start;
- }
- .main .body .tab-box {
- display: flex;
- position: -webkit-sticky;
- position: sticky;
- flex-direction: column;
- z-index: 100;
- }
- .main .body .tab-box .tab-bar {
- height: 1.95313rem;
- display: flex;
- justify-content: center;
- width: 100%;
- }
- .main .body .tab-box .tab-bar .tab_item {
- display: flex;
- flex: 1;
- justify-content: center;
- align-items: center;
- font-size: 0.54688rem;
- background-color: #fff;
- color: #000;
- }
- .main .body .tab-box .tab-bar .active {
- border-bottom: 0.15625rem solid #18C7B0;
- }
- .main .body .tab-box .search-bar {
- display: flex;
- background-color: #fff;
- border-radius: 0.125rem;
- }
- .main .body .tab-box .search-bar .today {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- }
- .main .body .tab-box .search-bar .today .search {
- width: 14.17969rem;
- margin: 0.42969rem 0.31563rem;
- }
- .main .body .tab-box .search-bar .today .search .uni-easyinput__placeholder-class {
- font-size: 0.46875rem;
- }
- .main .body .tab-box .search-bar .today .search-button {
- width: 3.51563rem;
- margin: 0.42969rem 0.125rem;
- font-size: 0.46875rem;
- background-color: #18C7B0;
- }
- .main .body .tab-box .search-bar .today .refresh {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 3.75rem;
- margin: 13.75px 0.69344rem;
- font-size: 0.46875rem;
- background-color: #18C7B0;
- }
- .main .body .tab-box .search-bar .today .active {
- background-color: #DEDEDE;
- }
- .main .body .tab-box .search-bar .history {
- display: flex;
- width: 100%;
- }
- .main .body .tab-box .search-bar .history .searchchoice {
- padding: 0 0.3125rem;
- display: flex;
- width: 100%;
- flex-direction: column;
- font-size: 0.75rem;
- }
- .main .body .tab-box .search-bar .history .searchchoice .row1 {
- display: flex;
- width: 100%;
- justify-content: flex-start;
- align-items: center;
- margin: 0.3125rem 0 0.3125rem;
- font-size: 0.46875rem;
- }
- .main .body .tab-box .search-bar .history .searchchoice .row1 .timequan {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .main .body .tab-box .search-bar .history .searchchoice .row1 .timequan .uni-date__x-input {
- font-size: 0.46875rem;
- }
- .main .body .tab-box .search-bar .history .searchchoice .row1 .timequan .datepick {
- z-index: 999;
- width: 19.60938rem;
- }
- .main .body .tab-box .search-bar .history .searchchoice .row2 {
- display: flex;
- width: 100%;
- justify-content: flex-start;
- align-items: center;
- margin: 0 0 0.3125rem;
- }
- .main .body .tab-box .search-bar .history .searchchoice .row2 .office {
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 0.46875rem;
- }
- .main .body .tab-box .search-bar .history .searchchoice .row2 .office .uni-input {
- display: flex;
- justify-content: center;
- align-items: center;
- border: 1px solid #e1e5f1;
- font-size: 0.46875rem;
- width: 5.9375rem;
- border-radius: 0.15625rem;
- background-color: #e1e5f1;
- margin-right: 0.3125rem;
- }
- .main .body .tab-box .search-bar .history .searchchoice .row2 .uni-input {
- display: flex;
- justify-content: center;
- align-items: center;
- border: 1px solid #e1e5f1;
- font-size: 0.46875rem;
- width: 3.125rem;
- height: 1.25rem;
- border-radius: 0.15625rem;
- background-color: #e1e5f1;
- margin-right: 0.3125rem;
- }
- .main .body .tab-box .search-bar .history .searchchoice .row2 .search {
- width: 5.85938rem;
- }
- .main .body .tab-box .search-bar .history .searchchoice .row2 .search .uni-easyinput__placeholder-class {
- font-size: 0.46875rem;
- }
- .main .body .tab-box .search-bar .history .searchchoice .row2 .search-button {
- width: 3.75rem;
- margin: 0.25rem 0.375rem;
- font-size: 0.46875rem;
- color: #fff;
- background-color: #18C7B0;
- }
- .main .body .tab-box .search-bar .history .searchchoice .row3 {
- display: flex;
- width: 100%;
- justify-content: flex-start;
- align-items: center;
- margin: 0 0 0.5625rem;
- }
- .main .body .tab-box .search-bar .history .searchchoice .row3 .tag-view .uni-tag {
- display: inline;
- font-size: 0.46875rem;
- margin-right: 0.52094rem;
- width: 3.75rem;
- padding: 0.1875rem 0.625rem;
- }
- .main .body .tab-content {
- display: flex;
- margin: 0.25rem 0.3125rem;
- border-radius: 0.125rem;
- background-color: #fff;
- width: calc(100% - 0.625rem);
- height: 30.625rem;
- z-index: 10;
- }
- .main .body .tab-content .order-list {
- padding: 0.25rem;
- display: flex;
- width: 100%;
- }
- .main .body .tab-content .order-list .text {
- display: flex;
- width: 23.4375rem;
- justify-content: center;
- align-items: flex-start;
- }
- .main .body .tab-content .order-list .text .zwsj {
- margin-top: 3.22281rem;
- width: 20.01969rem;
- height: 9.6875rem;
- }
- .main .body .tab-content .order-list .order-list-wrap {
- display: flex;
- }
- .main .body .tab-content .order-list .order-list-wrap .order-card {
- display: flex;
- width: 100%;
- }
|