quick-check.css 33 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201
  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: #3c9cff;
  68. }
  69. .u-icon__icon--success[data-v-ac70166d] {
  70. color: #5ac725;
  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: #3c9cff;
  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: #5ac725;
  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: 40px;
  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: 15px;
  570. }
  571. .u-button__loading-text[data-v-5ce41ee6] {
  572. font-size: 15px;
  573. margin-left: 4px;
  574. }
  575. .u-button--large[data-v-5ce41ee6] {
  576. width: 100%;
  577. height: 50px;
  578. padding: 0 15px;
  579. }
  580. .u-button--normal[data-v-5ce41ee6] {
  581. padding: 0 12px;
  582. font-size: 14px;
  583. }
  584. .u-button--small[data-v-5ce41ee6] {
  585. min-width: 60px;
  586. height: 30px;
  587. padding: 0px 8px;
  588. font-size: 12px;
  589. }
  590. .u-button--mini[data-v-5ce41ee6] {
  591. height: 22px;
  592. font-size: 10px;
  593. min-width: 50px;
  594. padding: 0px 8px;
  595. }
  596. .u-button--disabled[data-v-5ce41ee6] {
  597. opacity: 0.5;
  598. }
  599. .u-button--info[data-v-5ce41ee6] {
  600. color: #323233;
  601. background-color: #fff;
  602. border-color: #ebedf0;
  603. border-width: 1px;
  604. border-style: solid;
  605. }
  606. .u-button--success[data-v-5ce41ee6] {
  607. color: #fff;
  608. background-color: #5ac725;
  609. border-color: #5ac725;
  610. border-width: 1px;
  611. border-style: solid;
  612. }
  613. .u-button--primary[data-v-5ce41ee6] {
  614. color: #fff;
  615. background-color: #3c9cff;
  616. border-color: #3c9cff;
  617. border-width: 1px;
  618. border-style: solid;
  619. }
  620. .u-button--error[data-v-5ce41ee6] {
  621. color: #fff;
  622. background-color: #f56c6c;
  623. border-color: #f56c6c;
  624. border-width: 1px;
  625. border-style: solid;
  626. }
  627. .u-button--warning[data-v-5ce41ee6] {
  628. color: #fff;
  629. background-color: #f9ae3d;
  630. border-color: #f9ae3d;
  631. border-width: 1px;
  632. border-style: solid;
  633. }
  634. .u-button--block[data-v-5ce41ee6] {
  635. display: flex;
  636. flex-direction: row;
  637. width: 100%;
  638. }
  639. .u-button--circle[data-v-5ce41ee6] {
  640. border-top-right-radius: 100px;
  641. border-top-left-radius: 100px;
  642. border-bottom-left-radius: 100px;
  643. border-bottom-right-radius: 100px;
  644. }
  645. .u-button--square[data-v-5ce41ee6] {
  646. border-bottom-left-radius: 3px;
  647. border-bottom-right-radius: 3px;
  648. border-top-left-radius: 3px;
  649. border-top-right-radius: 3px;
  650. }
  651. .u-button__icon[data-v-5ce41ee6] {
  652. min-width: 1em;
  653. line-height: inherit !important;
  654. vertical-align: top;
  655. }
  656. .u-button--plain[data-v-5ce41ee6] {
  657. background-color: #fff;
  658. }
  659. .u-button--hairline[data-v-5ce41ee6] {
  660. border-width: 0.5px !important;
  661. }
  662. /**
  663. * 这里是uni-app内置的常用样式变量
  664. *
  665. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  666. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  667. *
  668. */
  669. /**
  670. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  671. *
  672. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  673. */
  674. /* 颜色变量 */
  675. /* 行为相关颜色 */
  676. /* 文字基本颜色 */
  677. /* 背景颜色 */
  678. /* 边框颜色 */
  679. /* 尺寸变量 */
  680. /* 文字尺寸 */
  681. /* 图片尺寸 */
  682. /* Border Radius */
  683. /* 水平间距 */
  684. /* 垂直间距 */
  685. /* 透明度 */
  686. /* 文章场景相关 */
  687. uni-view[data-v-72791e59], uni-scroll-view[data-v-72791e59], uni-swiper-item[data-v-72791e59] {
  688. display: flex;
  689. flex-direction: column;
  690. flex-shrink: 0;
  691. flex-grow: 0;
  692. flex-basis: auto;
  693. align-items: stretch;
  694. align-content: flex-start;
  695. }
  696. .u-line[data-v-72791e59] {
  697. vertical-align: middle;
  698. }
  699. /**
  700. * 这里是uni-app内置的常用样式变量
  701. *
  702. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  703. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  704. *
  705. */
  706. /**
  707. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  708. *
  709. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  710. */
  711. /* 颜色变量 */
  712. /* 行为相关颜色 */
  713. /* 文字基本颜色 */
  714. /* 背景颜色 */
  715. /* 边框颜色 */
  716. /* 尺寸变量 */
  717. /* 文字尺寸 */
  718. /* 图片尺寸 */
  719. /* Border Radius */
  720. /* 水平间距 */
  721. /* 垂直间距 */
  722. /* 透明度 */
  723. /* 文章场景相关 */
  724. uni-view[data-v-ea022cee], uni-scroll-view[data-v-ea022cee], uni-swiper-item[data-v-ea022cee] {
  725. display: flex;
  726. flex-direction: column;
  727. flex-shrink: 0;
  728. flex-grow: 0;
  729. flex-basis: auto;
  730. align-items: stretch;
  731. align-content: flex-start;
  732. }
  733. .u-divider[data-v-ea022cee] {
  734. display: flex;
  735. flex-direction: row;
  736. flex-direction: row;
  737. align-items: center;
  738. margin: 15px 0;
  739. }
  740. .u-divider__text[data-v-ea022cee] {
  741. margin: 0 15px;
  742. }
  743. .u-divider__dot[data-v-ea022cee] {
  744. font-size: 12px;
  745. margin: 0 12px;
  746. color: #c0c4cc;
  747. }
  748. /**
  749. * 这里是uni-app内置的常用样式变量
  750. *
  751. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  752. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  753. *
  754. */
  755. /**
  756. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  757. *
  758. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  759. */
  760. /* 颜色变量 */
  761. /* 行为相关颜色 */
  762. /* 文字基本颜色 */
  763. /* 背景颜色 */
  764. /* 边框颜色 */
  765. /* 尺寸变量 */
  766. /* 文字尺寸 */
  767. /* 图片尺寸 */
  768. /* Border Radius */
  769. /* 水平间距 */
  770. /* 垂直间距 */
  771. /* 透明度 */
  772. /* 文章场景相关 */
  773. uni-view[data-v-5cec8177], uni-scroll-view[data-v-5cec8177], uni-swiper-item[data-v-5cec8177] {
  774. display: flex;
  775. flex-direction: column;
  776. flex-shrink: 0;
  777. flex-grow: 0;
  778. flex-basis: auto;
  779. align-items: stretch;
  780. align-content: flex-start;
  781. }
  782. /**
  783. * vue版本动画内置的动画模式有如下:
  784. * fade:淡入
  785. * zoom:缩放
  786. * fade-zoom:缩放淡入
  787. * fade-up:上滑淡入
  788. * fade-down:下滑淡入
  789. * fade-left:左滑淡入
  790. * fade-right:右滑淡入
  791. * slide-up:上滑进入
  792. * slide-down:下滑进入
  793. * slide-left:左滑进入
  794. * slide-right:右滑进入
  795. */
  796. .u-fade-enter-active[data-v-5cec8177],
  797. .u-fade-leave-active[data-v-5cec8177] {
  798. transition-property: opacity;
  799. }
  800. .u-fade-enter[data-v-5cec8177],
  801. .u-fade-leave-to[data-v-5cec8177] {
  802. opacity: 0;
  803. }
  804. .u-fade-zoom-enter[data-v-5cec8177],
  805. .u-fade-zoom-leave-to[data-v-5cec8177] {
  806. transform: scale(0.95);
  807. opacity: 0;
  808. }
  809. .u-fade-zoom-enter-active[data-v-5cec8177],
  810. .u-fade-zoom-leave-active[data-v-5cec8177] {
  811. transition-property: transform, opacity;
  812. }
  813. .u-fade-down-enter-active[data-v-5cec8177],
  814. .u-fade-down-leave-active[data-v-5cec8177],
  815. .u-fade-left-enter-active[data-v-5cec8177],
  816. .u-fade-left-leave-active[data-v-5cec8177],
  817. .u-fade-right-enter-active[data-v-5cec8177],
  818. .u-fade-right-leave-active[data-v-5cec8177],
  819. .u-fade-up-enter-active[data-v-5cec8177],
  820. .u-fade-up-leave-active[data-v-5cec8177] {
  821. transition-property: opacity, transform;
  822. }
  823. .u-fade-up-enter[data-v-5cec8177],
  824. .u-fade-up-leave-to[data-v-5cec8177] {
  825. transform: translate3d(0, 100%, 0);
  826. opacity: 0;
  827. }
  828. .u-fade-down-enter[data-v-5cec8177],
  829. .u-fade-down-leave-to[data-v-5cec8177] {
  830. transform: translate3d(0, -100%, 0);
  831. opacity: 0;
  832. }
  833. .u-fade-left-enter[data-v-5cec8177],
  834. .u-fade-left-leave-to[data-v-5cec8177] {
  835. transform: translate3d(-100%, 0, 0);
  836. opacity: 0;
  837. }
  838. .u-fade-right-enter[data-v-5cec8177],
  839. .u-fade-right-leave-to[data-v-5cec8177] {
  840. transform: translate3d(100%, 0, 0);
  841. opacity: 0;
  842. }
  843. .u-slide-down-enter-active[data-v-5cec8177],
  844. .u-slide-down-leave-active[data-v-5cec8177],
  845. .u-slide-left-enter-active[data-v-5cec8177],
  846. .u-slide-left-leave-active[data-v-5cec8177],
  847. .u-slide-right-enter-active[data-v-5cec8177],
  848. .u-slide-right-leave-active[data-v-5cec8177],
  849. .u-slide-up-enter-active[data-v-5cec8177],
  850. .u-slide-up-leave-active[data-v-5cec8177] {
  851. transition-property: transform;
  852. }
  853. .u-slide-up-enter[data-v-5cec8177],
  854. .u-slide-up-leave-to[data-v-5cec8177] {
  855. transform: translate3d(0, 100%, 0);
  856. }
  857. .u-slide-down-enter[data-v-5cec8177],
  858. .u-slide-down-leave-to[data-v-5cec8177] {
  859. transform: translate3d(0, -100%, 0);
  860. }
  861. .u-slide-left-enter[data-v-5cec8177],
  862. .u-slide-left-leave-to[data-v-5cec8177] {
  863. transform: translate3d(-100%, 0, 0);
  864. }
  865. .u-slide-right-enter[data-v-5cec8177],
  866. .u-slide-right-leave-to[data-v-5cec8177] {
  867. transform: translate3d(100%, 0, 0);
  868. }
  869. .u-zoom-enter-active[data-v-5cec8177],
  870. .u-zoom-leave-active[data-v-5cec8177] {
  871. transition-property: transform;
  872. }
  873. .u-zoom-enter[data-v-5cec8177],
  874. .u-zoom-leave-to[data-v-5cec8177] {
  875. transform: scale(0.95);
  876. }
  877. /**
  878. * 这里是uni-app内置的常用样式变量
  879. *
  880. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  881. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  882. *
  883. */
  884. /**
  885. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  886. *
  887. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  888. */
  889. /* 颜色变量 */
  890. /* 行为相关颜色 */
  891. /* 文字基本颜色 */
  892. /* 背景颜色 */
  893. /* 边框颜色 */
  894. /* 尺寸变量 */
  895. /* 文字尺寸 */
  896. /* 图片尺寸 */
  897. /* Border Radius */
  898. /* 水平间距 */
  899. /* 垂直间距 */
  900. /* 透明度 */
  901. /* 文章场景相关 */
  902. uni-view[data-v-9112bed9], uni-scroll-view[data-v-9112bed9], uni-swiper-item[data-v-9112bed9] {
  903. display: flex;
  904. flex-direction: column;
  905. flex-shrink: 0;
  906. flex-grow: 0;
  907. flex-basis: auto;
  908. align-items: stretch;
  909. align-content: flex-start;
  910. }
  911. .u-overlay[data-v-9112bed9] {
  912. position: fixed;
  913. top: 0;
  914. left: 0;
  915. width: 100%;
  916. height: 100%;
  917. background-color: rgba(0, 0, 0, 0.7);
  918. }
  919. /**
  920. * 这里是uni-app内置的常用样式变量
  921. *
  922. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  923. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  924. *
  925. */
  926. /**
  927. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  928. *
  929. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  930. */
  931. /* 颜色变量 */
  932. /* 行为相关颜色 */
  933. /* 文字基本颜色 */
  934. /* 背景颜色 */
  935. /* 边框颜色 */
  936. /* 尺寸变量 */
  937. /* 文字尺寸 */
  938. /* 图片尺寸 */
  939. /* Border Radius */
  940. /* 水平间距 */
  941. /* 垂直间距 */
  942. /* 透明度 */
  943. /* 文章场景相关 */
  944. .u-status-bar[data-v-eb8e0cdd] {
  945. width: 100%;
  946. }
  947. /**
  948. * 这里是uni-app内置的常用样式变量
  949. *
  950. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  951. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  952. *
  953. */
  954. /**
  955. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  956. *
  957. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  958. */
  959. /* 颜色变量 */
  960. /* 行为相关颜色 */
  961. /* 文字基本颜色 */
  962. /* 背景颜色 */
  963. /* 边框颜色 */
  964. /* 尺寸变量 */
  965. /* 文字尺寸 */
  966. /* 图片尺寸 */
  967. /* Border Radius */
  968. /* 水平间距 */
  969. /* 垂直间距 */
  970. /* 透明度 */
  971. /* 文章场景相关 */
  972. .u-safe-bottom[data-v-f3d22cfe] {
  973. width: 100%;
  974. }
  975. /**
  976. * 这里是uni-app内置的常用样式变量
  977. *
  978. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  979. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  980. *
  981. */
  982. /**
  983. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  984. *
  985. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  986. */
  987. /* 颜色变量 */
  988. /* 行为相关颜色 */
  989. /* 文字基本颜色 */
  990. /* 背景颜色 */
  991. /* 边框颜色 */
  992. /* 尺寸变量 */
  993. /* 文字尺寸 */
  994. /* 图片尺寸 */
  995. /* Border Radius */
  996. /* 水平间距 */
  997. /* 垂直间距 */
  998. /* 透明度 */
  999. /* 文章场景相关 */
  1000. uni-view[data-v-05c24e9b], uni-scroll-view[data-v-05c24e9b], uni-swiper-item[data-v-05c24e9b] {
  1001. display: flex;
  1002. flex-direction: column;
  1003. flex-shrink: 0;
  1004. flex-grow: 0;
  1005. flex-basis: auto;
  1006. align-items: stretch;
  1007. align-content: flex-start;
  1008. }
  1009. .u-popup[data-v-05c24e9b] {
  1010. flex: 1;
  1011. }
  1012. .u-popup__content[data-v-05c24e9b] {
  1013. background-color: #fff;
  1014. position: relative;
  1015. }
  1016. .u-popup__content--round-top[data-v-05c24e9b] {
  1017. border-top-left-radius: 0;
  1018. border-top-right-radius: 0;
  1019. border-bottom-left-radius: 10px;
  1020. border-bottom-right-radius: 10px;
  1021. }
  1022. .u-popup__content--round-left[data-v-05c24e9b] {
  1023. border-top-left-radius: 0;
  1024. border-top-right-radius: 10px;
  1025. border-bottom-left-radius: 0;
  1026. border-bottom-right-radius: 10px;
  1027. }
  1028. .u-popup__content--round-right[data-v-05c24e9b] {
  1029. border-top-left-radius: 10px;
  1030. border-top-right-radius: 0;
  1031. border-bottom-left-radius: 10px;
  1032. border-bottom-right-radius: 0;
  1033. }
  1034. .u-popup__content--round-bottom[data-v-05c24e9b] {
  1035. border-top-left-radius: 10px;
  1036. border-top-right-radius: 10px;
  1037. border-bottom-left-radius: 0;
  1038. border-bottom-right-radius: 0;
  1039. }
  1040. .u-popup__content--round-center[data-v-05c24e9b] {
  1041. border-top-left-radius: 10px;
  1042. border-top-right-radius: 10px;
  1043. border-bottom-left-radius: 10px;
  1044. border-bottom-right-radius: 10px;
  1045. }
  1046. .u-popup__content__close[data-v-05c24e9b] {
  1047. position: absolute;
  1048. }
  1049. .u-popup__content__close--hover[data-v-05c24e9b] {
  1050. opacity: 0.4;
  1051. }
  1052. .u-popup__content__close--top-left[data-v-05c24e9b] {
  1053. top: 15px;
  1054. left: 15px;
  1055. }
  1056. .u-popup__content__close--top-right[data-v-05c24e9b] {
  1057. top: 15px;
  1058. right: 15px;
  1059. }
  1060. .u-popup__content__close--bottom-left[data-v-05c24e9b] {
  1061. bottom: 15px;
  1062. left: 15px;
  1063. }
  1064. .u-popup__content__close--bottom-right[data-v-05c24e9b] {
  1065. right: 15px;
  1066. bottom: 15px;
  1067. }
  1068. /**
  1069. * 这里是uni-app内置的常用样式变量
  1070. *
  1071. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1072. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1073. *
  1074. */
  1075. /**
  1076. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1077. *
  1078. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1079. */
  1080. /* 颜色变量 */
  1081. /* 行为相关颜色 */
  1082. /* 文字基本颜色 */
  1083. /* 背景颜色 */
  1084. /* 边框颜色 */
  1085. /* 尺寸变量 */
  1086. /* 文字尺寸 */
  1087. /* 图片尺寸 */
  1088. /* Border Radius */
  1089. /* 水平间距 */
  1090. /* 垂直间距 */
  1091. /* 透明度 */
  1092. /* 文章场景相关 */
  1093. .select-section[data-v-61cc11f4] {
  1094. background-color: #fff;
  1095. padding: 12px;
  1096. border-radius: 4px;
  1097. margin-bottom: 12px;
  1098. position: relative;
  1099. }
  1100. .batch-select[data-v-61cc11f4] {
  1101. display: flex;
  1102. align-items: center;
  1103. }
  1104. .batch-select .required[data-v-61cc11f4] {
  1105. color: #ff0000;
  1106. margin-right: 4px;
  1107. }
  1108. .count-badge[data-v-61cc11f4] {
  1109. position: absolute;
  1110. right: 0;
  1111. top: 50%;
  1112. background-color: #4CAF50;
  1113. color: #fff;
  1114. padding: 8px;
  1115. font-size: 13px;
  1116. }
  1117. .query-section[data-v-61cc11f4] {
  1118. background-color: #fff;
  1119. padding: 12px;
  1120. border-radius: 4px;
  1121. }
  1122. .search-box[data-v-61cc11f4] {
  1123. display: flex;
  1124. gap: 12px;
  1125. margin-top: 12px;
  1126. }
  1127. .footer[data-v-61cc11f4] {
  1128. position: fixed;
  1129. left: 0;
  1130. right: 0;
  1131. bottom: 0;
  1132. display: flex;
  1133. flex-direction: column;
  1134. background-color: #fff;
  1135. }
  1136. .footer .u-button[data-v-61cc11f4] {
  1137. flex: 1;
  1138. border-radius: 0;
  1139. }
  1140. .batch-popup[data-v-61cc11f4] {
  1141. background-color: #fff;
  1142. border-radius: 16px 16px 0 0;
  1143. }
  1144. .batch-popup .popup-header[data-v-61cc11f4] {
  1145. padding: 12px;
  1146. display: flex;
  1147. justify-content: space-between;
  1148. align-items: center;
  1149. border-bottom: 1px solid #eee;
  1150. box-sizing: border-box;
  1151. }
  1152. .batch-popup .popup-header .header-right[data-v-61cc11f4] {
  1153. display: flex;
  1154. align-items: center;
  1155. gap: 12px;
  1156. }
  1157. .batch-popup .popup-header .header-right .new-batch[data-v-61cc11f4] {
  1158. color: #2979ff;
  1159. min-width: 70px;
  1160. }
  1161. .batch-popup .popup-header .header-right .u-button[data-v-61cc11f4] {
  1162. height: 2rem;
  1163. }
  1164. .batch-popup .batch-list[data-v-61cc11f4] {
  1165. max-height: 60vh;
  1166. padding: 0 16px;
  1167. box-sizing: border-box;
  1168. }
  1169. .batch-popup .batch-item[data-v-61cc11f4] {
  1170. padding: 13px 0;
  1171. box-sizing: border-box;
  1172. display: flex;
  1173. justify-content: space-between;
  1174. border-bottom: 1px solid #eee;
  1175. }
  1176. .batch-popup .batch-item.active[data-v-61cc11f4] {
  1177. color: #2979ff;
  1178. }