sender.css 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936
  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-e082a34a], uni-scroll-view[data-v-e082a34a], uni-swiper-item[data-v-e082a34a] {
  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. .u-search[data-v-e082a34a] {
  123. display: flex;
  124. flex-direction: row;
  125. align-items: center;
  126. flex: 1;
  127. }
  128. .u-search__content[data-v-e082a34a] {
  129. display: flex;
  130. flex-direction: row;
  131. align-items: center;
  132. padding: 0 10px;
  133. flex: 1;
  134. justify-content: space-between;
  135. border-width: 1px;
  136. border-color: transparent;
  137. border-style: solid;
  138. overflow: hidden;
  139. }
  140. .u-search__content__icon[data-v-e082a34a] {
  141. display: flex;
  142. flex-direction: row;
  143. align-items: center;
  144. }
  145. .u-search__content__label[data-v-e082a34a] {
  146. color: #303133;
  147. font-size: 16px;
  148. margin: 0 4px;
  149. }
  150. .u-search__content__close[data-v-e082a34a] {
  151. width: 20px;
  152. height: 20px;
  153. border-top-left-radius: 100px;
  154. border-top-right-radius: 100px;
  155. border-bottom-left-radius: 100px;
  156. border-bottom-right-radius: 100px;
  157. background-color: #C6C7CB;
  158. display: flex;
  159. flex-direction: row;
  160. align-items: center;
  161. justify-content: center;
  162. transform: scale(0.82);
  163. }
  164. .u-search__content__input[data-v-e082a34a] {
  165. flex: 1;
  166. font-size: 16px;
  167. line-height: 1;
  168. margin: 0 5px;
  169. color: #303133;
  170. }
  171. .u-search__content__input--placeholder[data-v-e082a34a] {
  172. color: #909193;
  173. }
  174. .u-search__action[data-v-e082a34a] {
  175. font-size: 16px;
  176. color: #303133;
  177. width: 0;
  178. overflow: hidden;
  179. transition-property: width;
  180. transition-duration: 0.3s;
  181. white-space: nowrap;
  182. text-align: center;
  183. }
  184. .u-search__action--active[data-v-e082a34a] {
  185. width: 40px;
  186. margin-left: 5px;
  187. }
  188. /**
  189. * 这里是uni-app内置的常用样式变量
  190. *
  191. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  192. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  193. *
  194. */
  195. /**
  196. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  197. *
  198. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  199. */
  200. /* 颜色变量 */
  201. /* 行为相关颜色 */
  202. /* 文字基本颜色 */
  203. /* 背景颜色 */
  204. /* 边框颜色 */
  205. /* 尺寸变量 */
  206. /* 文字尺寸 */
  207. /* 图片尺寸 */
  208. /* Border Radius */
  209. /* 水平间距 */
  210. /* 垂直间距 */
  211. /* 透明度 */
  212. /* 文章场景相关 */
  213. .u-sticky[data-v-8b303089] {
  214. position: -webkit-sticky;
  215. position: sticky;
  216. }
  217. /* 无任何数据的空布局 */
  218. .mescroll-empty[data-v-7cefd855] {
  219. box-sizing: border-box;
  220. width: 100%;
  221. padding: 3.125rem 1.5625rem;
  222. text-align: center;
  223. }
  224. .mescroll-empty.empty-fixed[data-v-7cefd855] {
  225. z-index: 99;
  226. position: absolute; /*transform会使fixed失效,最终会降级为absolute */
  227. top: 3.125rem;
  228. left: 0;
  229. }
  230. .mescroll-empty .empty-icon[data-v-7cefd855] {
  231. width: 8.75rem;
  232. height: 8.75rem;
  233. }
  234. .mescroll-empty .empty-tip[data-v-7cefd855] {
  235. margin-top: 0.625rem;
  236. height: 1.25rem;
  237. font-size: 0.875rem;
  238. font-family: PingFangSC;
  239. font-weight: 500;
  240. color: #666666;
  241. line-height: 1.25rem;
  242. }
  243. .mescroll-empty .empty-btn[data-v-7cefd855] {
  244. display: inline-block;
  245. margin-top: 1.25rem;
  246. min-width: 6.25rem;
  247. padding: 0.5625rem;
  248. font-size: 0.875rem;
  249. border: 0.03125rem solid #e04b28;
  250. border-radius: 1.875rem;
  251. color: #e04b28;
  252. }
  253. .mescroll-empty .empty-btn[data-v-7cefd855]:active {
  254. opacity: 0.75;
  255. }
  256. /* 回到顶部的按钮 */
  257. .mescroll-totop[data-v-49fff3a8] {
  258. z-index: 9990;
  259. position: fixed !important; /* 加上important避免编译到H5,在多mescroll中定位失效 */
  260. right: 0.625rem;
  261. bottom: 3.75rem;
  262. width: 2.25rem;
  263. height: auto;
  264. border-radius: 50%;
  265. opacity: 0;
  266. transition: opacity 0.5s; /* 过渡 */
  267. margin-bottom: var(--window-bottom); /* css变量 */
  268. }
  269. /* 适配 iPhoneX */
  270. @supports (bottom: constant(safe-area-inset-bottom)) or (bottom: env(safe-area-inset-bottom)) {
  271. .mescroll-totop-safearea[data-v-49fff3a8] {
  272. margin-bottom: calc(var(--window-bottom) + constant(safe-area-inset-bottom)); /* window-bottom + 适配 iPhoneX */
  273. margin-bottom: calc(var(--window-bottom) + env(safe-area-inset-bottom));
  274. }
  275. }
  276. /* 显示 -- 淡入 */
  277. .mescroll-totop-in[data-v-49fff3a8] {
  278. opacity: 1;
  279. }
  280. /* 隐藏 -- 淡出且不接收事件*/
  281. .mescroll-totop-out[data-v-49fff3a8] {
  282. opacity: 0;
  283. pointer-events: none;
  284. }
  285. .mescroll-uni-warp[data-v-97b1664c] {
  286. height: 100%;
  287. }
  288. .mescroll-uni-content[data-v-97b1664c] {
  289. height: 100%;
  290. }
  291. .mescroll-uni[data-v-97b1664c] {
  292. position: relative;
  293. width: 100%;
  294. height: 100%;
  295. min-height: 6.25rem;
  296. overflow-y: auto;
  297. box-sizing: border-box;
  298. /* 避免设置padding出现双滚动条的问题 */
  299. }
  300. /* 定位的方式固定高度 */
  301. .mescroll-uni-fixed[data-v-97b1664c] {
  302. z-index: 1;
  303. position: fixed;
  304. top: 0;
  305. left: 0;
  306. right: 0;
  307. bottom: 0;
  308. width: auto;
  309. /* 使right生效 */
  310. height: auto;
  311. /* 使bottom生效 */
  312. }
  313. /* 适配 iPhoneX */
  314. @supports (bottom: constant(safe-area-inset-bottom)) or (bottom: env(safe-area-inset-bottom)) {
  315. .mescroll-safearea[data-v-97b1664c] {
  316. padding-bottom: constant(safe-area-inset-bottom);
  317. padding-bottom: env(safe-area-inset-bottom);
  318. }
  319. }
  320. /* 下拉刷新区域 */
  321. .mescroll-downwarp[data-v-97b1664c] {
  322. position: absolute;
  323. top: -100%;
  324. left: 0;
  325. width: 100%;
  326. height: 100%;
  327. text-align: center;
  328. }
  329. /* 下拉刷新--内容区,定位于区域底部 */
  330. .mescroll-downwarp .downwarp-content[data-v-97b1664c] {
  331. position: absolute;
  332. left: 0;
  333. bottom: 0;
  334. width: 100%;
  335. min-height: 1.875rem;
  336. padding: 0.625rem 0;
  337. text-align: center;
  338. }
  339. /* 下拉刷新--提示文本 */
  340. .mescroll-downwarp .downwarp-tip[data-v-97b1664c] {
  341. display: inline-block;
  342. font-size: 0.875rem;
  343. vertical-align: middle;
  344. margin-left: 0.5rem;
  345. /* color: gray; 已在style设置color,此处删去*/
  346. }
  347. /* 下拉刷新--旋转进度条 */
  348. .mescroll-downwarp .downwarp-progress[data-v-97b1664c] {
  349. display: inline-block;
  350. width: 1rem;
  351. height: 1rem;
  352. border-radius: 50%;
  353. border: 0.0625rem solid gray;
  354. border-bottom-color: transparent !important; /*已在style设置border-color,此处需加 !important*/
  355. vertical-align: middle;
  356. }
  357. /* 旋转动画 */
  358. .mescroll-downwarp .mescroll-rotate[data-v-97b1664c] {
  359. animation: mescrollDownRotate-97b1664c 0.6s linear infinite;
  360. }
  361. @keyframes mescrollDownRotate-97b1664c {
  362. 0% {
  363. transform: rotate(0deg);
  364. }
  365. 100% {
  366. transform: rotate(360deg);
  367. }
  368. }
  369. /* 上拉加载区域 */
  370. .mescroll-upwarp[data-v-97b1664c] {
  371. box-sizing: border-box;
  372. min-height: 3.4375rem;
  373. padding: 0.9375rem 0;
  374. text-align: center;
  375. clear: both;
  376. }
  377. /*提示文本 */
  378. .mescroll-upwarp .upwarp-tip[data-v-97b1664c],
  379. .mescroll-upwarp .upwarp-nodata[data-v-97b1664c] {
  380. display: inline-block;
  381. font-size: 0.875rem;
  382. vertical-align: middle;
  383. /* color: gray; 已在style设置color,此处删去*/
  384. }
  385. .mescroll-upwarp .upwarp-tip[data-v-97b1664c] {
  386. margin-left: 0.5rem;
  387. }
  388. /*旋转进度条 */
  389. .mescroll-upwarp .upwarp-progress[data-v-97b1664c] {
  390. display: inline-block;
  391. width: 1rem;
  392. height: 1rem;
  393. border-radius: 50%;
  394. border: 0.0625rem solid gray;
  395. border-bottom-color: transparent !important; /*已在style设置border-color,此处需加 !important*/
  396. vertical-align: middle;
  397. }
  398. /* 旋转动画 */
  399. .mescroll-upwarp .mescroll-rotate[data-v-97b1664c] {
  400. animation: mescrollUpRotate-97b1664c 0.6s linear infinite;
  401. }
  402. @keyframes mescrollUpRotate-97b1664c {
  403. 0% {
  404. transform: rotate(0deg);
  405. }
  406. 100% {
  407. transform: rotate(360deg);
  408. }
  409. }
  410. /**
  411. * 这里是uni-app内置的常用样式变量
  412. *
  413. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  414. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  415. *
  416. */
  417. /**
  418. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  419. *
  420. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  421. */
  422. /* 颜色变量 */
  423. /* 行为相关颜色 */
  424. /* 文字基本颜色 */
  425. /* 背景颜色 */
  426. /* 边框颜色 */
  427. /* 尺寸变量 */
  428. /* 文字尺寸 */
  429. /* 图片尺寸 */
  430. /* Border Radius */
  431. /* 水平间距 */
  432. /* 垂直间距 */
  433. /* 透明度 */
  434. /* 文章场景相关 */
  435. .item[data-v-30bc23e1] {
  436. line-height: 4.6875rem;
  437. border-bottom: 1px solid #ccc;
  438. }
  439. /**
  440. * 这里是uni-app内置的常用样式变量
  441. *
  442. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  443. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  444. *
  445. */
  446. /**
  447. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  448. *
  449. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  450. */
  451. /* 颜色变量 */
  452. /* 行为相关颜色 */
  453. /* 文字基本颜色 */
  454. /* 背景颜色 */
  455. /* 边框颜色 */
  456. /* 尺寸变量 */
  457. /* 文字尺寸 */
  458. /* 图片尺寸 */
  459. /* Border Radius */
  460. /* 水平间距 */
  461. /* 垂直间距 */
  462. /* 透明度 */
  463. /* 文章场景相关 */
  464. uni-view[data-v-2af81691], uni-scroll-view[data-v-2af81691], uni-swiper-item[data-v-2af81691] {
  465. display: flex;
  466. flex-direction: column;
  467. flex-shrink: 0;
  468. flex-grow: 0;
  469. flex-basis: auto;
  470. align-items: stretch;
  471. align-content: flex-start;
  472. }
  473. .u-loading-icon[data-v-2af81691] {
  474. flex-direction: row;
  475. align-items: center;
  476. justify-content: center;
  477. color: #c8c9cc;
  478. }
  479. .u-loading-icon__text[data-v-2af81691] {
  480. margin-left: 4px;
  481. color: #606266;
  482. font-size: 14px;
  483. line-height: 20px;
  484. }
  485. .u-loading-icon__spinner[data-v-2af81691] {
  486. width: 30px;
  487. height: 30px;
  488. position: relative;
  489. box-sizing: border-box;
  490. max-width: 100%;
  491. max-height: 100%;
  492. animation: u-rotate-2af81691 1s linear infinite;
  493. }
  494. .u-loading-icon__spinner--semicircle[data-v-2af81691] {
  495. border-width: 2px;
  496. border-color: transparent;
  497. border-top-right-radius: 100px;
  498. border-top-left-radius: 100px;
  499. border-bottom-left-radius: 100px;
  500. border-bottom-right-radius: 100px;
  501. border-style: solid;
  502. }
  503. .u-loading-icon__spinner--circle[data-v-2af81691] {
  504. border-top-right-radius: 100px;
  505. border-top-left-radius: 100px;
  506. border-bottom-left-radius: 100px;
  507. border-bottom-right-radius: 100px;
  508. border-width: 2px;
  509. border-top-color: #e5e5e5;
  510. border-right-color: #e5e5e5;
  511. border-bottom-color: #e5e5e5;
  512. border-left-color: #e5e5e5;
  513. border-style: solid;
  514. }
  515. .u-loading-icon--vertical[data-v-2af81691] {
  516. flex-direction: column;
  517. }
  518. [data-v-2af81691]:host {
  519. font-size: 0px;
  520. line-height: 1;
  521. }
  522. .u-loading-icon__spinner--spinner[data-v-2af81691] {
  523. animation-timing-function: steps(12);
  524. }
  525. .u-loading-icon__text[data-v-2af81691]:empty {
  526. display: none;
  527. }
  528. .u-loading-icon--vertical .u-loading-icon__text[data-v-2af81691] {
  529. margin: 6px 0 0;
  530. color: #606266;
  531. }
  532. .u-loading-icon__dot[data-v-2af81691] {
  533. position: absolute;
  534. top: 0;
  535. left: 0;
  536. width: 100%;
  537. height: 100%;
  538. }
  539. .u-loading-icon__dot[data-v-2af81691]:before {
  540. display: block;
  541. width: 2px;
  542. height: 25%;
  543. margin: 0 auto;
  544. background-color: currentColor;
  545. border-radius: 40%;
  546. content: " ";
  547. }
  548. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(1) {
  549. transform: rotate(30deg);
  550. opacity: 1;
  551. }
  552. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(2) {
  553. transform: rotate(60deg);
  554. opacity: 0.9375;
  555. }
  556. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(3) {
  557. transform: rotate(90deg);
  558. opacity: 0.875;
  559. }
  560. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(4) {
  561. transform: rotate(120deg);
  562. opacity: 0.8125;
  563. }
  564. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(5) {
  565. transform: rotate(150deg);
  566. opacity: 0.75;
  567. }
  568. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(6) {
  569. transform: rotate(180deg);
  570. opacity: 0.6875;
  571. }
  572. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(7) {
  573. transform: rotate(210deg);
  574. opacity: 0.625;
  575. }
  576. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(8) {
  577. transform: rotate(240deg);
  578. opacity: 0.5625;
  579. }
  580. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(9) {
  581. transform: rotate(270deg);
  582. opacity: 0.5;
  583. }
  584. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(10) {
  585. transform: rotate(300deg);
  586. opacity: 0.4375;
  587. }
  588. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(11) {
  589. transform: rotate(330deg);
  590. opacity: 0.375;
  591. }
  592. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(12) {
  593. transform: rotate(360deg);
  594. opacity: 0.3125;
  595. }
  596. @keyframes u-rotate-2af81691 {
  597. 0% {
  598. transform: rotate(0deg);
  599. }
  600. to {
  601. transform: rotate(1turn);
  602. }
  603. }
  604. /**
  605. * 这里是uni-app内置的常用样式变量
  606. *
  607. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  608. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  609. *
  610. */
  611. /**
  612. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  613. *
  614. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  615. */
  616. /* 颜色变量 */
  617. /* 行为相关颜色 */
  618. /* 文字基本颜色 */
  619. /* 背景颜色 */
  620. /* 边框颜色 */
  621. /* 尺寸变量 */
  622. /* 文字尺寸 */
  623. /* 图片尺寸 */
  624. /* Border Radius */
  625. /* 水平间距 */
  626. /* 垂直间距 */
  627. /* 透明度 */
  628. /* 文章场景相关 */
  629. uni-view[data-v-5ce41ee6], uni-scroll-view[data-v-5ce41ee6], uni-swiper-item[data-v-5ce41ee6] {
  630. display: flex;
  631. flex-direction: column;
  632. flex-shrink: 0;
  633. flex-grow: 0;
  634. flex-basis: auto;
  635. align-items: stretch;
  636. align-content: flex-start;
  637. }
  638. .u-button[data-v-5ce41ee6] {
  639. width: 100%;
  640. }
  641. .u-button__text[data-v-5ce41ee6] {
  642. white-space: nowrap;
  643. line-height: 1;
  644. }
  645. .u-button[data-v-5ce41ee6]:before {
  646. position: absolute;
  647. top: 50%;
  648. left: 50%;
  649. width: 100%;
  650. height: 100%;
  651. border: inherit;
  652. border-radius: inherit;
  653. transform: translate(-50%, -50%);
  654. opacity: 0;
  655. content: " ";
  656. background-color: #000;
  657. border-color: #000;
  658. }
  659. .u-button--active[data-v-5ce41ee6]:before {
  660. opacity: 0.15;
  661. }
  662. .u-button__icon + .u-button__text[data-v-5ce41ee6]:not(:empty), .u-button__loading-text[data-v-5ce41ee6] {
  663. margin-left: 4px;
  664. }
  665. .u-button--plain.u-button--primary[data-v-5ce41ee6] {
  666. color: #22ac38;
  667. }
  668. .u-button--plain.u-button--info[data-v-5ce41ee6] {
  669. color: #909399;
  670. }
  671. .u-button--plain.u-button--success[data-v-5ce41ee6] {
  672. color: #22ac38;
  673. }
  674. .u-button--plain.u-button--error[data-v-5ce41ee6] {
  675. color: #f56c6c;
  676. }
  677. .u-button--plain.u-button--warning[data-v-5ce41ee6] {
  678. color: #f56c6c;
  679. }
  680. .u-button[data-v-5ce41ee6] {
  681. height: 52px;
  682. position: relative;
  683. align-items: center;
  684. justify-content: center;
  685. display: flex;
  686. flex-direction: row;
  687. box-sizing: border-box;
  688. flex-direction: row;
  689. }
  690. .u-button__text[data-v-5ce41ee6] {
  691. font-size: 16px;
  692. }
  693. .u-button__loading-text[data-v-5ce41ee6] {
  694. font-size: 16px;
  695. margin-left: 4px;
  696. }
  697. .u-button--large[data-v-5ce41ee6] {
  698. width: 100%;
  699. height: 64px;
  700. padding: 0 15px;
  701. font-size: 20px;
  702. }
  703. .u-button--normal[data-v-5ce41ee6] {
  704. padding: 0 12px;
  705. font-size: 16px;
  706. }
  707. .u-button--small[data-v-5ce41ee6] {
  708. min-width: 60px;
  709. height: 30px;
  710. padding: 0px 8px;
  711. font-size: 12px;
  712. }
  713. .u-button--mini[data-v-5ce41ee6] {
  714. height: 22px;
  715. font-size: 10px;
  716. min-width: 50px;
  717. padding: 0px 8px;
  718. }
  719. .u-button--disabled[data-v-5ce41ee6] {
  720. opacity: 0.5;
  721. }
  722. .u-button--info[data-v-5ce41ee6] {
  723. color: #323233;
  724. background-color: #fff;
  725. border-color: #ebedf0;
  726. border-width: 1px;
  727. border-style: solid;
  728. }
  729. .u-button--success[data-v-5ce41ee6] {
  730. color: #fff;
  731. background-color: #22ac38;
  732. border-color: #22ac38;
  733. border-width: 1px;
  734. border-style: solid;
  735. }
  736. .u-button--primary[data-v-5ce41ee6] {
  737. color: #fff;
  738. background-color: #22ac38;
  739. border-color: #22ac38;
  740. border-width: 1px;
  741. border-style: solid;
  742. }
  743. .u-button--error[data-v-5ce41ee6] {
  744. color: #fff;
  745. background-color: #f56c6c;
  746. border-color: #f56c6c;
  747. border-width: 1px;
  748. border-style: solid;
  749. }
  750. .u-button--warning[data-v-5ce41ee6] {
  751. color: #fff;
  752. background-color: #f9ae3d;
  753. border-color: #f9ae3d;
  754. border-width: 1px;
  755. border-style: solid;
  756. }
  757. .u-button--block[data-v-5ce41ee6] {
  758. display: flex;
  759. flex-direction: row;
  760. width: 100%;
  761. }
  762. .u-button--circle[data-v-5ce41ee6] {
  763. border-top-right-radius: 100px;
  764. border-top-left-radius: 100px;
  765. border-bottom-left-radius: 100px;
  766. border-bottom-right-radius: 100px;
  767. }
  768. .u-button--square[data-v-5ce41ee6] {
  769. border-bottom-left-radius: 3px;
  770. border-bottom-right-radius: 3px;
  771. border-top-left-radius: 3px;
  772. border-top-right-radius: 3px;
  773. }
  774. .u-button__icon[data-v-5ce41ee6] {
  775. min-width: 1em;
  776. line-height: inherit !important;
  777. vertical-align: top;
  778. }
  779. .u-button--plain[data-v-5ce41ee6] {
  780. background-color: #fff;
  781. }
  782. .u-button--hairline[data-v-5ce41ee6] {
  783. border-width: 0.5px !important;
  784. }
  785. /**
  786. * 这里是uni-app内置的常用样式变量
  787. *
  788. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  789. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  790. *
  791. */
  792. /**
  793. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  794. *
  795. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  796. */
  797. /* 颜色变量 */
  798. /* 行为相关颜色 */
  799. /* 文字基本颜色 */
  800. /* 背景颜色 */
  801. /* 边框颜色 */
  802. /* 尺寸变量 */
  803. /* 文字尺寸 */
  804. /* 图片尺寸 */
  805. /* Border Radius */
  806. /* 水平间距 */
  807. /* 垂直间距 */
  808. /* 透明度 */
  809. /* 文章场景相关 */
  810. .order-card[data-v-12bc2a79] {
  811. background: #FFFFFF;
  812. border-radius: 0.25rem;
  813. padding: 0.625rem;
  814. margin-bottom: 0.625rem;
  815. box-shadow: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.1);
  816. }
  817. .order-card .user-info[data-v-12bc2a79] {
  818. display: flex;
  819. align-items: flex-start;
  820. margin-bottom: 0.625rem;
  821. }
  822. .order-card .user-info .avatar[data-v-12bc2a79] {
  823. width: 2.5rem;
  824. height: 2.5rem;
  825. border-radius: 1.25rem;
  826. margin-right: 0.625rem;
  827. }
  828. .order-card .user-info .user-details[data-v-12bc2a79] {
  829. flex: 1;
  830. display: flex;
  831. flex-direction: column;
  832. }
  833. .order-card .user-info .user-details.right-items[data-v-12bc2a79] {
  834. align-items: flex-end;
  835. }
  836. .order-card .user-info .user-details .username[data-v-12bc2a79] {
  837. font-size: 0.875rem;
  838. color: #333333;
  839. margin-bottom: 0.125rem;
  840. }
  841. .order-card .user-info .user-details .date[data-v-12bc2a79] {
  842. font-size: 0.75rem;
  843. color: #999999;
  844. }
  845. .order-card .user-info .user-details .status[data-v-12bc2a79] {
  846. font-size: 0.75rem;
  847. font-weight: bold;
  848. }
  849. .order-card .order-details[data-v-12bc2a79] {
  850. font-size: 0.8125rem;
  851. color: #333333;
  852. margin-bottom: 0.625rem;
  853. }
  854. .order-card .order-details .detail-row[data-v-12bc2a79] {
  855. display: flex;
  856. justify-content: space-between;
  857. margin-bottom: 0.375rem;
  858. }
  859. .order-card .order-details .detail-row .link[data-v-12bc2a79] {
  860. color: #007BFF;
  861. text-decoration: underline;
  862. cursor: pointer;
  863. }
  864. .order-card .action-buttons[data-v-12bc2a79] {
  865. display: flex;
  866. justify-content: space-between;
  867. }
  868. .order-card .action-buttons[data-v-12bc2a79] .u-button {
  869. flex: 1;
  870. margin: 0 0.3125rem;
  871. height: 1.875rem;
  872. font-size: 0.8125rem;
  873. }
  874. /**
  875. * 这里是uni-app内置的常用样式变量
  876. *
  877. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  878. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  879. *
  880. */
  881. /**
  882. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  883. *
  884. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  885. */
  886. /* 颜色变量 */
  887. /* 行为相关颜色 */
  888. /* 文字基本颜色 */
  889. /* 背景颜色 */
  890. /* 边框颜色 */
  891. /* 尺寸变量 */
  892. /* 文字尺寸 */
  893. /* 图片尺寸 */
  894. /* Border Radius */
  895. /* 水平间距 */
  896. /* 垂直间距 */
  897. /* 透明度 */
  898. /* 文章场景相关 */
  899. .search-area {
  900. padding: 0.75rem;
  901. background-color: #ffffff;
  902. z-index: 9;
  903. }