index.css 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733
  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. uni-view[data-v-12f6646d], uni-scroll-view[data-v-12f6646d], uni-swiper-item[data-v-12f6646d] {
  1939. display: flex;
  1940. flex-direction: column;
  1941. flex-shrink: 0;
  1942. flex-grow: 0;
  1943. flex-basis: auto;
  1944. align-items: stretch;
  1945. align-content: flex-start;
  1946. }
  1947. .u-link[data-v-12f6646d] {
  1948. line-height: 1;
  1949. display: flex;
  1950. flex-direction: row;
  1951. flex-wrap: wrap;
  1952. flex: 1;
  1953. }
  1954. /**
  1955. * 这里是uni-app内置的常用样式变量
  1956. *
  1957. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1958. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1959. *
  1960. */
  1961. /**
  1962. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1963. *
  1964. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1965. */
  1966. /* 颜色变量 */
  1967. /* 行为相关颜色 */
  1968. /* 文字基本颜色 */
  1969. /* 背景颜色 */
  1970. /* 边框颜色 */
  1971. /* 尺寸变量 */
  1972. /* 文字尺寸 */
  1973. /* 图片尺寸 */
  1974. /* Border Radius */
  1975. /* 水平间距 */
  1976. /* 垂直间距 */
  1977. /* 透明度 */
  1978. /* 文章场景相关 */
  1979. uni-view[data-v-0a574502], uni-scroll-view[data-v-0a574502], uni-swiper-item[data-v-0a574502] {
  1980. display: flex;
  1981. flex-direction: column;
  1982. flex-shrink: 0;
  1983. flex-grow: 0;
  1984. flex-basis: auto;
  1985. align-items: stretch;
  1986. align-content: flex-start;
  1987. }
  1988. .u-text[data-v-0a574502] {
  1989. display: flex;
  1990. flex-direction: row;
  1991. align-items: center;
  1992. flex-wrap: nowrap;
  1993. flex: 1;
  1994. width: 100%;
  1995. }
  1996. .u-text__price[data-v-0a574502] {
  1997. font-size: 14px;
  1998. color: #606266;
  1999. }
  2000. .u-text__value[data-v-0a574502] {
  2001. font-size: 14px;
  2002. display: flex;
  2003. flex-direction: row;
  2004. color: #606266;
  2005. flex-wrap: wrap;
  2006. text-overflow: ellipsis;
  2007. align-items: center;
  2008. }
  2009. .u-text__value--primary[data-v-0a574502] {
  2010. color: #22ac38;
  2011. }
  2012. .u-text__value--warning[data-v-0a574502] {
  2013. color: #f9ae3d;
  2014. }
  2015. .u-text__value--success[data-v-0a574502] {
  2016. color: #22ac38;
  2017. }
  2018. .u-text__value--info[data-v-0a574502] {
  2019. color: #909399;
  2020. }
  2021. .u-text__value--error[data-v-0a574502] {
  2022. color: #f56c6c;
  2023. }
  2024. .u-text__value--main[data-v-0a574502] {
  2025. color: #303133;
  2026. }
  2027. .u-text__value--content[data-v-0a574502] {
  2028. color: #606266;
  2029. }
  2030. .u-text__value--tips[data-v-0a574502] {
  2031. color: #909193;
  2032. }
  2033. .u-text__value--light[data-v-0a574502] {
  2034. color: #c0c4cc;
  2035. }
  2036. /**
  2037. * 这里是uni-app内置的常用样式变量
  2038. *
  2039. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2040. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2041. *
  2042. */
  2043. /**
  2044. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2045. *
  2046. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2047. */
  2048. /* 颜色变量 */
  2049. /* 行为相关颜色 */
  2050. /* 文字基本颜色 */
  2051. /* 背景颜色 */
  2052. /* 边框颜色 */
  2053. /* 尺寸变量 */
  2054. /* 文字尺寸 */
  2055. /* 图片尺寸 */
  2056. /* Border Radius */
  2057. /* 水平间距 */
  2058. /* 垂直间距 */
  2059. /* 透明度 */
  2060. /* 文章场景相关 */
  2061. uni-view[data-v-34d954f9], uni-scroll-view[data-v-34d954f9], uni-swiper-item[data-v-34d954f9] {
  2062. display: flex;
  2063. flex-direction: column;
  2064. flex-shrink: 0;
  2065. flex-grow: 0;
  2066. flex-basis: auto;
  2067. align-items: stretch;
  2068. align-content: flex-start;
  2069. }
  2070. .u-avatar[data-v-34d954f9] {
  2071. display: flex;
  2072. flex-direction: row;
  2073. align-items: center;
  2074. justify-content: center;
  2075. }
  2076. .u-avatar--circle[data-v-34d954f9] {
  2077. border-radius: 100px;
  2078. }
  2079. .u-avatar--square[data-v-34d954f9] {
  2080. border-radius: 4px;
  2081. }
  2082. .u-avatar__image--circle[data-v-34d954f9] {
  2083. border-radius: 100px;
  2084. }
  2085. .u-avatar__image--square[data-v-34d954f9] {
  2086. border-radius: 4px;
  2087. }
  2088. /**
  2089. * 这里是uni-app内置的常用样式变量
  2090. *
  2091. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2092. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2093. *
  2094. */
  2095. /**
  2096. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2097. *
  2098. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2099. */
  2100. /* 颜色变量 */
  2101. /* 行为相关颜色 */
  2102. /* 文字基本颜色 */
  2103. /* 背景颜色 */
  2104. /* 边框颜色 */
  2105. /* 尺寸变量 */
  2106. /* 文字尺寸 */
  2107. /* 图片尺寸 */
  2108. /* Border Radius */
  2109. /* 水平间距 */
  2110. /* 垂直间距 */
  2111. /* 透明度 */
  2112. /* 文章场景相关 */
  2113. .user-info-card .header[data-v-42a1a738] {
  2114. display: flex;
  2115. justify-content: space-between;
  2116. padding: 0.75rem 0.9375rem;
  2117. border-bottom: 0.03125rem solid #e6e6e6;
  2118. }
  2119. .user-info-card .content[data-v-42a1a738] {
  2120. padding: 15px;
  2121. border-bottom: 0.03125rem solid #e6e6e6;
  2122. }
  2123. .user-info-card .content .user-image[data-v-42a1a738] {
  2124. width: 50px;
  2125. height: 50px;
  2126. border-radius: 50%;
  2127. }
  2128. .user-info-card .log-container[data-v-42a1a738] {
  2129. max-height: 60vh;
  2130. overflow-y: auto;
  2131. background: #fff;
  2132. width: 100%;
  2133. }
  2134. .user-info-card .log-header[data-v-42a1a738] {
  2135. display: flex;
  2136. padding: 0.625rem;
  2137. background: #f2f2f2;
  2138. font-size: 0.875rem;
  2139. color: #333;
  2140. text-align: center;
  2141. }
  2142. .user-info-card .log-header uni-text[data-v-42a1a738]:nth-child(1) {
  2143. flex: 1.2;
  2144. flex-shrink: 0;
  2145. }
  2146. .user-info-card .log-header uni-text[data-v-42a1a738]:nth-child(2),
  2147. .user-info-card .log-header uni-text[data-v-42a1a738]:nth-child(3) {
  2148. flex: 1;
  2149. flex-shrink: 0;
  2150. }
  2151. .user-info-card .log-item[data-v-42a1a738] {
  2152. display: flex;
  2153. padding: 0.625rem;
  2154. border-bottom: 1px solid #f2f2f2;
  2155. font-size: 0.875rem;
  2156. color: #666;
  2157. }
  2158. .user-info-card .log-item .log-item-content[data-v-42a1a738] {
  2159. flex: 1.2;
  2160. text-align: center;
  2161. flex-shrink: 0;
  2162. }
  2163. .user-info-card .log-item .log-item-name[data-v-42a1a738],
  2164. .user-info-card .log-item .log-item-time[data-v-42a1a738] {
  2165. flex: 1;
  2166. text-align: center;
  2167. flex-shrink: 0;
  2168. }
  2169. .user-info-card .log-item[data-v-42a1a738]:last-child {
  2170. border-bottom: none;
  2171. }
  2172. .user-info-card[data-v-42a1a738] .u-modal__content {
  2173. padding: 0.625rem !important;
  2174. }
  2175. .user-info-card[data-v-42a1a738] .reason-textarea .uni-textarea-wrapper {
  2176. background-color: #f8f8f8;
  2177. border-radius: 0.3125rem;
  2178. padding: 0.625rem;
  2179. box-sizing: border-box;
  2180. min-height: 100px;
  2181. }
  2182. .user-info-card[data-v-42a1a738] .reason-textarea .uni-textarea-wrapper .uni-textarea-textarea,
  2183. .user-info-card[data-v-42a1a738] .reason-textarea .uni-textarea-wrapper .uni-textarea-placeholder {
  2184. padding: 0.3125rem 0.625rem;
  2185. }
  2186. /**
  2187. * 这里是uni-app内置的常用样式变量
  2188. *
  2189. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2190. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2191. *
  2192. */
  2193. /**
  2194. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2195. *
  2196. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2197. */
  2198. /* 颜色变量 */
  2199. /* 行为相关颜色 */
  2200. /* 文字基本颜色 */
  2201. /* 背景颜色 */
  2202. /* 边框颜色 */
  2203. /* 尺寸变量 */
  2204. /* 文字尺寸 */
  2205. /* 图片尺寸 */
  2206. /* Border Radius */
  2207. /* 水平间距 */
  2208. /* 垂直间距 */
  2209. /* 透明度 */
  2210. /* 文章场景相关 */
  2211. .timeline-container[data-v-140e9488] {
  2212. flex: 1;
  2213. padding: 12px;
  2214. background-color: #fff;
  2215. }
  2216. .timeline-item[data-v-140e9488] {
  2217. display: flex;
  2218. position: relative;
  2219. padding: 0.625rem 0;
  2220. }
  2221. .timeline-icon[data-v-140e9488] {
  2222. width: 24px;
  2223. height: 24px;
  2224. background-color: #fff;
  2225. border-radius: 50%;
  2226. display: flex;
  2227. align-items: center;
  2228. justify-content: center;
  2229. margin-right: 12px;
  2230. flex-shrink: 0;
  2231. }
  2232. .timeline-content[data-v-140e9488] {
  2233. flex: 1;
  2234. }
  2235. .timeline-content .title[data-v-140e9488] {
  2236. font-weight: bold;
  2237. font-size: 14px;
  2238. }
  2239. .timeline-content .desc[data-v-140e9488] {
  2240. font-size: 14px;
  2241. color: #333;
  2242. display: block;
  2243. margin-bottom: 4px;
  2244. }
  2245. .timeline-content .time[data-v-140e9488] {
  2246. font-size: 12px;
  2247. color: #999;
  2248. }
  2249. .timeline-line[data-v-140e9488] {
  2250. position: absolute;
  2251. width: 2px;
  2252. height: 100%;
  2253. background-color: #19be6b;
  2254. top: 32px;
  2255. bottom: 0;
  2256. left: 11px;
  2257. }
  2258. .card[data-v-a629889e] {
  2259. padding: 12px;
  2260. display: flex;
  2261. align-items: center;
  2262. margin-bottom: 0.1875rem;
  2263. .card-content[data-v-a629889e] {
  2264. display: flex;
  2265. width: 100%;
  2266. }
  2267. .book-info[data-v-a629889e] {
  2268. font-size: 0.8125rem;
  2269. }
  2270. .color-red[data-v-a629889e] {
  2271. color: #bd3124;
  2272. }
  2273. }
  2274. .book-info-item-title[data-v-8c7d14f9] {
  2275. padding: 0.3125rem 0.9375rem;
  2276. font-size: 0.875rem;
  2277. font-weight: 600;
  2278. border-bottom: 1px solid #e5e5e5;
  2279. }
  2280. /**
  2281. * 这里是uni-app内置的常用样式变量
  2282. *
  2283. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2284. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2285. *
  2286. */
  2287. /**
  2288. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2289. *
  2290. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2291. */
  2292. /* 颜色变量 */
  2293. /* 行为相关颜色 */
  2294. /* 文字基本颜色 */
  2295. /* 背景颜色 */
  2296. /* 边框颜色 */
  2297. /* 尺寸变量 */
  2298. /* 文字尺寸 */
  2299. /* 图片尺寸 */
  2300. /* Border Radius */
  2301. /* 水平间距 */
  2302. /* 垂直间距 */
  2303. /* 透明度 */
  2304. /* 文章场景相关 */
  2305. uni-view[data-v-abebd402], uni-scroll-view[data-v-abebd402], uni-swiper-item[data-v-abebd402] {
  2306. display: flex;
  2307. flex-direction: column;
  2308. flex-shrink: 0;
  2309. flex-grow: 0;
  2310. flex-basis: auto;
  2311. align-items: stretch;
  2312. align-content: flex-start;
  2313. }
  2314. .u-image[data-v-abebd402] {
  2315. position: relative;
  2316. transition: opacity 0.5s ease-in-out;
  2317. }
  2318. .u-image__image[data-v-abebd402] {
  2319. width: 100%;
  2320. height: 100%;
  2321. }
  2322. .u-image__loading[data-v-abebd402], .u-image__error[data-v-abebd402] {
  2323. position: absolute;
  2324. top: 0px;
  2325. left: 0px;
  2326. width: 100%;
  2327. height: 100%;
  2328. display: flex;
  2329. flex-direction: row;
  2330. align-items: center;
  2331. justify-content: center;
  2332. background-color: #f3f4f6;
  2333. color: #909193;
  2334. font-size: 1.4375rem;
  2335. }
  2336. /**
  2337. * 这里是uni-app内置的常用样式变量
  2338. *
  2339. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2340. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2341. *
  2342. */
  2343. /**
  2344. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2345. *
  2346. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2347. */
  2348. /* 颜色变量 */
  2349. /* 行为相关颜色 */
  2350. /* 文字基本颜色 */
  2351. /* 背景颜色 */
  2352. /* 边框颜色 */
  2353. /* 尺寸变量 */
  2354. /* 文字尺寸 */
  2355. /* 图片尺寸 */
  2356. /* Border Radius */
  2357. /* 水平间距 */
  2358. /* 垂直间距 */
  2359. /* 透明度 */
  2360. /* 文章场景相关 */
  2361. uni-view[data-v-c8491d64], uni-scroll-view[data-v-c8491d64], uni-swiper-item[data-v-c8491d64] {
  2362. display: flex;
  2363. flex-direction: column;
  2364. flex-shrink: 0;
  2365. flex-grow: 0;
  2366. flex-basis: auto;
  2367. align-items: stretch;
  2368. align-content: flex-start;
  2369. }
  2370. .u-upload[data-v-c8491d64] {
  2371. display: flex;
  2372. flex-direction: column;
  2373. flex: 1;
  2374. }
  2375. .u-upload__wrap[data-v-c8491d64] {
  2376. display: flex;
  2377. flex-direction: row;
  2378. flex-wrap: wrap;
  2379. flex: 1;
  2380. }
  2381. .u-upload__wrap__preview[data-v-c8491d64] {
  2382. border-radius: 2px;
  2383. margin: 0 8px 8px 0;
  2384. position: relative;
  2385. overflow: hidden;
  2386. display: flex;
  2387. flex-direction: row;
  2388. }
  2389. .u-upload__wrap__preview__image[data-v-c8491d64] {
  2390. width: 80px;
  2391. height: 80px;
  2392. }
  2393. .u-upload__wrap__preview__other[data-v-c8491d64] {
  2394. width: 80px;
  2395. height: 80px;
  2396. background-color: #f2f2f2;
  2397. flex: 1;
  2398. display: flex;
  2399. flex-direction: column;
  2400. justify-content: center;
  2401. align-items: center;
  2402. }
  2403. .u-upload__wrap__preview__other__text[data-v-c8491d64] {
  2404. font-size: 11px;
  2405. color: #909193;
  2406. margin-top: 2px;
  2407. }
  2408. .u-upload__deletable[data-v-c8491d64] {
  2409. position: absolute;
  2410. top: 0;
  2411. right: 0;
  2412. background-color: #373737;
  2413. height: 14px;
  2414. width: 14px;
  2415. display: flex;
  2416. flex-direction: row;
  2417. border-bottom-left-radius: 100px;
  2418. align-items: center;
  2419. justify-content: center;
  2420. z-index: 3;
  2421. }
  2422. .u-upload__deletable__icon[data-v-c8491d64] {
  2423. position: absolute;
  2424. transform: scale(0.7);
  2425. top: 0px;
  2426. right: 0px;
  2427. }
  2428. .u-upload__success[data-v-c8491d64] {
  2429. position: absolute;
  2430. bottom: 0;
  2431. right: 0;
  2432. display: flex;
  2433. flex-direction: row;
  2434. border-style: solid;
  2435. border-top-color: transparent;
  2436. border-left-color: transparent;
  2437. border-bottom-color: #22ac38;
  2438. border-right-color: #22ac38;
  2439. border-width: 9px;
  2440. align-items: center;
  2441. justify-content: center;
  2442. }
  2443. .u-upload__success__icon[data-v-c8491d64] {
  2444. position: absolute;
  2445. transform: scale(0.7);
  2446. bottom: -10px;
  2447. right: -10px;
  2448. }
  2449. .u-upload__status[data-v-c8491d64] {
  2450. position: absolute;
  2451. top: 0;
  2452. bottom: 0;
  2453. left: 0;
  2454. right: 0;
  2455. background-color: rgba(0, 0, 0, 0.5);
  2456. display: flex;
  2457. flex-direction: column;
  2458. align-items: center;
  2459. justify-content: center;
  2460. }
  2461. .u-upload__status__icon[data-v-c8491d64] {
  2462. position: relative;
  2463. z-index: 1;
  2464. }
  2465. .u-upload__status__message[data-v-c8491d64] {
  2466. font-size: 12px;
  2467. color: #FFFFFF;
  2468. margin-top: 5px;
  2469. }
  2470. .u-upload__button[data-v-c8491d64] {
  2471. display: flex;
  2472. flex-direction: column;
  2473. align-items: center;
  2474. justify-content: center;
  2475. width: 80px;
  2476. height: 80px;
  2477. background-color: #f4f5f7;
  2478. border-radius: 2px;
  2479. margin: 0 8px 8px 0;
  2480. box-sizing: border-box;
  2481. }
  2482. .u-upload__button__text[data-v-c8491d64] {
  2483. font-size: 11px;
  2484. color: #909193;
  2485. margin-top: 2px;
  2486. }
  2487. .u-upload__button--hover[data-v-c8491d64] {
  2488. background-color: #e6e7e9;
  2489. }
  2490. .u-upload__button--disabled[data-v-c8491d64] {
  2491. opacity: 0.5;
  2492. }
  2493. /**
  2494. * 这里是uni-app内置的常用样式变量
  2495. *
  2496. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2497. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2498. *
  2499. */
  2500. /**
  2501. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2502. *
  2503. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2504. */
  2505. /* 颜色变量 */
  2506. /* 行为相关颜色 */
  2507. /* 文字基本颜色 */
  2508. /* 背景颜色 */
  2509. /* 边框颜色 */
  2510. /* 尺寸变量 */
  2511. /* 文字尺寸 */
  2512. /* 图片尺寸 */
  2513. /* Border Radius */
  2514. /* 水平间距 */
  2515. /* 垂直间距 */
  2516. /* 透明度 */
  2517. /* 文章场景相关 */
  2518. .tips[data-v-5002576b] {
  2519. font-size: 0.75rem;
  2520. font-family: PingFangSC, PingFang SC;
  2521. font-weight: 400;
  2522. color: #969696;
  2523. line-height: 1.5rem;
  2524. margin-top: 0.3125rem;
  2525. }
  2526. [data-v-5002576b] .align-right .u-upload__wrap {
  2527. justify-content: flex-end;
  2528. }
  2529. /**
  2530. * 这里是uni-app内置的常用样式变量
  2531. *
  2532. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2533. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2534. *
  2535. */
  2536. /**
  2537. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2538. *
  2539. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2540. */
  2541. /* 颜色变量 */
  2542. /* 行为相关颜色 */
  2543. /* 文字基本颜色 */
  2544. /* 背景颜色 */
  2545. /* 边框颜色 */
  2546. /* 尺寸变量 */
  2547. /* 文字尺寸 */
  2548. /* 图片尺寸 */
  2549. /* Border Radius */
  2550. /* 水平间距 */
  2551. /* 垂直间距 */
  2552. /* 透明度 */
  2553. /* 文章场景相关 */
  2554. .file-info-container[data-v-b4cf7c83] {
  2555. padding: 0.625rem 0.9375rem;
  2556. box-sizing: border-box;
  2557. }
  2558. .file-info-item[data-v-b4cf7c83] {
  2559. padding: 0.625rem;
  2560. border-bottom: 1px solid #e5e5e5;
  2561. }
  2562. .file-info-list-title[data-v-b4cf7c83] {
  2563. background-color: #e5e5e5;
  2564. padding: 0.3125rem 0;
  2565. margin-top: 20px;
  2566. }
  2567. .file-info-list-content[data-v-b4cf7c83] {
  2568. color: #999;
  2569. min-height: 100px;
  2570. }
  2571. body {
  2572. background-color: #f5f5f5;
  2573. }
  2574. /**
  2575. * 这里是uni-app内置的常用样式变量
  2576. *
  2577. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2578. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2579. *
  2580. */
  2581. /**
  2582. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2583. *
  2584. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2585. */
  2586. /* 颜色变量 */
  2587. /* 行为相关颜色 */
  2588. /* 文字基本颜色 */
  2589. /* 背景颜色 */
  2590. /* 边框颜色 */
  2591. /* 尺寸变量 */
  2592. /* 文字尺寸 */
  2593. /* 图片尺寸 */
  2594. /* Border Radius */
  2595. /* 水平间距 */
  2596. /* 垂直间距 */
  2597. /* 透明度 */
  2598. /* 文章场景相关 */
  2599. .order-detail[data-v-8b10f148] {
  2600. font-size: 0.9375rem;
  2601. padding-bottom: 4.375rem;
  2602. position: relative;
  2603. }
  2604. .order-detail.fixed-bottom-2[data-v-8b10f148] {
  2605. padding-bottom: 0.9375rem;
  2606. }
  2607. .order-detail .bind-audit[data-v-8b10f148] {
  2608. padding: 0.625rem 0.9375rem;
  2609. border-bottom: 1px solid #e5e5e5;
  2610. }
  2611. .order-detail .fixed-left[data-v-8b10f148] {
  2612. position: fixed;
  2613. left: 0;
  2614. top: 11%;
  2615. width: 3.125rem;
  2616. }
  2617. .order-detail .fixed-left .common-bg[data-v-8b10f148] {
  2618. background-color: rgba(34, 172, 56, 0.7);
  2619. border-radius: 0 0.9375rem 0.9375rem 0;
  2620. font-weight: 500;
  2621. color: #ffffff;
  2622. }
  2623. .order-detail .fixed-left .book-status-item[data-v-8b10f148] {
  2624. padding: 0.625rem;
  2625. border-top: 0.03125rem solid #ffffff;
  2626. border-bottom: 0.03125rem solid #ffffff;
  2627. }
  2628. .order-detail .fixed-right[data-v-8b10f148] {
  2629. position: fixed;
  2630. right: 0;
  2631. top: 12%;
  2632. width: 2.1875rem;
  2633. }
  2634. .order-detail .fixed-right .letter-bg[data-v-8b10f148] {
  2635. background-color: rgba(34, 172, 56, 0.7);
  2636. border-radius: 0.3125rem 0 0 0.3125rem;
  2637. font-weight: 500;
  2638. color: #ffffff;
  2639. padding: 0.375rem 0;
  2640. padding-bottom: 0.1875rem;
  2641. }
  2642. .order-detail .fixed-right .letter-item[data-v-8b10f148] {
  2643. padding-bottom: 0.375rem;
  2644. }