book-audit.css 35 KB

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