book-audit.css 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368
  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. .floating-sort-btn[data-v-9873c737] {
  908. position: fixed;
  909. right: 0.625rem;
  910. bottom: 30%;
  911. width: 2.8125rem;
  912. height: 2.8125rem;
  913. background: linear-gradient(135deg, #2b85e4, #5cadff);
  914. border-radius: 50%;
  915. display: flex;
  916. flex-direction: column;
  917. justify-content: center;
  918. align-items: center;
  919. z-index: 999;
  920. box-shadow: 0 4px 12px rgba(43, 133, 228, 0.3);
  921. }
  922. .btn-text[data-v-9873c737] {
  923. font-size: 0.75rem;
  924. color: #FFFFFF;
  925. margin-top: 0.125rem;
  926. }
  927. /**
  928. * 这里是uni-app内置的常用样式变量
  929. *
  930. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  931. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  932. *
  933. */
  934. /**
  935. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  936. *
  937. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  938. */
  939. /* 颜色变量 */
  940. /* 行为相关颜色 */
  941. /* 文字基本颜色 */
  942. /* 背景颜色 */
  943. /* 边框颜色 */
  944. /* 尺寸变量 */
  945. /* 文字尺寸 */
  946. /* 图片尺寸 */
  947. /* Border Radius */
  948. /* 水平间距 */
  949. /* 垂直间距 */
  950. /* 透明度 */
  951. /* 文章场景相关 */
  952. uni-view[data-v-b6c174a6], uni-scroll-view[data-v-b6c174a6], uni-swiper-item[data-v-b6c174a6] {
  953. display: flex;
  954. flex-direction: column;
  955. flex-shrink: 0;
  956. flex-grow: 0;
  957. flex-basis: auto;
  958. align-items: stretch;
  959. align-content: flex-start;
  960. }
  961. .u-textarea[data-v-b6c174a6] {
  962. border-radius: 4px;
  963. background-color: #fff;
  964. position: relative;
  965. display: flex;
  966. flex-direction: row;
  967. flex: 1;
  968. padding: 9px;
  969. }
  970. .u-textarea--radius[data-v-b6c174a6] {
  971. border-radius: 4px;
  972. }
  973. .u-textarea--no-radius[data-v-b6c174a6] {
  974. border-radius: 0;
  975. }
  976. .u-textarea--disabled[data-v-b6c174a6] {
  977. background-color: #f5f7fa;
  978. }
  979. .u-textarea__field[data-v-b6c174a6] {
  980. flex: 1;
  981. font-size: 15px;
  982. color: #606266;
  983. width: 100%;
  984. }
  985. .u-textarea__count[data-v-b6c174a6] {
  986. position: absolute;
  987. right: 5px;
  988. bottom: 2px;
  989. font-size: 12px;
  990. color: #909193;
  991. background-color: #ffffff;
  992. padding: 1px 4px;
  993. }
  994. /**
  995. * 这里是uni-app内置的常用样式变量
  996. *
  997. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  998. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  999. *
  1000. */
  1001. /**
  1002. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1003. *
  1004. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1005. */
  1006. /* 颜色变量 */
  1007. /* 行为相关颜色 */
  1008. /* 文字基本颜色 */
  1009. /* 背景颜色 */
  1010. /* 边框颜色 */
  1011. /* 尺寸变量 */
  1012. /* 文字尺寸 */
  1013. /* 图片尺寸 */
  1014. /* Border Radius */
  1015. /* 水平间距 */
  1016. /* 垂直间距 */
  1017. /* 透明度 */
  1018. /* 文章场景相关 */
  1019. uni-view[data-v-abebd402], uni-scroll-view[data-v-abebd402], uni-swiper-item[data-v-abebd402] {
  1020. display: flex;
  1021. flex-direction: column;
  1022. flex-shrink: 0;
  1023. flex-grow: 0;
  1024. flex-basis: auto;
  1025. align-items: stretch;
  1026. align-content: flex-start;
  1027. }
  1028. .u-image[data-v-abebd402] {
  1029. position: relative;
  1030. transition: opacity 0.5s ease-in-out;
  1031. }
  1032. .u-image__image[data-v-abebd402] {
  1033. width: 100%;
  1034. height: 100%;
  1035. }
  1036. .u-image__loading[data-v-abebd402], .u-image__error[data-v-abebd402] {
  1037. position: absolute;
  1038. top: 0px;
  1039. left: 0px;
  1040. width: 100%;
  1041. height: 100%;
  1042. display: flex;
  1043. flex-direction: row;
  1044. align-items: center;
  1045. justify-content: center;
  1046. background-color: #f3f4f6;
  1047. color: #909193;
  1048. font-size: 1.4375rem;
  1049. }
  1050. /**
  1051. * 这里是uni-app内置的常用样式变量
  1052. *
  1053. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1054. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1055. *
  1056. */
  1057. /**
  1058. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1059. *
  1060. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1061. */
  1062. /* 颜色变量 */
  1063. /* 行为相关颜色 */
  1064. /* 文字基本颜色 */
  1065. /* 背景颜色 */
  1066. /* 边框颜色 */
  1067. /* 尺寸变量 */
  1068. /* 文字尺寸 */
  1069. /* 图片尺寸 */
  1070. /* Border Radius */
  1071. /* 水平间距 */
  1072. /* 垂直间距 */
  1073. /* 透明度 */
  1074. /* 文章场景相关 */
  1075. uni-view[data-v-c8491d64], uni-scroll-view[data-v-c8491d64], uni-swiper-item[data-v-c8491d64] {
  1076. display: flex;
  1077. flex-direction: column;
  1078. flex-shrink: 0;
  1079. flex-grow: 0;
  1080. flex-basis: auto;
  1081. align-items: stretch;
  1082. align-content: flex-start;
  1083. }
  1084. .u-upload[data-v-c8491d64] {
  1085. display: flex;
  1086. flex-direction: column;
  1087. flex: 1;
  1088. }
  1089. .u-upload__wrap[data-v-c8491d64] {
  1090. display: flex;
  1091. flex-direction: row;
  1092. flex-wrap: wrap;
  1093. flex: 1;
  1094. }
  1095. .u-upload__wrap__preview[data-v-c8491d64] {
  1096. border-radius: 2px;
  1097. margin: 0 8px 8px 0;
  1098. position: relative;
  1099. overflow: hidden;
  1100. display: flex;
  1101. flex-direction: row;
  1102. }
  1103. .u-upload__wrap__preview__image[data-v-c8491d64] {
  1104. width: 80px;
  1105. height: 80px;
  1106. }
  1107. .u-upload__wrap__preview__other[data-v-c8491d64] {
  1108. width: 80px;
  1109. height: 80px;
  1110. background-color: #f2f2f2;
  1111. flex: 1;
  1112. display: flex;
  1113. flex-direction: column;
  1114. justify-content: center;
  1115. align-items: center;
  1116. }
  1117. .u-upload__wrap__preview__other__text[data-v-c8491d64] {
  1118. font-size: 11px;
  1119. color: #909193;
  1120. margin-top: 2px;
  1121. }
  1122. .u-upload__deletable[data-v-c8491d64] {
  1123. position: absolute;
  1124. top: 0;
  1125. right: 0;
  1126. background-color: #373737;
  1127. height: 14px;
  1128. width: 14px;
  1129. display: flex;
  1130. flex-direction: row;
  1131. border-bottom-left-radius: 100px;
  1132. align-items: center;
  1133. justify-content: center;
  1134. z-index: 3;
  1135. }
  1136. .u-upload__deletable__icon[data-v-c8491d64] {
  1137. position: absolute;
  1138. transform: scale(0.7);
  1139. top: 0px;
  1140. right: 0px;
  1141. }
  1142. .u-upload__success[data-v-c8491d64] {
  1143. position: absolute;
  1144. bottom: 0;
  1145. right: 0;
  1146. display: flex;
  1147. flex-direction: row;
  1148. border-style: solid;
  1149. border-top-color: transparent;
  1150. border-left-color: transparent;
  1151. border-bottom-color: #22ac38;
  1152. border-right-color: #22ac38;
  1153. border-width: 9px;
  1154. align-items: center;
  1155. justify-content: center;
  1156. }
  1157. .u-upload__success__icon[data-v-c8491d64] {
  1158. position: absolute;
  1159. transform: scale(0.7);
  1160. bottom: -10px;
  1161. right: -10px;
  1162. }
  1163. .u-upload__status[data-v-c8491d64] {
  1164. position: absolute;
  1165. top: 0;
  1166. bottom: 0;
  1167. left: 0;
  1168. right: 0;
  1169. background-color: rgba(0, 0, 0, 0.5);
  1170. display: flex;
  1171. flex-direction: column;
  1172. align-items: center;
  1173. justify-content: center;
  1174. }
  1175. .u-upload__status__icon[data-v-c8491d64] {
  1176. position: relative;
  1177. z-index: 1;
  1178. }
  1179. .u-upload__status__message[data-v-c8491d64] {
  1180. font-size: 12px;
  1181. color: #FFFFFF;
  1182. margin-top: 5px;
  1183. }
  1184. .u-upload__button[data-v-c8491d64] {
  1185. display: flex;
  1186. flex-direction: column;
  1187. align-items: center;
  1188. justify-content: center;
  1189. width: 80px;
  1190. height: 80px;
  1191. background-color: #f4f5f7;
  1192. border-radius: 2px;
  1193. margin: 0 8px 8px 0;
  1194. box-sizing: border-box;
  1195. }
  1196. .u-upload__button__text[data-v-c8491d64] {
  1197. font-size: 11px;
  1198. color: #909193;
  1199. margin-top: 2px;
  1200. }
  1201. .u-upload__button--hover[data-v-c8491d64] {
  1202. background-color: #e6e7e9;
  1203. }
  1204. .u-upload__button--disabled[data-v-c8491d64] {
  1205. opacity: 0.5;
  1206. }
  1207. /**
  1208. * 这里是uni-app内置的常用样式变量
  1209. *
  1210. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1211. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1212. *
  1213. */
  1214. /**
  1215. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1216. *
  1217. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1218. */
  1219. /* 颜色变量 */
  1220. /* 行为相关颜色 */
  1221. /* 文字基本颜色 */
  1222. /* 背景颜色 */
  1223. /* 边框颜色 */
  1224. /* 尺寸变量 */
  1225. /* 文字尺寸 */
  1226. /* 图片尺寸 */
  1227. /* Border Radius */
  1228. /* 水平间距 */
  1229. /* 垂直间距 */
  1230. /* 透明度 */
  1231. /* 文章场景相关 */
  1232. .tips[data-v-5002576b] {
  1233. font-size: 0.75rem;
  1234. font-family: PingFangSC, PingFang SC;
  1235. font-weight: 400;
  1236. color: #969696;
  1237. line-height: 1.5rem;
  1238. margin-top: 0.3125rem;
  1239. }
  1240. [data-v-5002576b] .align-right .u-upload__wrap {
  1241. justify-content: flex-end;
  1242. }
  1243. /**
  1244. * 这里是uni-app内置的常用样式变量
  1245. *
  1246. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1247. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1248. *
  1249. */
  1250. /**
  1251. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1252. *
  1253. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1254. */
  1255. /* 颜色变量 */
  1256. /* 行为相关颜色 */
  1257. /* 文字基本颜色 */
  1258. /* 背景颜色 */
  1259. /* 边框颜色 */
  1260. /* 尺寸变量 */
  1261. /* 文字尺寸 */
  1262. /* 图片尺寸 */
  1263. /* Border Radius */
  1264. /* 水平间距 */
  1265. /* 垂直间距 */
  1266. /* 透明度 */
  1267. /* 文章场景相关 */
  1268. .file-info-container[data-v-b4cf7c83] {
  1269. padding: 0.625rem 0.9375rem;
  1270. box-sizing: border-box;
  1271. }
  1272. .file-info-item[data-v-b4cf7c83] {
  1273. padding: 0.625rem;
  1274. border-bottom: 1px solid #e5e5e5;
  1275. }
  1276. .file-info-list-title[data-v-b4cf7c83] {
  1277. background-color: #e5e5e5;
  1278. padding: 0.3125rem 0;
  1279. margin-top: 20px;
  1280. }
  1281. .file-info-list-content[data-v-b4cf7c83] {
  1282. color: #999;
  1283. min-height: 100px;
  1284. }
  1285. /**
  1286. * 这里是uni-app内置的常用样式变量
  1287. *
  1288. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1289. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1290. *
  1291. */
  1292. /**
  1293. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1294. *
  1295. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1296. */
  1297. /* 颜色变量 */
  1298. /* 行为相关颜色 */
  1299. /* 文字基本颜色 */
  1300. /* 背景颜色 */
  1301. /* 边框颜色 */
  1302. /* 尺寸变量 */
  1303. /* 文字尺寸 */
  1304. /* 图片尺寸 */
  1305. /* Border Radius */
  1306. /* 水平间距 */
  1307. /* 垂直间距 */
  1308. /* 透明度 */
  1309. /* 文章场景相关 */
  1310. .book-audit[data-v-376f8a68] {
  1311. padding: 0.625rem;
  1312. box-sizing: border-box;
  1313. padding-bottom: 4.375rem;
  1314. }
  1315. .book-audit .price-info[data-v-376f8a68] {
  1316. border-radius: 0.3125rem;
  1317. }
  1318. .book-audit .price-info .label[data-v-376f8a68] {
  1319. width: 4.6875rem;
  1320. background-color: #cecece;
  1321. padding: 0.5rem 0.3125rem;
  1322. text-align: center;
  1323. border: 0.03125rem solid #e6e6e6;
  1324. }
  1325. .book-audit .price-info .content[data-v-376f8a68] {
  1326. flex: 1;
  1327. text-align: center;
  1328. padding: 0.5rem 0.3125rem;
  1329. border: 0.03125rem solid #e6e6e6;
  1330. }