main.wxss 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736
  1. @charset "UTF-8";
  2. /***
  3. 全局scss 变量和方法 存放处
  4. */
  5. /* 引入minxin */
  6. /* 颜色变量 */
  7. /*图片地址*/
  8. /* 行为相关颜色 */
  9. /* 文字基本颜色 */
  10. /* 背景颜色 */
  11. /* 边框颜色 */
  12. /* 尺寸变量 */
  13. /* 文字尺寸 */
  14. /* 图片尺寸 */
  15. /* Border Radius */
  16. /* 水平间距 */
  17. /* 垂直间距 */
  18. /* 透明度 */
  19. /* 文章场景相关 */
  20. @font-face {
  21. font-family: 'iconfont'; /* project id 1525256 */
  22. src: url('https://img.huaml.com/iconfont/font_1525256_6bxwphhntqh.eot');
  23. src: url('https://img.huaml.com/iconfont/font_1525256_6bxwphhntqh.eot?#iefix') format('embedded-opentype'),
  24. url('https://img.huaml.com/iconfont/font_1525256_6bxwphhntqh.woff2') format('woff2'),
  25. url('https://img.huaml.com/iconfont/font_1525256_6bxwphhntqh.woff') format('woff'),
  26. url('https://img.huaml.com/iconfont/font_1525256_6bxwphhntqh.ttf') format('truetype'),
  27. url('https://img.huaml.com/iconfont/font_1525256_6bxwphhntqh.svg#iconfont') format('svg');
  28. }
  29. .iconfont {
  30. font-family: "iconfont" !important;
  31. font-size: 16rpx;
  32. font-style: normal;
  33. -webkit-font-smoothing: antialiased;
  34. -moz-osx-font-smoothing: grayscale;
  35. }
  36. .iconcachu::before {
  37. content: "\e7e6";
  38. }
  39. .iconjihuo:before {
  40. content: "\e601";
  41. }
  42. .iconmingxi1:before {
  43. content: "\e7e5";
  44. }
  45. .iconjian:before {
  46. content: "\e7e3";
  47. }
  48. .iconzeng:before {
  49. content: "\e7e4";
  50. }
  51. .iconqiehuan1:before {
  52. content: "\e7e2";
  53. }
  54. .iconqishouyinying:before {
  55. content: "\e7e1";
  56. }
  57. .iconxiayi:before {
  58. content: "\e7de";
  59. }
  60. .iconshangyi:before {
  61. content: "\e7e0";
  62. }
  63. .iconyiruku:before {
  64. content: "\e7df";
  65. }
  66. .iconyikaidian:before {
  67. content: "\e7d7";
  68. }
  69. .icondianhua1:before {
  70. content: "\e7d9";
  71. }
  72. .iconshoukuanma1:before {
  73. content: "\e7d8";
  74. }
  75. .icondaichuku:before {
  76. content: "\e7da";
  77. }
  78. .iconyichuku:before {
  79. content: "\e7db";
  80. }
  81. .iconyiquxiao:before {
  82. content: "\e7dc";
  83. }
  84. .icondairuku:before {
  85. content: "\e7dd";
  86. }
  87. .iconshoukuanma:before {
  88. content: "\e600";
  89. }
  90. .icongouwuche:before {
  91. content: "\e7d5";
  92. }
  93. .iconjianqu:before {
  94. content: "\e7d3";
  95. }
  96. .icontianjia:before {
  97. content: "\e7d4";
  98. }
  99. .iconsearch1:before {
  100. content: "\e7d6";
  101. }
  102. .icondingdanweixuanzhong1:before {
  103. content: "\e7c9";
  104. }
  105. .icondianpuweixuanzhong:before {
  106. content: "\e7ca";
  107. }
  108. .iconwodeweixuanzhong:before {
  109. content: "\e7cb";
  110. }
  111. .iconyingyongweixuanzhong:before {
  112. content: "\e7cc";
  113. }
  114. .icondianpuxuanzhong:before {
  115. content: "\e7cd";
  116. }
  117. .icondingdanxuanzhong1:before {
  118. content: "\e7ce";
  119. }
  120. .iconwodexuanzhong:before {
  121. content: "\e7cf";
  122. }
  123. .iconkehuweixuanzhong1:before {
  124. content: "\e7d0";
  125. }
  126. .iconyingyongxuanzhong:before {
  127. content: "\e7d1";
  128. }
  129. .iconkehuxuanzhong1:before {
  130. content: "\e7d2";
  131. }
  132. .iconxiaochengxu2:before {
  133. content: "\e78d";
  134. }
  135. .iconmeituan:before {
  136. content: "\e78e";
  137. }
  138. .iconzhangshangcaifuyemianshoujiban344:before {
  139. content: "\e632";
  140. }
  141. .iconwaimai:before {
  142. content: "\e692";
  143. }
  144. .iconxiaochengxu1:before {
  145. content: "\e619";
  146. }
  147. .iconjiantouxia:before {
  148. content: "\e61a";
  149. }
  150. .iconshenheweitongguo:before {
  151. content: "\e774";
  152. }
  153. .iconsanjiao_xia:before {
  154. content: "\e631";
  155. }
  156. .iconsanjiaoshang:before {
  157. content: "\e643";
  158. }
  159. .icondagou:before {
  160. content: "\e607";
  161. }
  162. .iconshezhi:before {
  163. content: "\e645";
  164. }
  165. .iconcaidan:before {
  166. content: "\e65d";
  167. }
  168. .iconxiaoxi2:before {
  169. content: "\e76f";
  170. }
  171. .iconmorentu:before {
  172. content: "\e76e";
  173. }
  174. .icongou:before {
  175. content: "\e76d";
  176. }
  177. .iconbianjijiage1:before {
  178. content: "\e76c";
  179. }
  180. .iconchenggong:before {
  181. content: "\e76b";
  182. }
  183. .iconfahuo:before {
  184. content: "\e75d";
  185. }
  186. .iconshouye:before {
  187. content: "\e75e";
  188. }
  189. .icontianjiatuku:before {
  190. content: "\e767";
  191. }
  192. .iconxinrenlingquanshezhi:before {
  193. content: "\e768";
  194. }
  195. .iconhuiyuandengjishezhi:before {
  196. content: "\e769";
  197. }
  198. .iconweixin:before {
  199. content: "\e76a";
  200. }
  201. .iconcaidanlan:before {
  202. content: "\e75c";
  203. }
  204. .icontupiantianjia:before {
  205. content: "\e75f";
  206. }
  207. .icondelete:before {
  208. content: "\e760";
  209. }
  210. .iconxiaoxi1:before {
  211. content: "\e761";
  212. }
  213. .iconxiala:before {
  214. content: "\e762";
  215. }
  216. .icontianjiakehu:before {
  217. content: "\e766";
  218. }
  219. .iconweixingongzhonghao:before {
  220. content: "\e763";
  221. }
  222. .iconshoujihao1:before {
  223. content: "\e764";
  224. }
  225. .iconweixinlaiyuan:before {
  226. content: "\e765";
  227. }
  228. .iconkehuxuanzhong:before {
  229. content: "\e755";
  230. }
  231. .iconkehuweixuanzhong:before {
  232. content: "\e756";
  233. }
  234. .icongongzuotaiweixuanzhong:before {
  235. content: "\e757";
  236. }
  237. .icongongzuotaixuanzhong:before {
  238. content: "\e758";
  239. }
  240. .icondingdanweixuanzhong:before {
  241. content: "\e759";
  242. }
  243. .icondingdanxuanzhong:before {
  244. content: "\e75a";
  245. }
  246. .iconcaozuo:before {
  247. content: "\e751";
  248. }
  249. .iconcaozuojihuo:before {
  250. content: "\e752";
  251. }
  252. .iconfenxiang1:before {
  253. content: "\e74c";
  254. }
  255. .iconbianji:before {
  256. content: "\e74d";
  257. }
  258. .iconjinyong:before {
  259. content: "\e74e";
  260. }
  261. .iconqiyong:before {
  262. content: "\e74f";
  263. }
  264. .iconshanchu1:before {
  265. content: "\e750";
  266. }
  267. .iconzhiding:before {
  268. content: "\e753";
  269. }
  270. .iconxiajia:before {
  271. content: "\e754";
  272. }
  273. .iconguanbi:before {
  274. content: "\e74b";
  275. }
  276. .iconshanchu:before {
  277. content: "\e74a";
  278. }
  279. .iconkefu:before {
  280. content: "\e749";
  281. }
  282. .icontupian:before {
  283. content: "\e746";
  284. }
  285. .iconxiaochengxu:before {
  286. content: "\e747";
  287. }
  288. .iconzhifubao:before {
  289. content: "\e748";
  290. }
  291. .iconchangjianwentixiangguanwenti2:before {
  292. content: "\e679";
  293. }
  294. .iconxuanzhong:before {
  295. content: "\e744";
  296. }
  297. .iconweixuanzhong:before {
  298. content: "\e745";
  299. }
  300. .iconfenxiang:before {
  301. content: "\e743";
  302. }
  303. .iconxiaoxi:before {
  304. content: "\e741";
  305. }
  306. .icondianpu:before {
  307. content: "\e742";
  308. }
  309. .icondianhua:before {
  310. content: "\e73f";
  311. }
  312. .iconditu:before {
  313. content: "\e740";
  314. }
  315. .iconsearch:before {
  316. content: "\e73d";
  317. }
  318. .iconclose:before {
  319. content: "\e73e";
  320. }
  321. .icondaizhifu:before {
  322. content: "\e733";
  323. }
  324. .iconshoujihao:before {
  325. content: "\e734";
  326. }
  327. .iconxiangyou:before {
  328. content: "\e735";
  329. }
  330. .iconhaopingxingxing:before {
  331. content: "\e736";
  332. }
  333. .iconmine:before {
  334. content: "\e737";
  335. }
  336. .iconstore:before {
  337. content: "\e738";
  338. }
  339. .iconhome:before {
  340. content: "\e739";
  341. }
  342. .iconclassification:before {
  343. content: "\e73a";
  344. }
  345. .iconyiguoqi:before {
  346. content: "\e73b";
  347. }
  348. .iconyishiyong:before {
  349. content: "\e73c";
  350. }
  351. @font-face {
  352. font-family: uniicons;
  353. font-weight: normal;
  354. font-style: normal;
  355. src: url('https://img-cdn-qiniu.dcloud.net.cn/fonts/uni.ttf') format('truetype');
  356. }
  357. /*通用 */
  358. /*view{*/
  359. /* font-size: 24upx;*/
  360. /* }*/
  361. /* view uni-button{*/
  362. /* font-size: 28upx;*/
  363. /* }*/
  364. .uni-list-cell__content-title{
  365. font-size: 28rpx !important;
  366. }
  367. progress, checkbox-group{
  368. width: 100%;
  369. }
  370. form {
  371. width: 100%;
  372. }
  373. .uni-flex {
  374. display: -webkit-box;
  375. display: -webkit-flex;
  376. display: flex;
  377. -webkit-box-orient: horizontal;
  378. -webkit-box-direction: normal;
  379. -webkit-flex-direction: row;
  380. flex-direction: row;
  381. }
  382. .uni-flex-item {
  383. -webkit-box-flex: 1;
  384. -webkit-flex: 1;
  385. flex: 1;
  386. }
  387. .uni-row {
  388. -webkit-box-orient: horizontal;
  389. -webkit-box-direction: normal;
  390. -webkit-flex-direction: row;
  391. flex-direction: row;
  392. }
  393. .uni-column {
  394. -webkit-box-orient: vertical;
  395. -webkit-box-direction: normal;
  396. -webkit-flex-direction: column;
  397. flex-direction: column;
  398. }
  399. .uni-link{
  400. color:#576B95;
  401. font-size:26rpx;
  402. }
  403. .uni-center{
  404. text-align:center;
  405. }
  406. .uni-inline-item{
  407. display: -webkit-box;
  408. display: -webkit-flex;
  409. display: flex;
  410. -webkit-box-orient: horizontal;
  411. -webkit-box-direction: normal;
  412. -webkit-flex-direction: row;
  413. flex-direction: row;
  414. -webkit-box-align:center;
  415. -webkit-align-items:center;
  416. align-items:center;
  417. }
  418. .uni-inline-item text{
  419. margin-right: 20rpx;
  420. }
  421. .uni-inline-item text:last-child{
  422. margin-right: 0rpx;
  423. margin-left: 20rpx;
  424. }
  425. /* page */
  426. .uni-page-head{
  427. padding:35rpx;
  428. text-align: center;
  429. }
  430. .uni-page-head-title {
  431. display: inline-block;
  432. padding: 0 40rpx;
  433. font-size: 30rpx;
  434. height: 88rpx;
  435. line-height: 88rpx;
  436. color: #BEBEBE;
  437. box-sizing: border-box;
  438. border-bottom: 2rpx solid #D8D8D8;
  439. }
  440. .uni-page-body {
  441. width: 100%;
  442. -webkit-box-flex: 1;
  443. -webkit-flex-grow: 1;
  444. flex-grow: 1;
  445. overflow-x: hidden;
  446. }
  447. .uni-padding-wrap{
  448. width:690rpx;
  449. padding:0 30rpx;
  450. }
  451. .uni-word {
  452. text-align: center;
  453. padding:200rpx 100rpx;
  454. }
  455. .uni-title {
  456. font-size:30rpx;
  457. font-weight:500;
  458. padding:20rpx 0;
  459. line-height:1.5;
  460. }
  461. .uni-text{
  462. font-size:28rpx;
  463. }
  464. .uni-title text{
  465. font-size:24rpx;
  466. color:#888;
  467. }
  468. .uni-text-gray{
  469. color: #ccc;
  470. }
  471. .uni-text-small {
  472. font-size:24rpx;
  473. }
  474. .uni-common-mb{
  475. margin-bottom:30rpx;
  476. }
  477. .uni-common-pb{
  478. padding-bottom:30rpx;
  479. }
  480. .uni-common-pl{
  481. padding-left:30rpx;
  482. }
  483. .uni-common-mt{
  484. margin-top:30rpx;
  485. }
  486. /* 背景色 */
  487. .uni-bg-red{
  488. background:#F76260; color:#FFF;
  489. }
  490. .uni-bg-green{
  491. background:#09BB07; color:#FFF;
  492. }
  493. .uni-bg-blue{
  494. background:#007AFF; color:#FFF;
  495. }
  496. /* 标题 */
  497. .uni-h1 {font-size: 80rpx; font-weight:700;}
  498. .uni-h2 {font-size: 60rpx; font-weight:700;}
  499. .uni-h3 {font-size: 48rpx; font-weight:700;}
  500. .uni-h4 {font-size: 36rpx; font-weight:700;}
  501. .uni-h5 {font-size: 28rpx; color: #8f8f94;}
  502. .uni-h6 {font-size: 24rpx; color: #8f8f94;}
  503. .uni-bold{font-weight:bold;}
  504. /* 文本溢出隐藏 */
  505. .uni-ellipsis {overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
  506. /* 竖向百分百按钮 */
  507. .uni-btn-v{
  508. padding:10rpx 0;
  509. }
  510. .uni-btn-v button{margin:20rpx 0;}
  511. /* 表单 */
  512. .uni-form-item{
  513. display:-webkit-box;
  514. display:-webkit-flex;
  515. display:flex;
  516. width:100%;
  517. padding:10rpx 0;
  518. }
  519. .uni-form-item .title{
  520. padding:10rpx 25rpx;
  521. }
  522. .uni-label {
  523. width: 210rpx;
  524. word-wrap: break-word;
  525. word-break: break-all;
  526. text-indent:20rpx;
  527. }
  528. /*.uni-input {*/
  529. /* height: 50upx;*/
  530. /* padding: 15upx 25upx;*/
  531. /* line-height:50upx;*/
  532. /* font-size:28upx;*/
  533. /* background:#FFF;*/
  534. /* flex: 1;*/
  535. /*}*/
  536. radio-group, checkbox-group{
  537. width:100%;
  538. }
  539. radio-group label, checkbox-group label{
  540. padding-right:20rpx;
  541. }
  542. .uni-form-item .with-fun{
  543. display:-webkit-box;
  544. display:-webkit-flex;
  545. display:flex;
  546. -webkit-flex-wrap:nowrap;
  547. flex-wrap:nowrap;
  548. background:#FFFFFF;
  549. }
  550. .uni-form-item .with-fun .uni-icon{
  551. width:40rpx;
  552. height:80rpx;
  553. line-height:80rpx;
  554. -webkit-flex-shrink:0;
  555. flex-shrink:0;
  556. }
  557. /* loadmore */
  558. .uni-loadmore{
  559. height:80rpx;
  560. line-height:80rpx;
  561. text-align:center;
  562. padding-bottom:30rpx;
  563. }
  564. /*数字角标*/
  565. .uni-badge,
  566. .uni-badge-default {
  567. font-family: 'Helvetica Neue', Helvetica, sans-serif;
  568. font-size: 12rpx;
  569. line-height: 1;
  570. display: inline-block;
  571. padding: 3rpx 6rpx;
  572. color: #333;
  573. border-radius: 100rpx;
  574. background-color: rgba(0, 0, 0, .15);
  575. }
  576. .uni-badge.uni-badge-inverted {
  577. padding: 0 5rpx 0 0;
  578. color: #929292;
  579. background-color: transparent
  580. }
  581. .uni-badge-primary {
  582. color: #fff;
  583. background-color: #007aff
  584. }
  585. .uni-badge-blue.uni-badge-inverted,
  586. .uni-badge-primary.uni-badge-inverted {
  587. color: #007aff;
  588. background-color: transparent
  589. }
  590. .uni-badge-green,
  591. .uni-badge-success {
  592. color: #fff;
  593. background-color: #4cd964;
  594. }
  595. .uni-badge-green.uni-badge-inverted,
  596. .uni-badge-success.uni-badge-inverted {
  597. color: #4cd964;
  598. background-color: transparent
  599. }
  600. .uni-badge-warning,
  601. .uni-badge-yellow {
  602. color: #fff;
  603. background-color: #f0ad4e
  604. }
  605. .uni-badge-warning.uni-badge-inverted,
  606. .uni-badge-yellow.uni-badge-inverted {
  607. color: #f0ad4e;
  608. background-color: transparent
  609. }
  610. .uni-badge-danger,
  611. .uni-badge-red {
  612. color: #fff;
  613. background-color: #dd524d
  614. }
  615. .uni-badge-danger.uni-badge-inverted,
  616. .uni-badge-red.uni-badge-inverted {
  617. color: #dd524d;
  618. background-color: transparent
  619. }
  620. .uni-badge-purple,
  621. .uni-badge-royal {
  622. color: #fff;
  623. background-color: #8a6de9
  624. }
  625. .uni-badge-purple.uni-badge-inverted,
  626. .uni-badge-royal.uni-badge-inverted {
  627. color: #8a6de9;
  628. background-color: transparent
  629. }
  630. /*折叠面板 */
  631. .uni-collapse-content {
  632. height: 0;
  633. width: 100%;
  634. overflow: hidden;
  635. }
  636. .uni-collapse-content.uni-active {
  637. height: auto;
  638. }
  639. /*卡片视图 */
  640. .uni-card {
  641. background: #fff;
  642. border-radius: 8rpx;
  643. margin:20rpx 0;
  644. position: relative;
  645. box-shadow: 0 2rpx 4rpx rgba(0, 0, 0, .3);
  646. }
  647. .uni-card-content {
  648. font-size: 30rpx;
  649. }
  650. .uni-card-content.image-view{
  651. width: 100%;
  652. margin: 0;
  653. }
  654. .uni-card-content-inner {
  655. position: relative;
  656. padding: 30rpx;
  657. }
  658. .uni-card-footer,
  659. .uni-card-header {
  660. position: relative;
  661. display: -webkit-box;
  662. display: -webkit-flex;
  663. display: flex;
  664. min-height: 50rpx;
  665. padding: 20rpx 30rpx;
  666. -webkit-box-pack: justify;
  667. -webkit-justify-content: space-between;
  668. justify-content: space-between;
  669. -webkit-box-align: center;
  670. -webkit-align-items: center;
  671. align-items: center;
  672. }
  673. .uni-card-header {
  674. font-size: 36rpx;
  675. }
  676. .uni-card-footer {
  677. color: #6d6d72;
  678. }
  679. .uni-card-footer:before,
  680. .uni-card-header:after {
  681. position: absolute;
  682. top: 0;
  683. right: 0;
  684. left: 0;
  685. height: 2rpx;
  686. content: '';
  687. -webkit-transform: scaleY(.5);
  688. transform: scaleY(.5);
  689. background-color: #c8c7cc;
  690. }
  691. .uni-card-header:after {
  692. top: auto;
  693. bottom: 0;
  694. }
  695. .uni-card-media {
  696. -webkit-box-pack: start;
  697. -webkit-justify-content: flex-start;
  698. justify-content: flex-start;
  699. }
  700. .uni-card-media-logo {
  701. height: 84rpx;
  702. width: 84rpx;
  703. margin-right: 20rpx;
  704. }
  705. .uni-card-media-body {
  706. height: 84rpx;
  707. display: -webkit-box;
  708. display: -webkit-flex;
  709. display: flex;
  710. -webkit-box-orient: vertical;
  711. -webkit-box-direction: normal;
  712. -webkit-flex-direction: column;
  713. flex-direction: column;
  714. -webkit-box-pack: justify;
  715. -webkit-justify-content: space-between;
  716. justify-content: space-between;
  717. -webkit-box-align: start;
  718. -webkit-align-items: flex-start;
  719. align-items: flex-start;
  720. }
  721. .uni-card-media-text-top {
  722. line-height: 36rpx;
  723. font-size: 34rpx;
  724. }
  725. .uni-card-media-text-bottom {
  726. line-height: 30rpx;
  727. font-size: 28rpx;
  728. color: #8f8f94;
  729. }
  730. .uni-card-link {
  731. color: #007AFF;
  732. }
  733. /* 列表 */
  734. .uni-list {
  735. background-color: #FFFFFF;
  736. position: relative;
  737. width: 100%;
  738. display: -webkit-box;
  739. display: -webkit-flex;
  740. display: flex;
  741. -webkit-box-orient: vertical;
  742. -webkit-box-direction: normal;
  743. -webkit-flex-direction: column;
  744. flex-direction: column;
  745. }
  746. .uni-list:after {
  747. position: absolute;
  748. z-index: 10;
  749. right: 0;
  750. bottom: 0;
  751. left: 0;
  752. height: 1rpx;
  753. content: '';
  754. -webkit-transform: scaleY(.5);
  755. transform: scaleY(.5);
  756. background-color: #c8c7cc;
  757. }
  758. .uni-list::before {
  759. position: absolute;
  760. z-index: 10;
  761. right: 0;
  762. top: 0;
  763. left: 0;
  764. height: 1rpx;
  765. content: '';
  766. -webkit-transform: scaleY(.5);
  767. transform: scaleY(.5);
  768. background-color: #c8c7cc;
  769. }
  770. .uni-list-cell {
  771. position: relative;
  772. display: -webkit-box;
  773. display: -webkit-flex;
  774. display: flex;
  775. -webkit-box-orient: horizontal;
  776. -webkit-box-direction: normal;
  777. -webkit-flex-direction: row;
  778. flex-direction: row;
  779. -webkit-box-pack: justify;
  780. -webkit-justify-content: space-between;
  781. justify-content: space-between;
  782. -webkit-box-align: center;
  783. -webkit-align-items: center;
  784. align-items: center;
  785. }
  786. .uni-list-cell-hover {
  787. background-color: #eee;
  788. }
  789. .uni-list-cell-pd {
  790. padding: 22rpx 30rpx;
  791. }
  792. .uni-list-cell-left {
  793. font-size:28rpx;
  794. padding: 0 30rpx;
  795. }
  796. .uni-list-cell-db,
  797. .uni-list-cell-right {
  798. -webkit-box-flex: 1;
  799. -webkit-flex: 1;
  800. flex: 1;
  801. }
  802. .uni-list-cell::after {
  803. position: absolute;
  804. z-index: 3;
  805. right: 0;
  806. bottom: 0;
  807. left: 30rpx;
  808. height: 1rpx;
  809. content: '';
  810. -webkit-transform: scaleY(.5);
  811. transform: scaleY(.5);
  812. background-color: #c8c7cc;
  813. }
  814. .uni-list .uni-list-cell:last-child::after {
  815. height: 0rpx;
  816. }
  817. .uni-list-cell-last.uni-list-cell::after {
  818. height: 0rpx;
  819. }
  820. .uni-list-cell-divider {
  821. position: relative;
  822. display: -webkit-box;
  823. display: -webkit-flex;
  824. display: flex;
  825. color: #999;
  826. background-color: #f7f7f7;
  827. padding:15rpx 20rpx;
  828. }
  829. .uni-list-cell-divider::before {
  830. position: absolute;
  831. right: 0;
  832. top: 0;
  833. left: 0;
  834. height: 1rpx;
  835. content: '';
  836. -webkit-transform: scaleY(.5);
  837. transform: scaleY(.5);
  838. background-color: #c8c7cc;
  839. }
  840. .uni-list-cell-divider::after {
  841. position: absolute;
  842. right: 0;
  843. bottom: 0;
  844. left: 0rpx;
  845. height: 1rpx;
  846. content: '';
  847. -webkit-transform: scaleY(.5);
  848. transform: scaleY(.5);
  849. background-color: #c8c7cc;
  850. }
  851. .uni-list-cell-navigate {
  852. font-size:30rpx;
  853. padding: 22rpx 30rpx;
  854. line-height: 48rpx;
  855. position: relative;
  856. display: -webkit-box;
  857. display: -webkit-flex;
  858. display: flex;
  859. box-sizing: border-box;
  860. width: 100%;
  861. -webkit-box-flex: 1;
  862. -webkit-flex: 1;
  863. flex: 1;
  864. -webkit-box-pack: justify;
  865. -webkit-justify-content: space-between;
  866. justify-content: space-between;
  867. -webkit-box-align: center;
  868. -webkit-align-items: center;
  869. align-items: center;
  870. }
  871. .uni-list-cell-navigate {
  872. padding-right: 36rpx;
  873. }
  874. .uni-navigate-badge {
  875. padding-right: 50rpx;
  876. }
  877. .uni-list-cell-navigate.uni-navigate-right:after {
  878. font-family: uniicons;
  879. content: '\e583';
  880. position: absolute;
  881. right: 24rpx;
  882. top: 50%;
  883. color: #bbb;
  884. -webkit-transform: translateY(-50%);
  885. transform: translateY(-50%);
  886. }
  887. .uni-list-cell-navigate.uni-navigate-bottom:after {
  888. font-family: uniicons;
  889. content: '\e581';
  890. position: absolute;
  891. right: 24rpx;
  892. top: 50%;
  893. color: #bbb;
  894. -webkit-transform: translateY(-50%);
  895. transform: translateY(-50%);
  896. }
  897. .uni-list-cell-navigate.uni-navigate-bottom.uni-active::after {
  898. font-family: uniicons;
  899. content: '\e580';
  900. position: absolute;
  901. right: 24rpx;
  902. top: 50%;
  903. color: #bbb;
  904. -webkit-transform: translateY(-50%);
  905. transform: translateY(-50%);
  906. }
  907. .uni-collapse.uni-list-cell {
  908. -webkit-box-orient: vertical;
  909. -webkit-box-direction: normal;
  910. -webkit-flex-direction: column;
  911. flex-direction: column;
  912. }
  913. .uni-list-cell-navigate.uni-active {
  914. background: #eee;
  915. }
  916. .uni-list.uni-collapse {
  917. box-sizing: border-box;
  918. height: 0;
  919. overflow: hidden;
  920. }
  921. .uni-collapse .uni-list-cell {
  922. padding-left: 20rpx;
  923. }
  924. .uni-collapse .uni-list-cell::after {
  925. left: 52rpx;
  926. }
  927. .uni-list.uni-active {
  928. height: auto;
  929. }
  930. /* 三行列表 */
  931. .uni-triplex-row {
  932. display: -webkit-box;
  933. display: -webkit-flex;
  934. display: flex;
  935. -webkit-box-flex: 1;
  936. -webkit-flex: 1;
  937. flex: 1;
  938. width: 100%;
  939. box-sizing: border-box;
  940. -webkit-box-orient: horizontal;
  941. -webkit-box-direction: normal;
  942. -webkit-flex-direction: row;
  943. flex-direction: row;
  944. padding: 22rpx 30rpx;
  945. }
  946. .uni-triplex-right,
  947. .uni-triplex-left {
  948. display: -webkit-box;
  949. display: -webkit-flex;
  950. display: flex;
  951. -webkit-box-orient: vertical;
  952. -webkit-box-direction: normal;
  953. -webkit-flex-direction: column;
  954. flex-direction: column;
  955. }
  956. .uni-triplex-left {
  957. width: 84%;
  958. }
  959. .uni-triplex-left .uni-title{
  960. padding:8rpx 0;
  961. }
  962. .uni-triplex-left .uni-text, .uni-triplex-left .uni-text-small{color:#999999;}
  963. .uni-triplex-right {
  964. width: 16%;
  965. text-align: right;
  966. }
  967. /* 图文列表 */
  968. .uni-media-list {
  969. padding: 22rpx 30rpx;
  970. box-sizing: border-box;
  971. display: -webkit-box;
  972. display: -webkit-flex;
  973. display: flex;
  974. width: 100%;
  975. -webkit-box-orient: horizontal;
  976. -webkit-box-direction: normal;
  977. -webkit-flex-direction: row;
  978. flex-direction: row;
  979. }
  980. .uni-navigate-right.uni-media-list {
  981. padding-right: 74rpx;
  982. }
  983. .uni-pull-right {
  984. -webkit-box-orient: horizontal;
  985. -webkit-box-direction: reverse;
  986. -webkit-flex-direction: row-reverse;
  987. flex-direction: row-reverse;
  988. }
  989. .uni-pull-right>.uni-media-list-logo {
  990. margin-right: 0rpx;
  991. margin-left: 20rpx;
  992. }
  993. .uni-media-list-logo {
  994. height: 84rpx;
  995. width: 84rpx;
  996. margin-right: 20rpx;
  997. }
  998. .uni-media-list-logo image {
  999. height: 100%;
  1000. width: 100%;
  1001. }
  1002. .uni-media-list-body {
  1003. height: 84rpx;
  1004. display: -webkit-box;
  1005. display: -webkit-flex;
  1006. display: flex;
  1007. -webkit-box-flex: 1;
  1008. -webkit-flex: 1;
  1009. flex: 1;
  1010. -webkit-box-orient: vertical;
  1011. -webkit-box-direction: normal;
  1012. -webkit-flex-direction: column;
  1013. flex-direction: column;
  1014. -webkit-box-pack: justify;
  1015. -webkit-justify-content: space-between;
  1016. justify-content: space-between;
  1017. -webkit-box-align: start;
  1018. -webkit-align-items: flex-start;
  1019. align-items: flex-start;
  1020. overflow: hidden;
  1021. }
  1022. .uni-media-list-text-top {
  1023. width: 100%;
  1024. line-height: 36rpx;
  1025. font-size: 30rpx;
  1026. }
  1027. .uni-media-list-text-bottom {
  1028. width: 100%;
  1029. line-height: 30rpx;
  1030. font-size: 26rpx;
  1031. color: #8f8f94;
  1032. }
  1033. /* 九宫格 */
  1034. .uni-grid-9 {
  1035. background: #f2f2f2;
  1036. width: 750rpx;
  1037. display: -webkit-box;
  1038. display: -webkit-flex;
  1039. display: flex;
  1040. -webkit-box-orient: horizontal;
  1041. -webkit-box-direction: normal;
  1042. -webkit-flex-direction: row;
  1043. flex-direction: row;
  1044. -webkit-flex-wrap: wrap;
  1045. flex-wrap: wrap;
  1046. border-top: 2rpx solid #eee;
  1047. }
  1048. .uni-grid-9-item {
  1049. width: 250rpx;
  1050. height: 200rpx;
  1051. display: -webkit-box;
  1052. display: -webkit-flex;
  1053. display: flex;
  1054. -webkit-box-orient: vertical;
  1055. -webkit-box-direction: normal;
  1056. -webkit-flex-direction: column;
  1057. flex-direction: column;
  1058. -webkit-box-align: center;
  1059. -webkit-align-items: center;
  1060. align-items: center;
  1061. -webkit-box-pack: center;
  1062. -webkit-justify-content: center;
  1063. justify-content: center;
  1064. border-bottom: 2rpx solid;
  1065. border-right: 2rpx solid;
  1066. border-color: #eee;
  1067. box-sizing: border-box;
  1068. }
  1069. .no-border-right {
  1070. border-right: none;
  1071. }
  1072. .uni-grid-9-image {
  1073. width: 100rpx;
  1074. height: 100rpx;
  1075. }
  1076. .uni-grid-9-text {
  1077. width: 250rpx;
  1078. line-height: 4rpx;
  1079. height: 40rpx;
  1080. text-align: center;
  1081. font-size: 30rpx;
  1082. }
  1083. .uni-grid-9-item-hover {
  1084. background: rgba(0, 0, 0, 0.1);
  1085. }
  1086. /* 上传 */
  1087. .uni-uploader {
  1088. -webkit-box-flex: 1;
  1089. -webkit-flex: 1;
  1090. flex: 1;
  1091. -webkit-box-orient: vertical;
  1092. -webkit-box-direction: normal;
  1093. -webkit-flex-direction: column;
  1094. flex-direction: column;
  1095. }
  1096. .uni-uploader-head {
  1097. display: -webkit-box;
  1098. display: -webkit-flex;
  1099. display: flex;
  1100. -webkit-box-orient: horizontal;
  1101. -webkit-box-direction: normal;
  1102. -webkit-flex-direction: row;
  1103. flex-direction: row;
  1104. -webkit-box-pack: justify;
  1105. -webkit-justify-content: space-between;
  1106. justify-content: space-between;
  1107. }
  1108. .uni-uploader-info {
  1109. color: #B2B2B2;
  1110. }
  1111. .uni-uploader-body {
  1112. margin-top: 16rpx;
  1113. }
  1114. .uni-uploader__files {
  1115. display: -webkit-box;
  1116. display: -webkit-flex;
  1117. display: flex;
  1118. -webkit-box-orient: horizontal;
  1119. -webkit-box-direction: normal;
  1120. -webkit-flex-direction: row;
  1121. flex-direction: row;
  1122. -webkit-flex-wrap: wrap;
  1123. flex-wrap: wrap;
  1124. }
  1125. .uni-uploader__file {
  1126. margin: 10rpx;
  1127. width: 210rpx;
  1128. height: 210rpx;
  1129. }
  1130. .uni-uploader__img {
  1131. display: block;
  1132. width: 210rpx;
  1133. height: 210rpx;
  1134. }
  1135. .uni-uploader__input-box {
  1136. position: relative;
  1137. margin:10rpx;
  1138. width: 208rpx;
  1139. height: 208rpx;
  1140. border: 2rpx solid #D9D9D9;
  1141. }
  1142. .uni-uploader__input-box:before,
  1143. .uni-uploader__input-box:after {
  1144. content: " ";
  1145. position: absolute;
  1146. top: 50%;
  1147. left: 50%;
  1148. -webkit-transform: translate(-50%, -50%);
  1149. transform: translate(-50%, -50%);
  1150. background-color: #D9D9D9;
  1151. }
  1152. .uni-uploader__input-box:before {
  1153. width: 4rpx;
  1154. height: 79rpx;
  1155. }
  1156. .uni-uploader__input-box:after {
  1157. width: 79rpx;
  1158. height: 4rpx;
  1159. }
  1160. .uni-uploader__input-box:active {
  1161. border-color: #999999;
  1162. }
  1163. .uni-uploader__input-box:active:before,
  1164. .uni-uploader__input-box:active:after {
  1165. background-color: #999999;
  1166. }
  1167. .uni-uploader__input {
  1168. position: absolute;
  1169. z-index: 1;
  1170. top: 0;
  1171. left: 0;
  1172. width: 100%;
  1173. height: 100%;
  1174. opacity: 0;
  1175. }
  1176. /*问题反馈*/
  1177. .feedback-title {
  1178. display: -webkit-box;
  1179. display: -webkit-flex;
  1180. display: flex;
  1181. -webkit-box-orient: horizontal;
  1182. -webkit-box-direction: normal;
  1183. -webkit-flex-direction: row;
  1184. flex-direction: row;
  1185. -webkit-box-pack: justify;
  1186. -webkit-justify-content: space-between;
  1187. justify-content: space-between;
  1188. -webkit-box-align: center;
  1189. -webkit-align-items: center;
  1190. align-items: center;
  1191. padding: 20rpx;
  1192. color: #8f8f94;
  1193. font-size: 28rpx;
  1194. }
  1195. .feedback-star-view.feedback-title {
  1196. -webkit-box-pack: start;
  1197. -webkit-justify-content: flex-start;
  1198. justify-content: flex-start;
  1199. margin: 0;
  1200. }
  1201. .feedback-quick {
  1202. position: relative;
  1203. padding-right: 40rpx;
  1204. }
  1205. .feedback-quick:after {
  1206. font-family: uniicons;
  1207. font-size: 40rpx;
  1208. content: '\e581';
  1209. position: absolute;
  1210. right: 0;
  1211. top: 50%;
  1212. color: #bbb;
  1213. -webkit-transform: translateY(-50%);
  1214. transform: translateY(-50%);
  1215. }
  1216. .feedback-body {
  1217. background: #fff;
  1218. }
  1219. .feedback-textare {
  1220. height: 200rpx;
  1221. font-size: 34rpx;
  1222. line-height: 50rpx;
  1223. width: 100%;
  1224. box-sizing: border-box;
  1225. padding: 20rpx 30rpx 0;
  1226. }
  1227. .feedback-input {
  1228. font-size: 34rpx;
  1229. height: 50rpx;
  1230. min-height: 50rpx;
  1231. padding: 15rpx 20rpx;
  1232. line-height: 50rpx;
  1233. }
  1234. .feedback-uploader {
  1235. padding: 22rpx 20rpx;
  1236. }
  1237. .feedback-star {
  1238. font-family: uniicons;
  1239. font-size: 40rpx;
  1240. margin-left: 6rpx;
  1241. }
  1242. .feedback-star-view {
  1243. margin-left: 20rpx;
  1244. }
  1245. .feedback-star:after {
  1246. content: '\e408';
  1247. }
  1248. .feedback-star.active {
  1249. color: #FFB400;
  1250. }
  1251. .feedback-star.active:after {
  1252. content: '\e438';
  1253. }
  1254. .feedback-submit {
  1255. background: #007AFF;
  1256. color: #FFFFFF;
  1257. margin: 20rpx;
  1258. }
  1259. /* input group */
  1260. .uni-input_group {
  1261. position: relative;
  1262. padding: 0;
  1263. border: 0;
  1264. background-color: #fff;
  1265. }
  1266. .uni-input_group:before {
  1267. position: absolute;
  1268. top: 0;
  1269. right: 0;
  1270. left: 0;
  1271. height: 2rpx;
  1272. content: '';
  1273. -webkit-transform: scaleY(.5);
  1274. transform: scaleY(.5);
  1275. background-color: #c8c7cc;
  1276. }
  1277. .uni-input_group:after {
  1278. position: absolute;
  1279. right: 0;
  1280. bottom: 0;
  1281. left: 0;
  1282. height: 2rpx;
  1283. content: '';
  1284. -webkit-transform: scaleY(.5);
  1285. transform: scaleY(.5);
  1286. background-color: #c8c7cc;
  1287. }
  1288. .uni-input-row {
  1289. position: relative;
  1290. display: -webkit-box;
  1291. display: -webkit-flex;
  1292. display: flex;
  1293. -webkit-box-orient: horizontal;
  1294. -webkit-box-direction: normal;
  1295. -webkit-flex-direction: row;
  1296. flex-direction: row;
  1297. font-size:28rpx;
  1298. padding: 22rpx 30rpx;
  1299. -webkit-box-pack: justify;
  1300. -webkit-justify-content: space-between;
  1301. justify-content: space-between;
  1302. }
  1303. .uni-input_group .uni-input-row:after {
  1304. position: absolute;
  1305. right: 0;
  1306. bottom: 0;
  1307. left: 30rpx;
  1308. height: 2rpx;
  1309. content: '';
  1310. -webkit-transform: scaleY(.5);
  1311. transform: scaleY(.5);
  1312. background-color: #c8c7cc;
  1313. }
  1314. .uni-input-row label {
  1315. line-height: 70rpx;
  1316. }
  1317. /* textarea */
  1318. .uni-textarea{
  1319. width:100%;
  1320. background:#FFF;
  1321. }
  1322. .uni-textarea textarea{
  1323. width:96%;
  1324. padding:18rpx 2%;
  1325. line-height:1.6;
  1326. font-size:28rpx;
  1327. height:150rpx;
  1328. }
  1329. /* tab bar */
  1330. .uni-tab-bar {
  1331. display: -webkit-box;
  1332. display: -webkit-flex;
  1333. display: flex;
  1334. -webkit-box-flex: 1;
  1335. -webkit-flex: 1;
  1336. flex: 1;
  1337. -webkit-box-orient: vertical;
  1338. -webkit-box-direction: normal;
  1339. -webkit-flex-direction: column;
  1340. flex-direction: column;
  1341. overflow: hidden;
  1342. height: 100%;
  1343. }
  1344. .uni-tab-bar .list {
  1345. width: 750rpx;
  1346. height: 100%;
  1347. }
  1348. .uni-swiper-tab {
  1349. width: 100%;
  1350. white-space: nowrap;
  1351. line-height: 100rpx;
  1352. height: 100rpx;
  1353. border-bottom: 1rpx solid #c8c7cc;
  1354. }
  1355. .swiper-tab-list {
  1356. font-size: 30rpx;
  1357. width: 150rpx;
  1358. display: inline-block;
  1359. text-align: center;
  1360. color: #555;
  1361. }
  1362. .uni-tab-bar .active {
  1363. color: #007AFF;
  1364. }
  1365. .uni-tab-bar .swiper-box {
  1366. -webkit-box-flex: 1;
  1367. -webkit-flex: 1;
  1368. flex: 1;
  1369. width: 100%;
  1370. height: calc(100% - 100rpx);
  1371. }
  1372. .uni-tab-bar-loading{
  1373. padding:20rpx 0;
  1374. }
  1375. /* comment */
  1376. .uni-comment{padding:5rpx 0; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-flex:1; -webkit-flex-grow:1; flex-grow:1; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column;}
  1377. .uni-comment-list{-webkit-flex-wrap:nowrap;flex-wrap:nowrap; padding:10rpx 0; margin:10rpx 0; width:100%; display: -webkit-box; display: -webkit-flex; display: flex;}
  1378. .uni-comment-face{width:70rpx; height:70rpx; border-radius:100%; margin-right:20rpx; -webkit-flex-shrink:0; flex-shrink:0; overflow:hidden;}
  1379. .uni-comment-face image{width:100%; border-radius:100%;}
  1380. .uni-comment-body{width:100%;}
  1381. .uni-comment-top{line-height:1.5em; -webkit-box-pack:justify; -webkit-justify-content:space-between; justify-content:space-between;}
  1382. .uni-comment-top text{color:#0A98D5; font-size:24rpx;}
  1383. .uni-comment-date{line-height:38rpx; -webkit-box-orient:horizontal; -webkit-box-direction:normal; -webkit-flex-direction:row; flex-direction:row; -webkit-box-pack:justify; -webkit-justify-content:space-between; justify-content:space-between; display:-webkit-box !important; display:-webkit-flex !important; display:flex !important; -webkit-box-flex:1; -webkit-flex-grow:1; flex-grow:1;}
  1384. .uni-comment-date view{color:#666666; font-size:24rpx; line-height:38rpx;}
  1385. .uni-comment-content{line-height:1.6em; font-size:28rpx; padding:8rpx 0;}
  1386. .uni-comment-replay-btn{background:#FFF; font-size:24rpx; line-height:28rpx; padding:5rpx 20rpx; border-radius:30rpx; color:#333 !important; margin:0 10rpx;}
  1387. /* swiper msg */
  1388. .uni-swiper-msg{width:100%; padding:12rpx 0; -webkit-flex-wrap:nowrap; flex-wrap:nowrap; display:-webkit-box; display:-webkit-flex; display:flex;}
  1389. .uni-swiper-msg-icon{width:50rpx; margin-right:20rpx;}
  1390. .uni-swiper-msg-icon image{width:100%; -webkit-flex-shrink:0; flex-shrink:0;}
  1391. .uni-swiper-msg swiper{width:100%; height:50rpx;}
  1392. .uni-swiper-msg swiper-item{line-height:50rpx;}
  1393. /* product */
  1394. .uni-product-list {
  1395. display: -webkit-box;
  1396. display: -webkit-flex;
  1397. display: flex;
  1398. width: 100%;
  1399. -webkit-flex-wrap: wrap;
  1400. flex-wrap: wrap;
  1401. -webkit-box-orient: horizontal;
  1402. -webkit-box-direction: normal;
  1403. -webkit-flex-direction: row;
  1404. flex-direction: row;
  1405. }
  1406. .uni-product {
  1407. padding: 20rpx;
  1408. display: -webkit-box;
  1409. display: -webkit-flex;
  1410. display: flex;
  1411. -webkit-box-orient: vertical;
  1412. -webkit-box-direction: normal;
  1413. -webkit-flex-direction: column;
  1414. flex-direction: column;
  1415. }
  1416. .image-view {
  1417. height: 330rpx;
  1418. width: 330rpx;
  1419. margin:12rpx 0;
  1420. }
  1421. .uni-product-image {
  1422. height: 330rpx;
  1423. width: 330rpx;
  1424. }
  1425. .uni-product-title {
  1426. width: 300rpx;
  1427. word-break: break-all;
  1428. display: -webkit-box;
  1429. overflow: hidden;
  1430. line-height:1.5;
  1431. text-overflow: ellipsis;
  1432. -webkit-box-orient: vertical;
  1433. -webkit-line-clamp: 2;
  1434. }
  1435. .uni-product-price {
  1436. margin-top:10rpx;
  1437. font-size: 28rpx;
  1438. line-height:1.5;
  1439. position: relative;
  1440. }
  1441. .uni-product-price-original {
  1442. color: #e80080;
  1443. }
  1444. .uni-product-price-favour {
  1445. color: #888888;
  1446. text-decoration: line-through;
  1447. margin-left: 10rpx;
  1448. }
  1449. .uni-product-tip {
  1450. position: absolute;
  1451. right: 10rpx;
  1452. background-color: #ff3333;
  1453. color: #ffffff;
  1454. padding: 0 10rpx;
  1455. border-radius: 5rpx;
  1456. }
  1457. /* timeline */
  1458. .uni-timeline {
  1459. margin: 35rpx 0;
  1460. display: -webkit-box;
  1461. display: -webkit-flex;
  1462. display: flex;
  1463. -webkit-box-orient: vertical;
  1464. -webkit-box-direction: normal;
  1465. -webkit-flex-direction: column;
  1466. flex-direction: column;
  1467. position: relative;
  1468. }
  1469. .uni-timeline-item {
  1470. display: -webkit-box;
  1471. display: -webkit-flex;
  1472. display: flex;
  1473. -webkit-box-orient: horizontal;
  1474. -webkit-box-direction: normal;
  1475. -webkit-flex-direction: row;
  1476. flex-direction: row;
  1477. position: relative;
  1478. padding-bottom: 20rpx;
  1479. box-sizing: border-box;
  1480. overflow: hidden;
  1481. }
  1482. .uni-timeline-item .uni-timeline-item-keynode {
  1483. width: 160rpx;
  1484. -webkit-flex-shrink: 0;
  1485. flex-shrink: 0;
  1486. box-sizing: border-box;
  1487. padding-right: 20rpx;
  1488. text-align: right;
  1489. line-height: 65rpx;
  1490. }
  1491. .uni-timeline-item .uni-timeline-item-divider {
  1492. -webkit-flex-shrink: 0;
  1493. flex-shrink: 0;
  1494. position: relative;
  1495. width: 30rpx;
  1496. height: 30rpx;
  1497. top: 15rpx;
  1498. border-radius: 50%;
  1499. background-color: #bbb;
  1500. }
  1501. .uni-timeline-item-divider::before,
  1502. .uni-timeline-item-divider::after {
  1503. position: absolute;
  1504. left: 15rpx;
  1505. width: 1rpx;
  1506. height: 100vh;
  1507. content: '';
  1508. background: inherit;
  1509. }
  1510. .uni-timeline-item-divider::before {
  1511. bottom: 100%;
  1512. }
  1513. .uni-timeline-item-divider::after {
  1514. top: 100%;
  1515. }
  1516. .uni-timeline-last-item .uni-timeline-item-divider:after {
  1517. display: none;
  1518. }
  1519. .uni-timeline-first-item .uni-timeline-item-divider:before {
  1520. display: none;
  1521. }
  1522. .uni-timeline-item .uni-timeline-item-content {
  1523. padding-left: 20rpx;
  1524. }
  1525. .uni-timeline-last-item .bottom-border::after{
  1526. display: none;
  1527. }
  1528. .uni-timeline-item-content .datetime{
  1529. color: #CCCCCC;
  1530. }
  1531. /* 自定义节点颜色 */
  1532. .uni-timeline-last-item .uni-timeline-item-divider{
  1533. background-color: #1AAD19;
  1534. }
  1535. /* uni-icon */
  1536. .uni-icon {
  1537. font-family: uniicons;
  1538. font-size: 24rpx;
  1539. font-weight: normal;
  1540. font-style: normal;
  1541. line-height: 1;
  1542. display: inline-block;
  1543. text-decoration: none;
  1544. -webkit-font-smoothing: antialiased;
  1545. }
  1546. .uni-icon.uni-active {
  1547. color: #007aff;
  1548. }
  1549. .uni-icon-contact:before {
  1550. content: '\e100';
  1551. }
  1552. .uni-icon-person:before {
  1553. content: '\e101';
  1554. }
  1555. .uni-icon-personadd:before {
  1556. content: '\e102';
  1557. }
  1558. .uni-icon-contact-filled:before {
  1559. content: '\e130';
  1560. }
  1561. .uni-icon-person-filled:before {
  1562. content: '\e131';
  1563. }
  1564. .uni-icon-personadd-filled:before {
  1565. content: '\e132';
  1566. }
  1567. .uni-icon-phone:before {
  1568. content: '\e200';
  1569. }
  1570. .uni-icon-email:before {
  1571. content: '\e201';
  1572. }
  1573. .uni-icon-chatbubble:before {
  1574. content: '\e202';
  1575. }
  1576. .uni-icon-chatboxes:before {
  1577. content: '\e203';
  1578. }
  1579. .uni-icon-phone-filled:before {
  1580. content: '\e230';
  1581. }
  1582. .uni-icon-email-filled:before {
  1583. content: '\e231';
  1584. }
  1585. .uni-icon-chatbubble-filled:before {
  1586. content: '\e232';
  1587. }
  1588. .uni-icon-chatboxes-filled:before {
  1589. content: '\e233';
  1590. }
  1591. .uni-icon-weibo:before {
  1592. content: '\e260';
  1593. }
  1594. .uni-icon-weixin:before {
  1595. content: '\e261';
  1596. }
  1597. .uni-icon-pengyouquan:before {
  1598. content: '\e262';
  1599. }
  1600. .uni-icon-chat:before {
  1601. content: '\e263';
  1602. }
  1603. .uni-icon-qq:before {
  1604. content: '\e264';
  1605. }
  1606. .uni-icon-videocam:before {
  1607. content: '\e300';
  1608. }
  1609. .uni-icon-camera:before {
  1610. content: '\e301';
  1611. }
  1612. .uni-icon-mic:before {
  1613. content: '\e302';
  1614. }
  1615. .uni-icon-location:before {
  1616. content: '\e303';
  1617. }
  1618. .uni-icon-mic-filled:before,
  1619. .uni-icon-speech:before {
  1620. content: '\e332';
  1621. }
  1622. .uni-icon-location-filled:before {
  1623. content: '\e333';
  1624. }
  1625. .uni-icon-micoff:before {
  1626. content: '\e360';
  1627. }
  1628. .uni-icon-image:before {
  1629. content: '\e363';
  1630. }
  1631. .uni-icon-map:before {
  1632. content: '\e364';
  1633. }
  1634. .uni-icon-compose:before {
  1635. content: '\e400';
  1636. }
  1637. .uni-icon-trash:before {
  1638. content: '\e401';
  1639. }
  1640. .uni-icon-upload:before {
  1641. content: '\e402';
  1642. }
  1643. .uni-icon-download:before {
  1644. content: '\e403';
  1645. }
  1646. .uni-icon-close:before {
  1647. content: '\e404';
  1648. }
  1649. .uni-icon-redo:before {
  1650. content: '\e405';
  1651. }
  1652. .uni-icon-undo:before {
  1653. content: '\e406';
  1654. }
  1655. .uni-icon-refresh:before {
  1656. content: '\e407';
  1657. }
  1658. .uni-icon-star:before {
  1659. content: '\e408';
  1660. }
  1661. .uni-icon-plus:before {
  1662. content: '\e409';
  1663. }
  1664. .uni-icon-minus:before {
  1665. content: '\e410';
  1666. }
  1667. .uni-icon-circle:before,
  1668. .uni-icon-checkbox:before {
  1669. content: '\e411';
  1670. }
  1671. .uni-icon-close-filled:before,
  1672. .uni-icon-clear:before {
  1673. content: '\e434';
  1674. }
  1675. .uni-icon-refresh-filled:before {
  1676. content: '\e437';
  1677. }
  1678. .uni-icon-star-filled:before {
  1679. content: '\e438';
  1680. }
  1681. .uni-icon-plus-filled:before {
  1682. content: '\e439';
  1683. }
  1684. .uni-icon-minus-filled:before {
  1685. content: '\e440';
  1686. }
  1687. .uni-icon-circle-filled:before {
  1688. content: '\e441';
  1689. }
  1690. .uni-icon-checkbox-filled:before {
  1691. content: '\e442';
  1692. }
  1693. .uni-icon-closeempty:before {
  1694. content: '\e460';
  1695. }
  1696. .uni-icon-refreshempty:before {
  1697. content: '\e461';
  1698. }
  1699. .uni-icon-reload:before {
  1700. content: '\e462';
  1701. }
  1702. .uni-icon-starhalf:before {
  1703. content: '\e463';
  1704. }
  1705. .uni-icon-spinner:before {
  1706. content: '\e464';
  1707. }
  1708. .uni-icon-spinner-cycle:before {
  1709. content: '\e465';
  1710. }
  1711. .uni-icon-search:before {
  1712. content: '\e466';
  1713. }
  1714. .uni-icon-plusempty:before {
  1715. content: '\e468';
  1716. }
  1717. .uni-icon-forward:before {
  1718. content: '\e470';
  1719. }
  1720. .uni-icon-back:before,
  1721. .uni-icon-left-nav:before {
  1722. content: '\e471';
  1723. }
  1724. .uni-icon-checkmarkempty:before {
  1725. content: '\e472';
  1726. }
  1727. .uni-icon-home:before {
  1728. content: '\e500';
  1729. }
  1730. .uni-icon-navigate:before {
  1731. content: '\e501';
  1732. }
  1733. .uni-icon-gear:before {
  1734. content: '\e502';
  1735. }
  1736. .uni-icon-paperplane:before {
  1737. content: '\e503';
  1738. }
  1739. .uni-icon-info:before {
  1740. content: '\e504';
  1741. }
  1742. .uni-icon-help:before {
  1743. content: '\e505';
  1744. }
  1745. .uni-icon-locked:before {
  1746. content: '\e506';
  1747. }
  1748. .uni-icon-more:before {
  1749. content: '\e507';
  1750. }
  1751. .uni-icon-flag:before {
  1752. content: '\e508';
  1753. }
  1754. .uni-icon-home-filled:before {
  1755. content: '\e530';
  1756. }
  1757. .uni-icon-gear-filled:before {
  1758. content: '\e532';
  1759. }
  1760. .uni-icon-info-filled:before {
  1761. content: '\e534';
  1762. }
  1763. .uni-icon-help-filled:before {
  1764. content: '\e535';
  1765. }
  1766. .uni-icon-more-filled:before {
  1767. content: '\e537';
  1768. }
  1769. .uni-icon-settings:before {
  1770. content: '\e560';
  1771. }
  1772. .uni-icon-list:before {
  1773. content: '\e562';
  1774. }
  1775. .uni-icon-bars:before {
  1776. content: '\e563';
  1777. }
  1778. .uni-icon-loop:before {
  1779. content: '\e565';
  1780. }
  1781. .uni-icon-paperclip:before {
  1782. content: '\e567';
  1783. }
  1784. .uni-icon-eye:before {
  1785. content: '\e568';
  1786. }
  1787. .uni-icon-arrowup:before {
  1788. content: '\e580';
  1789. }
  1790. .uni-icon-arrowdown:before {
  1791. content: '\e581';
  1792. }
  1793. .uni-icon-arrowleft:before {
  1794. content: '\e582';
  1795. }
  1796. .uni-icon-arrowright:before {
  1797. content: '\e583';
  1798. }
  1799. .uni-icon-arrowthinup:before {
  1800. content: '\e584';
  1801. }
  1802. .uni-icon-arrowthindown:before {
  1803. content: '\e585';
  1804. }
  1805. .uni-icon-arrowthinleft:before {
  1806. content: '\e586';
  1807. }
  1808. .uni-icon-arrowthinright:before {
  1809. content: '\e587';
  1810. }
  1811. .uni-icon-pulldown:before {
  1812. content: '\e588';
  1813. }
  1814. .uni-icon-scan:before {
  1815. content: "\e612";
  1816. }
  1817. /* 分界线 */
  1818. .uni-divider{
  1819. height: 110rpx;
  1820. display: -webkit-box;
  1821. display: -webkit-flex;
  1822. display: flex;
  1823. -webkit-box-align:center;
  1824. -webkit-align-items:center;
  1825. align-items:center;
  1826. -webkit-box-pack: center;
  1827. -webkit-justify-content: center;
  1828. justify-content: center;
  1829. position: relative;
  1830. }
  1831. .uni-divider__content{
  1832. font-size: 28rpx;
  1833. color: #999;
  1834. padding: 0 20rpx;
  1835. position: relative;
  1836. z-index: 101;
  1837. background: #F4F5F6;
  1838. }
  1839. .uni-divider__line{
  1840. background-color: #CCCCCC;
  1841. height: 1rpx;
  1842. width: 100%;
  1843. position: absolute;
  1844. z-index: 100;
  1845. top: 50%;
  1846. left: 0;
  1847. -webkit-transform: translateY(50%);
  1848. transform: translateY(50%);
  1849. }
  1850. /**
  1851. *全局公共样式
  1852. */
  1853. .app-content {
  1854. background-color: #f5f5f5;
  1855. min-height: 100vh;
  1856. position: relative;
  1857. }
  1858. .gray_txt {
  1859. color: #999 !important;
  1860. }
  1861. .ph {
  1862. font-size: 30rpx;
  1863. color: gray;
  1864. }
  1865. .w100 {
  1866. width: 100% !important;
  1867. }
  1868. .ml0 {
  1869. margin-left: 0 !important;
  1870. }
  1871. .text_main_color {
  1872. color: #ff9000;
  1873. }
  1874. .underline {
  1875. text-decoration: underline;
  1876. }
  1877. .separate_line {
  1878. color: #999;
  1879. margin: 0 16rpx;
  1880. }
  1881. .text_sub_com {
  1882. color: #999;
  1883. font-size: 24rpx;
  1884. }
  1885. .flex, .flex-center-center, .flex-start, .flex-end, .flex-center-between, .flex-center-around, .flex-center-evenly, .flex-center-start, .flex-center-end {
  1886. display: -webkit-box;
  1887. display: -webkit-flex;
  1888. display: flex;
  1889. }
  1890. .flex-center-center {
  1891. -webkit-box-align: center;
  1892. -webkit-align-items: center;
  1893. align-items: center;
  1894. -webkit-box-pack: center;
  1895. -webkit-justify-content: center;
  1896. justify-content: center;
  1897. }
  1898. .flex-center {
  1899. display: -webkit-box;
  1900. display: -webkit-flex;
  1901. display: flex;
  1902. -webkit-box-align: center;
  1903. -webkit-align-items: center;
  1904. align-items: center;
  1905. }
  1906. .flex-start {
  1907. -webkit-box-align: start;
  1908. -webkit-align-items: flex-start;
  1909. align-items: flex-start;
  1910. }
  1911. .flex-end {
  1912. -webkit-box-align: end;
  1913. -webkit-align-items: flex-end;
  1914. align-items: flex-end;
  1915. }
  1916. .flex-center-between {
  1917. -webkit-box-align: center;
  1918. -webkit-align-items: center;
  1919. align-items: center;
  1920. -webkit-box-pack: justify;
  1921. -webkit-justify-content: space-between;
  1922. justify-content: space-between;
  1923. }
  1924. .flex-center-around {
  1925. -webkit-box-align: center;
  1926. -webkit-align-items: center;
  1927. align-items: center;
  1928. -webkit-justify-content: space-around;
  1929. justify-content: space-around;
  1930. }
  1931. .flex-center-evenly {
  1932. -webkit-box-align: center;
  1933. -webkit-align-items: center;
  1934. align-items: center;
  1935. -webkit-box-pack: space-evenly;
  1936. -webkit-justify-content: space-evenly;
  1937. justify-content: space-evenly;
  1938. }
  1939. .flex-center-start {
  1940. -webkit-box-align: center;
  1941. -webkit-align-items: center;
  1942. align-items: center;
  1943. -webkit-box-pack: start;
  1944. -webkit-justify-content: flex-start;
  1945. justify-content: flex-start;
  1946. }
  1947. .flex-center-end {
  1948. -webkit-box-align: center;
  1949. -webkit-align-items: center;
  1950. align-items: center;
  1951. -webkit-box-pack: end;
  1952. -webkit-justify-content: flex-end;
  1953. justify-content: flex-end;
  1954. }
  1955. .app-padding {
  1956. padding: 0 30rpx;
  1957. }
  1958. .app-color-0 {
  1959. color: #333333;
  1960. }
  1961. .app-color-1 {
  1962. color: #3385FF;
  1963. }
  1964. .app-color-2 {
  1965. color: #666666;
  1966. }
  1967. .app-color-3 {
  1968. color: #999999;
  1969. }
  1970. .app-color-4 {
  1971. color: #049E2C;
  1972. }
  1973. .app-price {
  1974. color: #FF2842;
  1975. }
  1976. .app-bold {
  1977. font-weight: bold;
  1978. }
  1979. .app-size-24 {
  1980. font-size: 24rpx;
  1981. }
  1982. .app-size-26 {
  1983. font-size: 26rpx;
  1984. }
  1985. .app-size-28 {
  1986. font-size: 28rpx;
  1987. }
  1988. .app-size-30 {
  1989. font-size: 30rpx;
  1990. }
  1991. .app-size-32 {
  1992. font-size: 32rpx;
  1993. }
  1994. .app-size-34 {
  1995. font-size: 34rpx;
  1996. }
  1997. .app-size-36 {
  1998. font-size: 36rpx;
  1999. }
  2000. .app-size-38 {
  2001. font-size: 38rpx;
  2002. }
  2003. .app-size-40 {
  2004. font-size: 40rpx;
  2005. }
  2006. /**
  2007. *全局样式,以 App- 前缀命名
  2008. */
  2009. page,
  2010. view,
  2011. scroll-view,
  2012. swiper,
  2013. movable-area,
  2014. cover-view,
  2015. text,
  2016. icon,
  2017. rich-text,
  2018. progress,
  2019. button,
  2020. checkbox-group,
  2021. checkbox,
  2022. form,
  2023. input,
  2024. label,
  2025. picker,
  2026. picker-view,
  2027. radio-group,
  2028. slider,
  2029. switch,
  2030. textarea,
  2031. navigator,
  2032. audio,
  2033. image,
  2034. video,
  2035. live-player,
  2036. live-pusher,
  2037. open-data,
  2038. web-view {
  2039. box-sizing: border-box;
  2040. }
  2041. page,
  2042. page {
  2043. font-family: "microsoft yahei";
  2044. font-size: 24rpx;
  2045. }
  2046. .clearfix:after {
  2047. display: block;
  2048. content: '';
  2049. clear: both;
  2050. }
  2051. .overscroll {
  2052. overflow-y: auto;
  2053. -webkit-overflow-scrolling: touch;
  2054. }
  2055. .text-line {
  2056. word-break: keep-all;
  2057. white-space: nowrap;
  2058. overflow: hidden;
  2059. text-overflow: ellipsis;
  2060. }
  2061. .app-wh100 {
  2062. width: 100%;
  2063. height: 100%;
  2064. }
  2065. .App {
  2066. min-height: 100vh;
  2067. }
  2068. .App_gray {
  2069. min-height: 100vh;
  2070. background-color: #f5f5f5;
  2071. }
  2072. .App_row {
  2073. display: -webkit-box;
  2074. display: -webkit-flex;
  2075. display: flex;
  2076. -webkit-box-pack: center;
  2077. -webkit-justify-content: center;
  2078. justify-content: center;
  2079. }
  2080. .App_col {
  2081. display: -webkit-box;
  2082. display: -webkit-flex;
  2083. display: flex;
  2084. -webkit-box-align: center;
  2085. -webkit-align-items: center;
  2086. align-items: center;
  2087. -webkit-box-orient: vertical;
  2088. -webkit-box-direction: normal;
  2089. -webkit-flex-direction: column;
  2090. flex-direction: column;
  2091. }
  2092. .button-com {
  2093. display: inline-block;
  2094. color: #3385FF;
  2095. font-size: 28rpx;
  2096. padding: 20rpx 30rpx;
  2097. background-color: #fff;
  2098. border-radius: 100rpx;
  2099. border: 1rpx solid #3385FF;
  2100. text-align: center;
  2101. line-height: 1;
  2102. margin: 0;
  2103. }
  2104. .button-com:active {
  2105. color: #f53f55;
  2106. border-color: #f53f55;
  2107. }
  2108. .button-com::after {
  2109. border: none;
  2110. }
  2111. .button-com.big {
  2112. padding-top: 30rpx;
  2113. padding-bottom: 30rpx;
  2114. }
  2115. .button-com.red {
  2116. color: #fff;
  2117. background-color: #3385FF;
  2118. }
  2119. .button-com.red:active {
  2120. background-color: #f53f55;
  2121. }
  2122. .button-com.green {
  2123. color: #fff;
  2124. background-color: #07be0b;
  2125. border-color: #07be0b;
  2126. }
  2127. .button-com.green:active {
  2128. background-color: #2dc22f;
  2129. }
  2130. .button-com.blue {
  2131. color: #fff;
  2132. background-color: #3385FF;
  2133. border-color: #3385FF;
  2134. }
  2135. .button-com.blue:active {
  2136. background-color: #639cf1;
  2137. }
  2138. .button-com.default {
  2139. color: #666666;
  2140. border-color: #dddddd;
  2141. }
  2142. .button-com.default:active {
  2143. background-color: #f5f5f5;
  2144. }
  2145. .button-com.disable {
  2146. color: #fff;
  2147. background-color: #ccc;
  2148. border-color: #ccc;
  2149. }
  2150. .admin-button-com {
  2151. display: inline-block;
  2152. color: #3385FF;
  2153. font-size: 26rpx;
  2154. padding: 10rpx 20rpx;
  2155. background-color: #fff;
  2156. border-radius: 8rpx;
  2157. border: 1rpx solid #3385FF;
  2158. text-align: center;
  2159. line-height: 1;
  2160. margin: 0;
  2161. }
  2162. .admin-button-com:active {
  2163. color: #3876d4;
  2164. border-color: #3876d4;
  2165. }
  2166. .admin-button-com::after {
  2167. border: none;
  2168. }
  2169. .admin-button-com.middle {
  2170. padding-top: 20rpx;
  2171. padding-bottom: 20rpx;
  2172. font-size: 28rpx;
  2173. }
  2174. .admin-button-com.big {
  2175. padding-top: 30rpx;
  2176. padding-bottom: 30rpx;
  2177. font-size: 32rpx;
  2178. }
  2179. .admin-button-com.blue {
  2180. color: #fff;
  2181. background-color: #3385FF;
  2182. }
  2183. .admin-button-com.blue:active {
  2184. background-color: #3876d4;
  2185. }
  2186. .admin-button-com.default {
  2187. color: #666666;
  2188. border-color: #dddddd;
  2189. }
  2190. .admin-button-com.default:active {
  2191. background-color: #f5f5f5;
  2192. }
  2193. .admin-button-com.disable {
  2194. color: #fff;
  2195. background-color: #ccc;
  2196. border-color: #ccc;
  2197. }
  2198. .input-line-wrap .required::before {
  2199. content: "*";
  2200. color: #f04545;
  2201. font-size: 28rpx;
  2202. margin-right: 8rpx;
  2203. }
  2204. .input-line-wrap .line-cell.between {
  2205. -webkit-box-pack: justify;
  2206. -webkit-justify-content: space-between;
  2207. justify-content: space-between;
  2208. }
  2209. .input-line-wrap .line-cell .tui-title {
  2210. width: 210rpx;
  2211. color: #666666;
  2212. -webkit-flex-shrink: 0;
  2213. flex-shrink: 0;
  2214. }
  2215. .input-line-wrap .line-cell .tui-input {
  2216. width: calc(100% - 210rpx);
  2217. font-size: 28rpx;
  2218. }
  2219. .input-line-wrap .line-cell .tui-textarea {
  2220. width: 100%;
  2221. font-size: 28rpx;
  2222. }
  2223. .input-line-wrap .line-cell .tui-operate {
  2224. width: calc(100% - 210rpx);
  2225. font-size: 28rpx;
  2226. }
  2227. .input-line-wrap .line-cell .tui-placeholder {
  2228. color: #ccc;
  2229. }
  2230. .input-line-wrap .line-cell .tui-prompt {
  2231. -webkit-flex-shrink: 0;
  2232. flex-shrink: 0;
  2233. color: #666666;
  2234. margin-left: 20rpx;
  2235. }
  2236. .input-line-wrap .phcolor {
  2237. color: #ccc;
  2238. }
  2239. .input-line-wrap .prompt-text {
  2240. color: #999999;
  2241. margin-top: 20rpx;
  2242. margin-left: 30rpx;
  2243. }
  2244. .input-line-wrap .btn-wrap {
  2245. width: calc(100% - 60rpx);
  2246. margin: 60rpx auto;
  2247. }
  2248. .input-line-wrap .btn-wrap .button-com {
  2249. width: 100%;
  2250. margin: 0 auto;
  2251. }
  2252. .input-line-wrap .btn-wrap .admin-button-com {
  2253. width: 100%;
  2254. margin: 0 auto;
  2255. }
  2256. .app-modal-input-wrap {
  2257. width: 100%;
  2258. }
  2259. .app-modal-input-wrap .inp-list-line {
  2260. width: 100%;
  2261. display: -webkit-box;
  2262. display: flex;
  2263. display: -webkit-flex;
  2264. -webkit-box-align: center;
  2265. -webkit-align-items: center;
  2266. align-items: center;
  2267. -webkit-box-pack: justify;
  2268. -webkit-justify-content: space-between;
  2269. justify-content: space-between;
  2270. font-size: 32rpx;
  2271. margin-bottom: 20rpx;
  2272. color: #666666;
  2273. text-align: left;
  2274. }
  2275. .app-modal-input-wrap .inp-list-line:last-child {
  2276. margin-bottom: 0;
  2277. }
  2278. .app-modal-input-wrap .inp-list-line .line-label {
  2279. margin-right: 20rpx;
  2280. -webkit-flex-shrink: 0;
  2281. flex-shrink: 0;
  2282. }
  2283. .app-modal-input-wrap .inp-list-line .line-input {
  2284. width: 100%;
  2285. display: -webkit-box;
  2286. display: flex;
  2287. display: -webkit-flex;
  2288. -webkit-box-align: center;
  2289. -webkit-align-items: center;
  2290. align-items: center;
  2291. -webkit-box-pack: center;
  2292. -webkit-justify-content: center;
  2293. justify-content: center;
  2294. }
  2295. .app-modal-input-wrap .inp-list-line .line-input.flex-strat {
  2296. -webkit-box-pack: start;
  2297. -webkit-justify-content: flex-start;
  2298. justify-content: flex-start;
  2299. }
  2300. .app-modal-input-wrap .inp-list-line .line-input .inp-input,
  2301. .app-modal-input-wrap .inp-list-line .line-input .inp-select {
  2302. width: 100%;
  2303. height: 90rpx;
  2304. border: 2rpx solid #eee;
  2305. padding-left: 20rpx;
  2306. border-radius: 4rpx;
  2307. color: #333;
  2308. }
  2309. .app-modal-input-wrap .inp-list-line .line-input .inp-select {
  2310. position: relative;
  2311. line-height: 90rpx;
  2312. }
  2313. .app-modal-input-wrap .inp-list-line .line-input .inp-select:active {
  2314. background-color: #f5f5f5;
  2315. }
  2316. .app-modal-input-wrap .inp-list-line .line-input .inp-select::before {
  2317. content: " ";
  2318. height: 20rpx;
  2319. width: 20rpx;
  2320. border-width: 2rpx 2rpx 0 0;
  2321. border-color: #bbbbbb;
  2322. border-style: solid;
  2323. -webkit-transform: matrix(0.5, 0.5, -0.5, 0.5, 0, 0);
  2324. transform: matrix(0.5, 0.5, -0.5, 0.5, 0, 0);
  2325. position: absolute;
  2326. top: 50%;
  2327. margin-top: -12rpx;
  2328. right: 16rpx;
  2329. }
  2330. .app-modal-input-wrap .inp-list-line .line-input .inp-prompt {
  2331. -webkit-flex-shrink: 0;
  2332. flex-shrink: 0;
  2333. margin-left: 20rpx;
  2334. }
  2335. .app-modal-input-wrap .inp-list-line .line-input .tui-placeholder {
  2336. color: #ccc;
  2337. }
  2338. .operate-icon-wrap {
  2339. position: relative;
  2340. width: 36rpx;
  2341. height: 36rpx;
  2342. }
  2343. .operate-icon-wrap .operate-icon {
  2344. position: absolute;
  2345. bottom: -18rpx;
  2346. left: -18rpx;
  2347. padding: 20rpx;
  2348. }
  2349. .operate-icon-wrap .operate-icon .iconcaozuojihuo {
  2350. color: #3385FF !important;
  2351. }
  2352. .app-margin-left-20 {
  2353. margin-left: 20rpx;
  2354. }
  2355. .textarea_wrap {
  2356. position: relative;
  2357. }
  2358. .textarea_wrap textarea {
  2359. display: block;
  2360. background-color: #fff;
  2361. padding: 30rpx 31rpx;
  2362. border: 0 none;
  2363. width: 100%;
  2364. height: 270rpx;
  2365. }
  2366. .textarea_wrap .count {
  2367. position: absolute;
  2368. line-height: 1;
  2369. right: 30rpx;
  2370. bottom: 30rpx;
  2371. font-size: 24rpx;
  2372. color: #999999;
  2373. }
  2374. /* 超出隐藏 */
  2375. .ellipsis_line_com {
  2376. overflow: hidden;
  2377. white-space: nowrap;
  2378. text-overflow: ellipsis;
  2379. }
  2380. /* 超出两行隐藏 */
  2381. .ellipsis_two_line_com {
  2382. text-overflow: -o-ellipsis-lastline;
  2383. overflow: hidden;
  2384. text-overflow: ellipsis;
  2385. display: -webkit-box;
  2386. -webkit-line-clamp: 2;
  2387. line-clamp: 2;
  2388. -webkit-box-orient: vertical;
  2389. line-height: 1.3;
  2390. }
  2391. /* 黑色蒙版 */
  2392. .black_mask {
  2393. position: fixed;
  2394. top: 0;
  2395. bottom: 0;
  2396. left: 0;
  2397. right: 0;
  2398. width: 100vw;
  2399. height: 100vh;
  2400. background-color: rgba(0, 0, 0, 0.7);
  2401. z-index: 999;
  2402. }
  2403. .black_mask.center {
  2404. display: -webkit-box;
  2405. display: -webkit-flex;
  2406. display: flex;
  2407. -webkit-box-pack: center;
  2408. -webkit-justify-content: center;
  2409. justify-content: center;
  2410. -webkit-box-align: center;
  2411. -webkit-align-items: center;
  2412. align-items: center;
  2413. }
  2414. .app-footer {
  2415. width: 100%;
  2416. max-width: 750rpx;
  2417. /*no*/
  2418. min-width: 320rpx;
  2419. /*no*/
  2420. height: 100rpx;
  2421. position: fixed;
  2422. text-align: center;
  2423. bottom: 0;
  2424. background: white;
  2425. box-shadow: -4rpx -4rpx 6rpx #eee;
  2426. z-index: 100;
  2427. display: -webkit-box;
  2428. display: -webkit-flex;
  2429. display: flex;
  2430. -webkit-box-pack: center;
  2431. -webkit-justify-content: center;
  2432. justify-content: center;
  2433. -webkit-box-align: center;
  2434. -webkit-align-items: center;
  2435. align-items: center;
  2436. }
  2437. .app-footer .add {
  2438. width: 38rpx;
  2439. height: 38rpx;
  2440. margin-right: 20rpx;
  2441. }
  2442. .app-footer.open_btn {
  2443. -webkit-box-pack: end;
  2444. -webkit-justify-content: flex-end;
  2445. justify-content: flex-end;
  2446. }
  2447. .app-footer.open_btn .admin-button-com {
  2448. margin-right: 30rpx;
  2449. }
  2450. .noMore {
  2451. color: #969799;
  2452. font-size: 24rpx;
  2453. line-height: 50rpx;
  2454. text-align: center;
  2455. padding: 30rpx 0;
  2456. }
  2457. ._li {
  2458. list-style: none;
  2459. }
  2460. .includecontent ._p ._img {
  2461. width: 100%;
  2462. height: auto;
  2463. }
  2464. .uni-overflow-hidden {
  2465. overflow: hidden;
  2466. height: 100vh;
  2467. }
  2468. .inputTip_box {
  2469. position: relative;
  2470. width: 100%;
  2471. }
  2472. .inputTip_box .inputTip {
  2473. position: absolute;
  2474. top: 50%;
  2475. -webkit-transform: translateY(-50%);
  2476. transform: translateY(-50%);
  2477. right: 0;
  2478. color: #f44;
  2479. font-size: 28rpx;
  2480. }
  2481. .text-overflow {
  2482. overflow: hidden;
  2483. text-overflow: ellipsis;
  2484. white-space: nowrap;
  2485. }
  2486. .animate-open {
  2487. -webkit-transform: rotate(180);
  2488. transform: rotate(180);
  2489. }
  2490. .animate-close {
  2491. -webkit-transform: rotate(0);
  2492. transform: rotate(0);
  2493. }
  2494. ::-webkit-scrollbar {
  2495. width: 0;
  2496. height: 0;
  2497. color: transparent;
  2498. }
  2499. .app-round_bg {
  2500. width: 100%;
  2501. position: absolute;
  2502. background-color: #3385FF;
  2503. height: 299rpx;
  2504. border-radius: 0rpx 0rpx 83rpx 83rpx;
  2505. }
  2506. .table-view .table-header {
  2507. display: -webkit-box;
  2508. display: -webkit-flex;
  2509. display: flex;
  2510. padding: 20rpx 30rpx;
  2511. box-shadow: 0rpx 1rpx 0rpx 0rpx #eeeeee;
  2512. color: #999999;
  2513. }
  2514. .table-view .table-header .table-th {
  2515. margin: 0 10rpx;
  2516. white-space: nowrap;
  2517. }
  2518. .table-view .table-tr {
  2519. display: -webkit-box;
  2520. display: -webkit-flex;
  2521. display: flex;
  2522. -webkit-box-align: center;
  2523. -webkit-align-items: center;
  2524. align-items: center;
  2525. padding: 20rpx 30rpx;
  2526. border-bottom: 1rpx solid #eeeeee;
  2527. color: #999999;
  2528. }
  2529. .table-view .table-tr .table-td {
  2530. margin: 0 10rpx;
  2531. }
  2532. .table-view .table-tr .table-td .warn {
  2533. color: #ffaf1d;
  2534. }
  2535. .table-view .table-tr .table-td .fail {
  2536. color: #f51608;
  2537. }
  2538. .table-view .table-tr .table-td .success {
  2539. color: #09bb07;
  2540. }
  2541. .table-view .table-tr .table-td .info {
  2542. color: #333;
  2543. }
  2544. uni-page-body,
  2545. page,
  2546. page {
  2547. height: auto;
  2548. min-height: 100%;
  2549. }
  2550. page {
  2551. -webkit-overflow-scrolling: touch;
  2552. }
  2553. .uni-navbar-header {
  2554. line-height: 96rpx !important;
  2555. height: 96rpx !important;
  2556. }
  2557. uni-toast {
  2558. z-index: 99999 !important;
  2559. }
  2560. .uni-status-bar {
  2561. height: auto !important;
  2562. }
  2563. .uni-navbar-container {
  2564. display: -webkit-box !important;
  2565. display: -webkit-flex !important;
  2566. display: flex !important;
  2567. -webkit-box-align: center !important;
  2568. -webkit-align-items: center !important;
  2569. align-items: center !important;
  2570. -webkit-box-pack: center !important;
  2571. -webkit-justify-content: center !important;
  2572. justify-content: center !important;
  2573. }
  2574. .uni-navbar-shadow {
  2575. box-shadow: 0 0 6rpx 2rpx #ccc;
  2576. }
  2577. uni-picker .uni-picker-item {
  2578. font-size: 30rpx;
  2579. }
  2580. .iconfont {
  2581. display: inline-block;
  2582. vertical-align: middle;
  2583. }
  2584. .uni-radio-wrapper .uni-radio-input {
  2585. width: 42rpx;
  2586. height: 42rpx;
  2587. }
  2588. .uni-radio-wrapper .uni-radio-input-checked {
  2589. background-color: #3385FF !important;
  2590. border-color: #3385FF !important;
  2591. }
  2592. .ljd-checkbox, .ljd-checkbox .uni-checkbox-input {
  2593. width: 42rpx;
  2594. height: 42rpx;
  2595. border-radius: 50% !important;
  2596. margin-right: 12rpx;
  2597. }
  2598. .ljd-checkbox .uni-checkbox-input.uni-checkbox-input-checked {
  2599. color: #fff !important;
  2600. background-color: #3385FF !important;
  2601. border-color: #3385FF !important;
  2602. }
  2603. .ljd-checkbox .uni-checkbox-input.uni-checkbox-input-checked:before {
  2604. font-size: 36rpx;
  2605. }
  2606. ._img {
  2607. width: 100%;
  2608. height: auto;
  2609. display: block;
  2610. }
  2611. image {
  2612. width: 100%;
  2613. height: auto;
  2614. display: block;
  2615. }
  2616. .datetime-picker .picker-body {
  2617. font-size: 32rpx !important;
  2618. }
  2619. .datetime-picker .btn-picker {
  2620. font-size: 32rpx !important;
  2621. }
  2622. .datetime-picker .btn-picker.submit {
  2623. color: #3a1b06 !important;
  2624. padding: 0 20rpx !important;
  2625. border-radius: 24rpx !important;
  2626. }
  2627. .datetime-picker .btn-picker.cancel {
  2628. color: #878787 !important;
  2629. }
  2630. .swiper-wrap .tui-tag-class {
  2631. position: absolute;
  2632. color: #fff;
  2633. bottom: 30rpx;
  2634. right: 0;
  2635. }
  2636. uni-button::after {
  2637. border: none;
  2638. }
  2639. .flex, .flex-center-center, .flex-start, .flex-end, .flex-center-between, .flex-center-around, .flex-center-evenly, .flex-center-start, .flex-center-end {
  2640. display: -webkit-box;
  2641. display: -webkit-flex;
  2642. display: flex;
  2643. -webkit-box-align: center;
  2644. -webkit-align-items: center;
  2645. align-items: center;
  2646. }
  2647. .flex-center {
  2648. display: -webkit-box;
  2649. display: -webkit-flex;
  2650. display: flex;
  2651. -webkit-box-align: center;
  2652. -webkit-align-items: center;
  2653. align-items: center;
  2654. -webkit-box-pack: center;
  2655. -webkit-justify-content: center;
  2656. justify-content: center;
  2657. }
  2658. .flex-space {
  2659. display: -webkit-box;
  2660. display: -webkit-flex;
  2661. display: flex;
  2662. -webkit-box-align: center;
  2663. -webkit-align-items: center;
  2664. align-items: center;
  2665. -webkit-box-pack: justify;
  2666. -webkit-justify-content: space-between;
  2667. justify-content: space-between;
  2668. }
  2669. .flex-end {
  2670. display: -webkit-box;
  2671. display: -webkit-flex;
  2672. display: flex;
  2673. -webkit-box-align: center;
  2674. -webkit-align-items: center;
  2675. align-items: center;
  2676. -webkit-box-pack: end;
  2677. -webkit-justify-content: flex-end;
  2678. justify-content: flex-end;
  2679. }
  2680. .ov-1x {
  2681. overflow: hidden;
  2682. white-space: nowrap;
  2683. text-overflow: ellipsis;
  2684. }
  2685. .ov-2x {
  2686. text-overflow: -o-ellipsis-lastline;
  2687. overflow: hidden;
  2688. text-overflow: ellipsis;
  2689. display: -webkit-box;
  2690. -webkit-line-clamp: 2;
  2691. -webkit-box-orient: vertical;
  2692. }
  2693. page {
  2694. height: 100%;
  2695. }
  2696. /**开单-扎和支切换样式**/
  2697. .switchover-unit {
  2698. position: fixed;
  2699. left: calc(170rpx / 2 - 50rpx);
  2700. bottom: 140rpx;
  2701. display: -webkit-box;
  2702. display: -webkit-flex;
  2703. display: flex;
  2704. -webkit-box-align: center;
  2705. -webkit-align-items: center;
  2706. align-items: center;
  2707. -webkit-box-pack: center;
  2708. -webkit-justify-content: center;
  2709. justify-content: center;
  2710. width: 100rpx;
  2711. height: 100rpx;
  2712. color: #FFFFFF;
  2713. background: #4b8cf4;
  2714. border-radius: 50%;
  2715. font-size: 42rpx;
  2716. font-weight: 700;
  2717. z-index: 2;
  2718. }
  2719. /**开单-增加减少动画**/
  2720. .animation {
  2721. -webkit-animation: imgmove 0.3s 1;
  2722. animation: imgmove 0.3s 1;
  2723. -webkit-animation-iteration-count: 1;
  2724. animation-iteration-count: 1;
  2725. }
  2726. @-webkit-keyframes imgmove {
  2727. 0% {
  2728. -webkit-transform: scale(0.7);
  2729. transform: scale(0.7);
  2730. }
  2731. 100% {
  2732. -webkit-transform: scale(1);
  2733. transform: scale(1);
  2734. }
  2735. }