index.css 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. .uniui-color[data-v-d31e1c47]:before {
  27. content: "\e6cf";
  28. }
  29. .uniui-wallet[data-v-d31e1c47]:before {
  30. content: "\e6b1";
  31. }
  32. .uniui-settings-filled[data-v-d31e1c47]:before {
  33. content: "\e6ce";
  34. }
  35. .uniui-auth-filled[data-v-d31e1c47]:before {
  36. content: "\e6cc";
  37. }
  38. .uniui-shop-filled[data-v-d31e1c47]:before {
  39. content: "\e6cd";
  40. }
  41. .uniui-staff-filled[data-v-d31e1c47]:before {
  42. content: "\e6cb";
  43. }
  44. .uniui-vip-filled[data-v-d31e1c47]:before {
  45. content: "\e6c6";
  46. }
  47. .uniui-plus-filled[data-v-d31e1c47]:before {
  48. content: "\e6c7";
  49. }
  50. .uniui-folder-add-filled[data-v-d31e1c47]:before {
  51. content: "\e6c8";
  52. }
  53. .uniui-color-filled[data-v-d31e1c47]:before {
  54. content: "\e6c9";
  55. }
  56. .uniui-tune-filled[data-v-d31e1c47]:before {
  57. content: "\e6ca";
  58. }
  59. .uniui-calendar-filled[data-v-d31e1c47]:before {
  60. content: "\e6c0";
  61. }
  62. .uniui-notification-filled[data-v-d31e1c47]:before {
  63. content: "\e6c1";
  64. }
  65. .uniui-wallet-filled[data-v-d31e1c47]:before {
  66. content: "\e6c2";
  67. }
  68. .uniui-medal-filled[data-v-d31e1c47]:before {
  69. content: "\e6c3";
  70. }
  71. .uniui-gift-filled[data-v-d31e1c47]:before {
  72. content: "\e6c4";
  73. }
  74. .uniui-fire-filled[data-v-d31e1c47]:before {
  75. content: "\e6c5";
  76. }
  77. .uniui-refreshempty[data-v-d31e1c47]:before {
  78. content: "\e6bf";
  79. }
  80. .uniui-location-filled[data-v-d31e1c47]:before {
  81. content: "\e6af";
  82. }
  83. .uniui-person-filled[data-v-d31e1c47]:before {
  84. content: "\e69d";
  85. }
  86. .uniui-personadd-filled[data-v-d31e1c47]:before {
  87. content: "\e698";
  88. }
  89. .uniui-back[data-v-d31e1c47]:before {
  90. content: "\e6b9";
  91. }
  92. .uniui-forward[data-v-d31e1c47]:before {
  93. content: "\e6ba";
  94. }
  95. .uniui-arrow-right[data-v-d31e1c47]:before {
  96. content: "\e6bb";
  97. }
  98. .uniui-arrowthinright[data-v-d31e1c47]:before {
  99. content: "\e6bb";
  100. }
  101. .uniui-arrow-left[data-v-d31e1c47]:before {
  102. content: "\e6bc";
  103. }
  104. .uniui-arrowthinleft[data-v-d31e1c47]:before {
  105. content: "\e6bc";
  106. }
  107. .uniui-arrow-up[data-v-d31e1c47]:before {
  108. content: "\e6bd";
  109. }
  110. .uniui-arrowthinup[data-v-d31e1c47]:before {
  111. content: "\e6bd";
  112. }
  113. .uniui-arrow-down[data-v-d31e1c47]:before {
  114. content: "\e6be";
  115. }
  116. .uniui-arrowthindown[data-v-d31e1c47]:before {
  117. content: "\e6be";
  118. }
  119. .uniui-bottom[data-v-d31e1c47]:before {
  120. content: "\e6b8";
  121. }
  122. .uniui-arrowdown[data-v-d31e1c47]:before {
  123. content: "\e6b8";
  124. }
  125. .uniui-right[data-v-d31e1c47]:before {
  126. content: "\e6b5";
  127. }
  128. .uniui-arrowright[data-v-d31e1c47]:before {
  129. content: "\e6b5";
  130. }
  131. .uniui-top[data-v-d31e1c47]:before {
  132. content: "\e6b6";
  133. }
  134. .uniui-arrowup[data-v-d31e1c47]:before {
  135. content: "\e6b6";
  136. }
  137. .uniui-left[data-v-d31e1c47]:before {
  138. content: "\e6b7";
  139. }
  140. .uniui-arrowleft[data-v-d31e1c47]:before {
  141. content: "\e6b7";
  142. }
  143. .uniui-eye[data-v-d31e1c47]:before {
  144. content: "\e651";
  145. }
  146. .uniui-eye-filled[data-v-d31e1c47]:before {
  147. content: "\e66a";
  148. }
  149. .uniui-eye-slash[data-v-d31e1c47]:before {
  150. content: "\e6b3";
  151. }
  152. .uniui-eye-slash-filled[data-v-d31e1c47]:before {
  153. content: "\e6b4";
  154. }
  155. .uniui-info-filled[data-v-d31e1c47]:before {
  156. content: "\e649";
  157. }
  158. .uniui-reload[data-v-d31e1c47]:before {
  159. content: "\e6b2";
  160. }
  161. .uniui-micoff-filled[data-v-d31e1c47]:before {
  162. content: "\e6b0";
  163. }
  164. .uniui-map-pin-ellipse[data-v-d31e1c47]:before {
  165. content: "\e6ac";
  166. }
  167. .uniui-map-pin[data-v-d31e1c47]:before {
  168. content: "\e6ad";
  169. }
  170. .uniui-location[data-v-d31e1c47]:before {
  171. content: "\e6ae";
  172. }
  173. .uniui-starhalf[data-v-d31e1c47]:before {
  174. content: "\e683";
  175. }
  176. .uniui-star[data-v-d31e1c47]:before {
  177. content: "\e688";
  178. }
  179. .uniui-star-filled[data-v-d31e1c47]:before {
  180. content: "\e68f";
  181. }
  182. .uniui-calendar[data-v-d31e1c47]:before {
  183. content: "\e6a0";
  184. }
  185. .uniui-fire[data-v-d31e1c47]:before {
  186. content: "\e6a1";
  187. }
  188. .uniui-medal[data-v-d31e1c47]:before {
  189. content: "\e6a2";
  190. }
  191. .uniui-font[data-v-d31e1c47]:before {
  192. content: "\e6a3";
  193. }
  194. .uniui-gift[data-v-d31e1c47]:before {
  195. content: "\e6a4";
  196. }
  197. .uniui-link[data-v-d31e1c47]:before {
  198. content: "\e6a5";
  199. }
  200. .uniui-notification[data-v-d31e1c47]:before {
  201. content: "\e6a6";
  202. }
  203. .uniui-staff[data-v-d31e1c47]:before {
  204. content: "\e6a7";
  205. }
  206. .uniui-vip[data-v-d31e1c47]:before {
  207. content: "\e6a8";
  208. }
  209. .uniui-folder-add[data-v-d31e1c47]:before {
  210. content: "\e6a9";
  211. }
  212. .uniui-tune[data-v-d31e1c47]:before {
  213. content: "\e6aa";
  214. }
  215. .uniui-auth[data-v-d31e1c47]:before {
  216. content: "\e6ab";
  217. }
  218. .uniui-person[data-v-d31e1c47]:before {
  219. content: "\e699";
  220. }
  221. .uniui-email-filled[data-v-d31e1c47]:before {
  222. content: "\e69a";
  223. }
  224. .uniui-phone-filled[data-v-d31e1c47]:before {
  225. content: "\e69b";
  226. }
  227. .uniui-phone[data-v-d31e1c47]:before {
  228. content: "\e69c";
  229. }
  230. .uniui-email[data-v-d31e1c47]:before {
  231. content: "\e69e";
  232. }
  233. .uniui-personadd[data-v-d31e1c47]:before {
  234. content: "\e69f";
  235. }
  236. .uniui-chatboxes-filled[data-v-d31e1c47]:before {
  237. content: "\e692";
  238. }
  239. .uniui-contact[data-v-d31e1c47]:before {
  240. content: "\e693";
  241. }
  242. .uniui-chatbubble-filled[data-v-d31e1c47]:before {
  243. content: "\e694";
  244. }
  245. .uniui-contact-filled[data-v-d31e1c47]:before {
  246. content: "\e695";
  247. }
  248. .uniui-chatboxes[data-v-d31e1c47]:before {
  249. content: "\e696";
  250. }
  251. .uniui-chatbubble[data-v-d31e1c47]:before {
  252. content: "\e697";
  253. }
  254. .uniui-upload-filled[data-v-d31e1c47]:before {
  255. content: "\e68e";
  256. }
  257. .uniui-upload[data-v-d31e1c47]:before {
  258. content: "\e690";
  259. }
  260. .uniui-weixin[data-v-d31e1c47]:before {
  261. content: "\e691";
  262. }
  263. .uniui-compose[data-v-d31e1c47]:before {
  264. content: "\e67f";
  265. }
  266. .uniui-qq[data-v-d31e1c47]:before {
  267. content: "\e680";
  268. }
  269. .uniui-download-filled[data-v-d31e1c47]:before {
  270. content: "\e681";
  271. }
  272. .uniui-pyq[data-v-d31e1c47]:before {
  273. content: "\e682";
  274. }
  275. .uniui-sound[data-v-d31e1c47]:before {
  276. content: "\e684";
  277. }
  278. .uniui-trash-filled[data-v-d31e1c47]:before {
  279. content: "\e685";
  280. }
  281. .uniui-sound-filled[data-v-d31e1c47]:before {
  282. content: "\e686";
  283. }
  284. .uniui-trash[data-v-d31e1c47]:before {
  285. content: "\e687";
  286. }
  287. .uniui-videocam-filled[data-v-d31e1c47]:before {
  288. content: "\e689";
  289. }
  290. .uniui-spinner-cycle[data-v-d31e1c47]:before {
  291. content: "\e68a";
  292. }
  293. .uniui-weibo[data-v-d31e1c47]:before {
  294. content: "\e68b";
  295. }
  296. .uniui-videocam[data-v-d31e1c47]:before {
  297. content: "\e68c";
  298. }
  299. .uniui-download[data-v-d31e1c47]:before {
  300. content: "\e68d";
  301. }
  302. .uniui-help[data-v-d31e1c47]:before {
  303. content: "\e679";
  304. }
  305. .uniui-navigate-filled[data-v-d31e1c47]:before {
  306. content: "\e67a";
  307. }
  308. .uniui-plusempty[data-v-d31e1c47]:before {
  309. content: "\e67b";
  310. }
  311. .uniui-smallcircle[data-v-d31e1c47]:before {
  312. content: "\e67c";
  313. }
  314. .uniui-minus-filled[data-v-d31e1c47]:before {
  315. content: "\e67d";
  316. }
  317. .uniui-micoff[data-v-d31e1c47]:before {
  318. content: "\e67e";
  319. }
  320. .uniui-closeempty[data-v-d31e1c47]:before {
  321. content: "\e66c";
  322. }
  323. .uniui-clear[data-v-d31e1c47]:before {
  324. content: "\e66d";
  325. }
  326. .uniui-navigate[data-v-d31e1c47]:before {
  327. content: "\e66e";
  328. }
  329. .uniui-minus[data-v-d31e1c47]:before {
  330. content: "\e66f";
  331. }
  332. .uniui-image[data-v-d31e1c47]:before {
  333. content: "\e670";
  334. }
  335. .uniui-mic[data-v-d31e1c47]:before {
  336. content: "\e671";
  337. }
  338. .uniui-paperplane[data-v-d31e1c47]:before {
  339. content: "\e672";
  340. }
  341. .uniui-close[data-v-d31e1c47]:before {
  342. content: "\e673";
  343. }
  344. .uniui-help-filled[data-v-d31e1c47]:before {
  345. content: "\e674";
  346. }
  347. .uniui-paperplane-filled[data-v-d31e1c47]:before {
  348. content: "\e675";
  349. }
  350. .uniui-plus[data-v-d31e1c47]:before {
  351. content: "\e676";
  352. }
  353. .uniui-mic-filled[data-v-d31e1c47]:before {
  354. content: "\e677";
  355. }
  356. .uniui-image-filled[data-v-d31e1c47]:before {
  357. content: "\e678";
  358. }
  359. .uniui-locked-filled[data-v-d31e1c47]:before {
  360. content: "\e668";
  361. }
  362. .uniui-info[data-v-d31e1c47]:before {
  363. content: "\e669";
  364. }
  365. .uniui-locked[data-v-d31e1c47]:before {
  366. content: "\e66b";
  367. }
  368. .uniui-camera-filled[data-v-d31e1c47]:before {
  369. content: "\e658";
  370. }
  371. .uniui-chat-filled[data-v-d31e1c47]:before {
  372. content: "\e659";
  373. }
  374. .uniui-camera[data-v-d31e1c47]:before {
  375. content: "\e65a";
  376. }
  377. .uniui-circle[data-v-d31e1c47]:before {
  378. content: "\e65b";
  379. }
  380. .uniui-checkmarkempty[data-v-d31e1c47]:before {
  381. content: "\e65c";
  382. }
  383. .uniui-chat[data-v-d31e1c47]:before {
  384. content: "\e65d";
  385. }
  386. .uniui-circle-filled[data-v-d31e1c47]:before {
  387. content: "\e65e";
  388. }
  389. .uniui-flag[data-v-d31e1c47]:before {
  390. content: "\e65f";
  391. }
  392. .uniui-flag-filled[data-v-d31e1c47]:before {
  393. content: "\e660";
  394. }
  395. .uniui-gear-filled[data-v-d31e1c47]:before {
  396. content: "\e661";
  397. }
  398. .uniui-home[data-v-d31e1c47]:before {
  399. content: "\e662";
  400. }
  401. .uniui-home-filled[data-v-d31e1c47]:before {
  402. content: "\e663";
  403. }
  404. .uniui-gear[data-v-d31e1c47]:before {
  405. content: "\e664";
  406. }
  407. .uniui-smallcircle-filled[data-v-d31e1c47]:before {
  408. content: "\e665";
  409. }
  410. .uniui-map-filled[data-v-d31e1c47]:before {
  411. content: "\e666";
  412. }
  413. .uniui-map[data-v-d31e1c47]:before {
  414. content: "\e667";
  415. }
  416. .uniui-refresh-filled[data-v-d31e1c47]:before {
  417. content: "\e656";
  418. }
  419. .uniui-refresh[data-v-d31e1c47]:before {
  420. content: "\e657";
  421. }
  422. .uniui-cloud-upload[data-v-d31e1c47]:before {
  423. content: "\e645";
  424. }
  425. .uniui-cloud-download-filled[data-v-d31e1c47]:before {
  426. content: "\e646";
  427. }
  428. .uniui-cloud-download[data-v-d31e1c47]:before {
  429. content: "\e647";
  430. }
  431. .uniui-cloud-upload-filled[data-v-d31e1c47]:before {
  432. content: "\e648";
  433. }
  434. .uniui-redo[data-v-d31e1c47]:before {
  435. content: "\e64a";
  436. }
  437. .uniui-images-filled[data-v-d31e1c47]:before {
  438. content: "\e64b";
  439. }
  440. .uniui-undo-filled[data-v-d31e1c47]:before {
  441. content: "\e64c";
  442. }
  443. .uniui-more[data-v-d31e1c47]:before {
  444. content: "\e64d";
  445. }
  446. .uniui-more-filled[data-v-d31e1c47]:before {
  447. content: "\e64e";
  448. }
  449. .uniui-undo[data-v-d31e1c47]:before {
  450. content: "\e64f";
  451. }
  452. .uniui-images[data-v-d31e1c47]:before {
  453. content: "\e650";
  454. }
  455. .uniui-paperclip[data-v-d31e1c47]:before {
  456. content: "\e652";
  457. }
  458. .uniui-settings[data-v-d31e1c47]:before {
  459. content: "\e653";
  460. }
  461. .uniui-search[data-v-d31e1c47]:before {
  462. content: "\e654";
  463. }
  464. .uniui-redo-filled[data-v-d31e1c47]:before {
  465. content: "\e655";
  466. }
  467. .uniui-list[data-v-d31e1c47]:before {
  468. content: "\e644";
  469. }
  470. .uniui-mail-open-filled[data-v-d31e1c47]:before {
  471. content: "\e63a";
  472. }
  473. .uniui-hand-down-filled[data-v-d31e1c47]:before {
  474. content: "\e63c";
  475. }
  476. .uniui-hand-down[data-v-d31e1c47]:before {
  477. content: "\e63d";
  478. }
  479. .uniui-hand-up-filled[data-v-d31e1c47]:before {
  480. content: "\e63e";
  481. }
  482. .uniui-hand-up[data-v-d31e1c47]:before {
  483. content: "\e63f";
  484. }
  485. .uniui-heart-filled[data-v-d31e1c47]:before {
  486. content: "\e641";
  487. }
  488. .uniui-mail-open[data-v-d31e1c47]:before {
  489. content: "\e643";
  490. }
  491. .uniui-heart[data-v-d31e1c47]:before {
  492. content: "\e639";
  493. }
  494. .uniui-loop[data-v-d31e1c47]:before {
  495. content: "\e633";
  496. }
  497. .uniui-pulldown[data-v-d31e1c47]:before {
  498. content: "\e632";
  499. }
  500. .uniui-scan[data-v-d31e1c47]:before {
  501. content: "\e62a";
  502. }
  503. .uniui-bars[data-v-d31e1c47]:before {
  504. content: "\e627";
  505. }
  506. .uniui-cart-filled[data-v-d31e1c47]:before {
  507. content: "\e629";
  508. }
  509. .uniui-checkbox[data-v-d31e1c47]:before {
  510. content: "\e62b";
  511. }
  512. .uniui-checkbox-filled[data-v-d31e1c47]:before {
  513. content: "\e62c";
  514. }
  515. .uniui-shop[data-v-d31e1c47]:before {
  516. content: "\e62f";
  517. }
  518. .uniui-headphones[data-v-d31e1c47]:before {
  519. content: "\e630";
  520. }
  521. .uniui-cart[data-v-d31e1c47]:before {
  522. content: "\e631";
  523. }
  524. @font-face {
  525. font-family: uniicons;
  526. src: url("../../assets/uniicons.89ed7d6d.ttf") format("truetype");
  527. }
  528. .uni-icons[data-v-d31e1c47] {
  529. font-family: uniicons;
  530. text-decoration: none;
  531. text-align: center;
  532. }
  533. /**
  534. * 这里是uni-app内置的常用样式变量
  535. *
  536. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  537. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  538. *
  539. */
  540. /**
  541. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  542. *
  543. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  544. */
  545. /* 颜色变量 */
  546. /* 行为相关颜色 */
  547. /* 文字基本颜色 */
  548. /* 背景颜色 */
  549. /* 边框颜色 */
  550. /* 尺寸变量 */
  551. /* 文字尺寸 */
  552. /* 图片尺寸 */
  553. /* Border Radius */
  554. /* 水平间距 */
  555. /* 垂直间距 */
  556. /* 透明度 */
  557. /* 文章场景相关 */
  558. .uni-easyinput[data-v-09fd5285] {
  559. width: 100%;
  560. flex: 1;
  561. position: relative;
  562. text-align: left;
  563. color: #333;
  564. font-size: 14px;
  565. }
  566. .uni-easyinput__content[data-v-09fd5285] {
  567. flex: 1;
  568. width: 100%;
  569. display: flex;
  570. box-sizing: border-box;
  571. flex-direction: row;
  572. align-items: center;
  573. border-color: #fff;
  574. transition-property: border-color;
  575. transition-duration: 0.3s;
  576. }
  577. .uni-easyinput__content-input[data-v-09fd5285] {
  578. width: auto;
  579. position: relative;
  580. overflow: hidden;
  581. flex: 1;
  582. line-height: 1;
  583. font-size: 20px;
  584. height: 40px;
  585. }
  586. .uni-easyinput__placeholder-class[data-v-09fd5285] {
  587. color: #999;
  588. font-size: 20px;
  589. }
  590. .is-textarea[data-v-09fd5285] {
  591. align-items: flex-start;
  592. }
  593. .is-textarea-icon[data-v-09fd5285] {
  594. margin-top: 5px;
  595. }
  596. .uni-easyinput__content-textarea[data-v-09fd5285] {
  597. position: relative;
  598. overflow: hidden;
  599. flex: 1;
  600. line-height: 1.5;
  601. font-size: 14px;
  602. margin: 6px;
  603. margin-left: 0;
  604. height: 80px;
  605. min-height: 80px;
  606. min-height: 80px;
  607. width: auto;
  608. }
  609. .input-padding[data-v-09fd5285] {
  610. padding-left: 10px;
  611. }
  612. .content-clear-icon[data-v-09fd5285] {
  613. padding: 0 5px;
  614. }
  615. .label-icon[data-v-09fd5285] {
  616. margin-right: 5px;
  617. margin-top: -1px;
  618. }
  619. .is-input-border[data-v-09fd5285] {
  620. display: flex;
  621. box-sizing: border-box;
  622. flex-direction: row;
  623. align-items: center;
  624. border: 1px solid #dcdfe6;
  625. border-radius: 4px;
  626. }
  627. .uni-error-message[data-v-09fd5285] {
  628. position: absolute;
  629. bottom: -17px;
  630. left: 0;
  631. line-height: 12px;
  632. color: #e43d33;
  633. font-size: 12px;
  634. text-align: left;
  635. }
  636. .uni-error-msg--boeder[data-v-09fd5285] {
  637. position: relative;
  638. bottom: 0;
  639. line-height: 22px;
  640. }
  641. .is-input-error-border[data-v-09fd5285] {
  642. border-color: #e43d33;
  643. }
  644. .is-input-error-border .uni-easyinput__placeholder-class[data-v-09fd5285] {
  645. color: #f29e99;
  646. }
  647. .uni-easyinput--border[data-v-09fd5285] {
  648. margin-bottom: 0;
  649. padding: 10px 15px;
  650. border-top: 1px #eee solid;
  651. }
  652. .uni-easyinput-error[data-v-09fd5285] {
  653. padding-bottom: 0;
  654. }
  655. .is-first-border[data-v-09fd5285] {
  656. border: none;
  657. }
  658. .is-disabled[data-v-09fd5285] {
  659. background-color: #f7f6f6;
  660. color: #d5d5d5;
  661. }
  662. .is-disabled .uni-easyinput__placeholder-class[data-v-09fd5285] {
  663. color: #d5d5d5;
  664. font-size: 12px;
  665. }
  666. /**
  667. * 这里是uni-app内置的常用样式变量
  668. *
  669. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  670. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  671. *
  672. */
  673. /**
  674. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  675. *
  676. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  677. */
  678. /* 颜色变量 */
  679. /* 行为相关颜色 */
  680. /* 文字基本颜色 */
  681. /* 背景颜色 */
  682. /* 边框颜色 */
  683. /* 尺寸变量 */
  684. /* 文字尺寸 */
  685. /* 图片尺寸 */
  686. /* Border Radius */
  687. /* 水平间距 */
  688. /* 垂直间距 */
  689. /* 透明度 */
  690. /* 文章场景相关 */
  691. .uni-calendar-item__weeks-box[data-v-3c762a01] {
  692. flex: 1;
  693. display: flex;
  694. flex-direction: column;
  695. justify-content: center;
  696. align-items: center;
  697. margin: 1px 0;
  698. position: relative;
  699. }
  700. .uni-calendar-item__weeks-box-text[data-v-3c762a01] {
  701. font-size: 14px;
  702. font-weight: bold;
  703. color: #001833;
  704. }
  705. .uni-calendar-item__weeks-box-item[data-v-3c762a01] {
  706. position: relative;
  707. display: flex;
  708. flex-direction: column;
  709. justify-content: center;
  710. align-items: center;
  711. width: 40px;
  712. height: 40px;
  713. }
  714. .uni-calendar-item__weeks-box-circle[data-v-3c762a01] {
  715. position: absolute;
  716. top: 5px;
  717. right: 5px;
  718. width: 8px;
  719. height: 8px;
  720. border-radius: 8px;
  721. background-color: #dd524d;
  722. }
  723. .uni-calendar-item__weeks-box .uni-calendar-item--disable[data-v-3c762a01] {
  724. cursor: default;
  725. }
  726. .uni-calendar-item--disable .uni-calendar-item__weeks-box-text-disable[data-v-3c762a01] {
  727. color: #D1D1D1;
  728. }
  729. .uni-calendar-item--today[data-v-3c762a01] {
  730. position: absolute;
  731. top: 10px;
  732. right: 17%;
  733. background-color: #dd524d;
  734. width: 6px;
  735. height: 6px;
  736. border-radius: 50%;
  737. }
  738. .uni-calendar-item--extra[data-v-3c762a01] {
  739. color: #dd524d;
  740. opacity: 0.8;
  741. }
  742. .uni-calendar-item__weeks-box .uni-calendar-item--checked[data-v-3c762a01] {
  743. background-color: #007aff;
  744. border-radius: 50%;
  745. box-sizing: border-box;
  746. border: 3px solid #fff;
  747. }
  748. .uni-calendar-item--checked .uni-calendar-item--checked-text[data-v-3c762a01] {
  749. color: #fff;
  750. }
  751. .uni-calendar-item--multiple .uni-calendar-item--checked-range-text[data-v-3c762a01] {
  752. color: #333;
  753. }
  754. .uni-calendar-item--multiple[data-v-3c762a01] {
  755. background-color: #F6F7FC;
  756. }
  757. .uni-calendar-item--multiple .uni-calendar-item--before-checked[data-v-3c762a01],
  758. .uni-calendar-item--multiple .uni-calendar-item--after-checked[data-v-3c762a01] {
  759. background-color: #007aff;
  760. border-radius: 50%;
  761. box-sizing: border-box;
  762. border: 3px solid #F6F7FC;
  763. }
  764. .uni-calendar-item--before-checked .uni-calendar-item--checked-text[data-v-3c762a01],
  765. .uni-calendar-item--after-checked .uni-calendar-item--checked-text[data-v-3c762a01] {
  766. color: #fff;
  767. }
  768. .uni-calendar-item--before-checked-x[data-v-3c762a01] {
  769. border-top-left-radius: 50px;
  770. border-bottom-left-radius: 50px;
  771. box-sizing: border-box;
  772. background-color: #F6F7FC;
  773. }
  774. .uni-calendar-item--after-checked-x[data-v-3c762a01] {
  775. border-top-right-radius: 50px;
  776. border-bottom-right-radius: 50px;
  777. background-color: #F6F7FC;
  778. }
  779. /**
  780. * 这里是uni-app内置的常用样式变量
  781. *
  782. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  783. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  784. *
  785. */
  786. /**
  787. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  788. *
  789. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  790. */
  791. /* 颜色变量 */
  792. /* 行为相关颜色 */
  793. /* 文字基本颜色 */
  794. /* 背景颜色 */
  795. /* 边框颜色 */
  796. /* 尺寸变量 */
  797. /* 文字尺寸 */
  798. /* 图片尺寸 */
  799. /* Border Radius */
  800. /* 水平间距 */
  801. /* 垂直间距 */
  802. /* 透明度 */
  803. /* 文章场景相关 */
  804. .uni-datetime-picker[data-v-1d532b70] {
  805. /* width: 100%; */
  806. }
  807. .uni-datetime-picker-view[data-v-1d532b70] {
  808. height: 130px;
  809. width: 270px;
  810. cursor: pointer;
  811. }
  812. .uni-datetime-picker-item[data-v-1d532b70] {
  813. height: 50px;
  814. line-height: 50px;
  815. text-align: center;
  816. font-size: 14px;
  817. }
  818. .uni-datetime-picker-btn[data-v-1d532b70] {
  819. margin-top: 60px;
  820. display: flex;
  821. cursor: pointer;
  822. flex-direction: row;
  823. justify-content: space-between;
  824. }
  825. .uni-datetime-picker-btn-text[data-v-1d532b70] {
  826. font-size: 14px;
  827. color: #007aff;
  828. }
  829. .uni-datetime-picker-btn-group[data-v-1d532b70] {
  830. display: flex;
  831. flex-direction: row;
  832. }
  833. .uni-datetime-picker-cancel[data-v-1d532b70] {
  834. margin-right: 30px;
  835. }
  836. .uni-datetime-picker-mask[data-v-1d532b70] {
  837. position: fixed;
  838. bottom: 0px;
  839. top: 0px;
  840. left: 0px;
  841. right: 0px;
  842. background-color: rgba(0, 0, 0, 0.4);
  843. transition-duration: 0.3s;
  844. z-index: 998;
  845. }
  846. .uni-datetime-picker-popup[data-v-1d532b70] {
  847. border-radius: 8px;
  848. padding: 30px;
  849. width: 270px;
  850. background-color: #fff;
  851. position: fixed;
  852. top: 50%;
  853. left: 50%;
  854. transform: translate(-50%, -50%);
  855. transition-duration: 0.3s;
  856. z-index: 999;
  857. }
  858. .uni-datetime-picker-time[data-v-1d532b70] {
  859. color: grey;
  860. }
  861. .uni-datetime-picker-column[data-v-1d532b70] {
  862. height: 50px;
  863. }
  864. .uni-datetime-picker-timebox[data-v-1d532b70] {
  865. border: 1px solid #E5E5E5;
  866. border-radius: 5px;
  867. padding: 7px 10px;
  868. box-sizing: border-box;
  869. cursor: pointer;
  870. }
  871. .uni-datetime-picker-timebox-pointer[data-v-1d532b70] {
  872. cursor: pointer;
  873. }
  874. .uni-datetime-picker-disabled[data-v-1d532b70] {
  875. opacity: 0.4;
  876. }
  877. .uni-datetime-picker-text[data-v-1d532b70] {
  878. font-size: 14px;
  879. line-height: 50px;
  880. }
  881. .uni-datetime-picker-sign[data-v-1d532b70] {
  882. position: absolute;
  883. top: 53px;
  884. /* 减掉 10px 的元素高度,兼容nvue */
  885. color: #999;
  886. }
  887. .sign-left[data-v-1d532b70] {
  888. left: 86px;
  889. }
  890. .sign-right[data-v-1d532b70] {
  891. right: 86px;
  892. }
  893. .sign-center[data-v-1d532b70] {
  894. left: 135px;
  895. }
  896. .uni-datetime-picker__container-box[data-v-1d532b70] {
  897. position: relative;
  898. display: flex;
  899. align-items: center;
  900. justify-content: center;
  901. margin-top: 40px;
  902. }
  903. .time-hide-second[data-v-1d532b70] {
  904. width: 180px;
  905. }
  906. /**
  907. * 这里是uni-app内置的常用样式变量
  908. *
  909. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  910. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  911. *
  912. */
  913. /**
  914. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  915. *
  916. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  917. */
  918. /* 颜色变量 */
  919. /* 行为相关颜色 */
  920. /* 文字基本颜色 */
  921. /* 背景颜色 */
  922. /* 边框颜色 */
  923. /* 尺寸变量 */
  924. /* 文字尺寸 */
  925. /* 图片尺寸 */
  926. /* Border Radius */
  927. /* 水平间距 */
  928. /* 垂直间距 */
  929. /* 透明度 */
  930. /* 文章场景相关 */
  931. .uni-calendar[data-v-1d379219] {
  932. display: flex;
  933. display: flex;
  934. z-index: 999;
  935. flex-direction: column;
  936. }
  937. .uni-calendar__mask[data-v-1d379219] {
  938. position: fixed;
  939. bottom: 0;
  940. top: 0;
  941. left: 0;
  942. right: 0;
  943. background-color: rgba(0, 0, 0, 0.4);
  944. transition-property: opacity;
  945. transition-duration: 0.3s;
  946. opacity: 0;
  947. z-index: 99;
  948. }
  949. .uni-calendar--mask-show[data-v-1d379219] {
  950. opacity: 1;
  951. }
  952. .uni-calendar--fixed[data-v-1d379219] {
  953. position: fixed;
  954. bottom: calc(var(--window-bottom));
  955. left: 0;
  956. right: 0;
  957. transition-property: transform;
  958. transition-duration: 0.3s;
  959. transform: translateY(460px);
  960. z-index: 99;
  961. }
  962. .uni-calendar--ani-show[data-v-1d379219] {
  963. transform: translateY(0);
  964. }
  965. .uni-calendar__content[data-v-1d379219] {
  966. background-color: #fff;
  967. }
  968. .uni-calendar__content-mobile[data-v-1d379219] {
  969. border-top-left-radius: 10px;
  970. border-top-right-radius: 10px;
  971. box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.1);
  972. }
  973. .uni-calendar__header[data-v-1d379219] {
  974. position: relative;
  975. display: flex;
  976. flex-direction: row;
  977. justify-content: center;
  978. align-items: center;
  979. height: 50px;
  980. }
  981. .uni-calendar__header-mobile[data-v-1d379219] {
  982. padding: 10px;
  983. padding-bottom: 0;
  984. }
  985. .uni-calendar--fixed-top[data-v-1d379219] {
  986. display: flex;
  987. flex-direction: row;
  988. justify-content: space-between;
  989. border-top-color: rgba(0, 0, 0, 0.4);
  990. border-top-style: solid;
  991. border-top-width: 1px;
  992. }
  993. .uni-calendar--fixed-width[data-v-1d379219] {
  994. width: 50px;
  995. }
  996. .uni-calendar__backtoday[data-v-1d379219] {
  997. position: absolute;
  998. right: 0;
  999. top: 0.78125rem;
  1000. padding: 0 5px;
  1001. padding-left: 10px;
  1002. height: 25px;
  1003. line-height: 25px;
  1004. font-size: 12px;
  1005. border-top-left-radius: 25px;
  1006. border-bottom-left-radius: 25px;
  1007. color: #fff;
  1008. background-color: #f1f1f1;
  1009. }
  1010. .uni-calendar__header-text[data-v-1d379219] {
  1011. text-align: center;
  1012. width: 100px;
  1013. font-size: 15px;
  1014. color: #666;
  1015. }
  1016. .uni-calendar__button-text[data-v-1d379219] {
  1017. text-align: center;
  1018. width: 100px;
  1019. font-size: 14px;
  1020. color: #007aff;
  1021. letter-spacing: 3px;
  1022. }
  1023. .uni-calendar__header-btn-box[data-v-1d379219] {
  1024. display: flex;
  1025. flex-direction: row;
  1026. align-items: center;
  1027. justify-content: center;
  1028. width: 50px;
  1029. height: 50px;
  1030. }
  1031. .uni-calendar__header-btn[data-v-1d379219] {
  1032. width: 9px;
  1033. height: 9px;
  1034. border-left-color: #808080;
  1035. border-left-style: solid;
  1036. border-left-width: 1px;
  1037. border-top-color: #555555;
  1038. border-top-style: solid;
  1039. border-top-width: 1px;
  1040. }
  1041. .uni-calendar--left[data-v-1d379219] {
  1042. transform: rotate(-45deg);
  1043. }
  1044. .uni-calendar--right[data-v-1d379219] {
  1045. transform: rotate(135deg);
  1046. }
  1047. .uni-calendar__weeks[data-v-1d379219] {
  1048. position: relative;
  1049. display: flex;
  1050. flex-direction: row;
  1051. }
  1052. .uni-calendar__weeks-item[data-v-1d379219] {
  1053. flex: 1;
  1054. }
  1055. .uni-calendar__weeks-day[data-v-1d379219] {
  1056. flex: 1;
  1057. display: flex;
  1058. flex-direction: column;
  1059. justify-content: center;
  1060. align-items: center;
  1061. height: 40px;
  1062. border-bottom-color: #F5F5F5;
  1063. border-bottom-style: solid;
  1064. border-bottom-width: 1px;
  1065. }
  1066. .uni-calendar__weeks-day-text[data-v-1d379219] {
  1067. font-size: 12px;
  1068. color: #B2B2B2;
  1069. }
  1070. .uni-calendar__box[data-v-1d379219] {
  1071. position: relative;
  1072. padding-bottom: 7px;
  1073. }
  1074. .uni-calendar__box-bg[data-v-1d379219] {
  1075. display: flex;
  1076. justify-content: center;
  1077. align-items: center;
  1078. position: absolute;
  1079. top: 0;
  1080. left: 0;
  1081. right: 0;
  1082. bottom: 0;
  1083. }
  1084. .uni-calendar__box-bg-text[data-v-1d379219] {
  1085. font-size: 200px;
  1086. font-weight: bold;
  1087. color: #999;
  1088. opacity: 0.1;
  1089. text-align: center;
  1090. line-height: 1;
  1091. }
  1092. .uni-date-changed[data-v-1d379219] {
  1093. padding: 0 10px;
  1094. text-align: center;
  1095. color: #333;
  1096. border-top-color: #DCDCDC;
  1097. border-top-style: solid;
  1098. border-top-width: 1px;
  1099. flex: 1;
  1100. }
  1101. .uni-date-btn--ok[data-v-1d379219] {
  1102. padding: 20px 15px;
  1103. }
  1104. .uni-date-changed--time-start[data-v-1d379219] {
  1105. display: flex;
  1106. align-items: center;
  1107. }
  1108. .uni-date-changed--time-end[data-v-1d379219] {
  1109. display: flex;
  1110. align-items: center;
  1111. }
  1112. .uni-date-changed--time-date[data-v-1d379219] {
  1113. color: #999;
  1114. line-height: 50px;
  1115. margin-right: 5px;
  1116. }
  1117. .time-picker-style[data-v-1d379219] {
  1118. display: flex;
  1119. justify-content: center;
  1120. align-items: center;
  1121. }
  1122. .mr-10[data-v-1d379219] {
  1123. margin-right: 10px;
  1124. }
  1125. .dialog-close[data-v-1d379219] {
  1126. position: absolute;
  1127. top: 0;
  1128. right: 0;
  1129. bottom: 0;
  1130. display: flex;
  1131. flex-direction: row;
  1132. align-items: center;
  1133. padding: 0 25px;
  1134. margin-top: 10px;
  1135. }
  1136. .dialog-close-plus[data-v-1d379219] {
  1137. width: 16px;
  1138. height: 2px;
  1139. background-color: #737987;
  1140. border-radius: 2px;
  1141. transform: rotate(45deg);
  1142. }
  1143. .dialog-close-rotate[data-v-1d379219] {
  1144. position: absolute;
  1145. transform: rotate(-45deg);
  1146. }
  1147. .uni-datetime-picker--btn[data-v-1d379219] {
  1148. border-radius: 100px;
  1149. height: 40px;
  1150. line-height: 40px;
  1151. background-color: #007aff;
  1152. color: #fff;
  1153. font-size: 16px;
  1154. letter-spacing: 2px;
  1155. }
  1156. .uni-datetime-picker--btn[data-v-1d379219]:active {
  1157. opacity: 0.7;
  1158. }
  1159. /**
  1160. * 这里是uni-app内置的常用样式变量
  1161. *
  1162. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1163. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1164. *
  1165. */
  1166. /**
  1167. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1168. *
  1169. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1170. */
  1171. /* 颜色变量 */
  1172. /* 行为相关颜色 */
  1173. /* 文字基本颜色 */
  1174. /* 背景颜色 */
  1175. /* 边框颜色 */
  1176. /* 尺寸变量 */
  1177. /* 文字尺寸 */
  1178. /* 图片尺寸 */
  1179. /* Border Radius */
  1180. /* 水平间距 */
  1181. /* 垂直间距 */
  1182. /* 透明度 */
  1183. /* 文章场景相关 */
  1184. .uni-date[data-v-9802168a] {
  1185. width: 100%;
  1186. flex: 1;
  1187. }
  1188. .uni-date-x[data-v-9802168a] {
  1189. display: flex;
  1190. flex-direction: row;
  1191. align-items: center;
  1192. justify-content: center;
  1193. border-radius: 4px;
  1194. background-color: #fff;
  1195. color: #666;
  1196. font-size: 20px;
  1197. flex: 1;
  1198. }
  1199. .uni-date-x .icon-calendar[data-v-9802168a] {
  1200. padding-left: 3px;
  1201. }
  1202. .uni-date-x .range-separator[data-v-9802168a] {
  1203. height: 35px;
  1204. padding: 0 2px;
  1205. line-height: 35px;
  1206. }
  1207. .uni-date-x--border[data-v-9802168a] {
  1208. box-sizing: border-box;
  1209. border-radius: 4px;
  1210. border: 1px solid #e5e5e5;
  1211. }
  1212. .uni-date-editor--x[data-v-9802168a] {
  1213. display: flex;
  1214. align-items: center;
  1215. position: relative;
  1216. }
  1217. .uni-date-editor--x .uni-date__icon-clear[data-v-9802168a] {
  1218. padding-right: 3px;
  1219. display: flex;
  1220. align-items: center;
  1221. }
  1222. .uni-date__x-input[data-v-9802168a] {
  1223. width: auto;
  1224. height: 35px;
  1225. padding-left: 5px;
  1226. position: relative;
  1227. flex: 1;
  1228. line-height: 35px;
  1229. font-size: 20px;
  1230. overflow: hidden;
  1231. }
  1232. .text-center[data-v-9802168a] {
  1233. text-align: center;
  1234. }
  1235. .uni-date__input[data-v-9802168a] {
  1236. height: 40px;
  1237. width: 100%;
  1238. line-height: 40px;
  1239. font-size: 20px;
  1240. }
  1241. .uni-date-range__input[data-v-9802168a] {
  1242. text-align: center;
  1243. max-width: 142px;
  1244. }
  1245. .uni-date-picker__container[data-v-9802168a] {
  1246. position: relative;
  1247. }
  1248. .uni-date-mask--pc[data-v-9802168a] {
  1249. position: fixed;
  1250. bottom: 0px;
  1251. top: 0px;
  1252. left: 0px;
  1253. right: 0px;
  1254. background-color: rgba(0, 0, 0, 0);
  1255. transition-duration: 0.3s;
  1256. z-index: 996;
  1257. }
  1258. .uni-date-single--x[data-v-9802168a] {
  1259. background-color: #fff;
  1260. position: absolute;
  1261. top: 0;
  1262. z-index: 999;
  1263. border: 1px solid #EBEEF5;
  1264. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  1265. border-radius: 4px;
  1266. }
  1267. .uni-date-range--x[data-v-9802168a] {
  1268. background-color: #fff;
  1269. position: absolute;
  1270. top: 0;
  1271. z-index: 999;
  1272. border: 1px solid #EBEEF5;
  1273. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  1274. border-radius: 4px;
  1275. }
  1276. .uni-date-editor--x__disabled[data-v-9802168a] {
  1277. opacity: 0.4;
  1278. cursor: default;
  1279. }
  1280. .uni-date-editor--logo[data-v-9802168a] {
  1281. width: 16px;
  1282. height: 16px;
  1283. vertical-align: middle;
  1284. }
  1285. /* 添加时间 */
  1286. .popup-x-header[data-v-9802168a] {
  1287. display: flex;
  1288. flex-direction: row;
  1289. }
  1290. .popup-x-header--datetime[data-v-9802168a] {
  1291. display: flex;
  1292. flex-direction: row;
  1293. flex: 1;
  1294. }
  1295. .popup-x-body[data-v-9802168a] {
  1296. display: flex;
  1297. }
  1298. .popup-x-footer[data-v-9802168a] {
  1299. padding: 0 15px;
  1300. border-top-color: #F1F1F1;
  1301. border-top-style: solid;
  1302. border-top-width: 1px;
  1303. line-height: 40px;
  1304. text-align: right;
  1305. color: #666;
  1306. }
  1307. .popup-x-footer uni-text[data-v-9802168a]:hover {
  1308. color: #007aff;
  1309. cursor: pointer;
  1310. opacity: 0.8;
  1311. }
  1312. .popup-x-footer .confirm-text[data-v-9802168a] {
  1313. margin-left: 20px;
  1314. color: #007aff;
  1315. }
  1316. .uni-date-changed[data-v-9802168a] {
  1317. text-align: center;
  1318. color: #333;
  1319. border-bottom-color: #F1F1F1;
  1320. border-bottom-style: solid;
  1321. border-bottom-width: 1px;
  1322. }
  1323. .uni-date-changed--time uni-text[data-v-9802168a] {
  1324. height: 50px;
  1325. line-height: 50px;
  1326. }
  1327. .uni-date-changed .uni-date-changed--time[data-v-9802168a] {
  1328. flex: 1;
  1329. }
  1330. .uni-date-changed--time-date[data-v-9802168a] {
  1331. color: #333;
  1332. opacity: 0.6;
  1333. }
  1334. .mr-50[data-v-9802168a] {
  1335. margin-right: 50px;
  1336. }
  1337. /* picker 弹出层通用的指示小三角, todo:扩展至上下左右方向定位 */
  1338. .uni-popper__arrow[data-v-9802168a],
  1339. .uni-popper__arrow[data-v-9802168a]::after {
  1340. position: absolute;
  1341. display: block;
  1342. width: 0;
  1343. height: 0;
  1344. border: 6px solid transparent;
  1345. border-top-width: 0;
  1346. }
  1347. .uni-popper__arrow[data-v-9802168a] {
  1348. filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.03));
  1349. top: -6px;
  1350. left: 10%;
  1351. margin-right: 3px;
  1352. border-bottom-color: #EBEEF5;
  1353. }
  1354. .uni-popper__arrow[data-v-9802168a]::after {
  1355. content: " ";
  1356. top: 1px;
  1357. margin-left: -6px;
  1358. border-bottom-color: #fff;
  1359. }
  1360. /**
  1361. * 这里是uni-app内置的常用样式变量
  1362. *
  1363. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1364. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1365. *
  1366. */
  1367. /**
  1368. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1369. *
  1370. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1371. */
  1372. /* 颜色变量 */
  1373. /* 行为相关颜色 */
  1374. /* 文字基本颜色 */
  1375. /* 背景颜色 */
  1376. /* 边框颜色 */
  1377. /* 尺寸变量 */
  1378. /* 文字尺寸 */
  1379. /* 图片尺寸 */
  1380. /* Border Radius */
  1381. /* 水平间距 */
  1382. /* 垂直间距 */
  1383. /* 透明度 */
  1384. /* 文章场景相关 */
  1385. .uni-tag[data-v-1f94d070] {
  1386. line-height: 14px;
  1387. font-size: 12px;
  1388. font-weight: 200;
  1389. padding: 4px 7px;
  1390. color: #fff;
  1391. border-radius: 3px;
  1392. background-color: #18C7B0;
  1393. border-width: 0.03125rem;
  1394. border-style: solid;
  1395. border-color: #18C7B0;
  1396. }
  1397. .uni-tag--default[data-v-1f94d070] {
  1398. font-size: 12px;
  1399. }
  1400. .uni-tag--default--inverted[data-v-1f94d070] {
  1401. color: #18C7B0;
  1402. border-color: #18C7B0;
  1403. }
  1404. .uni-tag--small[data-v-1f94d070] {
  1405. padding: 2px 5px;
  1406. font-size: 12px;
  1407. border-radius: 2px;
  1408. }
  1409. .uni-tag--mini[data-v-1f94d070] {
  1410. padding: 1px 3px;
  1411. font-size: 12px;
  1412. border-radius: 2px;
  1413. }
  1414. .uni-tag--primary[data-v-1f94d070] {
  1415. background-color: #2979ff;
  1416. border-color: #2979ff;
  1417. color: #fff;
  1418. }
  1419. .uni-tag--success[data-v-1f94d070] {
  1420. color: #fff;
  1421. background-color: #18bc37;
  1422. border-color: #18bc37;
  1423. }
  1424. .uni-tag--warning[data-v-1f94d070] {
  1425. color: #fff;
  1426. background-color: #f3a73f;
  1427. border-color: #f3a73f;
  1428. }
  1429. .uni-tag--error[data-v-1f94d070] {
  1430. color: #fff;
  1431. background-color: #e43d33;
  1432. border-color: #e43d33;
  1433. }
  1434. .uni-tag--primary--inverted[data-v-1f94d070] {
  1435. color: #2979ff;
  1436. border-color: #2979ff;
  1437. }
  1438. .uni-tag--success--inverted[data-v-1f94d070] {
  1439. color: #18bc37;
  1440. border-color: #18bc37;
  1441. }
  1442. .uni-tag--warning--inverted[data-v-1f94d070] {
  1443. color: #f3a73f;
  1444. border-color: #f3a73f;
  1445. }
  1446. .uni-tag--error--inverted[data-v-1f94d070] {
  1447. color: #e43d33;
  1448. border-color: #e43d33;
  1449. }
  1450. .uni-tag--inverted[data-v-1f94d070] {
  1451. background-color: #fff;
  1452. }
  1453. .uni-tag--circle[data-v-1f94d070] {
  1454. border-radius: 15px !important;
  1455. }
  1456. .uni-tag--mark[data-v-1f94d070] {
  1457. border-top-left-radius: 0 !important;
  1458. border-bottom-left-radius: 0 !important;
  1459. border-top-right-radius: 15px !important;
  1460. border-bottom-right-radius: 15px !important;
  1461. }
  1462. .uni-tag--disabled[data-v-1f94d070] {
  1463. opacity: 0.5;
  1464. }
  1465. .uni-tag-text[data-v-1f94d070] {
  1466. color: #fff;
  1467. font-size: 14px;
  1468. }
  1469. .uni-tag-text--primary[data-v-1f94d070] {
  1470. color: #2979ff;
  1471. }
  1472. .uni-tag-text--success[data-v-1f94d070] {
  1473. color: #18bc37;
  1474. }
  1475. .uni-tag-text--warning[data-v-1f94d070] {
  1476. color: #f3a73f;
  1477. }
  1478. .uni-tag-text--error[data-v-1f94d070] {
  1479. color: #e43d33;
  1480. }
  1481. .uni-tag-text--small[data-v-1f94d070] {
  1482. font-size: 12px;
  1483. }
  1484. /**
  1485. * 这里是uni-app内置的常用样式变量
  1486. *
  1487. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1488. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1489. *
  1490. */
  1491. /**
  1492. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1493. *
  1494. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1495. */
  1496. /* 颜色变量 */
  1497. /* 行为相关颜色 */
  1498. /* 文字基本颜色 */
  1499. /* 背景颜色 */
  1500. /* 边框颜色 */
  1501. /* 尺寸变量 */
  1502. /* 文字尺寸 */
  1503. /* 图片尺寸 */
  1504. /* Border Radius */
  1505. /* 水平间距 */
  1506. /* 垂直间距 */
  1507. /* 透明度 */
  1508. /* 文章场景相关 */
  1509. .nav[data-v-e9345f2e] {
  1510. display: flex;
  1511. justify-content: space-between;
  1512. align-items: flex-end;
  1513. width: 23.4375rem;
  1514. background-color: #18C7B0;
  1515. padding-bottom: 0.625rem;
  1516. }
  1517. .nav .navbar[data-v-e9345f2e] {
  1518. width: 23.4375rem;
  1519. display: flex;
  1520. align-items: center;
  1521. justify-content: space-between;
  1522. }
  1523. .nav .navbar .scanbara[data-v-e9345f2e] {
  1524. display: flex;
  1525. width: 2.84375rem;
  1526. height: 1.025rem;
  1527. font-size: 0.46875rem;
  1528. color: #18C7B0;
  1529. margin-left: 0.62813rem;
  1530. }
  1531. .nav .navbar .status[data-v-e9345f2e] {
  1532. font-size: 0.58594rem;
  1533. color: #fff;
  1534. margin-right: 3.45219rem;
  1535. }
  1536. .nav .navbar .userinfo[data-v-e9345f2e] {
  1537. display: flex;
  1538. justify-content: space-between;
  1539. align-items: center;
  1540. margin-right: 0.69344rem;
  1541. }
  1542. .nav .navbar .userinfo .lef[data-v-e9345f2e] {
  1543. height: 1.05469rem;
  1544. width: 2.84375rem;
  1545. margin-right: 0.54688rem;
  1546. font-size: 0.46875rem;
  1547. color: #18C7B0;
  1548. }
  1549. .nav .navbar .userinfo .mid[data-v-e9345f2e] {
  1550. height: 1.36719rem;
  1551. width: 1.36719rem;
  1552. margin-right: 0.18563rem;
  1553. border-radius: 50%;
  1554. }
  1555. .nav .navbar .userinfo .rig[data-v-e9345f2e] {
  1556. display: flex;
  1557. flex-direction: column;
  1558. align-items: center;
  1559. }
  1560. .nav .navbar .userinfo .rig .name[data-v-e9345f2e] {
  1561. font-size: 0.54688rem;
  1562. color: #fff;
  1563. text-align: center;
  1564. }
  1565. .nav .navbar .userinfo .rig .logout[data-v-e9345f2e] {
  1566. background-color: #18C7B0;
  1567. font-size: 0.46875rem;
  1568. color: #fff;
  1569. border: 1px solid #18C7B0;
  1570. display: flex;
  1571. align-items: center;
  1572. justify-content: center;
  1573. }
  1574. /**
  1575. * 这里是uni-app内置的常用样式变量
  1576. *
  1577. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1578. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1579. *
  1580. */
  1581. /**
  1582. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1583. *
  1584. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1585. */
  1586. /* 颜色变量 */
  1587. /* 行为相关颜色 */
  1588. /* 文字基本颜色 */
  1589. /* 背景颜色 */
  1590. /* 边框颜色 */
  1591. /* 尺寸变量 */
  1592. /* 文字尺寸 */
  1593. /* 图片尺寸 */
  1594. /* Border Radius */
  1595. /* 水平间距 */
  1596. /* 垂直间距 */
  1597. /* 透明度 */
  1598. /* 文章场景相关 */
  1599. .container[data-v-1ab9fcf6] {
  1600. display: flex;
  1601. width: 100%;
  1602. display: flex;
  1603. flex-direction: column;
  1604. width: 100%;
  1605. margin-top: 0.3125rem;
  1606. }
  1607. .container .t[data-v-1ab9fcf6] {
  1608. display: flex;
  1609. background-color: #EBF8F7;
  1610. height: 1.05469rem;
  1611. width: 22.16813rem;
  1612. font-size: 0.42969rem;
  1613. color: #999999;
  1614. justify-content: flex-start;
  1615. align-items: center;
  1616. }
  1617. .container .t .d1[data-v-1ab9fcf6]::before {
  1618. content: "";
  1619. display: inline-block;
  1620. width: 20px;
  1621. height: 20px;
  1622. background: "#18C7B0";
  1623. }
  1624. .container .t .d2[data-v-1ab9fcf6] {
  1625. margin-left: 0.5rem;
  1626. }
  1627. .container .t .d3[data-v-1ab9fcf6] {
  1628. margin-left: 6.25rem;
  1629. }
  1630. .container .t .d4[data-v-1ab9fcf6] {
  1631. margin-left: auto;
  1632. }
  1633. .container .t .d4 .source[data-v-1ab9fcf6] {
  1634. display: flex;
  1635. align-items: center;
  1636. justify-content: center;
  1637. border-radius: 0.78125rem 0 0 0.78125rem;
  1638. font-size: 0.42969rem;
  1639. width: 1.5625rem;
  1640. height: 0.66406rem;
  1641. background-color: #18C7B0;
  1642. color: #fff;
  1643. }
  1644. .container .t .d4 .zy[data-v-1ab9fcf6] {
  1645. background-color: #82ABE1 !important;
  1646. }
  1647. .container .m[data-v-1ab9fcf6] {
  1648. display: flex;
  1649. align-items: center;
  1650. justify-content: flex-start;
  1651. margin: 0.37125rem 0.78125rem 0.58594rem;
  1652. }
  1653. .container .m .faceu[data-v-1ab9fcf6] {
  1654. width: 2.28531rem;
  1655. height: 2.28531rem;
  1656. margin-right: 0.3125rem;
  1657. }
  1658. .container .m .patie[data-v-1ab9fcf6] {
  1659. display: flex;
  1660. flex-direction: column;
  1661. justify-content: flex-start;
  1662. align-items: flex-start;
  1663. height: 2.28531rem;
  1664. width: 8.4375rem;
  1665. }
  1666. .container .m .patie .name[data-v-1ab9fcf6] {
  1667. font-size: 0.54688rem;
  1668. color: #333333;
  1669. display: flex;
  1670. align-items: center;
  1671. justify-content: flex-start;
  1672. }
  1673. .container .m .patie .seage[data-v-1ab9fcf6] {
  1674. display: flex;
  1675. margin-top: 0.25rem;
  1676. }
  1677. .container .m .patie .seage .img[data-v-1ab9fcf6] {
  1678. height: 0.46875rem;
  1679. width: 0.46875rem;
  1680. }
  1681. .container .m .patie .seage .sex[data-v-1ab9fcf6] {
  1682. font-size: 0.375rem;
  1683. color: #999999;
  1684. padding-right: 0.27344rem;
  1685. }
  1686. .container .m .patie .seage .sep[data-v-1ab9fcf6] {
  1687. font-size: 0.3125rem;
  1688. color: #999999;
  1689. }
  1690. .container .m .patie .seage .age[data-v-1ab9fcf6] {
  1691. font-size: 0.375rem;
  1692. color: #999999;
  1693. padding-left: 0.27344rem;
  1694. }
  1695. .container .m .patie .case[data-v-1ab9fcf6] {
  1696. margin-top: 0.09375rem;
  1697. font-size: 0.46875rem;
  1698. color: #333333;
  1699. }
  1700. .container .m .pres[data-v-1ab9fcf6] {
  1701. display: flex;
  1702. flex-direction: column;
  1703. justify-content: flex-start;
  1704. align-items: flex-start;
  1705. margin-left: 0.125rem;
  1706. height: 2.28531rem;
  1707. }
  1708. .container .m .pres .department[data-v-1ab9fcf6] {
  1709. margin-top: 0.15625rem;
  1710. font-size: 0.46875rem;
  1711. color: #999999;
  1712. }
  1713. .container .m .pres .presInfo[data-v-1ab9fcf6] {
  1714. margin-top: 0.3125rem;
  1715. font-size: 0.46875rem;
  1716. color: #333333;
  1717. }
  1718. .container .b[data-v-1ab9fcf6] {
  1719. display: flex;
  1720. flex-direction: row;
  1721. justify-content: space-between;
  1722. align-items: center;
  1723. height: 1.05469rem;
  1724. width: 22.16813rem;
  1725. color: #999999;
  1726. padding: 0.3125rem 1.52438rem;
  1727. margin-bottom: 0.3125rem;
  1728. }
  1729. .container .b .zt[data-v-1ab9fcf6] {
  1730. display: flex;
  1731. width: 6.25rem;
  1732. font-size: 0.42969rem;
  1733. }
  1734. .container .b .je[data-v-1ab9fcf6] {
  1735. display: flex;
  1736. width: 6.25rem;
  1737. font-size: 0.46875rem;
  1738. }
  1739. /**
  1740. * 这里是uni-app内置的常用样式变量
  1741. *
  1742. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1743. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1744. *
  1745. */
  1746. /**
  1747. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1748. *
  1749. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1750. */
  1751. /* 颜色变量 */
  1752. /* 行为相关颜色 */
  1753. /* 文字基本颜色 */
  1754. /* 背景颜色 */
  1755. /* 边框颜色 */
  1756. /* 尺寸变量 */
  1757. /* 文字尺寸 */
  1758. /* 图片尺寸 */
  1759. /* Border Radius */
  1760. /* 水平间距 */
  1761. /* 垂直间距 */
  1762. /* 透明度 */
  1763. /* 文章场景相关 */
  1764. .main {
  1765. display: flex;
  1766. flex-direction: column;
  1767. justify-content: flex-start;
  1768. width: 23.4375rem;
  1769. }
  1770. .main .nav {
  1771. display: flex;
  1772. height: 2.32313rem;
  1773. width: 23.4375rem;
  1774. }
  1775. .main .body {
  1776. display: flex;
  1777. height: calc(100% - 2.32313rem);
  1778. flex-direction: column;
  1779. justify-content: flex-start;
  1780. }
  1781. .main .body .tab-box {
  1782. display: flex;
  1783. position: -webkit-sticky;
  1784. position: sticky;
  1785. flex-direction: column;
  1786. z-index: 100;
  1787. }
  1788. .main .body .tab-box .tab-bar {
  1789. height: 1.95313rem;
  1790. display: flex;
  1791. justify-content: center;
  1792. width: 100%;
  1793. }
  1794. .main .body .tab-box .tab-bar .tab_item {
  1795. display: flex;
  1796. flex: 1;
  1797. justify-content: center;
  1798. align-items: center;
  1799. font-size: 0.54688rem;
  1800. background-color: #fff;
  1801. color: #000;
  1802. }
  1803. .main .body .tab-box .tab-bar .active {
  1804. border-bottom: 0.15625rem solid #18C7B0;
  1805. }
  1806. .main .body .tab-box .search-bar {
  1807. display: flex;
  1808. background-color: #fff;
  1809. border-radius: 0.125rem;
  1810. }
  1811. .main .body .tab-box .search-bar .today {
  1812. display: flex;
  1813. flex-direction: row;
  1814. justify-content: flex-start;
  1815. }
  1816. .main .body .tab-box .search-bar .today .search {
  1817. width: 14.17969rem;
  1818. margin: 0.42969rem 0.31563rem;
  1819. }
  1820. .main .body .tab-box .search-bar .today .search .uni-easyinput__placeholder-class {
  1821. font-size: 0.46875rem;
  1822. }
  1823. .main .body .tab-box .search-bar .today .search-button {
  1824. width: 3.51563rem;
  1825. margin: 0.42969rem 0.125rem;
  1826. font-size: 0.46875rem;
  1827. background-color: #18C7B0;
  1828. }
  1829. .main .body .tab-box .search-bar .today .refresh {
  1830. display: flex;
  1831. justify-content: center;
  1832. align-items: center;
  1833. width: 3.75rem;
  1834. margin: 13.75px 0.69344rem;
  1835. font-size: 0.46875rem;
  1836. background-color: #18C7B0;
  1837. }
  1838. .main .body .tab-box .search-bar .today .active {
  1839. background-color: #DEDEDE;
  1840. }
  1841. .main .body .tab-box .search-bar .history {
  1842. display: flex;
  1843. width: 100%;
  1844. }
  1845. .main .body .tab-box .search-bar .history .searchchoice {
  1846. padding: 0 0.3125rem;
  1847. display: flex;
  1848. width: 100%;
  1849. flex-direction: column;
  1850. font-size: 0.75rem;
  1851. }
  1852. .main .body .tab-box .search-bar .history .searchchoice .row1 {
  1853. display: flex;
  1854. width: 100%;
  1855. justify-content: flex-start;
  1856. align-items: center;
  1857. margin: 0.3125rem 0 0.3125rem;
  1858. font-size: 0.46875rem;
  1859. }
  1860. .main .body .tab-box .search-bar .history .searchchoice .row1 .timequan {
  1861. display: flex;
  1862. justify-content: center;
  1863. align-items: center;
  1864. }
  1865. .main .body .tab-box .search-bar .history .searchchoice .row1 .timequan .uni-date__x-input {
  1866. font-size: 0.46875rem;
  1867. }
  1868. .main .body .tab-box .search-bar .history .searchchoice .row1 .timequan .datepick {
  1869. z-index: 999;
  1870. width: 19.60938rem;
  1871. }
  1872. .main .body .tab-box .search-bar .history .searchchoice .row2 {
  1873. display: flex;
  1874. width: 100%;
  1875. justify-content: flex-start;
  1876. align-items: center;
  1877. margin: 0 0 0.3125rem;
  1878. }
  1879. .main .body .tab-box .search-bar .history .searchchoice .row2 .office {
  1880. display: flex;
  1881. justify-content: center;
  1882. align-items: center;
  1883. font-size: 0.46875rem;
  1884. }
  1885. .main .body .tab-box .search-bar .history .searchchoice .row2 .office .uni-input {
  1886. display: flex;
  1887. justify-content: center;
  1888. align-items: center;
  1889. border: 1px solid #e1e5f1;
  1890. font-size: 0.46875rem;
  1891. width: 5.9375rem;
  1892. border-radius: 0.15625rem;
  1893. background-color: #e1e5f1;
  1894. margin-right: 0.3125rem;
  1895. }
  1896. .main .body .tab-box .search-bar .history .searchchoice .row2 .uni-input {
  1897. display: flex;
  1898. justify-content: center;
  1899. align-items: center;
  1900. border: 1px solid #e1e5f1;
  1901. font-size: 0.46875rem;
  1902. width: 3.125rem;
  1903. height: 1.25rem;
  1904. border-radius: 0.15625rem;
  1905. background-color: #e1e5f1;
  1906. margin-right: 0.3125rem;
  1907. }
  1908. .main .body .tab-box .search-bar .history .searchchoice .row2 .search {
  1909. width: 5.85938rem;
  1910. }
  1911. .main .body .tab-box .search-bar .history .searchchoice .row2 .search .uni-easyinput__placeholder-class {
  1912. font-size: 0.46875rem;
  1913. }
  1914. .main .body .tab-box .search-bar .history .searchchoice .row2 .search-button {
  1915. width: 3.75rem;
  1916. margin: 0.25rem 0.375rem;
  1917. font-size: 0.46875rem;
  1918. color: #fff;
  1919. background-color: #18C7B0;
  1920. }
  1921. .main .body .tab-box .search-bar .history .searchchoice .row3 {
  1922. display: flex;
  1923. width: 100%;
  1924. justify-content: flex-start;
  1925. align-items: center;
  1926. margin: 0 0 0.5625rem;
  1927. }
  1928. .main .body .tab-box .search-bar .history .searchchoice .row3 .tag-view .uni-tag {
  1929. display: inline;
  1930. font-size: 0.46875rem;
  1931. margin-right: 0.52094rem;
  1932. width: 3.75rem;
  1933. padding: 0.1875rem 0.625rem;
  1934. }
  1935. .main .body .tab-content {
  1936. display: flex;
  1937. margin: 0.25rem 0.3125rem;
  1938. border-radius: 0.125rem;
  1939. background-color: #fff;
  1940. width: calc(100% - 0.625rem);
  1941. height: 30.625rem;
  1942. z-index: 10;
  1943. }
  1944. .main .body .tab-content .order-list {
  1945. padding: 0.25rem;
  1946. display: flex;
  1947. width: 100%;
  1948. }
  1949. .main .body .tab-content .order-list .text {
  1950. display: flex;
  1951. width: 23.4375rem;
  1952. justify-content: center;
  1953. align-items: flex-start;
  1954. }
  1955. .main .body .tab-content .order-list .text .zwsj {
  1956. margin-top: 3.22281rem;
  1957. width: 20.01969rem;
  1958. height: 9.6875rem;
  1959. }
  1960. .main .body .tab-content .order-list .order-list-wrap {
  1961. display: flex;
  1962. }
  1963. .main .body .tab-content .order-list .order-list-wrap .order-card {
  1964. display: flex;
  1965. width: 100%;
  1966. }