order-query.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435
  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-06cca9b7], uni-scroll-view[data-v-06cca9b7], uni-swiper-item[data-v-06cca9b7] {
  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. .u-badge[data-v-06cca9b7] {
  36. border-top-right-radius: 100px;
  37. border-top-left-radius: 100px;
  38. border-bottom-left-radius: 100px;
  39. border-bottom-right-radius: 100px;
  40. display: flex;
  41. flex-direction: row;
  42. line-height: 11px;
  43. text-align: center;
  44. font-size: 11px;
  45. color: #FFFFFF;
  46. }
  47. .u-badge--dot[data-v-06cca9b7] {
  48. height: 8px;
  49. width: 8px;
  50. }
  51. .u-badge--inverted[data-v-06cca9b7] {
  52. font-size: 13px;
  53. }
  54. .u-badge--not-dot[data-v-06cca9b7] {
  55. padding: 2px 5px;
  56. }
  57. .u-badge--horn[data-v-06cca9b7] {
  58. border-bottom-left-radius: 0;
  59. }
  60. .u-badge--primary[data-v-06cca9b7] {
  61. background-color: #22ac38;
  62. }
  63. .u-badge--primary--inverted[data-v-06cca9b7] {
  64. color: #22ac38;
  65. }
  66. .u-badge--error[data-v-06cca9b7] {
  67. background-color: #f56c6c;
  68. }
  69. .u-badge--error--inverted[data-v-06cca9b7] {
  70. color: #f56c6c;
  71. }
  72. .u-badge--success[data-v-06cca9b7] {
  73. background-color: #22ac38;
  74. }
  75. .u-badge--success--inverted[data-v-06cca9b7] {
  76. color: #22ac38;
  77. }
  78. .u-badge--info[data-v-06cca9b7] {
  79. background-color: #909399;
  80. }
  81. .u-badge--info--inverted[data-v-06cca9b7] {
  82. color: #909399;
  83. }
  84. .u-badge--warning[data-v-06cca9b7] {
  85. background-color: #f9ae3d;
  86. }
  87. .u-badge--warning--inverted[data-v-06cca9b7] {
  88. color: #f9ae3d;
  89. }
  90. /**
  91. * 这里是uni-app内置的常用样式变量
  92. *
  93. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  94. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  95. *
  96. */
  97. /**
  98. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  99. *
  100. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  101. */
  102. /* 颜色变量 */
  103. /* 行为相关颜色 */
  104. /* 文字基本颜色 */
  105. /* 背景颜色 */
  106. /* 边框颜色 */
  107. /* 尺寸变量 */
  108. /* 文字尺寸 */
  109. /* 图片尺寸 */
  110. /* Border Radius */
  111. /* 水平间距 */
  112. /* 垂直间距 */
  113. /* 透明度 */
  114. /* 文章场景相关 */
  115. uni-view[data-v-02b0c54f], uni-scroll-view[data-v-02b0c54f], uni-swiper-item[data-v-02b0c54f] {
  116. display: flex;
  117. flex-direction: column;
  118. flex-shrink: 0;
  119. flex-grow: 0;
  120. flex-basis: auto;
  121. align-items: stretch;
  122. align-content: flex-start;
  123. }
  124. .u-tabs__wrapper[data-v-02b0c54f] {
  125. display: flex;
  126. flex-direction: row;
  127. align-items: center;
  128. }
  129. .u-tabs__wrapper__scroll-view-wrapper[data-v-02b0c54f] {
  130. flex: 1;
  131. overflow: auto hidden;
  132. }
  133. .u-tabs__wrapper__scroll-view[data-v-02b0c54f] {
  134. display: flex;
  135. flex-direction: row;
  136. flex: 1;
  137. }
  138. .u-tabs__wrapper__nav[data-v-02b0c54f] {
  139. display: flex;
  140. flex-direction: row;
  141. position: relative;
  142. }
  143. .u-tabs__wrapper__nav__item[data-v-02b0c54f] {
  144. padding: 0 11px;
  145. display: flex;
  146. flex-direction: row;
  147. align-items: center;
  148. justify-content: center;
  149. }
  150. .u-tabs__wrapper__nav__item--disabled[data-v-02b0c54f] {
  151. cursor: not-allowed;
  152. }
  153. .u-tabs__wrapper__nav__item__text[data-v-02b0c54f] {
  154. font-size: 15px;
  155. color: #606266;
  156. }
  157. .u-tabs__wrapper__nav__item__text--disabled[data-v-02b0c54f] {
  158. color: #c8c9cc !important;
  159. }
  160. .u-tabs__wrapper__nav__line[data-v-02b0c54f] {
  161. height: 3px;
  162. background: #22ac38;
  163. width: 30px;
  164. position: absolute;
  165. bottom: 2px;
  166. border-radius: 100px;
  167. transition-property: transform;
  168. transition-duration: 300ms;
  169. }
  170. /**
  171. * 这里是uni-app内置的常用样式变量
  172. *
  173. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  174. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  175. *
  176. */
  177. /**
  178. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  179. *
  180. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  181. */
  182. /* 颜色变量 */
  183. /* 行为相关颜色 */
  184. /* 文字基本颜色 */
  185. /* 背景颜色 */
  186. /* 边框颜色 */
  187. /* 尺寸变量 */
  188. /* 文字尺寸 */
  189. /* 图片尺寸 */
  190. /* Border Radius */
  191. /* 水平间距 */
  192. /* 垂直间距 */
  193. /* 透明度 */
  194. /* 文章场景相关 */
  195. uni-view[data-v-ac70166d], uni-scroll-view[data-v-ac70166d], uni-swiper-item[data-v-ac70166d] {
  196. display: flex;
  197. flex-direction: column;
  198. flex-shrink: 0;
  199. flex-grow: 0;
  200. flex-basis: auto;
  201. align-items: stretch;
  202. align-content: flex-start;
  203. }
  204. @font-face {
  205. font-family: "uicon-iconfont";
  206. src: url("https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf") format("truetype");
  207. }
  208. .u-icon[data-v-ac70166d] {
  209. display: flex;
  210. align-items: center;
  211. }
  212. .u-icon--left[data-v-ac70166d] {
  213. flex-direction: row-reverse;
  214. align-items: center;
  215. }
  216. .u-icon--right[data-v-ac70166d] {
  217. flex-direction: row;
  218. align-items: center;
  219. }
  220. .u-icon--top[data-v-ac70166d] {
  221. flex-direction: column-reverse;
  222. justify-content: center;
  223. }
  224. .u-icon--bottom[data-v-ac70166d] {
  225. flex-direction: column;
  226. justify-content: center;
  227. }
  228. .u-icon__icon[data-v-ac70166d] {
  229. font-family: uicon-iconfont;
  230. position: relative;
  231. display: flex;
  232. flex-direction: row;
  233. align-items: center;
  234. }
  235. .u-icon__icon--primary[data-v-ac70166d] {
  236. color: #22ac38;
  237. }
  238. .u-icon__icon--success[data-v-ac70166d] {
  239. color: #22ac38;
  240. }
  241. .u-icon__icon--error[data-v-ac70166d] {
  242. color: #f56c6c;
  243. }
  244. .u-icon__icon--warning[data-v-ac70166d] {
  245. color: #f9ae3d;
  246. }
  247. .u-icon__icon--info[data-v-ac70166d] {
  248. color: #909399;
  249. }
  250. .u-icon__img[data-v-ac70166d] {
  251. height: auto;
  252. will-change: transform;
  253. }
  254. .u-icon__label[data-v-ac70166d] {
  255. line-height: 1;
  256. }
  257. /**
  258. * 这里是uni-app内置的常用样式变量
  259. *
  260. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  261. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  262. *
  263. */
  264. /**
  265. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  266. *
  267. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  268. */
  269. /* 颜色变量 */
  270. /* 行为相关颜色 */
  271. /* 文字基本颜色 */
  272. /* 背景颜色 */
  273. /* 边框颜色 */
  274. /* 尺寸变量 */
  275. /* 文字尺寸 */
  276. /* 图片尺寸 */
  277. /* Border Radius */
  278. /* 水平间距 */
  279. /* 垂直间距 */
  280. /* 透明度 */
  281. /* 文章场景相关 */
  282. uni-view[data-v-e082a34a], uni-scroll-view[data-v-e082a34a], uni-swiper-item[data-v-e082a34a] {
  283. display: flex;
  284. flex-direction: column;
  285. flex-shrink: 0;
  286. flex-grow: 0;
  287. flex-basis: auto;
  288. align-items: stretch;
  289. align-content: flex-start;
  290. }
  291. .u-search[data-v-e082a34a] {
  292. display: flex;
  293. flex-direction: row;
  294. align-items: center;
  295. flex: 1;
  296. }
  297. .u-search__content[data-v-e082a34a] {
  298. display: flex;
  299. flex-direction: row;
  300. align-items: center;
  301. padding: 0 10px;
  302. flex: 1;
  303. justify-content: space-between;
  304. border-width: 1px;
  305. border-color: transparent;
  306. border-style: solid;
  307. overflow: hidden;
  308. }
  309. .u-search__content__icon[data-v-e082a34a] {
  310. display: flex;
  311. flex-direction: row;
  312. align-items: center;
  313. }
  314. .u-search__content__label[data-v-e082a34a] {
  315. color: #303133;
  316. font-size: 14px;
  317. margin: 0 4px;
  318. }
  319. .u-search__content__close[data-v-e082a34a] {
  320. width: 20px;
  321. height: 20px;
  322. border-top-left-radius: 100px;
  323. border-top-right-radius: 100px;
  324. border-bottom-left-radius: 100px;
  325. border-bottom-right-radius: 100px;
  326. background-color: #C6C7CB;
  327. display: flex;
  328. flex-direction: row;
  329. align-items: center;
  330. justify-content: center;
  331. transform: scale(0.82);
  332. }
  333. .u-search__content__input[data-v-e082a34a] {
  334. flex: 1;
  335. font-size: 14px;
  336. line-height: 1;
  337. margin: 0 5px;
  338. color: #303133;
  339. }
  340. .u-search__content__input--placeholder[data-v-e082a34a] {
  341. color: #909193;
  342. }
  343. .u-search__action[data-v-e082a34a] {
  344. font-size: 14px;
  345. color: #303133;
  346. width: 0;
  347. overflow: hidden;
  348. transition-property: width;
  349. transition-duration: 0.3s;
  350. white-space: nowrap;
  351. text-align: center;
  352. }
  353. .u-search__action--active[data-v-e082a34a] {
  354. width: 40px;
  355. margin-left: 5px;
  356. }
  357. .card[data-v-e52c1f77] {
  358. background-color: rgb(222, 134, 143, 0.5);
  359. padding: 12px;
  360. display: flex;
  361. align-items: center;
  362. margin-bottom: 0.1875rem;
  363. .card-content[data-v-e52c1f77] {
  364. display: flex;
  365. width: 100%;
  366. }
  367. .book-info[data-v-e52c1f77]{
  368. font-size: 0.8125rem;
  369. }
  370. .color-red[data-v-e52c1f77] {
  371. color: #bd3124;
  372. }
  373. }
  374. /**
  375. * 这里是uni-app内置的常用样式变量
  376. *
  377. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  378. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  379. *
  380. */
  381. /**
  382. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  383. *
  384. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  385. */
  386. /* 颜色变量 */
  387. /* 行为相关颜色 */
  388. /* 文字基本颜色 */
  389. /* 背景颜色 */
  390. /* 边框颜色 */
  391. /* 尺寸变量 */
  392. /* 文字尺寸 */
  393. /* 图片尺寸 */
  394. /* Border Radius */
  395. /* 水平间距 */
  396. /* 垂直间距 */
  397. /* 透明度 */
  398. /* 文章场景相关 */
  399. .header[data-v-c65e1cc0] {
  400. display: flex;
  401. justify-content: space-between;
  402. padding: 0.625rem 0.9375rem;
  403. background-color: #ffffff;
  404. }
  405. .status[data-v-c65e1cc0] {
  406. color: green;
  407. }
  408. .log-item[data-v-c65e1cc0] {
  409. display: flex;
  410. justify-content: space-between;
  411. padding: 0.625rem 0.9375rem;
  412. border-bottom: 1px solid #e0e0e0;
  413. }