index.css 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550
  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-ac70166d], uni-scroll-view[data-v-ac70166d], uni-swiper-item[data-v-ac70166d] {
  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. @font-face {
  144. font-family: "uicon-iconfont";
  145. src: url("https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf") format("truetype");
  146. }
  147. .u-icon[data-v-ac70166d] {
  148. display: flex;
  149. align-items: center;
  150. }
  151. .u-icon--left[data-v-ac70166d] {
  152. flex-direction: row-reverse;
  153. align-items: center;
  154. }
  155. .u-icon--right[data-v-ac70166d] {
  156. flex-direction: row;
  157. align-items: center;
  158. }
  159. .u-icon--top[data-v-ac70166d] {
  160. flex-direction: column-reverse;
  161. justify-content: center;
  162. }
  163. .u-icon--bottom[data-v-ac70166d] {
  164. flex-direction: column;
  165. justify-content: center;
  166. }
  167. .u-icon__icon[data-v-ac70166d] {
  168. font-family: uicon-iconfont;
  169. position: relative;
  170. display: flex;
  171. flex-direction: row;
  172. align-items: center;
  173. }
  174. .u-icon__icon--primary[data-v-ac70166d] {
  175. color: #22ac38;
  176. }
  177. .u-icon__icon--success[data-v-ac70166d] {
  178. color: #22ac38;
  179. }
  180. .u-icon__icon--error[data-v-ac70166d] {
  181. color: #f56c6c;
  182. }
  183. .u-icon__icon--warning[data-v-ac70166d] {
  184. color: #f9ae3d;
  185. }
  186. .u-icon__icon--info[data-v-ac70166d] {
  187. color: #909399;
  188. }
  189. .u-icon__img[data-v-ac70166d] {
  190. height: auto;
  191. will-change: transform;
  192. }
  193. .u-icon__label[data-v-ac70166d] {
  194. line-height: 1;
  195. }
  196. /**
  197. * 这里是uni-app内置的常用样式变量
  198. *
  199. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  200. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  201. *
  202. */
  203. /**
  204. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  205. *
  206. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  207. */
  208. /* 颜色变量 */
  209. /* 行为相关颜色 */
  210. /* 文字基本颜色 */
  211. /* 背景颜色 */
  212. /* 边框颜色 */
  213. /* 尺寸变量 */
  214. /* 文字尺寸 */
  215. /* 图片尺寸 */
  216. /* Border Radius */
  217. /* 水平间距 */
  218. /* 垂直间距 */
  219. /* 透明度 */
  220. /* 文章场景相关 */
  221. uni-view[data-v-2af81691], uni-scroll-view[data-v-2af81691], uni-swiper-item[data-v-2af81691] {
  222. display: flex;
  223. flex-direction: column;
  224. flex-shrink: 0;
  225. flex-grow: 0;
  226. flex-basis: auto;
  227. align-items: stretch;
  228. align-content: flex-start;
  229. }
  230. .u-loading-icon[data-v-2af81691] {
  231. flex-direction: row;
  232. align-items: center;
  233. justify-content: center;
  234. color: #c8c9cc;
  235. }
  236. .u-loading-icon__text[data-v-2af81691] {
  237. margin-left: 4px;
  238. color: #606266;
  239. font-size: 14px;
  240. line-height: 20px;
  241. }
  242. .u-loading-icon__spinner[data-v-2af81691] {
  243. width: 30px;
  244. height: 30px;
  245. position: relative;
  246. box-sizing: border-box;
  247. max-width: 100%;
  248. max-height: 100%;
  249. animation: u-rotate-2af81691 1s linear infinite;
  250. }
  251. .u-loading-icon__spinner--semicircle[data-v-2af81691] {
  252. border-width: 2px;
  253. border-color: transparent;
  254. border-top-right-radius: 100px;
  255. border-top-left-radius: 100px;
  256. border-bottom-left-radius: 100px;
  257. border-bottom-right-radius: 100px;
  258. border-style: solid;
  259. }
  260. .u-loading-icon__spinner--circle[data-v-2af81691] {
  261. border-top-right-radius: 100px;
  262. border-top-left-radius: 100px;
  263. border-bottom-left-radius: 100px;
  264. border-bottom-right-radius: 100px;
  265. border-width: 2px;
  266. border-top-color: #e5e5e5;
  267. border-right-color: #e5e5e5;
  268. border-bottom-color: #e5e5e5;
  269. border-left-color: #e5e5e5;
  270. border-style: solid;
  271. }
  272. .u-loading-icon--vertical[data-v-2af81691] {
  273. flex-direction: column;
  274. }
  275. [data-v-2af81691]:host {
  276. font-size: 0px;
  277. line-height: 1;
  278. }
  279. .u-loading-icon__spinner--spinner[data-v-2af81691] {
  280. animation-timing-function: steps(12);
  281. }
  282. .u-loading-icon__text[data-v-2af81691]:empty {
  283. display: none;
  284. }
  285. .u-loading-icon--vertical .u-loading-icon__text[data-v-2af81691] {
  286. margin: 6px 0 0;
  287. color: #606266;
  288. }
  289. .u-loading-icon__dot[data-v-2af81691] {
  290. position: absolute;
  291. top: 0;
  292. left: 0;
  293. width: 100%;
  294. height: 100%;
  295. }
  296. .u-loading-icon__dot[data-v-2af81691]:before {
  297. display: block;
  298. width: 2px;
  299. height: 25%;
  300. margin: 0 auto;
  301. background-color: currentColor;
  302. border-radius: 40%;
  303. content: " ";
  304. }
  305. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(1) {
  306. transform: rotate(30deg);
  307. opacity: 1;
  308. }
  309. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(2) {
  310. transform: rotate(60deg);
  311. opacity: 0.9375;
  312. }
  313. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(3) {
  314. transform: rotate(90deg);
  315. opacity: 0.875;
  316. }
  317. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(4) {
  318. transform: rotate(120deg);
  319. opacity: 0.8125;
  320. }
  321. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(5) {
  322. transform: rotate(150deg);
  323. opacity: 0.75;
  324. }
  325. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(6) {
  326. transform: rotate(180deg);
  327. opacity: 0.6875;
  328. }
  329. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(7) {
  330. transform: rotate(210deg);
  331. opacity: 0.625;
  332. }
  333. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(8) {
  334. transform: rotate(240deg);
  335. opacity: 0.5625;
  336. }
  337. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(9) {
  338. transform: rotate(270deg);
  339. opacity: 0.5;
  340. }
  341. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(10) {
  342. transform: rotate(300deg);
  343. opacity: 0.4375;
  344. }
  345. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(11) {
  346. transform: rotate(330deg);
  347. opacity: 0.375;
  348. }
  349. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(12) {
  350. transform: rotate(360deg);
  351. opacity: 0.3125;
  352. }
  353. @keyframes u-rotate-2af81691 {
  354. 0% {
  355. transform: rotate(0deg);
  356. }
  357. to {
  358. transform: rotate(1turn);
  359. }
  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-e082a34a], uni-scroll-view[data-v-e082a34a], uni-swiper-item[data-v-e082a34a] {
  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. .u-search[data-v-e082a34a] {
  577. display: flex;
  578. flex-direction: row;
  579. align-items: center;
  580. flex: 1;
  581. }
  582. .u-search__content[data-v-e082a34a] {
  583. display: flex;
  584. flex-direction: row;
  585. align-items: center;
  586. padding: 0 10px;
  587. flex: 1;
  588. justify-content: space-between;
  589. border-width: 1px;
  590. border-color: transparent;
  591. border-style: solid;
  592. overflow: hidden;
  593. }
  594. .u-search__content__icon[data-v-e082a34a] {
  595. display: flex;
  596. flex-direction: row;
  597. align-items: center;
  598. }
  599. .u-search__content__label[data-v-e082a34a] {
  600. color: #303133;
  601. font-size: 16px;
  602. margin: 0 4px;
  603. }
  604. .u-search__content__close[data-v-e082a34a] {
  605. width: 20px;
  606. height: 20px;
  607. border-top-left-radius: 100px;
  608. border-top-right-radius: 100px;
  609. border-bottom-left-radius: 100px;
  610. border-bottom-right-radius: 100px;
  611. background-color: #C6C7CB;
  612. display: flex;
  613. flex-direction: row;
  614. align-items: center;
  615. justify-content: center;
  616. transform: scale(0.82);
  617. }
  618. .u-search__content__input[data-v-e082a34a] {
  619. flex: 1;
  620. font-size: 16px;
  621. line-height: 1;
  622. margin: 0 5px;
  623. color: #303133;
  624. }
  625. .u-search__content__input--placeholder[data-v-e082a34a] {
  626. color: #909193;
  627. }
  628. .u-search__action[data-v-e082a34a] {
  629. font-size: 16px;
  630. color: #303133;
  631. width: 0;
  632. overflow: hidden;
  633. transition-property: width;
  634. transition-duration: 0.3s;
  635. white-space: nowrap;
  636. text-align: center;
  637. }
  638. .u-search__action--active[data-v-e082a34a] {
  639. width: 40px;
  640. margin-left: 5px;
  641. }
  642. /**
  643. * 这里是uni-app内置的常用样式变量
  644. *
  645. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  646. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  647. *
  648. */
  649. /**
  650. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  651. *
  652. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  653. */
  654. /* 颜色变量 */
  655. /* 行为相关颜色 */
  656. /* 文字基本颜色 */
  657. /* 背景颜色 */
  658. /* 边框颜色 */
  659. /* 尺寸变量 */
  660. /* 文字尺寸 */
  661. /* 图片尺寸 */
  662. /* Border Radius */
  663. /* 水平间距 */
  664. /* 垂直间距 */
  665. /* 透明度 */
  666. /* 文章场景相关 */
  667. uni-view[data-v-5cec8177], uni-scroll-view[data-v-5cec8177], uni-swiper-item[data-v-5cec8177] {
  668. display: flex;
  669. flex-direction: column;
  670. flex-shrink: 0;
  671. flex-grow: 0;
  672. flex-basis: auto;
  673. align-items: stretch;
  674. align-content: flex-start;
  675. }
  676. /**
  677. * vue版本动画内置的动画模式有如下:
  678. * fade:淡入
  679. * zoom:缩放
  680. * fade-zoom:缩放淡入
  681. * fade-up:上滑淡入
  682. * fade-down:下滑淡入
  683. * fade-left:左滑淡入
  684. * fade-right:右滑淡入
  685. * slide-up:上滑进入
  686. * slide-down:下滑进入
  687. * slide-left:左滑进入
  688. * slide-right:右滑进入
  689. */
  690. .u-fade-enter-active[data-v-5cec8177],
  691. .u-fade-leave-active[data-v-5cec8177] {
  692. transition-property: opacity;
  693. }
  694. .u-fade-enter[data-v-5cec8177],
  695. .u-fade-leave-to[data-v-5cec8177] {
  696. opacity: 0;
  697. }
  698. .u-fade-zoom-enter[data-v-5cec8177],
  699. .u-fade-zoom-leave-to[data-v-5cec8177] {
  700. transform: scale(0.95);
  701. opacity: 0;
  702. }
  703. .u-fade-zoom-enter-active[data-v-5cec8177],
  704. .u-fade-zoom-leave-active[data-v-5cec8177] {
  705. transition-property: transform, opacity;
  706. }
  707. .u-fade-down-enter-active[data-v-5cec8177],
  708. .u-fade-down-leave-active[data-v-5cec8177],
  709. .u-fade-left-enter-active[data-v-5cec8177],
  710. .u-fade-left-leave-active[data-v-5cec8177],
  711. .u-fade-right-enter-active[data-v-5cec8177],
  712. .u-fade-right-leave-active[data-v-5cec8177],
  713. .u-fade-up-enter-active[data-v-5cec8177],
  714. .u-fade-up-leave-active[data-v-5cec8177] {
  715. transition-property: opacity, transform;
  716. }
  717. .u-fade-up-enter[data-v-5cec8177],
  718. .u-fade-up-leave-to[data-v-5cec8177] {
  719. transform: translate3d(0, 100%, 0);
  720. opacity: 0;
  721. }
  722. .u-fade-down-enter[data-v-5cec8177],
  723. .u-fade-down-leave-to[data-v-5cec8177] {
  724. transform: translate3d(0, -100%, 0);
  725. opacity: 0;
  726. }
  727. .u-fade-left-enter[data-v-5cec8177],
  728. .u-fade-left-leave-to[data-v-5cec8177] {
  729. transform: translate3d(-100%, 0, 0);
  730. opacity: 0;
  731. }
  732. .u-fade-right-enter[data-v-5cec8177],
  733. .u-fade-right-leave-to[data-v-5cec8177] {
  734. transform: translate3d(100%, 0, 0);
  735. opacity: 0;
  736. }
  737. .u-slide-down-enter-active[data-v-5cec8177],
  738. .u-slide-down-leave-active[data-v-5cec8177],
  739. .u-slide-left-enter-active[data-v-5cec8177],
  740. .u-slide-left-leave-active[data-v-5cec8177],
  741. .u-slide-right-enter-active[data-v-5cec8177],
  742. .u-slide-right-leave-active[data-v-5cec8177],
  743. .u-slide-up-enter-active[data-v-5cec8177],
  744. .u-slide-up-leave-active[data-v-5cec8177] {
  745. transition-property: transform;
  746. }
  747. .u-slide-up-enter[data-v-5cec8177],
  748. .u-slide-up-leave-to[data-v-5cec8177] {
  749. transform: translate3d(0, 100%, 0);
  750. }
  751. .u-slide-down-enter[data-v-5cec8177],
  752. .u-slide-down-leave-to[data-v-5cec8177] {
  753. transform: translate3d(0, -100%, 0);
  754. }
  755. .u-slide-left-enter[data-v-5cec8177],
  756. .u-slide-left-leave-to[data-v-5cec8177] {
  757. transform: translate3d(-100%, 0, 0);
  758. }
  759. .u-slide-right-enter[data-v-5cec8177],
  760. .u-slide-right-leave-to[data-v-5cec8177] {
  761. transform: translate3d(100%, 0, 0);
  762. }
  763. .u-zoom-enter-active[data-v-5cec8177],
  764. .u-zoom-leave-active[data-v-5cec8177] {
  765. transition-property: transform;
  766. }
  767. .u-zoom-enter[data-v-5cec8177],
  768. .u-zoom-leave-to[data-v-5cec8177] {
  769. transform: scale(0.95);
  770. }
  771. /**
  772. * 这里是uni-app内置的常用样式变量
  773. *
  774. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  775. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  776. *
  777. */
  778. /**
  779. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  780. *
  781. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  782. */
  783. /* 颜色变量 */
  784. /* 行为相关颜色 */
  785. /* 文字基本颜色 */
  786. /* 背景颜色 */
  787. /* 边框颜色 */
  788. /* 尺寸变量 */
  789. /* 文字尺寸 */
  790. /* 图片尺寸 */
  791. /* Border Radius */
  792. /* 水平间距 */
  793. /* 垂直间距 */
  794. /* 透明度 */
  795. /* 文章场景相关 */
  796. uni-view[data-v-2fd891bb], uni-scroll-view[data-v-2fd891bb], uni-swiper-item[data-v-2fd891bb] {
  797. display: flex;
  798. flex-direction: column;
  799. flex-shrink: 0;
  800. flex-grow: 0;
  801. flex-basis: auto;
  802. align-items: stretch;
  803. align-content: flex-start;
  804. }
  805. .u-tag-wrapper[data-v-2fd891bb] {
  806. position: relative;
  807. }
  808. .u-tag[data-v-2fd891bb] {
  809. display: flex;
  810. flex-direction: row;
  811. align-items: center;
  812. border-style: solid;
  813. }
  814. .u-tag--circle[data-v-2fd891bb] {
  815. border-radius: 100px;
  816. }
  817. .u-tag--square[data-v-2fd891bb] {
  818. border-radius: 3px;
  819. }
  820. .u-tag__icon[data-v-2fd891bb] {
  821. margin-right: 4px;
  822. }
  823. .u-tag__text--mini[data-v-2fd891bb] {
  824. font-size: 12px;
  825. line-height: 12px;
  826. }
  827. .u-tag__text--medium[data-v-2fd891bb] {
  828. font-size: 13px;
  829. line-height: 13px;
  830. }
  831. .u-tag__text--large[data-v-2fd891bb] {
  832. font-size: 15px;
  833. line-height: 15px;
  834. }
  835. .u-tag--mini[data-v-2fd891bb] {
  836. height: 22px;
  837. line-height: 22px;
  838. padding: 0 5px;
  839. }
  840. .u-tag--medium[data-v-2fd891bb] {
  841. height: 26px;
  842. line-height: 22px;
  843. padding: 0 10px;
  844. }
  845. .u-tag--large[data-v-2fd891bb] {
  846. height: 32px;
  847. line-height: 32px;
  848. padding: 0 15px;
  849. }
  850. .u-tag--primary[data-v-2fd891bb] {
  851. background-color: #22ac38;
  852. border-width: 1px;
  853. border-color: #22ac38;
  854. }
  855. .u-tag--primary--plain[data-v-2fd891bb] {
  856. border-width: 1px;
  857. border-color: #22ac38;
  858. }
  859. .u-tag--primary--plain--fill[data-v-2fd891bb] {
  860. background-color: #ecf5ff;
  861. }
  862. .u-tag__text--primary[data-v-2fd891bb] {
  863. color: #FFFFFF;
  864. }
  865. .u-tag__text--primary--plain[data-v-2fd891bb] {
  866. color: #22ac38;
  867. }
  868. .u-tag--error[data-v-2fd891bb] {
  869. background-color: #f56c6c;
  870. border-width: 1px;
  871. border-color: #f56c6c;
  872. }
  873. .u-tag--error--plain[data-v-2fd891bb] {
  874. border-width: 1px;
  875. border-color: #f56c6c;
  876. }
  877. .u-tag--error--plain--fill[data-v-2fd891bb] {
  878. background-color: #fef0f0;
  879. }
  880. .u-tag__text--error[data-v-2fd891bb] {
  881. color: #FFFFFF;
  882. }
  883. .u-tag__text--error--plain[data-v-2fd891bb] {
  884. color: #f56c6c;
  885. }
  886. .u-tag--warning[data-v-2fd891bb] {
  887. background-color: #f9ae3d;
  888. border-width: 1px;
  889. border-color: #f9ae3d;
  890. }
  891. .u-tag--warning--plain[data-v-2fd891bb] {
  892. border-width: 1px;
  893. border-color: #f9ae3d;
  894. }
  895. .u-tag--warning--plain--fill[data-v-2fd891bb] {
  896. background-color: #fdf6ec;
  897. }
  898. .u-tag__text--warning[data-v-2fd891bb] {
  899. color: #FFFFFF;
  900. }
  901. .u-tag__text--warning--plain[data-v-2fd891bb] {
  902. color: #f9ae3d;
  903. }
  904. .u-tag--success[data-v-2fd891bb] {
  905. background-color: #22ac38;
  906. border-width: 1px;
  907. border-color: #22ac38;
  908. }
  909. .u-tag--success--plain[data-v-2fd891bb] {
  910. border-width: 1px;
  911. border-color: #22ac38;
  912. }
  913. .u-tag--success--plain--fill[data-v-2fd891bb] {
  914. background-color: #f5fff0;
  915. }
  916. .u-tag__text--success[data-v-2fd891bb] {
  917. color: #FFFFFF;
  918. }
  919. .u-tag__text--success--plain[data-v-2fd891bb] {
  920. color: #22ac38;
  921. }
  922. .u-tag--info[data-v-2fd891bb] {
  923. background-color: #909399;
  924. border-width: 1px;
  925. border-color: #909399;
  926. }
  927. .u-tag--info--plain[data-v-2fd891bb] {
  928. border-width: 1px;
  929. border-color: #909399;
  930. }
  931. .u-tag--info--plain--fill[data-v-2fd891bb] {
  932. background-color: #f4f4f5;
  933. }
  934. .u-tag__text--info[data-v-2fd891bb] {
  935. color: #FFFFFF;
  936. }
  937. .u-tag__text--info--plain[data-v-2fd891bb] {
  938. color: #909399;
  939. }
  940. .u-tag__close[data-v-2fd891bb] {
  941. position: absolute;
  942. z-index: 999;
  943. top: 10px;
  944. right: 10px;
  945. border-radius: 100px;
  946. background-color: #C6C7CB;
  947. display: flex;
  948. flex-direction: row;
  949. align-items: center;
  950. justify-content: center;
  951. transform: scale(0.6) translate(80%, -80%);
  952. }
  953. .u-tag__close--mini[data-v-2fd891bb] {
  954. width: 18px;
  955. height: 18px;
  956. }
  957. .u-tag__close--medium[data-v-2fd891bb] {
  958. width: 22px;
  959. height: 22px;
  960. }
  961. .u-tag__close--large[data-v-2fd891bb] {
  962. width: 25px;
  963. height: 25px;
  964. }
  965. /**
  966. * 这里是uni-app内置的常用样式变量
  967. *
  968. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  969. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  970. *
  971. */
  972. /**
  973. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  974. *
  975. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  976. */
  977. /* 颜色变量 */
  978. /* 行为相关颜色 */
  979. /* 文字基本颜色 */
  980. /* 背景颜色 */
  981. /* 边框颜色 */
  982. /* 尺寸变量 */
  983. /* 文字尺寸 */
  984. /* 图片尺寸 */
  985. /* Border Radius */
  986. /* 水平间距 */
  987. /* 垂直间距 */
  988. /* 透明度 */
  989. /* 文章场景相关 */
  990. uni-view[data-v-9112bed9], uni-scroll-view[data-v-9112bed9], uni-swiper-item[data-v-9112bed9] {
  991. display: flex;
  992. flex-direction: column;
  993. flex-shrink: 0;
  994. flex-grow: 0;
  995. flex-basis: auto;
  996. align-items: stretch;
  997. align-content: flex-start;
  998. }
  999. .u-overlay[data-v-9112bed9] {
  1000. position: fixed;
  1001. top: 0;
  1002. left: 0;
  1003. width: 100%;
  1004. height: 100%;
  1005. background-color: rgba(0, 0, 0, 0.7);
  1006. }
  1007. /**
  1008. * 这里是uni-app内置的常用样式变量
  1009. *
  1010. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1011. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1012. *
  1013. */
  1014. /**
  1015. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1016. *
  1017. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1018. */
  1019. /* 颜色变量 */
  1020. /* 行为相关颜色 */
  1021. /* 文字基本颜色 */
  1022. /* 背景颜色 */
  1023. /* 边框颜色 */
  1024. /* 尺寸变量 */
  1025. /* 文字尺寸 */
  1026. /* 图片尺寸 */
  1027. /* Border Radius */
  1028. /* 水平间距 */
  1029. /* 垂直间距 */
  1030. /* 透明度 */
  1031. /* 文章场景相关 */
  1032. .u-status-bar[data-v-eb8e0cdd] {
  1033. width: 100%;
  1034. }
  1035. /**
  1036. * 这里是uni-app内置的常用样式变量
  1037. *
  1038. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1039. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1040. *
  1041. */
  1042. /**
  1043. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1044. *
  1045. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1046. */
  1047. /* 颜色变量 */
  1048. /* 行为相关颜色 */
  1049. /* 文字基本颜色 */
  1050. /* 背景颜色 */
  1051. /* 边框颜色 */
  1052. /* 尺寸变量 */
  1053. /* 文字尺寸 */
  1054. /* 图片尺寸 */
  1055. /* Border Radius */
  1056. /* 水平间距 */
  1057. /* 垂直间距 */
  1058. /* 透明度 */
  1059. /* 文章场景相关 */
  1060. .u-safe-bottom[data-v-f3d22cfe] {
  1061. width: 100%;
  1062. }
  1063. /**
  1064. * 这里是uni-app内置的常用样式变量
  1065. *
  1066. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1067. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1068. *
  1069. */
  1070. /**
  1071. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1072. *
  1073. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1074. */
  1075. /* 颜色变量 */
  1076. /* 行为相关颜色 */
  1077. /* 文字基本颜色 */
  1078. /* 背景颜色 */
  1079. /* 边框颜色 */
  1080. /* 尺寸变量 */
  1081. /* 文字尺寸 */
  1082. /* 图片尺寸 */
  1083. /* Border Radius */
  1084. /* 水平间距 */
  1085. /* 垂直间距 */
  1086. /* 透明度 */
  1087. /* 文章场景相关 */
  1088. uni-view[data-v-05c24e9b], uni-scroll-view[data-v-05c24e9b], uni-swiper-item[data-v-05c24e9b] {
  1089. display: flex;
  1090. flex-direction: column;
  1091. flex-shrink: 0;
  1092. flex-grow: 0;
  1093. flex-basis: auto;
  1094. align-items: stretch;
  1095. align-content: flex-start;
  1096. }
  1097. .u-popup[data-v-05c24e9b] {
  1098. flex: 1;
  1099. }
  1100. .u-popup__content[data-v-05c24e9b] {
  1101. background-color: #fff;
  1102. position: relative;
  1103. }
  1104. .u-popup__content--round-top[data-v-05c24e9b] {
  1105. border-top-left-radius: 0;
  1106. border-top-right-radius: 0;
  1107. border-bottom-left-radius: 10px;
  1108. border-bottom-right-radius: 10px;
  1109. }
  1110. .u-popup__content--round-left[data-v-05c24e9b] {
  1111. border-top-left-radius: 0;
  1112. border-top-right-radius: 10px;
  1113. border-bottom-left-radius: 0;
  1114. border-bottom-right-radius: 10px;
  1115. }
  1116. .u-popup__content--round-right[data-v-05c24e9b] {
  1117. border-top-left-radius: 10px;
  1118. border-top-right-radius: 0;
  1119. border-bottom-left-radius: 10px;
  1120. border-bottom-right-radius: 0;
  1121. }
  1122. .u-popup__content--round-bottom[data-v-05c24e9b] {
  1123. border-top-left-radius: 10px;
  1124. border-top-right-radius: 10px;
  1125. border-bottom-left-radius: 0;
  1126. border-bottom-right-radius: 0;
  1127. }
  1128. .u-popup__content--round-center[data-v-05c24e9b] {
  1129. border-top-left-radius: 10px;
  1130. border-top-right-radius: 10px;
  1131. border-bottom-left-radius: 10px;
  1132. border-bottom-right-radius: 10px;
  1133. }
  1134. .u-popup__content__close[data-v-05c24e9b] {
  1135. position: absolute;
  1136. }
  1137. .u-popup__content__close--hover[data-v-05c24e9b] {
  1138. opacity: 0.4;
  1139. }
  1140. .u-popup__content__close--top-left[data-v-05c24e9b] {
  1141. top: 15px;
  1142. left: 15px;
  1143. }
  1144. .u-popup__content__close--top-right[data-v-05c24e9b] {
  1145. top: 15px;
  1146. right: 15px;
  1147. }
  1148. .u-popup__content__close--bottom-left[data-v-05c24e9b] {
  1149. bottom: 15px;
  1150. left: 15px;
  1151. }
  1152. .u-popup__content__close--bottom-right[data-v-05c24e9b] {
  1153. right: 15px;
  1154. bottom: 15px;
  1155. }
  1156. /**
  1157. * 这里是uni-app内置的常用样式变量
  1158. *
  1159. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1160. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1161. *
  1162. */
  1163. /**
  1164. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1165. *
  1166. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1167. */
  1168. /* 颜色变量 */
  1169. /* 行为相关颜色 */
  1170. /* 文字基本颜色 */
  1171. /* 背景颜色 */
  1172. /* 边框颜色 */
  1173. /* 尺寸变量 */
  1174. /* 文字尺寸 */
  1175. /* 图片尺寸 */
  1176. /* Border Radius */
  1177. /* 水平间距 */
  1178. /* 垂直间距 */
  1179. /* 透明度 */
  1180. /* 文章场景相关 */
  1181. .auditor-selector[data-v-8d9417b9] {
  1182. padding: 0.9375rem;
  1183. min-height: 35vh;
  1184. max-height: 80vh;
  1185. overflow: auto;
  1186. background-color: #fff;
  1187. display: flex;
  1188. flex-direction: column;
  1189. }
  1190. .header[data-v-8d9417b9] {
  1191. text-align: center;
  1192. margin-bottom: 20px;
  1193. }
  1194. .header .title[data-v-8d9417b9] {
  1195. font-size: 18px;
  1196. font-weight: 500;
  1197. }
  1198. .search-box[data-v-8d9417b9] {
  1199. margin-bottom: 0.9375rem;
  1200. }
  1201. .section-title[data-v-8d9417b9] {
  1202. font-size: 16px;
  1203. color: #666;
  1204. margin-bottom: 10px;
  1205. display: block;
  1206. }
  1207. .tag-group[data-v-8d9417b9] {
  1208. display: flex;
  1209. flex-wrap: wrap;
  1210. gap: 10px;
  1211. margin-bottom: 20px;
  1212. }
  1213. .footer[data-v-8d9417b9] {
  1214. position: -webkit-sticky;
  1215. position: sticky;
  1216. bottom: 0;
  1217. padding: 20px 0;
  1218. padding-bottom: 0;
  1219. display: flex;
  1220. justify-content: center;
  1221. gap: 0.9375rem;
  1222. }
  1223. /**
  1224. * 这里是uni-app内置的常用样式变量
  1225. *
  1226. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1227. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1228. *
  1229. */
  1230. /**
  1231. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1232. *
  1233. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1234. */
  1235. /* 颜色变量 */
  1236. /* 行为相关颜色 */
  1237. /* 文字基本颜色 */
  1238. /* 背景颜色 */
  1239. /* 边框颜色 */
  1240. /* 尺寸变量 */
  1241. /* 文字尺寸 */
  1242. /* 图片尺寸 */
  1243. /* Border Radius */
  1244. /* 水平间距 */
  1245. /* 垂直间距 */
  1246. /* 透明度 */
  1247. /* 文章场景相关 */
  1248. uni-view[data-v-b6c174a6], uni-scroll-view[data-v-b6c174a6], uni-swiper-item[data-v-b6c174a6] {
  1249. display: flex;
  1250. flex-direction: column;
  1251. flex-shrink: 0;
  1252. flex-grow: 0;
  1253. flex-basis: auto;
  1254. align-items: stretch;
  1255. align-content: flex-start;
  1256. }
  1257. .u-textarea[data-v-b6c174a6] {
  1258. border-radius: 4px;
  1259. background-color: #fff;
  1260. position: relative;
  1261. display: flex;
  1262. flex-direction: row;
  1263. flex: 1;
  1264. padding: 9px;
  1265. }
  1266. .u-textarea--radius[data-v-b6c174a6] {
  1267. border-radius: 4px;
  1268. }
  1269. .u-textarea--no-radius[data-v-b6c174a6] {
  1270. border-radius: 0;
  1271. }
  1272. .u-textarea--disabled[data-v-b6c174a6] {
  1273. background-color: #f5f7fa;
  1274. }
  1275. .u-textarea__field[data-v-b6c174a6] {
  1276. flex: 1;
  1277. font-size: 15px;
  1278. color: #606266;
  1279. width: 100%;
  1280. }
  1281. .u-textarea__count[data-v-b6c174a6] {
  1282. position: absolute;
  1283. right: 5px;
  1284. bottom: 2px;
  1285. font-size: 12px;
  1286. color: #909193;
  1287. background-color: #ffffff;
  1288. padding: 1px 4px;
  1289. }
  1290. /**
  1291. * 这里是uni-app内置的常用样式变量
  1292. *
  1293. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1294. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1295. *
  1296. */
  1297. /**
  1298. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1299. *
  1300. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1301. */
  1302. /* 颜色变量 */
  1303. /* 行为相关颜色 */
  1304. /* 文字基本颜色 */
  1305. /* 背景颜色 */
  1306. /* 边框颜色 */
  1307. /* 尺寸变量 */
  1308. /* 文字尺寸 */
  1309. /* 图片尺寸 */
  1310. /* Border Radius */
  1311. /* 水平间距 */
  1312. /* 垂直间距 */
  1313. /* 透明度 */
  1314. /* 文章场景相关 */
  1315. uni-view[data-v-72791e59], uni-scroll-view[data-v-72791e59], uni-swiper-item[data-v-72791e59] {
  1316. display: flex;
  1317. flex-direction: column;
  1318. flex-shrink: 0;
  1319. flex-grow: 0;
  1320. flex-basis: auto;
  1321. align-items: stretch;
  1322. align-content: flex-start;
  1323. }
  1324. .u-line[data-v-72791e59] {
  1325. vertical-align: middle;
  1326. }
  1327. /**
  1328. * 这里是uni-app内置的常用样式变量
  1329. *
  1330. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1331. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1332. *
  1333. */
  1334. /**
  1335. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1336. *
  1337. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1338. */
  1339. /* 颜色变量 */
  1340. /* 行为相关颜色 */
  1341. /* 文字基本颜色 */
  1342. /* 背景颜色 */
  1343. /* 边框颜色 */
  1344. /* 尺寸变量 */
  1345. /* 文字尺寸 */
  1346. /* 图片尺寸 */
  1347. /* Border Radius */
  1348. /* 水平间距 */
  1349. /* 垂直间距 */
  1350. /* 透明度 */
  1351. /* 文章场景相关 */
  1352. uni-view[data-v-f667648f], uni-scroll-view[data-v-f667648f], uni-swiper-item[data-v-f667648f] {
  1353. display: flex;
  1354. flex-direction: column;
  1355. flex-shrink: 0;
  1356. flex-grow: 0;
  1357. flex-basis: auto;
  1358. align-items: stretch;
  1359. align-content: flex-start;
  1360. }
  1361. .u-modal[data-v-f667648f] {
  1362. width: 20.3125rem;
  1363. border-radius: 6px;
  1364. overflow: hidden;
  1365. }
  1366. .u-modal__title[data-v-f667648f] {
  1367. font-size: 16px;
  1368. font-weight: bold;
  1369. color: #606266;
  1370. text-align: center;
  1371. padding-top: 25px;
  1372. }
  1373. .u-modal__content[data-v-f667648f] {
  1374. padding: 12px 25px 25px 25px;
  1375. display: flex;
  1376. flex-direction: row;
  1377. justify-content: center;
  1378. }
  1379. .u-modal__content__text[data-v-f667648f] {
  1380. font-size: 15px;
  1381. color: #606266;
  1382. flex: 1;
  1383. }
  1384. .u-modal__button-group[data-v-f667648f] {
  1385. display: flex;
  1386. flex-direction: row;
  1387. }
  1388. .u-modal__button-group--confirm-button[data-v-f667648f] {
  1389. flex-direction: column;
  1390. padding: 0px 25px 15px 25px;
  1391. }
  1392. .u-modal__button-group__wrapper[data-v-f667648f] {
  1393. flex: 1;
  1394. display: flex;
  1395. flex-direction: row;
  1396. justify-content: center;
  1397. align-items: center;
  1398. height: 48px;
  1399. }
  1400. .u-modal__button-group__wrapper--confirm[data-v-f667648f], .u-modal__button-group__wrapper--only-cancel[data-v-f667648f] {
  1401. border-bottom-right-radius: 6px;
  1402. }
  1403. .u-modal__button-group__wrapper--cancel[data-v-f667648f], .u-modal__button-group__wrapper--only-confirm[data-v-f667648f] {
  1404. border-bottom-left-radius: 6px;
  1405. }
  1406. .u-modal__button-group__wrapper--hover[data-v-f667648f] {
  1407. background-color: #f3f4f6;
  1408. }
  1409. .u-modal__button-group__wrapper__text[data-v-f667648f] {
  1410. color: #606266;
  1411. font-size: 16px;
  1412. text-align: center;
  1413. }
  1414. /**
  1415. * 这里是uni-app内置的常用样式变量
  1416. *
  1417. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1418. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1419. *
  1420. */
  1421. /**
  1422. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1423. *
  1424. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1425. */
  1426. /* 颜色变量 */
  1427. /* 行为相关颜色 */
  1428. /* 文字基本颜色 */
  1429. /* 背景颜色 */
  1430. /* 边框颜色 */
  1431. /* 尺寸变量 */
  1432. /* 文字尺寸 */
  1433. /* 图片尺寸 */
  1434. /* Border Radius */
  1435. /* 水平间距 */
  1436. /* 垂直间距 */
  1437. /* 透明度 */
  1438. /* 文章场景相关 */
  1439. uni-view[data-v-6fe44ee6], uni-scroll-view[data-v-6fe44ee6], uni-swiper-item[data-v-6fe44ee6] {
  1440. display: flex;
  1441. flex-direction: column;
  1442. flex-shrink: 0;
  1443. flex-grow: 0;
  1444. flex-basis: auto;
  1445. align-items: stretch;
  1446. align-content: flex-start;
  1447. }
  1448. /**
  1449. * 这里是uni-app内置的常用样式变量
  1450. *
  1451. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1452. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1453. *
  1454. */
  1455. /**
  1456. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1457. *
  1458. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1459. */
  1460. /* 颜色变量 */
  1461. /* 行为相关颜色 */
  1462. /* 文字基本颜色 */
  1463. /* 背景颜色 */
  1464. /* 边框颜色 */
  1465. /* 尺寸变量 */
  1466. /* 文字尺寸 */
  1467. /* 图片尺寸 */
  1468. /* Border Radius */
  1469. /* 水平间距 */
  1470. /* 垂直间距 */
  1471. /* 透明度 */
  1472. /* 文章场景相关 */
  1473. uni-view[data-v-69669810], uni-scroll-view[data-v-69669810], uni-swiper-item[data-v-69669810] {
  1474. display: flex;
  1475. flex-direction: column;
  1476. flex-shrink: 0;
  1477. flex-grow: 0;
  1478. flex-basis: auto;
  1479. align-items: stretch;
  1480. align-content: flex-start;
  1481. }
  1482. .u-reset-button[data-v-69669810] {
  1483. width: 100%;
  1484. }
  1485. .u-action-sheet[data-v-69669810] {
  1486. text-align: center;
  1487. }
  1488. .u-action-sheet__header[data-v-69669810] {
  1489. position: relative;
  1490. padding: 12px 30px;
  1491. }
  1492. .u-action-sheet__header__title[data-v-69669810] {
  1493. font-size: 16px;
  1494. color: #303133;
  1495. font-weight: bold;
  1496. text-align: center;
  1497. }
  1498. .u-action-sheet__header__icon-wrap[data-v-69669810] {
  1499. position: absolute;
  1500. right: 15px;
  1501. top: 15px;
  1502. }
  1503. .u-action-sheet__description[data-v-69669810] {
  1504. font-size: 13px;
  1505. color: #909193;
  1506. margin: 18px 15px;
  1507. text-align: center;
  1508. }
  1509. .u-action-sheet__item-wrap__item[data-v-69669810] {
  1510. padding: 15px;
  1511. display: flex;
  1512. flex-direction: row;
  1513. align-items: center;
  1514. justify-content: center;
  1515. flex-direction: column;
  1516. }
  1517. .u-action-sheet__item-wrap__item__name[data-v-69669810] {
  1518. font-size: 16px;
  1519. color: #303133;
  1520. text-align: center;
  1521. }
  1522. .u-action-sheet__item-wrap__item__subname[data-v-69669810] {
  1523. font-size: 13px;
  1524. color: #c0c4cc;
  1525. margin-top: 10px;
  1526. text-align: center;
  1527. }
  1528. .u-action-sheet__cancel-text[data-v-69669810] {
  1529. font-size: 16px;
  1530. color: #606266;
  1531. text-align: center;
  1532. padding: 16px;
  1533. }
  1534. .u-action-sheet--hover[data-v-69669810] {
  1535. background-color: #f2f3f5;
  1536. }
  1537. /**
  1538. * 这里是uni-app内置的常用样式变量
  1539. *
  1540. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1541. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1542. *
  1543. */
  1544. /**
  1545. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1546. *
  1547. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1548. */
  1549. /* 颜色变量 */
  1550. /* 行为相关颜色 */
  1551. /* 文字基本颜色 */
  1552. /* 背景颜色 */
  1553. /* 边框颜色 */
  1554. /* 尺寸变量 */
  1555. /* 文字尺寸 */
  1556. /* 图片尺寸 */
  1557. /* Border Radius */
  1558. /* 水平间距 */
  1559. /* 垂直间距 */
  1560. /* 透明度 */
  1561. /* 文章场景相关 */
  1562. uni-view[data-v-83036558], uni-scroll-view[data-v-83036558], uni-swiper-item[data-v-83036558] {
  1563. display: flex;
  1564. flex-direction: column;
  1565. flex-shrink: 0;
  1566. flex-grow: 0;
  1567. flex-basis: auto;
  1568. align-items: stretch;
  1569. align-content: flex-start;
  1570. }
  1571. .u-radio[data-v-83036558] {
  1572. display: flex;
  1573. flex-direction: row;
  1574. overflow: hidden;
  1575. flex-direction: row;
  1576. align-items: center;
  1577. margin-bottom: 5px;
  1578. margin-top: 5px;
  1579. }
  1580. .u-radio-label--left[data-v-83036558] {
  1581. flex-direction: row;
  1582. }
  1583. .u-radio-label--right[data-v-83036558] {
  1584. flex-direction: row-reverse;
  1585. justify-content: space-between;
  1586. }
  1587. .u-radio__icon-wrap[data-v-83036558] {
  1588. box-sizing: border-box;
  1589. transition-property: border-color, background-color, color;
  1590. transition-duration: 0.2s;
  1591. color: #606266;
  1592. display: flex;
  1593. flex-direction: row;
  1594. align-items: center;
  1595. justify-content: center;
  1596. color: transparent;
  1597. text-align: center;
  1598. margin-right: 6px;
  1599. font-size: 20px;
  1600. border-width: 1px;
  1601. border-color: #c8c9cc;
  1602. border-style: solid;
  1603. }
  1604. .u-radio__icon-wrap--circle[data-v-83036558] {
  1605. border-radius: 100%;
  1606. }
  1607. .u-radio__icon-wrap--square[data-v-83036558] {
  1608. border-radius: 3px;
  1609. }
  1610. .u-radio__icon-wrap--checked[data-v-83036558] {
  1611. color: #fff;
  1612. background-color: red;
  1613. border-color: #2979ff;
  1614. }
  1615. .u-radio__icon-wrap--disabled[data-v-83036558] {
  1616. background-color: #ebedf0 !important;
  1617. }
  1618. .u-radio__icon-wrap--disabled--checked[data-v-83036558] {
  1619. color: #c8c9cc !important;
  1620. }
  1621. .u-radio__label[data-v-83036558] {
  1622. word-wrap: break-word;
  1623. margin-left: 5px;
  1624. margin-right: 12px;
  1625. color: #606266;
  1626. font-size: 15px;
  1627. }
  1628. .u-radio__label--disabled[data-v-83036558] {
  1629. color: #c8c9cc;
  1630. }
  1631. /**
  1632. * 这里是uni-app内置的常用样式变量
  1633. *
  1634. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1635. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1636. *
  1637. */
  1638. /**
  1639. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1640. *
  1641. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1642. */
  1643. /* 颜色变量 */
  1644. /* 行为相关颜色 */
  1645. /* 文字基本颜色 */
  1646. /* 背景颜色 */
  1647. /* 边框颜色 */
  1648. /* 尺寸变量 */
  1649. /* 文字尺寸 */
  1650. /* 图片尺寸 */
  1651. /* Border Radius */
  1652. /* 水平间距 */
  1653. /* 垂直间距 */
  1654. /* 透明度 */
  1655. /* 文章场景相关 */
  1656. uni-view[data-v-cbc8bf70], uni-scroll-view[data-v-cbc8bf70], uni-swiper-item[data-v-cbc8bf70] {
  1657. display: flex;
  1658. flex-direction: column;
  1659. flex-shrink: 0;
  1660. flex-grow: 0;
  1661. flex-basis: auto;
  1662. align-items: stretch;
  1663. align-content: flex-start;
  1664. }
  1665. .u-radio-group[data-v-cbc8bf70] {
  1666. flex: 1;
  1667. }
  1668. .u-radio-group--row[data-v-cbc8bf70] {
  1669. display: flex;
  1670. flex-flow: row wrap;
  1671. }
  1672. .u-radio-group--column[data-v-cbc8bf70] {
  1673. display: flex;
  1674. flex-direction: column;
  1675. }
  1676. /**
  1677. * 这里是uni-app内置的常用样式变量
  1678. *
  1679. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1680. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1681. *
  1682. */
  1683. /**
  1684. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1685. *
  1686. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1687. */
  1688. /* 颜色变量 */
  1689. /* 行为相关颜色 */
  1690. /* 文字基本颜色 */
  1691. /* 背景颜色 */
  1692. /* 边框颜色 */
  1693. /* 尺寸变量 */
  1694. /* 文字尺寸 */
  1695. /* 图片尺寸 */
  1696. /* Border Radius */
  1697. /* 水平间距 */
  1698. /* 垂直间距 */
  1699. /* 透明度 */
  1700. /* 文章场景相关 */
  1701. uni-view[data-v-42bac3de], uni-scroll-view[data-v-42bac3de], uni-swiper-item[data-v-42bac3de] {
  1702. display: flex;
  1703. flex-direction: column;
  1704. flex-shrink: 0;
  1705. flex-grow: 0;
  1706. flex-basis: auto;
  1707. align-items: stretch;
  1708. align-content: flex-start;
  1709. }
  1710. .u-form-item[data-v-42bac3de] {
  1711. display: flex;
  1712. flex-direction: column;
  1713. font-size: 14px;
  1714. color: #303133;
  1715. }
  1716. .u-form-item__body[data-v-42bac3de] {
  1717. display: flex;
  1718. flex-direction: row;
  1719. padding: 10px 0;
  1720. }
  1721. .u-form-item__body__left[data-v-42bac3de] {
  1722. display: flex;
  1723. flex-direction: row;
  1724. align-items: center;
  1725. }
  1726. .u-form-item__body__left__content[data-v-42bac3de] {
  1727. position: relative;
  1728. display: flex;
  1729. flex-direction: row;
  1730. align-items: center;
  1731. padding-right: 0.3125rem;
  1732. flex: 1;
  1733. }
  1734. .u-form-item__body__left__content__icon[data-v-42bac3de] {
  1735. margin-right: 0.25rem;
  1736. }
  1737. .u-form-item__body__left__content__required[data-v-42bac3de] {
  1738. position: absolute;
  1739. left: -9px;
  1740. color: #f56c6c;
  1741. line-height: 20px;
  1742. font-size: 20px;
  1743. top: 3px;
  1744. }
  1745. .u-form-item__body__left__content__label[data-v-42bac3de] {
  1746. display: flex;
  1747. flex-direction: row;
  1748. align-items: center;
  1749. flex: 1;
  1750. color: #303133;
  1751. font-size: 15px;
  1752. }
  1753. .u-form-item__body__right[data-v-42bac3de] {
  1754. flex: 1;
  1755. }
  1756. .u-form-item__body__right__content[data-v-42bac3de] {
  1757. display: flex;
  1758. flex-direction: row;
  1759. align-items: center;
  1760. flex: 1;
  1761. }
  1762. .u-form-item__body__right__content__slot[data-v-42bac3de] {
  1763. flex: 1;
  1764. display: flex;
  1765. flex-direction: row;
  1766. align-items: center;
  1767. }
  1768. .u-form-item__body__right__content__icon[data-v-42bac3de] {
  1769. margin-left: 0.3125rem;
  1770. color: #c0c4cc;
  1771. font-size: 0.9375rem;
  1772. }
  1773. .u-form-item__body__right__message[data-v-42bac3de] {
  1774. font-size: 12px;
  1775. line-height: 12px;
  1776. color: #f56c6c;
  1777. }
  1778. /**
  1779. * 这里是uni-app内置的常用样式变量
  1780. *
  1781. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1782. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1783. *
  1784. */
  1785. /**
  1786. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1787. *
  1788. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1789. */
  1790. /* 颜色变量 */
  1791. /* 行为相关颜色 */
  1792. /* 文字基本颜色 */
  1793. /* 背景颜色 */
  1794. /* 边框颜色 */
  1795. /* 尺寸变量 */
  1796. /* 文字尺寸 */
  1797. /* 图片尺寸 */
  1798. /* Border Radius */
  1799. /* 水平间距 */
  1800. /* 垂直间距 */
  1801. /* 透明度 */
  1802. /* 文章场景相关 */
  1803. .modal-content[data-v-3cc29a87] {
  1804. max-height: 72vh;
  1805. overflow: auto;
  1806. }
  1807. .sms-history .no-data[data-v-3cc29a87] {
  1808. text-align: center;
  1809. color: #999;
  1810. padding: 1.25rem 0;
  1811. }
  1812. .sms-history .history-list .history-item[data-v-3cc29a87] {
  1813. margin-bottom: 0.625rem;
  1814. padding: 0.625rem;
  1815. background-color: #f8f9fa;
  1816. border-radius: 0.25rem;
  1817. border-left: 0.125rem solid #409eff;
  1818. }
  1819. .sms-history .history-list .history-item .history-header[data-v-3cc29a87] {
  1820. display: flex;
  1821. justify-content: space-between;
  1822. align-items: center;
  1823. margin-bottom: 0.3125rem;
  1824. }
  1825. .sms-history .history-list .history-item .history-header .sender[data-v-3cc29a87] {
  1826. font-size: 0.875rem;
  1827. font-weight: bold;
  1828. color: #333;
  1829. }
  1830. .sms-history .history-list .history-item .history-header .time[data-v-3cc29a87] {
  1831. font-size: 0.75rem;
  1832. color: #666;
  1833. }
  1834. .sms-history .history-list .history-item .history-header .status[data-v-3cc29a87] {
  1835. font-size: 0.75rem;
  1836. padding: 0.125rem 0.25rem;
  1837. border-radius: 0.125rem;
  1838. }
  1839. .sms-history .history-list .history-item .history-header .status.success[data-v-3cc29a87] {
  1840. background-color: #67c23a;
  1841. color: white;
  1842. }
  1843. .sms-history .history-list .history-item .history-header .status.fail[data-v-3cc29a87] {
  1844. background-color: #f56c6c;
  1845. color: white;
  1846. }
  1847. .sms-history .history-list .history-item .history-content[data-v-3cc29a87] {
  1848. font-size: 0.8125rem;
  1849. line-height: 1.5;
  1850. color: #666;
  1851. }
  1852. /* 自定义单选框样式 */
  1853. [data-v-3cc29a87] .u-radio-group .u-radio {
  1854. margin-bottom: 0.625rem;
  1855. }
  1856. /**
  1857. * 这里是uni-app内置的常用样式变量
  1858. *
  1859. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1860. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1861. *
  1862. */
  1863. /**
  1864. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1865. *
  1866. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1867. */
  1868. /* 颜色变量 */
  1869. /* 行为相关颜色 */
  1870. /* 文字基本颜色 */
  1871. /* 背景颜色 */
  1872. /* 边框颜色 */
  1873. /* 尺寸变量 */
  1874. /* 文字尺寸 */
  1875. /* 图片尺寸 */
  1876. /* Border Radius */
  1877. /* 水平间距 */
  1878. /* 垂直间距 */
  1879. /* 透明度 */
  1880. /* 文章场景相关 */
  1881. .order-info .info-item[data-v-034ad4bc] {
  1882. display: flex;
  1883. align-items: center;
  1884. line-height: 1.3125rem;
  1885. border-bottom: 0.03125rem solid #e5e5e5;
  1886. font-size: 0.875rem;
  1887. }
  1888. .order-info .label[data-v-034ad4bc] {
  1889. width: 120px;
  1890. text-align: center;
  1891. padding: 0.625rem 0;
  1892. height: 100%;
  1893. }
  1894. .order-info .content[data-v-034ad4bc] {
  1895. text-align: center;
  1896. padding: 0.625rem 0.625rem;
  1897. flex: 1;
  1898. border-left: 0.03125rem solid #e5e5e5;
  1899. min-height: 42px;
  1900. box-sizing: border-box;
  1901. }
  1902. .order-info .border-left[data-v-034ad4bc] {
  1903. border-left: 0.03125rem solid #e5e5e5;
  1904. }
  1905. .order-info .quick-fill[data-v-034ad4bc] {
  1906. display: flex;
  1907. flex-wrap: wrap;
  1908. gap: 0.625rem;
  1909. }
  1910. .order-info .quick-fill .u-tag[data-v-034ad4bc] {
  1911. margin: 0 0.3125rem 0.3125rem 0;
  1912. }
  1913. /**
  1914. * 这里是uni-app内置的常用样式变量
  1915. *
  1916. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1917. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1918. *
  1919. */
  1920. /**
  1921. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1922. *
  1923. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1924. */
  1925. /* 颜色变量 */
  1926. /* 行为相关颜色 */
  1927. /* 文字基本颜色 */
  1928. /* 背景颜色 */
  1929. /* 边框颜色 */
  1930. /* 尺寸变量 */
  1931. /* 文字尺寸 */
  1932. /* 图片尺寸 */
  1933. /* Border Radius */
  1934. /* 水平间距 */
  1935. /* 垂直间距 */
  1936. /* 透明度 */
  1937. /* 文章场景相关 */
  1938. .user-info-card .header[data-v-42a1a738] {
  1939. display: flex;
  1940. justify-content: space-between;
  1941. padding: 0.75rem 0.9375rem;
  1942. border-bottom: 0.03125rem solid #e6e6e6;
  1943. }
  1944. .user-info-card .content[data-v-42a1a738] {
  1945. padding: 15px;
  1946. border-bottom: 0.03125rem solid #e6e6e6;
  1947. }
  1948. .user-info-card .content .user-image[data-v-42a1a738] {
  1949. width: 50px;
  1950. height: 50px;
  1951. border-radius: 50%;
  1952. }
  1953. .user-info-card .log-container[data-v-42a1a738] {
  1954. max-height: 60vh;
  1955. overflow-y: auto;
  1956. background: #fff;
  1957. width: 100%;
  1958. }
  1959. .user-info-card .log-header[data-v-42a1a738] {
  1960. display: flex;
  1961. padding: 0.625rem;
  1962. background: #f2f2f2;
  1963. font-size: 0.875rem;
  1964. color: #333;
  1965. text-align: center;
  1966. }
  1967. .user-info-card .log-header uni-text[data-v-42a1a738]:nth-child(1) {
  1968. flex: 1.2;
  1969. flex-shrink: 0;
  1970. }
  1971. .user-info-card .log-header uni-text[data-v-42a1a738]:nth-child(2),
  1972. .user-info-card .log-header uni-text[data-v-42a1a738]:nth-child(3) {
  1973. flex: 1;
  1974. flex-shrink: 0;
  1975. }
  1976. .user-info-card .log-item[data-v-42a1a738] {
  1977. display: flex;
  1978. padding: 0.625rem;
  1979. border-bottom: 1px solid #f2f2f2;
  1980. font-size: 0.875rem;
  1981. color: #666;
  1982. }
  1983. .user-info-card .log-item .log-item-content[data-v-42a1a738] {
  1984. flex: 1.2;
  1985. text-align: center;
  1986. flex-shrink: 0;
  1987. }
  1988. .user-info-card .log-item .log-item-name[data-v-42a1a738],
  1989. .user-info-card .log-item .log-item-time[data-v-42a1a738] {
  1990. flex: 1;
  1991. text-align: center;
  1992. flex-shrink: 0;
  1993. }
  1994. .user-info-card .log-item[data-v-42a1a738]:last-child {
  1995. border-bottom: none;
  1996. }
  1997. .user-info-card[data-v-42a1a738] .u-modal__content {
  1998. padding: 0.625rem !important;
  1999. }
  2000. .user-info-card[data-v-42a1a738] .reason-textarea .uni-textarea-wrapper {
  2001. background-color: #f8f8f8;
  2002. border-radius: 0.3125rem;
  2003. padding: 0.625rem;
  2004. box-sizing: border-box;
  2005. min-height: 100px;
  2006. }
  2007. .user-info-card[data-v-42a1a738] .reason-textarea .uni-textarea-wrapper .uni-textarea-textarea,
  2008. .user-info-card[data-v-42a1a738] .reason-textarea .uni-textarea-wrapper .uni-textarea-placeholder {
  2009. padding: 0.3125rem 0.625rem;
  2010. }
  2011. /**
  2012. * 这里是uni-app内置的常用样式变量
  2013. *
  2014. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2015. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2016. *
  2017. */
  2018. /**
  2019. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2020. *
  2021. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2022. */
  2023. /* 颜色变量 */
  2024. /* 行为相关颜色 */
  2025. /* 文字基本颜色 */
  2026. /* 背景颜色 */
  2027. /* 边框颜色 */
  2028. /* 尺寸变量 */
  2029. /* 文字尺寸 */
  2030. /* 图片尺寸 */
  2031. /* Border Radius */
  2032. /* 水平间距 */
  2033. /* 垂直间距 */
  2034. /* 透明度 */
  2035. /* 文章场景相关 */
  2036. .timeline-container[data-v-140e9488] {
  2037. flex: 1;
  2038. padding: 12px;
  2039. background-color: #fff;
  2040. }
  2041. .timeline-item[data-v-140e9488] {
  2042. display: flex;
  2043. position: relative;
  2044. padding: 0.625rem 0;
  2045. }
  2046. .timeline-icon[data-v-140e9488] {
  2047. width: 24px;
  2048. height: 24px;
  2049. background-color: #fff;
  2050. border-radius: 50%;
  2051. display: flex;
  2052. align-items: center;
  2053. justify-content: center;
  2054. margin-right: 12px;
  2055. flex-shrink: 0;
  2056. }
  2057. .timeline-content[data-v-140e9488] {
  2058. flex: 1;
  2059. }
  2060. .timeline-content .title[data-v-140e9488] {
  2061. font-weight: bold;
  2062. font-size: 14px;
  2063. }
  2064. .timeline-content .desc[data-v-140e9488] {
  2065. font-size: 14px;
  2066. color: #333;
  2067. display: block;
  2068. margin-bottom: 4px;
  2069. }
  2070. .timeline-content .time[data-v-140e9488] {
  2071. font-size: 12px;
  2072. color: #999;
  2073. }
  2074. .timeline-line[data-v-140e9488] {
  2075. position: absolute;
  2076. width: 2px;
  2077. height: 100%;
  2078. background-color: #19be6b;
  2079. top: 32px;
  2080. bottom: 0;
  2081. left: 11px;
  2082. }
  2083. .card[data-v-a629889e] {
  2084. padding: 12px;
  2085. display: flex;
  2086. align-items: center;
  2087. margin-bottom: 0.1875rem;
  2088. .card-content[data-v-a629889e] {
  2089. display: flex;
  2090. width: 100%;
  2091. }
  2092. .book-info[data-v-a629889e] {
  2093. font-size: 0.8125rem;
  2094. }
  2095. .color-red[data-v-a629889e] {
  2096. color: #bd3124;
  2097. }
  2098. }
  2099. .book-info-item-title[data-v-8c7d14f9] {
  2100. padding: 0.3125rem 0.9375rem;
  2101. font-size: 0.875rem;
  2102. font-weight: 600;
  2103. border-bottom: 1px solid #e5e5e5;
  2104. }
  2105. /**
  2106. * 这里是uni-app内置的常用样式变量
  2107. *
  2108. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2109. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2110. *
  2111. */
  2112. /**
  2113. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2114. *
  2115. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2116. */
  2117. /* 颜色变量 */
  2118. /* 行为相关颜色 */
  2119. /* 文字基本颜色 */
  2120. /* 背景颜色 */
  2121. /* 边框颜色 */
  2122. /* 尺寸变量 */
  2123. /* 文字尺寸 */
  2124. /* 图片尺寸 */
  2125. /* Border Radius */
  2126. /* 水平间距 */
  2127. /* 垂直间距 */
  2128. /* 透明度 */
  2129. /* 文章场景相关 */
  2130. uni-view[data-v-abebd402], uni-scroll-view[data-v-abebd402], uni-swiper-item[data-v-abebd402] {
  2131. display: flex;
  2132. flex-direction: column;
  2133. flex-shrink: 0;
  2134. flex-grow: 0;
  2135. flex-basis: auto;
  2136. align-items: stretch;
  2137. align-content: flex-start;
  2138. }
  2139. .u-image[data-v-abebd402] {
  2140. position: relative;
  2141. transition: opacity 0.5s ease-in-out;
  2142. }
  2143. .u-image__image[data-v-abebd402] {
  2144. width: 100%;
  2145. height: 100%;
  2146. }
  2147. .u-image__loading[data-v-abebd402], .u-image__error[data-v-abebd402] {
  2148. position: absolute;
  2149. top: 0px;
  2150. left: 0px;
  2151. width: 100%;
  2152. height: 100%;
  2153. display: flex;
  2154. flex-direction: row;
  2155. align-items: center;
  2156. justify-content: center;
  2157. background-color: #f3f4f6;
  2158. color: #909193;
  2159. font-size: 1.4375rem;
  2160. }
  2161. /**
  2162. * 这里是uni-app内置的常用样式变量
  2163. *
  2164. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2165. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2166. *
  2167. */
  2168. /**
  2169. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2170. *
  2171. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2172. */
  2173. /* 颜色变量 */
  2174. /* 行为相关颜色 */
  2175. /* 文字基本颜色 */
  2176. /* 背景颜色 */
  2177. /* 边框颜色 */
  2178. /* 尺寸变量 */
  2179. /* 文字尺寸 */
  2180. /* 图片尺寸 */
  2181. /* Border Radius */
  2182. /* 水平间距 */
  2183. /* 垂直间距 */
  2184. /* 透明度 */
  2185. /* 文章场景相关 */
  2186. uni-view[data-v-c8491d64], uni-scroll-view[data-v-c8491d64], uni-swiper-item[data-v-c8491d64] {
  2187. display: flex;
  2188. flex-direction: column;
  2189. flex-shrink: 0;
  2190. flex-grow: 0;
  2191. flex-basis: auto;
  2192. align-items: stretch;
  2193. align-content: flex-start;
  2194. }
  2195. .u-upload[data-v-c8491d64] {
  2196. display: flex;
  2197. flex-direction: column;
  2198. flex: 1;
  2199. }
  2200. .u-upload__wrap[data-v-c8491d64] {
  2201. display: flex;
  2202. flex-direction: row;
  2203. flex-wrap: wrap;
  2204. flex: 1;
  2205. }
  2206. .u-upload__wrap__preview[data-v-c8491d64] {
  2207. border-radius: 2px;
  2208. margin: 0 8px 8px 0;
  2209. position: relative;
  2210. overflow: hidden;
  2211. display: flex;
  2212. flex-direction: row;
  2213. }
  2214. .u-upload__wrap__preview__image[data-v-c8491d64] {
  2215. width: 80px;
  2216. height: 80px;
  2217. }
  2218. .u-upload__wrap__preview__other[data-v-c8491d64] {
  2219. width: 80px;
  2220. height: 80px;
  2221. background-color: #f2f2f2;
  2222. flex: 1;
  2223. display: flex;
  2224. flex-direction: column;
  2225. justify-content: center;
  2226. align-items: center;
  2227. }
  2228. .u-upload__wrap__preview__other__text[data-v-c8491d64] {
  2229. font-size: 11px;
  2230. color: #909193;
  2231. margin-top: 2px;
  2232. }
  2233. .u-upload__deletable[data-v-c8491d64] {
  2234. position: absolute;
  2235. top: 0;
  2236. right: 0;
  2237. background-color: #373737;
  2238. height: 14px;
  2239. width: 14px;
  2240. display: flex;
  2241. flex-direction: row;
  2242. border-bottom-left-radius: 100px;
  2243. align-items: center;
  2244. justify-content: center;
  2245. z-index: 3;
  2246. }
  2247. .u-upload__deletable__icon[data-v-c8491d64] {
  2248. position: absolute;
  2249. transform: scale(0.7);
  2250. top: 0px;
  2251. right: 0px;
  2252. }
  2253. .u-upload__success[data-v-c8491d64] {
  2254. position: absolute;
  2255. bottom: 0;
  2256. right: 0;
  2257. display: flex;
  2258. flex-direction: row;
  2259. border-style: solid;
  2260. border-top-color: transparent;
  2261. border-left-color: transparent;
  2262. border-bottom-color: #22ac38;
  2263. border-right-color: #22ac38;
  2264. border-width: 9px;
  2265. align-items: center;
  2266. justify-content: center;
  2267. }
  2268. .u-upload__success__icon[data-v-c8491d64] {
  2269. position: absolute;
  2270. transform: scale(0.7);
  2271. bottom: -10px;
  2272. right: -10px;
  2273. }
  2274. .u-upload__status[data-v-c8491d64] {
  2275. position: absolute;
  2276. top: 0;
  2277. bottom: 0;
  2278. left: 0;
  2279. right: 0;
  2280. background-color: rgba(0, 0, 0, 0.5);
  2281. display: flex;
  2282. flex-direction: column;
  2283. align-items: center;
  2284. justify-content: center;
  2285. }
  2286. .u-upload__status__icon[data-v-c8491d64] {
  2287. position: relative;
  2288. z-index: 1;
  2289. }
  2290. .u-upload__status__message[data-v-c8491d64] {
  2291. font-size: 12px;
  2292. color: #FFFFFF;
  2293. margin-top: 5px;
  2294. }
  2295. .u-upload__button[data-v-c8491d64] {
  2296. display: flex;
  2297. flex-direction: column;
  2298. align-items: center;
  2299. justify-content: center;
  2300. width: 80px;
  2301. height: 80px;
  2302. background-color: #f4f5f7;
  2303. border-radius: 2px;
  2304. margin: 0 8px 8px 0;
  2305. box-sizing: border-box;
  2306. }
  2307. .u-upload__button__text[data-v-c8491d64] {
  2308. font-size: 11px;
  2309. color: #909193;
  2310. margin-top: 2px;
  2311. }
  2312. .u-upload__button--hover[data-v-c8491d64] {
  2313. background-color: #e6e7e9;
  2314. }
  2315. .u-upload__button--disabled[data-v-c8491d64] {
  2316. opacity: 0.5;
  2317. }
  2318. /**
  2319. * 这里是uni-app内置的常用样式变量
  2320. *
  2321. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2322. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2323. *
  2324. */
  2325. /**
  2326. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2327. *
  2328. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2329. */
  2330. /* 颜色变量 */
  2331. /* 行为相关颜色 */
  2332. /* 文字基本颜色 */
  2333. /* 背景颜色 */
  2334. /* 边框颜色 */
  2335. /* 尺寸变量 */
  2336. /* 文字尺寸 */
  2337. /* 图片尺寸 */
  2338. /* Border Radius */
  2339. /* 水平间距 */
  2340. /* 垂直间距 */
  2341. /* 透明度 */
  2342. /* 文章场景相关 */
  2343. .tips[data-v-5002576b] {
  2344. font-size: 0.75rem;
  2345. font-family: PingFangSC, PingFang SC;
  2346. font-weight: 400;
  2347. color: #969696;
  2348. line-height: 1.5rem;
  2349. margin-top: 0.3125rem;
  2350. }
  2351. [data-v-5002576b] .align-right .u-upload__wrap {
  2352. justify-content: flex-end;
  2353. }
  2354. /**
  2355. * 这里是uni-app内置的常用样式变量
  2356. *
  2357. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2358. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2359. *
  2360. */
  2361. /**
  2362. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2363. *
  2364. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2365. */
  2366. /* 颜色变量 */
  2367. /* 行为相关颜色 */
  2368. /* 文字基本颜色 */
  2369. /* 背景颜色 */
  2370. /* 边框颜色 */
  2371. /* 尺寸变量 */
  2372. /* 文字尺寸 */
  2373. /* 图片尺寸 */
  2374. /* Border Radius */
  2375. /* 水平间距 */
  2376. /* 垂直间距 */
  2377. /* 透明度 */
  2378. /* 文章场景相关 */
  2379. .file-info-container[data-v-b4cf7c83] {
  2380. padding: 0.625rem 0.9375rem;
  2381. box-sizing: border-box;
  2382. }
  2383. .file-info-item[data-v-b4cf7c83] {
  2384. padding: 0.625rem;
  2385. border-bottom: 1px solid #e5e5e5;
  2386. }
  2387. .file-info-list-title[data-v-b4cf7c83] {
  2388. background-color: #e5e5e5;
  2389. padding: 0.3125rem 0;
  2390. margin-top: 20px;
  2391. }
  2392. .file-info-list-content[data-v-b4cf7c83] {
  2393. color: #999;
  2394. min-height: 100px;
  2395. }
  2396. body {
  2397. background-color: #f5f5f5;
  2398. }
  2399. /**
  2400. * 这里是uni-app内置的常用样式变量
  2401. *
  2402. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2403. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2404. *
  2405. */
  2406. /**
  2407. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2408. *
  2409. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2410. */
  2411. /* 颜色变量 */
  2412. /* 行为相关颜色 */
  2413. /* 文字基本颜色 */
  2414. /* 背景颜色 */
  2415. /* 边框颜色 */
  2416. /* 尺寸变量 */
  2417. /* 文字尺寸 */
  2418. /* 图片尺寸 */
  2419. /* Border Radius */
  2420. /* 水平间距 */
  2421. /* 垂直间距 */
  2422. /* 透明度 */
  2423. /* 文章场景相关 */
  2424. .order-detail[data-v-8b10f148] {
  2425. font-size: 0.9375rem;
  2426. padding-bottom: 4.375rem;
  2427. position: relative;
  2428. }
  2429. .order-detail.fixed-bottom-2[data-v-8b10f148] {
  2430. padding-bottom: 0.9375rem;
  2431. }
  2432. .order-detail .bind-audit[data-v-8b10f148] {
  2433. padding: 0.625rem 0.9375rem;
  2434. border-bottom: 1px solid #e5e5e5;
  2435. }
  2436. .order-detail .fixed-left[data-v-8b10f148] {
  2437. position: fixed;
  2438. left: 0;
  2439. top: 11%;
  2440. width: 3.125rem;
  2441. }
  2442. .order-detail .fixed-left .common-bg[data-v-8b10f148] {
  2443. background-color: rgba(34, 172, 56, 0.7);
  2444. border-radius: 0 0.9375rem 0.9375rem 0;
  2445. font-weight: 500;
  2446. color: #ffffff;
  2447. }
  2448. .order-detail .fixed-left .book-status-item[data-v-8b10f148] {
  2449. padding: 0.625rem;
  2450. border-top: 0.03125rem solid #ffffff;
  2451. border-bottom: 0.03125rem solid #ffffff;
  2452. }
  2453. .order-detail .fixed-right[data-v-8b10f148] {
  2454. position: fixed;
  2455. right: 0;
  2456. top: 12%;
  2457. width: 2.1875rem;
  2458. }
  2459. .order-detail .fixed-right .letter-bg[data-v-8b10f148] {
  2460. background-color: rgba(34, 172, 56, 0.7);
  2461. border-radius: 0.3125rem 0 0 0.3125rem;
  2462. font-weight: 500;
  2463. color: #ffffff;
  2464. padding: 0.375rem 0;
  2465. padding-bottom: 0.1875rem;
  2466. }
  2467. .order-detail .fixed-right .letter-item[data-v-8b10f148] {
  2468. padding-bottom: 0.375rem;
  2469. }