logistics-detail.css 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251
  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. uni-view[data-v-ac70166d], uni-scroll-view[data-v-ac70166d], uni-swiper-item[data-v-ac70166d] {
  27. display: flex;
  28. flex-direction: column;
  29. flex-shrink: 0;
  30. flex-grow: 0;
  31. flex-basis: auto;
  32. align-items: stretch;
  33. align-content: flex-start;
  34. }
  35. @font-face {
  36. font-family: "uicon-iconfont";
  37. src: url("https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf") format("truetype");
  38. }
  39. .u-icon[data-v-ac70166d] {
  40. display: flex;
  41. align-items: center;
  42. }
  43. .u-icon--left[data-v-ac70166d] {
  44. flex-direction: row-reverse;
  45. align-items: center;
  46. }
  47. .u-icon--right[data-v-ac70166d] {
  48. flex-direction: row;
  49. align-items: center;
  50. }
  51. .u-icon--top[data-v-ac70166d] {
  52. flex-direction: column-reverse;
  53. justify-content: center;
  54. }
  55. .u-icon--bottom[data-v-ac70166d] {
  56. flex-direction: column;
  57. justify-content: center;
  58. }
  59. .u-icon__icon[data-v-ac70166d] {
  60. font-family: uicon-iconfont;
  61. position: relative;
  62. display: flex;
  63. flex-direction: row;
  64. align-items: center;
  65. }
  66. .u-icon__icon--primary[data-v-ac70166d] {
  67. color: #22ac38;
  68. }
  69. .u-icon__icon--success[data-v-ac70166d] {
  70. color: #22ac38;
  71. }
  72. .u-icon__icon--error[data-v-ac70166d] {
  73. color: #f56c6c;
  74. }
  75. .u-icon__icon--warning[data-v-ac70166d] {
  76. color: #f9ae3d;
  77. }
  78. .u-icon__icon--info[data-v-ac70166d] {
  79. color: #909399;
  80. }
  81. .u-icon__img[data-v-ac70166d] {
  82. height: auto;
  83. will-change: transform;
  84. }
  85. .u-icon__label[data-v-ac70166d] {
  86. line-height: 1;
  87. }
  88. /**
  89. * 这里是uni-app内置的常用样式变量
  90. *
  91. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  92. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  93. *
  94. */
  95. /**
  96. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  97. *
  98. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  99. */
  100. /* 颜色变量 */
  101. /* 行为相关颜色 */
  102. /* 文字基本颜色 */
  103. /* 背景颜色 */
  104. /* 边框颜色 */
  105. /* 尺寸变量 */
  106. /* 文字尺寸 */
  107. /* 图片尺寸 */
  108. /* Border Radius */
  109. /* 水平间距 */
  110. /* 垂直间距 */
  111. /* 透明度 */
  112. /* 文章场景相关 */
  113. uni-view[data-v-5cec8177], uni-scroll-view[data-v-5cec8177], uni-swiper-item[data-v-5cec8177] {
  114. display: flex;
  115. flex-direction: column;
  116. flex-shrink: 0;
  117. flex-grow: 0;
  118. flex-basis: auto;
  119. align-items: stretch;
  120. align-content: flex-start;
  121. }
  122. /**
  123. * vue版本动画内置的动画模式有如下:
  124. * fade:淡入
  125. * zoom:缩放
  126. * fade-zoom:缩放淡入
  127. * fade-up:上滑淡入
  128. * fade-down:下滑淡入
  129. * fade-left:左滑淡入
  130. * fade-right:右滑淡入
  131. * slide-up:上滑进入
  132. * slide-down:下滑进入
  133. * slide-left:左滑进入
  134. * slide-right:右滑进入
  135. */
  136. .u-fade-enter-active[data-v-5cec8177],
  137. .u-fade-leave-active[data-v-5cec8177] {
  138. transition-property: opacity;
  139. }
  140. .u-fade-enter[data-v-5cec8177],
  141. .u-fade-leave-to[data-v-5cec8177] {
  142. opacity: 0;
  143. }
  144. .u-fade-zoom-enter[data-v-5cec8177],
  145. .u-fade-zoom-leave-to[data-v-5cec8177] {
  146. transform: scale(0.95);
  147. opacity: 0;
  148. }
  149. .u-fade-zoom-enter-active[data-v-5cec8177],
  150. .u-fade-zoom-leave-active[data-v-5cec8177] {
  151. transition-property: transform, opacity;
  152. }
  153. .u-fade-down-enter-active[data-v-5cec8177],
  154. .u-fade-down-leave-active[data-v-5cec8177],
  155. .u-fade-left-enter-active[data-v-5cec8177],
  156. .u-fade-left-leave-active[data-v-5cec8177],
  157. .u-fade-right-enter-active[data-v-5cec8177],
  158. .u-fade-right-leave-active[data-v-5cec8177],
  159. .u-fade-up-enter-active[data-v-5cec8177],
  160. .u-fade-up-leave-active[data-v-5cec8177] {
  161. transition-property: opacity, transform;
  162. }
  163. .u-fade-up-enter[data-v-5cec8177],
  164. .u-fade-up-leave-to[data-v-5cec8177] {
  165. transform: translate3d(0, 100%, 0);
  166. opacity: 0;
  167. }
  168. .u-fade-down-enter[data-v-5cec8177],
  169. .u-fade-down-leave-to[data-v-5cec8177] {
  170. transform: translate3d(0, -100%, 0);
  171. opacity: 0;
  172. }
  173. .u-fade-left-enter[data-v-5cec8177],
  174. .u-fade-left-leave-to[data-v-5cec8177] {
  175. transform: translate3d(-100%, 0, 0);
  176. opacity: 0;
  177. }
  178. .u-fade-right-enter[data-v-5cec8177],
  179. .u-fade-right-leave-to[data-v-5cec8177] {
  180. transform: translate3d(100%, 0, 0);
  181. opacity: 0;
  182. }
  183. .u-slide-down-enter-active[data-v-5cec8177],
  184. .u-slide-down-leave-active[data-v-5cec8177],
  185. .u-slide-left-enter-active[data-v-5cec8177],
  186. .u-slide-left-leave-active[data-v-5cec8177],
  187. .u-slide-right-enter-active[data-v-5cec8177],
  188. .u-slide-right-leave-active[data-v-5cec8177],
  189. .u-slide-up-enter-active[data-v-5cec8177],
  190. .u-slide-up-leave-active[data-v-5cec8177] {
  191. transition-property: transform;
  192. }
  193. .u-slide-up-enter[data-v-5cec8177],
  194. .u-slide-up-leave-to[data-v-5cec8177] {
  195. transform: translate3d(0, 100%, 0);
  196. }
  197. .u-slide-down-enter[data-v-5cec8177],
  198. .u-slide-down-leave-to[data-v-5cec8177] {
  199. transform: translate3d(0, -100%, 0);
  200. }
  201. .u-slide-left-enter[data-v-5cec8177],
  202. .u-slide-left-leave-to[data-v-5cec8177] {
  203. transform: translate3d(-100%, 0, 0);
  204. }
  205. .u-slide-right-enter[data-v-5cec8177],
  206. .u-slide-right-leave-to[data-v-5cec8177] {
  207. transform: translate3d(100%, 0, 0);
  208. }
  209. .u-zoom-enter-active[data-v-5cec8177],
  210. .u-zoom-leave-active[data-v-5cec8177] {
  211. transition-property: transform;
  212. }
  213. .u-zoom-enter[data-v-5cec8177],
  214. .u-zoom-leave-to[data-v-5cec8177] {
  215. transform: scale(0.95);
  216. }
  217. /**
  218. * 这里是uni-app内置的常用样式变量
  219. *
  220. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  221. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  222. *
  223. */
  224. /**
  225. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  226. *
  227. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  228. */
  229. /* 颜色变量 */
  230. /* 行为相关颜色 */
  231. /* 文字基本颜色 */
  232. /* 背景颜色 */
  233. /* 边框颜色 */
  234. /* 尺寸变量 */
  235. /* 文字尺寸 */
  236. /* 图片尺寸 */
  237. /* Border Radius */
  238. /* 水平间距 */
  239. /* 垂直间距 */
  240. /* 透明度 */
  241. /* 文章场景相关 */
  242. uni-view[data-v-158e540a], uni-scroll-view[data-v-158e540a], uni-swiper-item[data-v-158e540a] {
  243. display: flex;
  244. flex-direction: column;
  245. flex-shrink: 0;
  246. flex-grow: 0;
  247. flex-basis: auto;
  248. align-items: stretch;
  249. align-content: flex-start;
  250. }
  251. .u-alert[data-v-158e540a] {
  252. position: relative;
  253. background-color: #22ac38;
  254. padding: 8px 10px;
  255. display: flex;
  256. flex-direction: row;
  257. align-items: center;
  258. border-top-left-radius: 4px;
  259. border-top-right-radius: 4px;
  260. border-bottom-left-radius: 4px;
  261. border-bottom-right-radius: 4px;
  262. }
  263. .u-alert--primary--dark[data-v-158e540a] {
  264. background-color: #22ac38;
  265. }
  266. .u-alert--primary--light[data-v-158e540a] {
  267. background-color: #ecf5ff;
  268. }
  269. .u-alert--error--dark[data-v-158e540a] {
  270. background-color: #f56c6c;
  271. }
  272. .u-alert--error--light[data-v-158e540a] {
  273. background-color: #FEF0F0;
  274. }
  275. .u-alert--success--dark[data-v-158e540a] {
  276. background-color: #22ac38;
  277. }
  278. .u-alert--success--light[data-v-158e540a] {
  279. background-color: #f5fff0;
  280. }
  281. .u-alert--warning--dark[data-v-158e540a] {
  282. background-color: #f9ae3d;
  283. }
  284. .u-alert--warning--light[data-v-158e540a] {
  285. background-color: #FDF6EC;
  286. }
  287. .u-alert--info--dark[data-v-158e540a] {
  288. background-color: #909399;
  289. }
  290. .u-alert--info--light[data-v-158e540a] {
  291. background-color: #f4f4f5;
  292. }
  293. .u-alert__icon[data-v-158e540a] {
  294. margin-right: 5px;
  295. }
  296. .u-alert__content[data-v-158e540a] {
  297. display: flex;
  298. flex-direction: column;
  299. flex: 1;
  300. }
  301. .u-alert__content__title[data-v-158e540a] {
  302. color: #303133;
  303. font-size: 14px;
  304. font-weight: bold;
  305. color: #fff;
  306. margin-bottom: 2px;
  307. }
  308. .u-alert__content__desc[data-v-158e540a] {
  309. color: #303133;
  310. font-size: 14px;
  311. flex-wrap: wrap;
  312. color: #fff;
  313. }
  314. .u-alert__title--dark[data-v-158e540a], .u-alert__desc--dark[data-v-158e540a] {
  315. color: #FFFFFF;
  316. }
  317. .u-alert__text--primary--light[data-v-158e540a], .u-alert__text--primary--light[data-v-158e540a] {
  318. color: #22ac38;
  319. }
  320. .u-alert__text--success--light[data-v-158e540a], .u-alert__text--success--light[data-v-158e540a] {
  321. color: #22ac38;
  322. }
  323. .u-alert__text--warning--light[data-v-158e540a], .u-alert__text--warning--light[data-v-158e540a] {
  324. color: #f9ae3d;
  325. }
  326. .u-alert__text--error--light[data-v-158e540a], .u-alert__text--error--light[data-v-158e540a] {
  327. color: #f56c6c;
  328. }
  329. .u-alert__text--info--light[data-v-158e540a], .u-alert__text--info--light[data-v-158e540a] {
  330. color: #909399;
  331. }
  332. .u-alert__close[data-v-158e540a] {
  333. position: absolute;
  334. top: 11px;
  335. right: 10px;
  336. }
  337. /**
  338. * 这里是uni-app内置的常用样式变量
  339. *
  340. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  341. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  342. *
  343. */
  344. /**
  345. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  346. *
  347. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  348. */
  349. /* 颜色变量 */
  350. /* 行为相关颜色 */
  351. /* 文字基本颜色 */
  352. /* 背景颜色 */
  353. /* 边框颜色 */
  354. /* 尺寸变量 */
  355. /* 文字尺寸 */
  356. /* 图片尺寸 */
  357. /* Border Radius */
  358. /* 水平间距 */
  359. /* 垂直间距 */
  360. /* 透明度 */
  361. /* 文章场景相关 */
  362. .u-sticky[data-v-8b303089] {
  363. position: -webkit-sticky;
  364. position: sticky;
  365. }
  366. /**
  367. * 这里是uni-app内置的常用样式变量
  368. *
  369. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  370. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  371. *
  372. */
  373. /**
  374. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  375. *
  376. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  377. */
  378. /* 颜色变量 */
  379. /* 行为相关颜色 */
  380. /* 文字基本颜色 */
  381. /* 背景颜色 */
  382. /* 边框颜色 */
  383. /* 尺寸变量 */
  384. /* 文字尺寸 */
  385. /* 图片尺寸 */
  386. /* Border Radius */
  387. /* 水平间距 */
  388. /* 垂直间距 */
  389. /* 透明度 */
  390. /* 文章场景相关 */
  391. uni-view[data-v-2af81691], uni-scroll-view[data-v-2af81691], uni-swiper-item[data-v-2af81691] {
  392. display: flex;
  393. flex-direction: column;
  394. flex-shrink: 0;
  395. flex-grow: 0;
  396. flex-basis: auto;
  397. align-items: stretch;
  398. align-content: flex-start;
  399. }
  400. .u-loading-icon[data-v-2af81691] {
  401. flex-direction: row;
  402. align-items: center;
  403. justify-content: center;
  404. color: #c8c9cc;
  405. }
  406. .u-loading-icon__text[data-v-2af81691] {
  407. margin-left: 4px;
  408. color: #606266;
  409. font-size: 14px;
  410. line-height: 20px;
  411. }
  412. .u-loading-icon__spinner[data-v-2af81691] {
  413. width: 30px;
  414. height: 30px;
  415. position: relative;
  416. box-sizing: border-box;
  417. max-width: 100%;
  418. max-height: 100%;
  419. animation: u-rotate-2af81691 1s linear infinite;
  420. }
  421. .u-loading-icon__spinner--semicircle[data-v-2af81691] {
  422. border-width: 2px;
  423. border-color: transparent;
  424. border-top-right-radius: 100px;
  425. border-top-left-radius: 100px;
  426. border-bottom-left-radius: 100px;
  427. border-bottom-right-radius: 100px;
  428. border-style: solid;
  429. }
  430. .u-loading-icon__spinner--circle[data-v-2af81691] {
  431. border-top-right-radius: 100px;
  432. border-top-left-radius: 100px;
  433. border-bottom-left-radius: 100px;
  434. border-bottom-right-radius: 100px;
  435. border-width: 2px;
  436. border-top-color: #e5e5e5;
  437. border-right-color: #e5e5e5;
  438. border-bottom-color: #e5e5e5;
  439. border-left-color: #e5e5e5;
  440. border-style: solid;
  441. }
  442. .u-loading-icon--vertical[data-v-2af81691] {
  443. flex-direction: column;
  444. }
  445. [data-v-2af81691]:host {
  446. font-size: 0px;
  447. line-height: 1;
  448. }
  449. .u-loading-icon__spinner--spinner[data-v-2af81691] {
  450. animation-timing-function: steps(12);
  451. }
  452. .u-loading-icon__text[data-v-2af81691]:empty {
  453. display: none;
  454. }
  455. .u-loading-icon--vertical .u-loading-icon__text[data-v-2af81691] {
  456. margin: 6px 0 0;
  457. color: #606266;
  458. }
  459. .u-loading-icon__dot[data-v-2af81691] {
  460. position: absolute;
  461. top: 0;
  462. left: 0;
  463. width: 100%;
  464. height: 100%;
  465. }
  466. .u-loading-icon__dot[data-v-2af81691]:before {
  467. display: block;
  468. width: 2px;
  469. height: 25%;
  470. margin: 0 auto;
  471. background-color: currentColor;
  472. border-radius: 40%;
  473. content: " ";
  474. }
  475. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(1) {
  476. transform: rotate(30deg);
  477. opacity: 1;
  478. }
  479. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(2) {
  480. transform: rotate(60deg);
  481. opacity: 0.9375;
  482. }
  483. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(3) {
  484. transform: rotate(90deg);
  485. opacity: 0.875;
  486. }
  487. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(4) {
  488. transform: rotate(120deg);
  489. opacity: 0.8125;
  490. }
  491. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(5) {
  492. transform: rotate(150deg);
  493. opacity: 0.75;
  494. }
  495. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(6) {
  496. transform: rotate(180deg);
  497. opacity: 0.6875;
  498. }
  499. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(7) {
  500. transform: rotate(210deg);
  501. opacity: 0.625;
  502. }
  503. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(8) {
  504. transform: rotate(240deg);
  505. opacity: 0.5625;
  506. }
  507. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(9) {
  508. transform: rotate(270deg);
  509. opacity: 0.5;
  510. }
  511. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(10) {
  512. transform: rotate(300deg);
  513. opacity: 0.4375;
  514. }
  515. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(11) {
  516. transform: rotate(330deg);
  517. opacity: 0.375;
  518. }
  519. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(12) {
  520. transform: rotate(360deg);
  521. opacity: 0.3125;
  522. }
  523. @keyframes u-rotate-2af81691 {
  524. 0% {
  525. transform: rotate(0deg);
  526. }
  527. to {
  528. transform: rotate(1turn);
  529. }
  530. }
  531. /**
  532. * 这里是uni-app内置的常用样式变量
  533. *
  534. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  535. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  536. *
  537. */
  538. /**
  539. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  540. *
  541. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  542. */
  543. /* 颜色变量 */
  544. /* 行为相关颜色 */
  545. /* 文字基本颜色 */
  546. /* 背景颜色 */
  547. /* 边框颜色 */
  548. /* 尺寸变量 */
  549. /* 文字尺寸 */
  550. /* 图片尺寸 */
  551. /* Border Radius */
  552. /* 水平间距 */
  553. /* 垂直间距 */
  554. /* 透明度 */
  555. /* 文章场景相关 */
  556. uni-view[data-v-5ce41ee6], uni-scroll-view[data-v-5ce41ee6], uni-swiper-item[data-v-5ce41ee6] {
  557. display: flex;
  558. flex-direction: column;
  559. flex-shrink: 0;
  560. flex-grow: 0;
  561. flex-basis: auto;
  562. align-items: stretch;
  563. align-content: flex-start;
  564. }
  565. .u-button[data-v-5ce41ee6] {
  566. width: 100%;
  567. }
  568. .u-button__text[data-v-5ce41ee6] {
  569. white-space: nowrap;
  570. line-height: 1;
  571. }
  572. .u-button[data-v-5ce41ee6]:before {
  573. position: absolute;
  574. top: 50%;
  575. left: 50%;
  576. width: 100%;
  577. height: 100%;
  578. border: inherit;
  579. border-radius: inherit;
  580. transform: translate(-50%, -50%);
  581. opacity: 0;
  582. content: " ";
  583. background-color: #000;
  584. border-color: #000;
  585. }
  586. .u-button--active[data-v-5ce41ee6]:before {
  587. opacity: 0.15;
  588. }
  589. .u-button__icon + .u-button__text[data-v-5ce41ee6]:not(:empty), .u-button__loading-text[data-v-5ce41ee6] {
  590. margin-left: 4px;
  591. }
  592. .u-button--plain.u-button--primary[data-v-5ce41ee6] {
  593. color: #22ac38;
  594. }
  595. .u-button--plain.u-button--info[data-v-5ce41ee6] {
  596. color: #909399;
  597. }
  598. .u-button--plain.u-button--success[data-v-5ce41ee6] {
  599. color: #22ac38;
  600. }
  601. .u-button--plain.u-button--error[data-v-5ce41ee6] {
  602. color: #f56c6c;
  603. }
  604. .u-button--plain.u-button--warning[data-v-5ce41ee6] {
  605. color: #f56c6c;
  606. }
  607. .u-button[data-v-5ce41ee6] {
  608. height: 52px;
  609. position: relative;
  610. align-items: center;
  611. justify-content: center;
  612. display: flex;
  613. flex-direction: row;
  614. box-sizing: border-box;
  615. flex-direction: row;
  616. }
  617. .u-button__text[data-v-5ce41ee6] {
  618. font-size: 16px;
  619. }
  620. .u-button__loading-text[data-v-5ce41ee6] {
  621. font-size: 16px;
  622. margin-left: 4px;
  623. }
  624. .u-button--large[data-v-5ce41ee6] {
  625. width: 100%;
  626. height: 64px;
  627. padding: 0 15px;
  628. font-size: 20px;
  629. }
  630. .u-button--normal[data-v-5ce41ee6] {
  631. padding: 0 12px;
  632. font-size: 16px;
  633. }
  634. .u-button--small[data-v-5ce41ee6] {
  635. min-width: 60px;
  636. height: 30px;
  637. padding: 0px 8px;
  638. font-size: 12px;
  639. }
  640. .u-button--mini[data-v-5ce41ee6] {
  641. height: 22px;
  642. font-size: 10px;
  643. min-width: 50px;
  644. padding: 0px 8px;
  645. }
  646. .u-button--disabled[data-v-5ce41ee6] {
  647. opacity: 0.5;
  648. }
  649. .u-button--info[data-v-5ce41ee6] {
  650. color: #323233;
  651. background-color: #fff;
  652. border-color: #ebedf0;
  653. border-width: 1px;
  654. border-style: solid;
  655. }
  656. .u-button--success[data-v-5ce41ee6] {
  657. color: #fff;
  658. background-color: #22ac38;
  659. border-color: #22ac38;
  660. border-width: 1px;
  661. border-style: solid;
  662. }
  663. .u-button--primary[data-v-5ce41ee6] {
  664. color: #fff;
  665. background-color: #22ac38;
  666. border-color: #22ac38;
  667. border-width: 1px;
  668. border-style: solid;
  669. }
  670. .u-button--error[data-v-5ce41ee6] {
  671. color: #fff;
  672. background-color: #f56c6c;
  673. border-color: #f56c6c;
  674. border-width: 1px;
  675. border-style: solid;
  676. }
  677. .u-button--warning[data-v-5ce41ee6] {
  678. color: #fff;
  679. background-color: #f9ae3d;
  680. border-color: #f9ae3d;
  681. border-width: 1px;
  682. border-style: solid;
  683. }
  684. .u-button--block[data-v-5ce41ee6] {
  685. display: flex;
  686. flex-direction: row;
  687. width: 100%;
  688. }
  689. .u-button--circle[data-v-5ce41ee6] {
  690. border-top-right-radius: 100px;
  691. border-top-left-radius: 100px;
  692. border-bottom-left-radius: 100px;
  693. border-bottom-right-radius: 100px;
  694. }
  695. .u-button--square[data-v-5ce41ee6] {
  696. border-bottom-left-radius: 3px;
  697. border-bottom-right-radius: 3px;
  698. border-top-left-radius: 3px;
  699. border-top-right-radius: 3px;
  700. }
  701. .u-button__icon[data-v-5ce41ee6] {
  702. min-width: 1em;
  703. line-height: inherit !important;
  704. vertical-align: top;
  705. }
  706. .u-button--plain[data-v-5ce41ee6] {
  707. background-color: #fff;
  708. }
  709. .u-button--hairline[data-v-5ce41ee6] {
  710. border-width: 0.5px !important;
  711. }
  712. /**
  713. * 这里是uni-app内置的常用样式变量
  714. *
  715. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  716. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  717. *
  718. */
  719. /**
  720. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  721. *
  722. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  723. */
  724. /* 颜色变量 */
  725. /* 行为相关颜色 */
  726. /* 文字基本颜色 */
  727. /* 背景颜色 */
  728. /* 边框颜色 */
  729. /* 尺寸变量 */
  730. /* 文字尺寸 */
  731. /* 图片尺寸 */
  732. /* Border Radius */
  733. /* 水平间距 */
  734. /* 垂直间距 */
  735. /* 透明度 */
  736. /* 文章场景相关 */
  737. uni-view[data-v-72791e59], uni-scroll-view[data-v-72791e59], uni-swiper-item[data-v-72791e59] {
  738. display: flex;
  739. flex-direction: column;
  740. flex-shrink: 0;
  741. flex-grow: 0;
  742. flex-basis: auto;
  743. align-items: stretch;
  744. align-content: flex-start;
  745. }
  746. .u-line[data-v-72791e59] {
  747. vertical-align: middle;
  748. }
  749. /**
  750. * 这里是uni-app内置的常用样式变量
  751. *
  752. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  753. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  754. *
  755. */
  756. /**
  757. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  758. *
  759. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  760. */
  761. /* 颜色变量 */
  762. /* 行为相关颜色 */
  763. /* 文字基本颜色 */
  764. /* 背景颜色 */
  765. /* 边框颜色 */
  766. /* 尺寸变量 */
  767. /* 文字尺寸 */
  768. /* 图片尺寸 */
  769. /* Border Radius */
  770. /* 水平间距 */
  771. /* 垂直间距 */
  772. /* 透明度 */
  773. /* 文章场景相关 */
  774. uni-view[data-v-9112bed9], uni-scroll-view[data-v-9112bed9], uni-swiper-item[data-v-9112bed9] {
  775. display: flex;
  776. flex-direction: column;
  777. flex-shrink: 0;
  778. flex-grow: 0;
  779. flex-basis: auto;
  780. align-items: stretch;
  781. align-content: flex-start;
  782. }
  783. .u-overlay[data-v-9112bed9] {
  784. position: fixed;
  785. top: 0;
  786. left: 0;
  787. width: 100%;
  788. height: 100%;
  789. background-color: rgba(0, 0, 0, 0.7);
  790. }
  791. /**
  792. * 这里是uni-app内置的常用样式变量
  793. *
  794. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  795. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  796. *
  797. */
  798. /**
  799. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  800. *
  801. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  802. */
  803. /* 颜色变量 */
  804. /* 行为相关颜色 */
  805. /* 文字基本颜色 */
  806. /* 背景颜色 */
  807. /* 边框颜色 */
  808. /* 尺寸变量 */
  809. /* 文字尺寸 */
  810. /* 图片尺寸 */
  811. /* Border Radius */
  812. /* 水平间距 */
  813. /* 垂直间距 */
  814. /* 透明度 */
  815. /* 文章场景相关 */
  816. .u-status-bar[data-v-eb8e0cdd] {
  817. width: 100%;
  818. }
  819. /**
  820. * 这里是uni-app内置的常用样式变量
  821. *
  822. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  823. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  824. *
  825. */
  826. /**
  827. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  828. *
  829. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  830. */
  831. /* 颜色变量 */
  832. /* 行为相关颜色 */
  833. /* 文字基本颜色 */
  834. /* 背景颜色 */
  835. /* 边框颜色 */
  836. /* 尺寸变量 */
  837. /* 文字尺寸 */
  838. /* 图片尺寸 */
  839. /* Border Radius */
  840. /* 水平间距 */
  841. /* 垂直间距 */
  842. /* 透明度 */
  843. /* 文章场景相关 */
  844. .u-safe-bottom[data-v-f3d22cfe] {
  845. width: 100%;
  846. }
  847. /**
  848. * 这里是uni-app内置的常用样式变量
  849. *
  850. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  851. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  852. *
  853. */
  854. /**
  855. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  856. *
  857. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  858. */
  859. /* 颜色变量 */
  860. /* 行为相关颜色 */
  861. /* 文字基本颜色 */
  862. /* 背景颜色 */
  863. /* 边框颜色 */
  864. /* 尺寸变量 */
  865. /* 文字尺寸 */
  866. /* 图片尺寸 */
  867. /* Border Radius */
  868. /* 水平间距 */
  869. /* 垂直间距 */
  870. /* 透明度 */
  871. /* 文章场景相关 */
  872. uni-view[data-v-05c24e9b], uni-scroll-view[data-v-05c24e9b], uni-swiper-item[data-v-05c24e9b] {
  873. display: flex;
  874. flex-direction: column;
  875. flex-shrink: 0;
  876. flex-grow: 0;
  877. flex-basis: auto;
  878. align-items: stretch;
  879. align-content: flex-start;
  880. }
  881. .u-popup[data-v-05c24e9b] {
  882. flex: 1;
  883. }
  884. .u-popup__content[data-v-05c24e9b] {
  885. background-color: #fff;
  886. position: relative;
  887. }
  888. .u-popup__content--round-top[data-v-05c24e9b] {
  889. border-top-left-radius: 0;
  890. border-top-right-radius: 0;
  891. border-bottom-left-radius: 10px;
  892. border-bottom-right-radius: 10px;
  893. }
  894. .u-popup__content--round-left[data-v-05c24e9b] {
  895. border-top-left-radius: 0;
  896. border-top-right-radius: 10px;
  897. border-bottom-left-radius: 0;
  898. border-bottom-right-radius: 10px;
  899. }
  900. .u-popup__content--round-right[data-v-05c24e9b] {
  901. border-top-left-radius: 10px;
  902. border-top-right-radius: 0;
  903. border-bottom-left-radius: 10px;
  904. border-bottom-right-radius: 0;
  905. }
  906. .u-popup__content--round-bottom[data-v-05c24e9b] {
  907. border-top-left-radius: 10px;
  908. border-top-right-radius: 10px;
  909. border-bottom-left-radius: 0;
  910. border-bottom-right-radius: 0;
  911. }
  912. .u-popup__content--round-center[data-v-05c24e9b] {
  913. border-top-left-radius: 10px;
  914. border-top-right-radius: 10px;
  915. border-bottom-left-radius: 10px;
  916. border-bottom-right-radius: 10px;
  917. }
  918. .u-popup__content__close[data-v-05c24e9b] {
  919. position: absolute;
  920. }
  921. .u-popup__content__close--hover[data-v-05c24e9b] {
  922. opacity: 0.4;
  923. }
  924. .u-popup__content__close--top-left[data-v-05c24e9b] {
  925. top: 15px;
  926. left: 15px;
  927. }
  928. .u-popup__content__close--top-right[data-v-05c24e9b] {
  929. top: 15px;
  930. right: 15px;
  931. }
  932. .u-popup__content__close--bottom-left[data-v-05c24e9b] {
  933. bottom: 15px;
  934. left: 15px;
  935. }
  936. .u-popup__content__close--bottom-right[data-v-05c24e9b] {
  937. right: 15px;
  938. bottom: 15px;
  939. }
  940. /**
  941. * 这里是uni-app内置的常用样式变量
  942. *
  943. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  944. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  945. *
  946. */
  947. /**
  948. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  949. *
  950. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  951. */
  952. /* 颜色变量 */
  953. /* 行为相关颜色 */
  954. /* 文字基本颜色 */
  955. /* 背景颜色 */
  956. /* 边框颜色 */
  957. /* 尺寸变量 */
  958. /* 文字尺寸 */
  959. /* 图片尺寸 */
  960. /* Border Radius */
  961. /* 水平间距 */
  962. /* 垂直间距 */
  963. /* 透明度 */
  964. /* 文章场景相关 */
  965. uni-view[data-v-f667648f], uni-scroll-view[data-v-f667648f], uni-swiper-item[data-v-f667648f] {
  966. display: flex;
  967. flex-direction: column;
  968. flex-shrink: 0;
  969. flex-grow: 0;
  970. flex-basis: auto;
  971. align-items: stretch;
  972. align-content: flex-start;
  973. }
  974. .u-modal[data-v-f667648f] {
  975. width: 20.3125rem;
  976. border-radius: 6px;
  977. overflow: hidden;
  978. }
  979. .u-modal__title[data-v-f667648f] {
  980. font-size: 16px;
  981. font-weight: bold;
  982. color: #606266;
  983. text-align: center;
  984. padding-top: 25px;
  985. }
  986. .u-modal__content[data-v-f667648f] {
  987. padding: 12px 25px 25px 25px;
  988. display: flex;
  989. flex-direction: row;
  990. justify-content: center;
  991. }
  992. .u-modal__content__text[data-v-f667648f] {
  993. font-size: 15px;
  994. color: #606266;
  995. flex: 1;
  996. }
  997. .u-modal__button-group[data-v-f667648f] {
  998. display: flex;
  999. flex-direction: row;
  1000. }
  1001. .u-modal__button-group--confirm-button[data-v-f667648f] {
  1002. flex-direction: column;
  1003. padding: 0px 25px 15px 25px;
  1004. }
  1005. .u-modal__button-group__wrapper[data-v-f667648f] {
  1006. flex: 1;
  1007. display: flex;
  1008. flex-direction: row;
  1009. justify-content: center;
  1010. align-items: center;
  1011. height: 48px;
  1012. }
  1013. .u-modal__button-group__wrapper--confirm[data-v-f667648f], .u-modal__button-group__wrapper--only-cancel[data-v-f667648f] {
  1014. border-bottom-right-radius: 6px;
  1015. }
  1016. .u-modal__button-group__wrapper--cancel[data-v-f667648f], .u-modal__button-group__wrapper--only-confirm[data-v-f667648f] {
  1017. border-bottom-left-radius: 6px;
  1018. }
  1019. .u-modal__button-group__wrapper--hover[data-v-f667648f] {
  1020. background-color: #f3f4f6;
  1021. }
  1022. .u-modal__button-group__wrapper__text[data-v-f667648f] {
  1023. color: #606266;
  1024. font-size: 16px;
  1025. text-align: center;
  1026. }
  1027. /**
  1028. * 这里是uni-app内置的常用样式变量
  1029. *
  1030. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1031. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1032. *
  1033. */
  1034. /**
  1035. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1036. *
  1037. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1038. */
  1039. /* 颜色变量 */
  1040. /* 行为相关颜色 */
  1041. /* 文字基本颜色 */
  1042. /* 背景颜色 */
  1043. /* 边框颜色 */
  1044. /* 尺寸变量 */
  1045. /* 文字尺寸 */
  1046. /* 图片尺寸 */
  1047. /* Border Radius */
  1048. /* 水平间距 */
  1049. /* 垂直间距 */
  1050. /* 透明度 */
  1051. /* 文章场景相关 */
  1052. uni-view[data-v-eadae74e], uni-scroll-view[data-v-eadae74e], uni-swiper-item[data-v-eadae74e] {
  1053. display: flex;
  1054. flex-direction: column;
  1055. flex-shrink: 0;
  1056. flex-grow: 0;
  1057. flex-basis: auto;
  1058. align-items: stretch;
  1059. align-content: flex-start;
  1060. }
  1061. .u-toolbar[data-v-eadae74e] {
  1062. height: 42px;
  1063. display: flex;
  1064. flex-direction: row;
  1065. justify-content: space-between;
  1066. align-items: center;
  1067. }
  1068. .u-toolbar__wrapper__cancel[data-v-eadae74e] {
  1069. color: #909193;
  1070. font-size: 15px;
  1071. padding: 0 15px;
  1072. }
  1073. .u-toolbar__title[data-v-eadae74e] {
  1074. color: #303133;
  1075. padding: 0 1.875rem;
  1076. font-size: 16px;
  1077. flex: 1;
  1078. text-align: center;
  1079. }
  1080. .u-toolbar__wrapper__confirm[data-v-eadae74e] {
  1081. color: #22ac38;
  1082. font-size: 15px;
  1083. padding: 0 15px;
  1084. }
  1085. /**
  1086. * 这里是uni-app内置的常用样式变量
  1087. *
  1088. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1089. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1090. *
  1091. */
  1092. /**
  1093. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1094. *
  1095. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1096. */
  1097. /* 颜色变量 */
  1098. /* 行为相关颜色 */
  1099. /* 文字基本颜色 */
  1100. /* 背景颜色 */
  1101. /* 边框颜色 */
  1102. /* 尺寸变量 */
  1103. /* 文字尺寸 */
  1104. /* 图片尺寸 */
  1105. /* Border Radius */
  1106. /* 水平间距 */
  1107. /* 垂直间距 */
  1108. /* 透明度 */
  1109. /* 文章场景相关 */
  1110. uni-view[data-v-91b05052], uni-scroll-view[data-v-91b05052], uni-swiper-item[data-v-91b05052] {
  1111. display: flex;
  1112. flex-direction: column;
  1113. flex-shrink: 0;
  1114. flex-grow: 0;
  1115. flex-basis: auto;
  1116. align-items: stretch;
  1117. align-content: flex-start;
  1118. }
  1119. .u-picker[data-v-91b05052] {
  1120. position: relative;
  1121. }
  1122. .u-picker__view__column[data-v-91b05052] {
  1123. display: flex;
  1124. flex-direction: row;
  1125. flex: 1;
  1126. justify-content: center;
  1127. }
  1128. .u-picker__view__column__item[data-v-91b05052] {
  1129. display: flex;
  1130. flex-direction: row;
  1131. justify-content: center;
  1132. align-items: center;
  1133. font-size: 16px;
  1134. text-align: center;
  1135. display: block;
  1136. color: #303133;
  1137. }
  1138. .u-picker__view__column__item--disabled[data-v-91b05052] {
  1139. cursor: not-allowed;
  1140. opacity: 0.35;
  1141. }
  1142. .u-picker--loading[data-v-91b05052] {
  1143. position: absolute;
  1144. top: 0;
  1145. right: 0;
  1146. left: 0;
  1147. bottom: 0;
  1148. display: flex;
  1149. flex-direction: row;
  1150. justify-content: center;
  1151. align-items: center;
  1152. background-color: rgba(255, 255, 255, 0.87);
  1153. z-index: 1000;
  1154. }
  1155. /**
  1156. * 这里是uni-app内置的常用样式变量
  1157. *
  1158. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1159. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1160. *
  1161. */
  1162. /**
  1163. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1164. *
  1165. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1166. */
  1167. /* 颜色变量 */
  1168. /* 行为相关颜色 */
  1169. /* 文字基本颜色 */
  1170. /* 背景颜色 */
  1171. /* 边框颜色 */
  1172. /* 尺寸变量 */
  1173. /* 文字尺寸 */
  1174. /* 图片尺寸 */
  1175. /* Border Radius */
  1176. /* 水平间距 */
  1177. /* 垂直间距 */
  1178. /* 透明度 */
  1179. /* 文章场景相关 */
  1180. .timeline-container[data-v-8e52fe94] {
  1181. flex: 1;
  1182. padding: 12px;
  1183. background-color: #fff;
  1184. }
  1185. .timeline-item[data-v-8e52fe94] {
  1186. display: flex;
  1187. position: relative;
  1188. padding: 0.625rem 0;
  1189. }
  1190. .timeline-icon[data-v-8e52fe94] {
  1191. width: 24px;
  1192. height: 24px;
  1193. background-color: #fff;
  1194. border-radius: 50%;
  1195. display: flex;
  1196. align-items: center;
  1197. justify-content: center;
  1198. margin-right: 12px;
  1199. flex-shrink: 0;
  1200. }
  1201. .timeline-content[data-v-8e52fe94] {
  1202. flex: 1;
  1203. }
  1204. .timeline-content .title[data-v-8e52fe94] {
  1205. font-weight: bold;
  1206. font-size: 14px;
  1207. }
  1208. .timeline-content .desc[data-v-8e52fe94] {
  1209. font-size: 14px;
  1210. color: #333;
  1211. display: block;
  1212. margin-bottom: 4px;
  1213. }
  1214. .timeline-content .time[data-v-8e52fe94] {
  1215. font-size: 12px;
  1216. color: #999;
  1217. }
  1218. .timeline-line[data-v-8e52fe94] {
  1219. position: absolute;
  1220. width: 2px;
  1221. height: 100%;
  1222. background-color: #19be6b;
  1223. top: 32px;
  1224. bottom: 0;
  1225. left: 11px;
  1226. }