quick-check.css 33 KB

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