_dealer.scss 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726
  1. /* **********
  2. * 经销商、代理商后台系统样式定制
  3. * **********/
  4. /* **********
  5. * account-setting
  6. * **********/
  7. .account-hd {
  8. margin-top: 10px !important; // 覆盖mui的15px
  9. }
  10. .account-hd .mui-media-object {
  11. max-width: 60px;
  12. height: 60px;
  13. line-height: 60px;
  14. border-radius: 3px;
  15. }
  16. .account-hd .mui-media-body {
  17. margin-top: 10px;
  18. margin: 10px;
  19. }
  20. .account-bd .mui-table-view-cell .iconfont {
  21. margin-right: 10px;
  22. font-size: 23px;
  23. vertical-align: middle;
  24. width: 23px;
  25. display: inline-block;
  26. text-align: center;
  27. }
  28. .account-reset {
  29. margin-top: 1em;
  30. }
  31. .sub-account-icon {
  32. display: inline-block;
  33. background: url("/app/img/sub-account-icon.png") no-repeat;
  34. background-size: cover;
  35. width: 24px;
  36. height: 24px;
  37. }
  38. .account-hd .mui-media-body {
  39. display: inline-table;
  40. }
  41. .account-setting {
  42. top: 50%;
  43. position: absolute;
  44. right: 15px;
  45. -webkit-transform: translateY(-50%);
  46. transform: translateY(-50%);
  47. text-decoration: none;
  48. -webkit-font-smoothing: antialiased;
  49. }
  50. /* **********
  51. * login reg
  52. * **********/
  53. .login-logo {
  54. width: 97.5px;
  55. height: 97.5px;
  56. margin: 1.875em auto;
  57. background-size: contain;
  58. background-position: center;
  59. background-repeat: no-repeat;
  60. }
  61. .login-forget {
  62. margin: 15px 1em;
  63. text-align: right;
  64. }
  65. .login-forget a {
  66. color: rgba(0, 0, 0, .4);
  67. }
  68. .reg-tip {
  69. padding-top: 3px;
  70. color: rgba(0, 0, 0, .8);
  71. }
  72. /***自定义mask**/
  73. .common-mask {
  74. position: fixed;
  75. z-index: 100;
  76. display: none;
  77. top: 0;
  78. right: 0;
  79. left: 0;
  80. bottom: 0;
  81. background: rgba(0, 0, 0, .4)
  82. }
  83. .common-model {
  84. background: rgba(255, 255, 255, 1);
  85. width: 88%;
  86. box-shadow: 0 0 20px #888;
  87. border-radius: 6px;
  88. margin: 40px auto 0;
  89. padding: 10px;
  90. }
  91. .common-model-tit {
  92. font-size: 16px;
  93. text-align: center;
  94. line-height: 32px;
  95. margin-bottom: 10px;
  96. }
  97. .common-model-tit a {
  98. color: $default-color;
  99. }
  100. .common-model-close {
  101. display: table;
  102. padding: 10px 18px;
  103. margin: 25px auto 10px;
  104. border-radius: 4px;
  105. text-align: center;
  106. color: #fff;
  107. background: $default-color;
  108. font-size: 22px;
  109. }
  110. /*-----------鉴权------------------*/
  111. [role="limit-user"] [permission="manage-edit"] {
  112. pointer-events: none;
  113. }
  114. [role="limit-user"] [permission="manage-show"] {
  115. display: none !important;
  116. }
  117. [role="manage"] [permission="limit-user-show"] {
  118. display: none !important;
  119. }
  120. /****************经销商、代理商样式******************/
  121. /*datepicker*/
  122. .datepickerSelecter .datepicker {
  123. background-color: #fff;
  124. border-top: 1px solid #e5e5e5;
  125. border-bottom: 1px solid #e5e5e5;
  126. }
  127. .datepicker .mui-button-row {
  128. position: relative;
  129. height: 50px;
  130. padding-top: 8px;
  131. padding-left: 10px;
  132. }
  133. .datepicker .mui-button-row:after {
  134. position: absolute;
  135. right: 0;
  136. bottom: 0;
  137. left: 0px;
  138. height: 1px;
  139. content: '';
  140. background-color: #c8c7cc;
  141. -webkit-transform: scaleY(.5);
  142. transform: scaleY(.5);
  143. }
  144. .datepicker .mui-button-row .mui-btn {
  145. width: 62px;
  146. padding: 6px 0;
  147. margin-right: 10px;
  148. }
  149. .datepicker .mui-button-row .mui-btn.active {
  150. color: $default-color;
  151. border-color: $default-color;
  152. background: #fff;
  153. }
  154. .datepicker .mui-input-group:before,
  155. .datepicker .mui-input-group:after,
  156. .datepicker .mui-input-row:last-child:after {
  157. height: 0;
  158. }
  159. /*card:主页用到*/
  160. .card {
  161. padding: 10px;
  162. margin: 10px;
  163. overflow: hidden;
  164. background-color: #fff;
  165. border: 1px solid #e5e5e5;
  166. border-radius: 8px;
  167. }
  168. .relative {
  169. position: relative;
  170. }
  171. /*checkbox*/
  172. .checkbox {
  173. font-size: 14px;
  174. }
  175. .checkbox.mui-left label {
  176. padding: 0 0 0 45px;
  177. }
  178. .checkbox input[type="checkbox"] {
  179. top: 50%;
  180. width: 22px;
  181. height: 22px;
  182. -webkit-transform: translateY(-50%);
  183. transform: translateY(-50%);
  184. }
  185. .checkbox input[type="checkbox"]:before {
  186. font-size: 22px;
  187. }
  188. .checkbox input[type="checkbox"]:checked:before {
  189. color: $default-color;
  190. }
  191. .online,
  192. .offline,
  193. .unbind,
  194. .transfer,
  195. .total-mark,
  196. .busy,
  197. .error,
  198. .new,
  199. .mark-blue,
  200. .mark {
  201. margin-left: 5px;
  202. padding: 0 3px;
  203. color: #fff;
  204. font-size: 12px;
  205. line-height: 14px;
  206. height: 16px;
  207. display: inline-block;
  208. text-align: center;
  209. border-radius: 3px;
  210. vertical-align: middle;
  211. white-space: nowrap;
  212. border: 1px solid;
  213. }
  214. .online {
  215. color: $default-color-green;
  216. }
  217. .mark-blue {
  218. color: $default-color;
  219. }
  220. .busy {
  221. color: $default-color-lgreen;
  222. }
  223. .error {
  224. color: $default-color-red;
  225. }
  226. .new {
  227. color: $default-color-red;
  228. }
  229. .offline,
  230. .unbind {
  231. color: #aaa;
  232. }
  233. .transfer {
  234. background-color: $default-color-lgreen;
  235. border: 1px $default-color-lgreen solid; // 都需要加border,这样line-height可以保持一致
  236. }
  237. .total-mark {
  238. background-color: $default-color;
  239. border: 1px $default-color solid;
  240. }
  241. // 列表没有更多的数据
  242. .nomore {
  243. position: fixed;
  244. top: 40%;
  245. left: 50%;
  246. z-index: 1;
  247. width: 156px;
  248. height: 150px;
  249. background: url(/app/img/nomore.png) no-repeat;
  250. background-size: contain;
  251. -webkit-transform: translate3d(-50%, -50%, 0);
  252. transform: translate3d(-50%, -50%, 0);
  253. }
  254. .nomore:after {
  255. position: absolute;
  256. top: 100%;
  257. left: 50%;
  258. content: '暂时无内容';
  259. color: #bbb;
  260. font-size: 14px;
  261. -webkit-transform: translateX(-50%);
  262. transform: translateX(-50%);
  263. }
  264. /* **********
  265. * index
  266. * **********/
  267. .index-hd {
  268. position: relative;
  269. font-size: 15px;
  270. text-align: center;
  271. background-image: linear-gradient(540deg, lighten(saturate($default-color, 2%), 2%) 0%, darken(desaturate($default-color, 5%), 4%) 99%);
  272. .hd-tab {
  273. display: block;
  274. padding-top: 25px;
  275. padding-bottom: 30px;
  276. color: #fff;
  277. span {
  278. display: block;
  279. margin-top: 15px;
  280. font-size: 36px;
  281. }
  282. }
  283. .hd-cell {
  284. position: relative;
  285. bottom: 0;
  286. left: 0;
  287. padding: 11px 0;
  288. color: #fff;
  289. font-size: 16px;
  290. background-color: lighten(saturate($default-color, 0%), 2%);
  291. span {
  292. display: block;
  293. font-size: 14px;
  294. }
  295. }
  296. .mui-table-cell ~ .mui-table-cell:before {
  297. position: absolute;
  298. top: 0;
  299. left: 0;
  300. content: '';
  301. width: 1px;
  302. height: 100%;
  303. background-color: lighten($default-color, 27%);
  304. }
  305. }
  306. .tip-info {
  307. line-height: 16px;
  308. height: 14px;
  309. width: 14px;
  310. display: inline-block;
  311. border-radius: 50%;
  312. font-size: 10px;
  313. position: absolute;
  314. top: 50%;
  315. -webkit-transform: translateY(-50%);
  316. transform: translateY(-50%);
  317. right: 10px;
  318. color: darken($default-color, 10%);
  319. background-color: lighten($default-color, 20%);
  320. box-shadow: 0 0 4px darken($default-color, 10%);
  321. }
  322. .help-wrap {
  323. position: absolute;
  324. top: 40%;
  325. right: 0;
  326. z-index: 1;
  327. width: 50px;
  328. height: 50px;
  329. background-color: transparent;
  330. -webkit-transform: translateY(-40%);
  331. transform: translateY(-40%);
  332. }
  333. .help {
  334. position: absolute;
  335. top: 50%;
  336. right: 15px;
  337. width: 24px;
  338. height: 24px;
  339. font-weight: 600;
  340. line-height: 24px;
  341. text-align: center;
  342. border-radius: 50%;
  343. -webkit-transform: translateY(-50%);
  344. transform: translateY(-50%);
  345. color: darken($default-color, 10%);
  346. background-color: lighten($default-color, 20%);
  347. box-shadow: 0 0 4px darken($default-color, 10%);
  348. }
  349. .help-tip {
  350. position: fixed;
  351. top: 0;
  352. left: 0;
  353. z-index: 99;
  354. width: 100%;
  355. height: 100%;
  356. overflow-y: auto;
  357. background-color: rgba(0, 0, 0, .4);
  358. }
  359. .help-card {
  360. position: fixed;
  361. top: 50%;
  362. left: 50%;
  363. z-index: 1000;
  364. width: 85%;
  365. height: 80%;
  366. word-break: break-all;
  367. word-wrap: break-word;
  368. background-color: #fff;
  369. border-radius: 12px;
  370. -webkit-transform: translate3d(-50%, -50%, 0);
  371. transform: translate3d(-50%, -50%, 0);
  372. }
  373. .help-card .help-bd {
  374. position: absolute;
  375. top: 0;
  376. left: 0;
  377. width: 100%;
  378. height: 90%;
  379. padding: 15px;
  380. word-break: break-all;
  381. overflow-y: auto;
  382. border-radius: 12px 12px 0 0;
  383. }
  384. .help-card.autoheight .help-bd {
  385. position: relative;
  386. height: auto;
  387. }
  388. .help-bd h4 {
  389. margin-bottom: 15px;
  390. font-size: 20px;
  391. text-align: center;
  392. font-weight: normal;
  393. }
  394. .help-bd h5 {
  395. color: #000;
  396. font-size: 16px;
  397. }
  398. .help-bd p {
  399. margin-bottom: 20px;
  400. color: #333;
  401. }
  402. .help-bd em {
  403. color: $default-color-red;
  404. }
  405. .help-bd ol {
  406. padding-left: 20px;
  407. }
  408. .help-bd ol li {
  409. margin-bottom: 10px;
  410. list-style-type: decimal;
  411. }
  412. .help-card .help-close {
  413. position: absolute;
  414. bottom: 0;
  415. left: 0;
  416. z-index: 1;
  417. width: 100%;
  418. padding: 12px 10px;
  419. color: $default-color;
  420. text-align: center;
  421. background-color: #fff;
  422. border-top: 1px solid #eee;
  423. border-radius: 0 0 12px 12px;
  424. }
  425. .help-card.autoheight .help-close {
  426. position: relative;
  427. }
  428. .index-bd {
  429. margin-bottom: 10px;
  430. }
  431. .index-bd .mui-row, .index-bd .row-cell {
  432. color: #e0e0e0;
  433. }
  434. .index-bd .menu-block-wear {
  435. background: #fff;
  436. position: relative;
  437. &.border-top:before {
  438. position: absolute;
  439. right: 0;
  440. left: 0;
  441. height: 1px;
  442. content: '';
  443. transform: scaleY(.5);
  444. background-color: #c8c7cc;
  445. top: -1px;
  446. }
  447. &.border-bottom:after {
  448. position: absolute;
  449. right: 0;
  450. left: 0;
  451. height: 1px;
  452. content: '';
  453. transform: scaleY(.5);
  454. background-color: #c8c7cc;
  455. bottom: -1px;
  456. }
  457. }
  458. .index-bd .mui-row .row-cell {
  459. &.border-bottom:before {
  460. position: absolute;
  461. right: 0;
  462. bottom: 0;
  463. left: 0;
  464. height: 1px;
  465. content: '';
  466. transform: scaleY(.5);
  467. background-color: #c8c7cc;
  468. }
  469. &.border-right:after {
  470. position: absolute;
  471. right: 0;
  472. bottom: 0;
  473. top: 0;
  474. width: 1px;
  475. content: '';
  476. transform: scaleX(.5);
  477. background-color: #c8c7cc;
  478. }
  479. }
  480. // 在高分辨率屏幕上的线条
  481. @media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  482. .index-bd .menu-block-wear {
  483. &.border-top:before {
  484. transform: scaleY(.333);
  485. }
  486. &.border-bottom:after {
  487. transform: scaleY(.333);
  488. }
  489. }
  490. .index-bd .mui-row .row-cell {
  491. &.border-bottom:before {
  492. position: absolute;
  493. transform: scaleY(.333);
  494. }
  495. &.border-right:after {
  496. transform: scaleX(.333);
  497. }
  498. }
  499. //使主页的线条更纤细
  500. #container {
  501. .mui-table-view:before {
  502. transform: scaleY(.333);
  503. }
  504. .mui-table-view:after {
  505. transform: scaleY(.333);
  506. }
  507. }
  508. }
  509. .index-bd .mui-row .row-cell {
  510. position: relative;
  511. padding: 15px 10px;
  512. }
  513. .index-bd .mui-row .row-cell .new {
  514. position: absolute;
  515. top: 0;
  516. right: 0;
  517. z-index: 1;
  518. width: 36.5px;
  519. height: 30.5px;
  520. background: url(/app/img/tips-new.png) no-repeat;
  521. background-size: contain;
  522. }
  523. .index-bd .mui-row p {
  524. margin-bottom: 0;
  525. color: #000;
  526. font-size: 16px;
  527. }
  528. .index-bd .mui-row .iconfont {
  529. font-size: 24px;
  530. }
  531. .index-bd .mui-row p span {
  532. display: block;
  533. padding-top: 5px;
  534. color: rgba(0, 0, 0, .4);
  535. font-size: 13px;
  536. }
  537. .index-bd .mui-media-object {
  538. height: auto;
  539. line-height: 1;
  540. }
  541. .index-bd .mui-media-object.iconfont {
  542. font-size: 25px;
  543. }
  544. .index-bd .mui-media-body p {
  545. color: rgba(0, 0, 0, .4);
  546. font-size: 13px;
  547. }
  548. .index-tip,
  549. .index-tip a {
  550. color: rgba(0, 0, 0, .4);
  551. }
  552. .index-tip .service-link {
  553. color: $default-color;
  554. }
  555. .index-bd.just-text .mui-row, .index-bd.just-text .row-cell {
  556. color: #E4E3E6;
  557. }
  558. .just-text .mui-row .row-cell, .just-text .mui-table-view-cell {
  559. padding: 12px;
  560. }
  561. .just-text .mui-table-view-cell > a:not(.mui-btn) {
  562. padding: 0;
  563. margin: 0;
  564. }
  565. .just-text .mui-row p {
  566. font-size: 14px;
  567. color: #333;
  568. }
  569. .just-text .mui-row p span {
  570. color: #999;
  571. padding-top: 0;
  572. white-space: nowrap;
  573. text-overflow: ellipsis;
  574. overflow: hidden;
  575. }
  576. .just-text .col-part {
  577. color: #999;
  578. font-size: 13px;
  579. }
  580. .just-text .part-hold {
  581. visibility: hidden;
  582. }
  583. .just-text .col-part p {
  584. color: #333;
  585. font-size: 20px;
  586. }
  587. .just-text .mui-row .row-cell {
  588. border-color: #E4E3E6;
  589. }
  590. /* **********
  591. * income-today
  592. * **********/
  593. .income .income-title {
  594. margin-top: 20px;
  595. margin-bottom: 20px;
  596. font-weight: normal;
  597. font-size: 15px;
  598. }
  599. .income .income-hd {
  600. color: #000;
  601. font-size: 36px;
  602. margin-bottom: 0;
  603. }
  604. .income .income-ft {
  605. margin-top: 15px;
  606. margin-bottom: 15px;
  607. color: #000;
  608. font-size: 15px;
  609. }
  610. .income-month-hd {
  611. top: 0;
  612. left: 0;
  613. z-index: 10;
  614. width: 100%;
  615. padding: 10px 12px 10px;
  616. background: #fff;
  617. }
  618. .income-segmented {
  619. overflow: hidden;
  620. margin-top: 10px;
  621. margin-bottom: 70px;
  622. background: #fff;
  623. min-height: 320px;
  624. position: absolute;
  625. width: 100%;
  626. }
  627. .income-segmented-hd {
  628. position: relative;
  629. height: 183px;
  630. font-size: 15px;
  631. text-align: center;
  632. }
  633. .income-segmented-hd .hd-tab {
  634. display: block;
  635. padding-top: 25px;
  636. padding-bottom: 30px;
  637. }
  638. .income-segmented-hd .hd-tab span {
  639. display: block;
  640. margin-top: 15px;
  641. font-size: 36px;
  642. }
  643. .income-segmented-hd .hd-cell {
  644. position: absolute;
  645. bottom: 0;
  646. left: 0;
  647. padding: 11px 0;
  648. font-size: 16px;
  649. }
  650. .income-segmented-hd .hd-cell span {
  651. display: block;
  652. font-size: 14px;
  653. }
  654. .income-segmented-hd .mui-table-cell ~ .mui-table-cell:before {
  655. position: absolute;
  656. top: 0;
  657. left: 0;
  658. content: '';
  659. width: 1px;
  660. height: 100%;
  661. background-color: #e0e0e0;
  662. }
  663. .income-tip {
  664. position: absolute;
  665. top: 45%;
  666. left: 52%;
  667. width: 199.65px;
  668. height: 264.55px;
  669. margin-top: -132.275px;
  670. margin-left: -99.825px;
  671. background: url(/app/img/noincome.png) no-repeat;
  672. background-size: contain;
  673. }
  674. /* **********
  675. * today coin operate
  676. * **********/
  677. .operate {
  678. -webkit-overflow-scrolling: touch;
  679. }
  680. /* **********
  681. * discount
  682. * **********/
  683. .discount-details-bd {
  684. margin-bottom: 85px;
  685. }
  686. .discount-details-bd .reg-dbj {
  687. margin-bottom: 0;
  688. }
  689. .discount-details-bd .reg-wash .mui-table-view-cell p {
  690. color: #8f8f94;
  691. font-size: 14px;
  692. }
  693. .discount-bd .mui-table-view-cell p,
  694. .discount-details-bd .mui-table-view-cell p,
  695. .location-bd .mui-table-view-cell p,
  696. .location-card .mui-input-row p {
  697. margin-bottom: 0;
  698. color: #000;
  699. font-size: 16px;
  700. }
  701. .discount-bd .mui-table-view-cell p + p,
  702. .discount-details-bd .mui-table-view-cell p + p,
  703. .location-bd .mui-table-view-cell p + p,
  704. .location-card .mui-input-row p + p {
  705. color: #8f8f94;
  706. font-size: 14px;
  707. }
  708. .discount-set {
  709. margin-bottom: 80px;
  710. }
  711. .discount-set .mui-pull-right,
  712. .reg-wash .mui-pull-right {
  713. color: #000;
  714. font-size: 16px;
  715. }
  716. .discount-set .mui-pull-right em ~ em,
  717. .reg-wash .mui-pull-right em ~ em {
  718. margin-left: 10px;
  719. }
  720. .discount-set .iconfont,
  721. .reg-wash .iconfont {
  722. margin-right: 3px;
  723. }
  724. .edit-back {
  725. position: fixed;
  726. top: 0;
  727. left: 0;
  728. z-index: 99;
  729. width: 100%;
  730. height: 100%;
  731. background-color: rgba(0, 0, 0, .4);
  732. }
  733. .edit-back.edit-bottom {
  734. border-radius: 0;
  735. > .edit-content {
  736. border-radius: 0;
  737. height: 92%;
  738. transform: none;
  739. top: auto;
  740. bottom: 0;
  741. left: auto;
  742. width: 100%;
  743. > .edit-box {
  744. padding-bottom: 54px;
  745. }
  746. > .mui-popup-buttons {
  747. position: fixed;
  748. width: 100%;
  749. bottom: 0;
  750. z-index: 2;
  751. }
  752. }
  753. }
  754. .edit-content {
  755. position: absolute;
  756. top: 50%;
  757. left: 50%;
  758. min-width: 270px;
  759. width: 86%;
  760. background-color: #fff;
  761. border-radius: 4px;
  762. -webkit-transform: translate3d(-50%, -50%, 0);
  763. transform: translate3d(-50%, -50%, 0);
  764. overflow-y: auto;
  765. max-height: 100%;
  766. }
  767. .edit-content input[type=submit] {
  768. background: none !important;
  769. border: none !important;
  770. width: 100%;
  771. height: 100%;
  772. color: $default-color !important;
  773. font-size: 17px;
  774. }
  775. .edit-content.full {
  776. width: 95%;
  777. }
  778. .edit-box {
  779. position: relative;
  780. padding: 15px;
  781. }
  782. .edit-content .mui-popup-buttons:after {
  783. position: absolute;
  784. top: 0;
  785. left: 0;
  786. right: 0;
  787. height: 1px;
  788. content: '';
  789. background-color: rgba(0, 0, 0, .2);
  790. -webkit-transform-origin: 0 100%;
  791. transform-origin: 0 100%;
  792. -webkit-transform: scaleY(.5);
  793. transform: scaleY(.5);
  794. }
  795. .reg-des textarea {
  796. padding: 5px;
  797. margin-top: 5px;
  798. margin-bottom: 0;
  799. font-size: 14px;
  800. }
  801. .edit-box .mui-input-row label {
  802. height: 35px;
  803. padding: 0;
  804. line-height: 35px;
  805. white-space: nowrap;
  806. }
  807. .edit-box .mui-input-row .edit-row {
  808. position: relative;
  809. margin-bottom: 10px;
  810. }
  811. .edit-box .mui-input-row .edit-row span {
  812. position: absolute;
  813. top: 10px;
  814. right: 5px;
  815. }
  816. .edit-box .mui-input-row .edit-row .event-unit {
  817. top: 0;
  818. padding: 10px 5px;
  819. right: 0;
  820. }
  821. .edit-box .mui-input-row .edit-row input,
  822. .edit-box .mui-input-row .edit-row select {
  823. width: 140px;
  824. height: 35px;
  825. margin: 2px 0 0;
  826. padding: 0 22px 0 5px;
  827. padding-right: 22px;
  828. text-align: center;
  829. line-height: 1;
  830. border: 1px solid #e5e5e5 !important;
  831. }
  832. .edit-row .x-s, .edit-row select .x-s {
  833. width: 90px !important;
  834. }
  835. .edit-box textarea {
  836. border: 1px solid #e5e5e5 !important;
  837. }
  838. .edit-box .mui-input-row .edit-row input[disabled] {
  839. background: #e5e5e5;
  840. }
  841. .edit-box textarea[disabled] {
  842. background: #e5e5e5;
  843. }
  844. .mui-input-row .edit-row select option {
  845. text-align: center;
  846. }
  847. .edit-box .mui-input-row .mui-numbox {
  848. margin: 2px 0 0;
  849. background-color: #fff;
  850. }
  851. .edit-box .mui-numbox [class*=btn-numbox] {
  852. background-color: #fff;
  853. }
  854. .tips {
  855. line-height: 16px;
  856. text-align: center;
  857. height: 14px;
  858. width: 14px;
  859. display: inline-block;
  860. border-radius: 50%;
  861. font-size: 10px;
  862. background: #eee;
  863. box-shadow: 0 0 6px #aaa;
  864. }
  865. /* **********
  866. * device dbj details,
  867. * device start details
  868. * **********/
  869. .device-details-hd,
  870. .discount-hd {
  871. top: 0;
  872. left: 0;
  873. z-index: 10;
  874. width: 100%;
  875. background-color: #efeff4;
  876. }
  877. .device-details-bd,
  878. .discount-bd {
  879. margin-top: 34px;
  880. -webkit-overflow-scrolling: touch;
  881. }
  882. .device-details-bd .custom-bottom .mui-pull-right {
  883. color: #000;
  884. font-size: 16px;
  885. }
  886. /* **********
  887. * device mgr
  888. * **********/
  889. .mgr-bd,
  890. .fault-list {
  891. transition: .25s all ease-in-out;
  892. margin-top: 110px;
  893. bottom: 0px;
  894. -webkit-overflow-scrolling: touch;
  895. }
  896. .mgr-bd .mui-table-view-cell .font-b-14-4 {
  897. padding-right: 8px;
  898. }
  899. .mgr-bd .mui-table-view-cell .mui-navigate-right:after {
  900. right: 5px;
  901. }
  902. .mgr-bd .mui-row ~ .mui-row {
  903. margin-top: 10px;
  904. }
  905. .mgr-bd .mui-row > [class*= 'mui-col-'] {
  906. color: rgba(0, 0, 0, .8);
  907. text-align: center;
  908. }
  909. .mgr-tip {
  910. position: absolute;
  911. top: 45%;
  912. left: 52%;
  913. width: 160.5px;
  914. height: 200.5px;
  915. margin-top: -100.25px;
  916. margin-left: -80.25px;
  917. background: url(/app/img/nodevice.png) no-repeat;
  918. background-size: contain;
  919. z-index: -1; //层级必须在底部,否则会遮盖 搜索框
  920. }
  921. .mgr-tip:after {
  922. position: absolute;
  923. top: 158px;
  924. width: 100%;
  925. left: 50%;
  926. content: '暂无设备,请先注册设备';
  927. color: #bbb;
  928. font-size: 14px;
  929. -webkit-transform: translateX(-50%);
  930. transform: translateX(-50%);
  931. }
  932. /** 设备管理公用样式**/
  933. .group-content {
  934. .mui-active {
  935. padding-left: 15px !important;
  936. }
  937. .mui-table-view-cell {
  938. padding-left: 15px !important;
  939. }
  940. .mui-table-view-cell:after {
  941. left: 15px !important;
  942. }
  943. }
  944. .device-mgr {
  945. .list {
  946. .mui-checkbox-wear {
  947. float: left;
  948. padding-right: 10px;
  949. display: none;
  950. height: 22px;
  951. }
  952. .group-content .mui-checkbox-wear {
  953. padding-left: 10px;
  954. height: 32px;
  955. }
  956. .mui-checkbox {
  957. pointer-events: none; /*移动端 mui冲突,选中事件需要自己加**/
  958. }
  959. .mui-checkbox input {
  960. position: relative;
  961. right: auto;
  962. top: -4px;
  963. }
  964. }
  965. .dev-top-info {
  966. position: relative;
  967. height: 38px;
  968. line-height: 38px;
  969. margin: 0;
  970. padding: 0 10px;
  971. background: #f4f4f4;
  972. }
  973. }
  974. .handle-reg {
  975. margin-top: -10px;
  976. margin-right: -10px;
  977. padding: 10px;
  978. }
  979. .c-handle-panel {
  980. position: fixed;
  981. width: 100%;
  982. left: 0;
  983. bottom: 0;
  984. display: -webkit-flex;
  985. display: flex;
  986. -webkit-align-items: center;
  987. align-items: center;
  988. z-index: 2;
  989. background: #fff;
  990. box-shadow: 0 0 1px #ccc;
  991. .handle-btn {
  992. height: 48px;
  993. line-height: 48px;
  994. text-align: center;
  995. font-size: 16px;
  996. padding: 0 10px;
  997. color: #fff;
  998. visibility: hidden;
  999. }
  1000. .mui-checkbox {
  1001. color: #333;
  1002. display: inline-block;
  1003. }
  1004. input {
  1005. top: auto !important;
  1006. right: auto !important;
  1007. vertical-align: middle !important;
  1008. width: 78px;
  1009. height: 100%;
  1010. }
  1011. input:before {
  1012. top: 9px;
  1013. position: absolute;
  1014. }
  1015. label {
  1016. width: auto !important;
  1017. vertical-align: middle !important;
  1018. padding-right: 0 !important;
  1019. padding-left: 32px !important;
  1020. font-size: 12px !important;
  1021. }
  1022. .handle-btn-list {
  1023. flex: 1;
  1024. -webkit-flex: 1;
  1025. // 4个按钮 iphone5s刚好可以显示下
  1026. .mui-btn {
  1027. margin-right: 6px;
  1028. margin-top: 3px;
  1029. margin-bottom: 3px;
  1030. padding-left: 8px;
  1031. padding-right: 8px;
  1032. font-size: 12px;
  1033. }
  1034. }
  1035. }
  1036. /*批量操作模式*/
  1037. .batch-model .c-handle-panel .handle-btn {
  1038. visibility: visible !important;
  1039. }
  1040. .batch-model .mui-checkbox-wear {
  1041. display: block !important;
  1042. }
  1043. .batch-model .mgr-bd {
  1044. bottom: 40px !important;
  1045. }
  1046. .batch-model [role="limit-user"] {
  1047. display: none;
  1048. }
  1049. .batch-model .by-group {
  1050. display: none !important;
  1051. }
  1052. .batch-model-group {
  1053. .by-group {
  1054. display: block !important;
  1055. }
  1056. .by-dev {
  1057. display: none !important;
  1058. }
  1059. }
  1060. //设备详情
  1061. .map-container {
  1062. height: 100%;
  1063. width: 100%;
  1064. position: absolute;
  1065. #allmap {
  1066. width: 100%;
  1067. height: 100%;
  1068. overflow: hidden;
  1069. margin: 0;
  1070. }
  1071. .center-mark {
  1072. position: absolute;
  1073. left: 50%;
  1074. top: 50%;
  1075. -webkit-transform: translateY(-24px) translateX(-50%);
  1076. transform: translateY(-24px) translateX(-50%);
  1077. }
  1078. .address-pop {
  1079. position: absolute;
  1080. max-width: 80%;
  1081. background: rgba(255, 255, 255, .9);
  1082. left: 50%;
  1083. -webkit-transform: translateX(-50%) scale(0);
  1084. transform: translateX(-50%) scale(0);
  1085. bottom: calc(50% + 24px + 10px);
  1086. font-size: 14px;
  1087. line-height: 20px;
  1088. color: #555;
  1089. padding: 6px 6px;
  1090. border-radius: 4px;
  1091. box-shadow: 5px 5px 25px #888;
  1092. opacity: 0;
  1093. -webkit-transition: .1s ease-in-out;
  1094. transition: .1s ease-in-out
  1095. }
  1096. .address-pop.active {
  1097. opacity: 1;
  1098. -webkit-transform: translateX(-50%) scale(1);
  1099. transform: translateX(-50%) scale(1);
  1100. }
  1101. .address-pop:before {
  1102. content: "";
  1103. position: absolute;
  1104. left: 50%;
  1105. bottom: -8px;
  1106. margin: 0 0 0 -8px;
  1107. width: 16px;
  1108. height: 16px;
  1109. background: rgba(255, 255, 255, .9);
  1110. -webkit-transform: rotate(-45deg);
  1111. transform: rotate(-45deg)
  1112. }
  1113. .center-mark .iconfont {
  1114. font-size: 24px;
  1115. line-height: 24px;
  1116. }
  1117. .map-bottom {
  1118. position: absolute;
  1119. bottom: 0;
  1120. width: 100%;
  1121. padding: 14px;
  1122. text-align: center;
  1123. }
  1124. .map-bottom .btn {
  1125. background: $default-color;
  1126. line-height: 44px;
  1127. color: #fff;
  1128. text-align: center;
  1129. border-radius: 5px;
  1130. width: 100px;
  1131. display: inline-block;
  1132. box-shadow: 0 0 10px #999;
  1133. margin-right: 10px;
  1134. }
  1135. .map-bottom .btn.address-cancel {
  1136. background: #fff;
  1137. color: $default-color;
  1138. }
  1139. .map-top {
  1140. height: 44px;
  1141. line-height: 44px;
  1142. background: #fff;
  1143. border-bottom: 1px solid #ccc;
  1144. width: 100%;
  1145. top: 0;
  1146. z-index: 9;
  1147. position: absolute;
  1148. }
  1149. .map-top .address-search {
  1150. border: none;
  1151. background: #fff;
  1152. width: 100%;
  1153. height: 100%;
  1154. padding-left: 24px;
  1155. font-size: 14px;
  1156. }
  1157. .map-top .icon-location {
  1158. position: absolute;
  1159. left: 6px;
  1160. line-height: 44px;
  1161. top: 0;
  1162. }
  1163. }
  1164. .set-current-location {
  1165. position: fixed;
  1166. right: 22px;
  1167. bottom: 80px;
  1168. font-size: 24px;
  1169. line-height: 36px;
  1170. text-align: center;
  1171. width: 36px;
  1172. height: 36px;
  1173. border-radius: 50%;
  1174. background: #fff;
  1175. display: block;
  1176. color: #565B63;
  1177. box-shadow: 0 0 10px rgba(0, 0, 0, .15);
  1178. }
  1179. /* **********
  1180. * device details
  1181. * **********/
  1182. .details-bd .mui-table-view-cell .mui-pull-right {
  1183. color: rgba(0, 0, 0, .5);
  1184. font-size: 14px;
  1185. max-width: calc(100% - 5em);
  1186. white-space: normal;
  1187. }
  1188. /* **********
  1189. * wallet
  1190. * **********/
  1191. /*wallet index*/
  1192. .wallet {
  1193. -webkit-overflow-scrolling: touch;
  1194. }
  1195. .wallet-hd {
  1196. position: relative;
  1197. padding: 20px 15px;
  1198. background-color: #70717a;
  1199. }
  1200. .wallet-hd:after {
  1201. position: absolute;
  1202. top: 50%;
  1203. right: 10px;
  1204. display: inline-block;
  1205. font-family: Muiicons;
  1206. content: '\e583';
  1207. color: #fff;
  1208. font-size: 20px;
  1209. font-weight: 600;
  1210. line-height: 1;
  1211. -webkit-transform: translateY(-50%);
  1212. transform: translateY(-50%);
  1213. -webkit-font-smoothing: antialiased;
  1214. }
  1215. .wallet-hd {
  1216. background-image: linear-gradient(135deg, rgba(255, 255, 255, .1) 0%, rgba(1, 1, 1, 0.1) 100%);
  1217. padding: 10px 15px;
  1218. }
  1219. .wallet-hd ~ .wallet-hd {
  1220. margin-top: 10px;
  1221. }
  1222. .wallet-hd em {
  1223. background: rgba(255, 255, 255, .3);
  1224. padding: 0 6px;
  1225. border-radius: 10px;
  1226. margin-left: 4px;
  1227. font-size: 12px;
  1228. line-height: 16px;
  1229. vertical-align: middle;
  1230. max-width: 12em;
  1231. overflow: hidden;
  1232. text-overflow: ellipsis;
  1233. display: inline-block;
  1234. white-space: nowrap;
  1235. }
  1236. .wallet-hd-title {
  1237. color: #fff;
  1238. font-size: 14px !important;
  1239. }
  1240. .wallet-hd-content {
  1241. color: #fff;
  1242. margin-top: 10px;
  1243. font-size: 24px !important;
  1244. }
  1245. .wallet-hd-right {
  1246. position: absolute;
  1247. right: 35px;
  1248. top: 50%;
  1249. color: #fff;
  1250. -webkit-transform: translateY(-50%);
  1251. transform: translateY(-50%);
  1252. }
  1253. .wallet-hd-content small {
  1254. font-size: 16px;
  1255. }
  1256. .wallet-common {
  1257. background-color: #70717a;
  1258. }
  1259. .wallet-common .mui-table-cell {
  1260. padding-top: 25px;
  1261. padding-bottom: 25px;
  1262. color: #fff;
  1263. }
  1264. .wallet-common .mui-table-cell span,
  1265. .operate .mui-table-cell span {
  1266. display: block;
  1267. margin-top: 10px;
  1268. font-size: 36px;
  1269. }
  1270. .wallet-common .mui-table-cell small,
  1271. .operate .mui-table-cell i {
  1272. font-size: 16px;
  1273. }
  1274. .wallet-help {
  1275. position: absolute;
  1276. left: auto;
  1277. top: 50%;
  1278. width: 40px;
  1279. height: 40px;
  1280. font-size: 16px !important;
  1281. text-align: center;
  1282. -webkit-transform: translateY(-50%);
  1283. transform: translateY(-50%);
  1284. }
  1285. .wallet-help .help-icon {
  1286. position: absolute;
  1287. top: 50%;
  1288. right: 10px;
  1289. width: 20px;
  1290. height: 20px;
  1291. line-height: 18px;
  1292. border: 1px solid #fff;
  1293. border-radius: 100%;
  1294. -webkit-transform: translateY(-50%);
  1295. transform: translateY(-50%);
  1296. }
  1297. .wallet-bd {
  1298. padding-top: 41px;
  1299. }
  1300. .wallet-withdraw-page {
  1301. .icon-help-info {
  1302. margin-top: -2px;
  1303. }
  1304. }
  1305. /*wallet for withdraw*/
  1306. .wallet-withdraw .mui-input-row {
  1307. label {
  1308. width: 30%;
  1309. }
  1310. label ~ input {
  1311. width: 70%;
  1312. }
  1313. p {
  1314. float: left;
  1315. width: 100% !important;
  1316. height: 44px;
  1317. padding-right: 10px;
  1318. margin-bottom: 0;
  1319. color: #000;
  1320. font-size: 16px;
  1321. line-height: 44px;
  1322. }
  1323. .mui-pull-right {
  1324. color: rgba(0, 0, 0, .5);
  1325. font-size: 13px;
  1326. }
  1327. .outway {
  1328. padding-top: 1px;
  1329. color: #000;
  1330. font-size: 18px;
  1331. height: 54px;
  1332. line-height: 54px;
  1333. .iconfont {
  1334. font-size: 30px;
  1335. vertical-align: middle;
  1336. padding-right: 5px;
  1337. }
  1338. svg {
  1339. width: 40px;
  1340. height: 40px;
  1341. vertical-align: middle;
  1342. padding-right: 5px;
  1343. }
  1344. span {
  1345. vertical-align: middle;
  1346. }
  1347. }
  1348. $amountHeight: 74px;
  1349. .outmoney {
  1350. height: $amountHeight;
  1351. padding: 0;
  1352. color: #000;
  1353. font-size: 17px;
  1354. line-height: $amountHeight;
  1355. }
  1356. .amountUnit {
  1357. font-size: 40px;
  1358. width: 30px;
  1359. }
  1360. #amount {
  1361. vertical-align: top;
  1362. padding: 0 5px;
  1363. width: calc(100% - 100px);
  1364. height: $amountHeight;
  1365. line-height: $amountHeight;
  1366. font-size: 16px;
  1367. }
  1368. .amount-all {
  1369. position: absolute;
  1370. height: $amountHeight;
  1371. line-height: $amountHeight;
  1372. right: 0;
  1373. padding: 0 15px;
  1374. }
  1375. #amount.active {
  1376. font-size: 32px;
  1377. }
  1378. }
  1379. .wallet-withdraw-page {
  1380. .mui-popover.mui-popover-action .mui-table-view {
  1381. margin: 0;
  1382. border-radius: 0;
  1383. }
  1384. .mui-table-view-cell {
  1385. text-align: left;
  1386. line-height: 32px;
  1387. svg {
  1388. width: 22px;
  1389. height: 20px;
  1390. vertical-align: middle;
  1391. }
  1392. span {
  1393. color: #000;
  1394. }
  1395. }
  1396. }
  1397. .wallet-transactions {
  1398. .mui-table-view-cell .mui-pull-right {
  1399. color: rgba(0, 0, 0, .4);
  1400. font-size: 16px;
  1401. }
  1402. .mui-pull-right.final {
  1403. color: $default-color-green;
  1404. }
  1405. }
  1406. .transaction-card .mui-table-view-cell {
  1407. p {
  1408. color: rgba(0, 0, 0, .6);
  1409. font-size: 15px;
  1410. }
  1411. &:first-child .mui-pull-right {
  1412. color: #000;
  1413. font-size: 20px;
  1414. }
  1415. &:last-child p ~ p {
  1416. margin-top: 10px;
  1417. }
  1418. }
  1419. .bank-info {
  1420. position: relative;
  1421. float: left;
  1422. width: 50%;
  1423. overflow: hidden;
  1424. white-space: nowrap;
  1425. text-overflow: ellipsis;
  1426. text-align: center;
  1427. padding: 6px 2px;
  1428. }
  1429. .bank-info svg {
  1430. height: 40px;
  1431. width: 40px;
  1432. vertical-align: middle;
  1433. }
  1434. .bank-info .bank-name {
  1435. line-height: 40px;
  1436. vertical-align: middle;
  1437. }
  1438. /*waller for withdraw detail*/
  1439. .withdraw-details {
  1440. padding-top: 20px;
  1441. .iconfont {
  1442. width: 60px;
  1443. height: 60px;
  1444. font-size: 60px;
  1445. line-height: 1;
  1446. }
  1447. p {
  1448. margin-top: 20px;
  1449. margin-bottom: 20px;
  1450. color: #000;
  1451. font-size: 16px;
  1452. }
  1453. }
  1454. .withdraw-details-bd .mui-pull-right {
  1455. color: rgba(0, 0, 0, .5);
  1456. font-size: 14px;
  1457. }
  1458. /* **********
  1459. * scan-res
  1460. * **********/
  1461. .scan-hd {
  1462. padding-top: 15px;
  1463. padding-bottom: 15px;
  1464. }
  1465. .scan-hd .scan-tip {
  1466. display: inline-block;
  1467. width: 53.5px;
  1468. height: 46.5px;
  1469. margin-right: 10px;
  1470. background: url(/app/img/tips-error.png) no-repeat;
  1471. background-size: contain;
  1472. vertical-align: middle;
  1473. }
  1474. /* **********
  1475. * location-list
  1476. * **********/
  1477. .location-bd {
  1478. margin-bottom: 73px;
  1479. -webkit-overflow-scrolling: touch;
  1480. }
  1481. .location-card .card-hd {
  1482. padding: 11px 15px;
  1483. }
  1484. .location-card .mui-radio.mui-left label {
  1485. width: auto;
  1486. padding-left: 45px;
  1487. padding-right: 0;
  1488. color: rgba(0, 0, 0, .5);
  1489. }
  1490. .location-card .mui-radio.mui-left input[type=radio] {
  1491. top: 23%;
  1492. left: 15px;
  1493. width: 24px;
  1494. height: 24px;
  1495. }
  1496. .location-card .mui-radio input[type=radio]:before {
  1497. font-size: 24px;
  1498. }
  1499. .location-card .mui-radio .mui-pull-right {
  1500. padding: 11px 15px 11px 0;
  1501. }
  1502. .location-card .mui-radio .mui-pull-right a {
  1503. color: rgba(0, 0, 0, .5);
  1504. }
  1505. .location-card .mui-radio .mui-pull-right a + a {
  1506. margin-left: 20px;
  1507. }
  1508. .location-card .mui-radio .mui-pull-right .iconfont {
  1509. margin-right: 5px;
  1510. color: rgba(0, 0, 0, .4);
  1511. font-size: 18px;
  1512. }
  1513. /* **********
  1514. * device reg
  1515. * **********/
  1516. .reg-hd .mui-navigate-right:after {
  1517. right: 5px;
  1518. }
  1519. .reg .mui-content-padded {
  1520. margin: 0;
  1521. padding: 10px;
  1522. background-color: #efeff4;
  1523. }
  1524. .reg-bd {
  1525. .mui-input-row {
  1526. height: auto;
  1527. padding: 15px;
  1528. font-size: 14px;
  1529. }
  1530. .mui-input-row:nth-of-type(2) {
  1531. padding: 0;
  1532. }
  1533. .mui-input-row ol {
  1534. margin-bottom: 10px;
  1535. list-style-position: inside;
  1536. }
  1537. .mui-table-view-cell {
  1538. padding: 15px;
  1539. font-size: 14px;
  1540. }
  1541. .mui-table-view-cell:nth-of-type(2) {
  1542. padding: 0;
  1543. }
  1544. .mui-table-view-cell ol {
  1545. margin-bottom: 10px;
  1546. list-style-position: inside;
  1547. }
  1548. .mui-row {
  1549. .mui-inline {
  1550. width: 30px;
  1551. height: 20px;
  1552. margin-right: 10px;
  1553. border-radius: 2px;
  1554. }
  1555. .mui-inline.done {
  1556. background-color: #cecece;
  1557. }
  1558. .mui-inline.option {
  1559. border: 1px solid #cecece;
  1560. }
  1561. .mui-inline.active {
  1562. background-color: $default-color;
  1563. }
  1564. }
  1565. .reg-list {
  1566. margin-bottom: 10px;
  1567. }
  1568. :after,
  1569. .reg-list:after {
  1570. height: 0;
  1571. }
  1572. .option-list {
  1573. margin: 10px;
  1574. .option-list-item {
  1575. padding: 5px;
  1576. text-align: center;
  1577. a {
  1578. display: inline-block;
  1579. width: 100%;
  1580. height: 60px;
  1581. line-height: 60px;
  1582. font-size: 18px;
  1583. border-radius: 6px;
  1584. }
  1585. a.done {
  1586. color: #fff;
  1587. background-color: #cecece;
  1588. }
  1589. a.option {
  1590. color: $default-color;
  1591. background: url(/app/img/bg-num.png) repeat-x;
  1592. background-size: contain;
  1593. box-shadow: 0 0 3px #d5d5d5;
  1594. }
  1595. a.active {
  1596. color: #fff;
  1597. background-color: $default-color;
  1598. }
  1599. input {
  1600. width: 100%;
  1601. height: 60px;
  1602. color: $default-color;
  1603. font-size: 18px;
  1604. text-align: center;
  1605. background: url(/app/img/bg-num.png) repeat-x;
  1606. background-size: contain;
  1607. border-radius: 6px;
  1608. box-shadow: 0 0 3px #d5d5d5;
  1609. }
  1610. }
  1611. }
  1612. }
  1613. /* **********
  1614. * device param
  1615. * **********/
  1616. .param .mui-popup-input input {
  1617. width: 80%;
  1618. height: 35px;
  1619. text-align: center;
  1620. border: 1px solid #bebebe;
  1621. border-radius: 4px;
  1622. }
  1623. .param .mui-popup-title {
  1624. font-weight: normal;
  1625. font-size: 16px;
  1626. }
  1627. .param-title {
  1628. padding: 0 10px;
  1629. margin-top: 10px;
  1630. font-weight: normal;
  1631. font-size: 16px;
  1632. }
  1633. /**设备参数设置*/
  1634. .device-function .mui-input-row .mui-radio input {
  1635. position: relative;
  1636. display: inline-block;
  1637. top: 2px;
  1638. right: auto;
  1639. }
  1640. .device-function .mui-input-row .mui-radio label {
  1641. top: auto;
  1642. right: auto;
  1643. width: auto;
  1644. }
  1645. /* **********
  1646. * device transfer record
  1647. * **********/
  1648. .transfer-record .mui-table-view-cell p {
  1649. color: #000;
  1650. font-size: 16px;
  1651. }
  1652. .transfer-record .mui-table-view-cell p .unoperation {
  1653. color: $default-color-red;
  1654. }
  1655. .icon-tip-num {
  1656. position: absolute;
  1657. top: 30%;
  1658. right: 35px;
  1659. min-width: 18px;
  1660. height: 18px;
  1661. font-size: 12px;
  1662. line-height: 18px;
  1663. text-align: center;
  1664. background-color: $default-color-red;
  1665. color: #fff;
  1666. border-radius: 9px;
  1667. padding: 0 2px;
  1668. -webkit-transform: translateY(-50%);
  1669. transform: translateY(-50%);
  1670. }
  1671. /* **********
  1672. * remote upper
  1673. * **********/
  1674. .remote .mui-table-view-cell p:first-child,
  1675. .remote .mui-table-view-cell .mui-pull-right {
  1676. color: #000;
  1677. font-size: 16px;
  1678. }
  1679. .remote .mui-table-view-cell p:nth-child(2) {
  1680. color: rgba(0, 0, 0, .6);
  1681. }
  1682. .remote .mui-input-row .num-input {
  1683. width: 50%;
  1684. }
  1685. .remote .mui-input-row .iconfont {
  1686. float: right;
  1687. display: inline-block;
  1688. width: 15%;
  1689. height: 44px;
  1690. line-height: 44px;
  1691. color: #c1c1c1;
  1692. font-size: 28px;
  1693. text-align: center;
  1694. }
  1695. .remote .mui-input-row .mui-numbox {
  1696. float: left;
  1697. margin: 4px 0;
  1698. }
  1699. /**经营统计、设备管理等**/
  1700. #benefit-content .mui-table-view-cell .benefit-count {
  1701. color: #999999;
  1702. font-size: 14px;
  1703. }
  1704. #calendar {
  1705. position: absolute;
  1706. right: 14%;
  1707. height: 32px;
  1708. width: 32px;
  1709. border: none;
  1710. background-color: #efeff4;
  1711. background-image: url("/app/img/calendar.png");
  1712. background-size: 100%;
  1713. -webkit-background-size: 100%;
  1714. -moz-background-size: 100%;
  1715. -o-background-size: 100%
  1716. }
  1717. .icon-loading {
  1718. width: 19px;
  1719. margin-right: 2px;
  1720. }
  1721. .mgr-filter {
  1722. margin-top: 55px;
  1723. }
  1724. .custom-signal {
  1725. height: 36px;
  1726. line-height: 36px;
  1727. width: 36px;
  1728. background: rgba(1, 1, 1, .0);
  1729. border-radius: 4px;
  1730. position: absolute;
  1731. right: 4%;
  1732. top: 0px;
  1733. .signal-type {
  1734. font-size: 12px;
  1735. line-height: 12px;
  1736. transform: scale(.62);
  1737. position: absolute;
  1738. color: #888;
  1739. top: 4px;
  1740. left: 2px;
  1741. }
  1742. }
  1743. .custom-signal i {
  1744. width: 100%;
  1745. display: block;
  1746. position: absolute;
  1747. left: 8px;
  1748. }
  1749. .custom-signal .signal-icon-back {
  1750. color: rgba(1, 1, 1, .1);
  1751. }
  1752. .custom-signal .icon-refresh {
  1753. color: #aaa;
  1754. }
  1755. .custom-signal .icon-refresh ~ .signal-icon-back {
  1756. display: none;
  1757. }
  1758. .group-content {
  1759. margin-top: -8px !important;
  1760. }
  1761. .group-ele-total {
  1762. margin-right: 6%
  1763. }
  1764. .worldlimit {
  1765. white-space: nowrap;
  1766. text-overflow: ellipsis;
  1767. overflow: hidden;
  1768. -webkit-text-overflow: ellipsis;
  1769. }
  1770. /*首页弹窗,公众号二维码*/
  1771. .pop-bg {
  1772. position: fixed;
  1773. left: 0;
  1774. top: 0;
  1775. z-index: 10;
  1776. width: 100%;
  1777. height: 100%;
  1778. background: rgba(0, 0, 0, 0.4);
  1779. }
  1780. .pop-con {
  1781. position: fixed;
  1782. top: 0;
  1783. right: 0;
  1784. bottom: 0;
  1785. left: 0;
  1786. margin: auto;
  1787. z-index: 11;
  1788. width: 85%;
  1789. background: #fff;
  1790. border-radius: 3px;
  1791. text-align: center;
  1792. padding: 20px;
  1793. font-size: 18px;
  1794. display: table;
  1795. }
  1796. .pop-tit {
  1797. padding-bottom: 10px;
  1798. }
  1799. .pop-img {
  1800. display: block;
  1801. position: relative;
  1802. float: none;
  1803. margin: auto;
  1804. }
  1805. .img-title {
  1806. padding: 10px 0;
  1807. display: block;
  1808. font-size: 16px;
  1809. }
  1810. .pop-img img {
  1811. display: block;
  1812. width: 200px;
  1813. margin: auto;
  1814. }
  1815. .pop-box {
  1816. display: none
  1817. }
  1818. /**订单、用户反馈的部分样式**/
  1819. .or-order-status .or-order-status-font {
  1820. line-height: 39px;
  1821. display: block;
  1822. width: 72%;
  1823. text-align: left;
  1824. cursor: pointer;
  1825. color: #757575;
  1826. float: right;
  1827. }
  1828. .or-longWrap {
  1829. word-break: break-all;
  1830. }
  1831. .or-ellipsis {
  1832. white-space: nowrap;
  1833. text-overflow: ellipsis;
  1834. overflow: hidden;
  1835. }
  1836. .or-label-text {
  1837. white-space: nowrap;
  1838. padding-right: 0 !important;
  1839. width: 28% !important;
  1840. }
  1841. .or-border-fir {
  1842. border-bottom: 1px solid #e5e5e5;
  1843. }
  1844. .or-border.mui-table-view:after {
  1845. display: none;
  1846. }
  1847. .or-border.mui-table-view:before {
  1848. display: none;
  1849. }
  1850. .attention {
  1851. width: 70px;
  1852. height: 70px;
  1853. margin: 10px auto;
  1854. }
  1855. .attention img {
  1856. width: 100%
  1857. }
  1858. .attention {
  1859. overflow: hidden;
  1860. border-radius: 50%;
  1861. }
  1862. .attention img {
  1863. display: none;
  1864. }
  1865. .bind-panel, #submitBtn {
  1866. display: block;
  1867. }
  1868. .bound .bind-panel, .bound #submitBtn {
  1869. display: none;
  1870. }
  1871. .info-panel, #changeWechatBtn {
  1872. display: none;
  1873. }
  1874. .bound .info-panel, .bound #changeWechatBtn {
  1875. display: block;
  1876. }
  1877. /****************代理商收入等模块样式********************/
  1878. .purse-logo-back {
  1879. position: absolute;
  1880. right: 4px;
  1881. bottom: 68px;
  1882. width: 60px;
  1883. color: #fff;
  1884. opacity: .1;
  1885. font-size: 60px;
  1886. line-height: 60px;
  1887. vertical-align: middle;
  1888. pointer-events: none;
  1889. }
  1890. .income-trend .index-hd .hd-cell span {
  1891. opacity: .7;
  1892. font-size: 13px;
  1893. }
  1894. .income-trend .index-hd .hd-tab em {
  1895. opacity: .7;
  1896. font-size: 13px;
  1897. }
  1898. .month-row {
  1899. background: #efeff4;
  1900. padding: 2px 15px;
  1901. color: #999;
  1902. }
  1903. .month-text {
  1904. margin-top: 2px;
  1905. font-size: 14px;
  1906. color: #333;
  1907. }
  1908. .month-income {
  1909. font-size: 12px;
  1910. color: #aaa;
  1911. }
  1912. .month-selectDate {
  1913. position: absolute;
  1914. right: 15px;
  1915. top: 10px;
  1916. }
  1917. .mui-table-view-cell.last-child:after {
  1918. left: 0;
  1919. }
  1920. /*****************************测试系统*******************************************/
  1921. .device-test .head-tips {
  1922. text-align: center;
  1923. }
  1924. .device-test .head-tips span {
  1925. display: block;
  1926. }
  1927. .device-test .mui-table-view {
  1928. font-size: 16px;
  1929. }
  1930. /**底部**/
  1931. .device-test .handle-panel {
  1932. position: fixed;
  1933. width: 100%;
  1934. left: 0;
  1935. bottom: 0;
  1936. border-top: 1px solid #ddd;
  1937. display: -webkit-flex;
  1938. display: flex;
  1939. -webkit-align-items: center;
  1940. align-items: center;
  1941. background: #fff;
  1942. }
  1943. .device-test .handle-panel .handle-btn {
  1944. height: 48px;
  1945. line-height: 48px;
  1946. text-align: center;
  1947. font-size: 18px;
  1948. color: #fff;
  1949. flex: 1;
  1950. -webkit-flex: 1;
  1951. }
  1952. .device-test .handle-panel .upper-oper {
  1953. flex: 1;
  1954. -webkit-flex: 1;
  1955. display: -webkit-flex;
  1956. display: flex;
  1957. }
  1958. .device-test .handle-panel .handle-btn-sub {
  1959. padding: 0 10px;
  1960. flex: 1;
  1961. -webkit-flex: 1;
  1962. }
  1963. .device-test .handle-panel .upper-btn {
  1964. background: $default-color;
  1965. width: 100%;
  1966. }
  1967. .device-test .handle-panel .bind-btn {
  1968. background: $default-color;
  1969. width: 100%;
  1970. }
  1971. .device-test .handle-panel .next-btn {
  1972. color: $default-color;
  1973. }
  1974. .device-test .handle-panel .scan-btn {
  1975. background: $alipay-color;
  1976. width: 100%;
  1977. }
  1978. .device-test .handle-panel .mui-input-range input {
  1979. top: -4px;
  1980. }
  1981. .device-test .handle-panel .bind-btn {
  1982. background: $default-color;
  1983. width: 100%;
  1984. }
  1985. /**记录**/
  1986. .result-panel-tips {
  1987. line-height: 30px;
  1988. font-size: 14px;
  1989. text-align: center;
  1990. color: #555;
  1991. margin: 0;
  1992. }
  1993. .result-panel {
  1994. padding: 0 10px;
  1995. font-size: 12px;
  1996. color: #686868;
  1997. position: absolute;
  1998. z-index: -1;
  1999. top: 140px;
  2000. left: 0;
  2001. right: 0;
  2002. bottom: 64px;
  2003. overflow-y: auto;
  2004. }
  2005. .result-list:before, .result-list:after {
  2006. display: none;
  2007. }
  2008. .result-list .mui-table-view-cell {
  2009. padding: 4px 6px;;
  2010. font-size: 12px;
  2011. }
  2012. .result-list .mui-table-view-cell span {
  2013. font-size: 12px;
  2014. }
  2015. .right-menu {
  2016. position: fixed;
  2017. right: -1px;
  2018. background: #fff;
  2019. border: 1px solid #ddd;
  2020. border-radius: 4px 0 0 4px;
  2021. overflow: hidden;
  2022. bottom: 100px;
  2023. /*transition: .12s all ease-in-out;*/
  2024. -webkit-transform: translateX(100%);
  2025. transform: translateX(100%);
  2026. box-shadow: 0 0 10px #ccc;
  2027. }
  2028. .step2 .right-menu {
  2029. -webkit-transform: translateX(0);
  2030. transform: translateX(0);
  2031. }
  2032. .right-menu .menu-item {
  2033. line-height: 40px;
  2034. color: #333;
  2035. padding: 0 8px;
  2036. border-bottom: 1px solid #ddd;
  2037. }
  2038. .right-menu .menu-item:last-child {
  2039. border: none;
  2040. }
  2041. .step2 .scan-btn {
  2042. display: none;
  2043. }
  2044. .device-test .handle-panel .upper-oper {
  2045. display: none;
  2046. }
  2047. .step2.device-test .handle-panel .upper-oper {
  2048. display: -webkit-flex;
  2049. display: flex;
  2050. }
  2051. .mark-list .mark-item {
  2052. border: 1px solid #ccc;
  2053. border-radius: 6px;
  2054. padding: 2px 10px;
  2055. display: inline-block;
  2056. font-size: 14px;
  2057. margin: 8px 8px 0 0;
  2058. }
  2059. .mark-list .mark-item:active {
  2060. border: 1px solid $default-color;
  2061. color: $default-color;
  2062. }
  2063. /***悬浮按钮**/
  2064. .test-fixed-btn {
  2065. position: fixed;
  2066. right: 0;
  2067. top: 40%;
  2068. width: 32px;
  2069. text-align: center;
  2070. border: 1px solid $default-color;
  2071. opacity: .2;
  2072. border-radius: 8px 0 0 8px;
  2073. }
  2074. .test-fixed-btn i {
  2075. font-size: 20px;
  2076. line-height: 32px;
  2077. width: 32px;
  2078. height: 32px;
  2079. display: inline-block;
  2080. }
  2081. .test-fixed-btn.transition {
  2082. transition: all linear 1s;
  2083. }
  2084. .test-fixed-btn.active {
  2085. opacity: 1;
  2086. }
  2087. /******套餐附加参数*******/
  2088. .device-para-row {
  2089. text-align: center;
  2090. margin-bottom: 10px;
  2091. font-size: 16px;
  2092. line-height: 42px;
  2093. border-radius: 3px;
  2094. background: #fff;
  2095. color: $default-color;
  2096. &:last-child {
  2097. margin-bottom: 0;
  2098. }
  2099. .device-para-label {
  2100. width: 38.2%;
  2101. display: block;
  2102. float: left;
  2103. opacity: .8;
  2104. }
  2105. .device-para-select {
  2106. width: 61.8%;
  2107. display: block;
  2108. float: left;
  2109. }
  2110. .mui-icon-arrowright {
  2111. position: absolute;
  2112. font-size: 16px;
  2113. line-height: 42px;
  2114. right: 18px;
  2115. }
  2116. .para-unit {
  2117. position: absolute;
  2118. font-size: 0.28rem;
  2119. line-height: 0.88rem;
  2120. right: 10px;
  2121. }
  2122. input {
  2123. height: 0.88rem;
  2124. width: 61.8%;
  2125. text-align: center;
  2126. border: none;
  2127. margin: 0;
  2128. background: transparent;
  2129. float: left;
  2130. }
  2131. }
  2132. .device-para-grid .para-item.active2 {
  2133. background: $default-color;
  2134. border-color: $default-color;
  2135. color: #fff;
  2136. }
  2137. /* **********
  2138. * 经营统计模块
  2139. * **********/
  2140. .time-bd {
  2141. padding-bottom: 70px;
  2142. -webkit-overflow-scrolling: touch;
  2143. padding-top: 10px;
  2144. /**线条优化*/
  2145. .mui-table-view-cell:after {
  2146. background: #e3e4e5;
  2147. }
  2148. .mui-table-view:before {
  2149. background: #e3e4e5;
  2150. }
  2151. .bd-hd {
  2152. padding: 10px 15px;
  2153. background: #fafafa;
  2154. border: none;
  2155. position: relative;
  2156. }
  2157. .bd-bd:after {
  2158. display: none;
  2159. }
  2160. .mui-table-view.interval p {
  2161. ~ p {
  2162. margin-top: 10px;
  2163. }
  2164. i {
  2165. font-size: 14px;
  2166. }
  2167. }
  2168. .category-list {
  2169. padding: 6px 15px;
  2170. &.mui-active {
  2171. background: #fff;
  2172. }
  2173. a {
  2174. &.mui-active {
  2175. background: #fff;
  2176. }
  2177. margin: 0 -15px;
  2178. }
  2179. }
  2180. }
  2181. .bd-hd p ~ p {
  2182. margin-bottom: 0;
  2183. }
  2184. .groupItem {
  2185. border-radius: 2px;
  2186. overflow: hidden;
  2187. transition: .2s all ease-out;
  2188. box-shadow: 0 0 3px #ccc;
  2189. .iconBack {
  2190. font-size: 100px;
  2191. line-height: 100px;
  2192. position: absolute;
  2193. opacity: .03;
  2194. right: 15px;
  2195. top: 50%;
  2196. -webkit-transform: translateY(-50%);
  2197. transform: translateY(-50%);
  2198. }
  2199. .totalIncome {
  2200. position: absolute;
  2201. right: 15px;
  2202. top: 10px;
  2203. font-size: 14px;
  2204. em {
  2205. font-size: 16px;
  2206. background: #fff;
  2207. padding: 2px 4px;
  2208. border-radius: 4px;
  2209. box-shadow: 0 0 4px #ddd;
  2210. }
  2211. }
  2212. .titleInfo {
  2213. margin-bottom: 0;
  2214. max-width: 58%;
  2215. }
  2216. .bd-bd, .address {
  2217. height: 0;
  2218. opacity: 0;
  2219. transition: .1s all ease-out;
  2220. }
  2221. .address {
  2222. text-overflow: ellipsis;
  2223. white-space: nowrap;
  2224. overflow: hidden;
  2225. }
  2226. // 优化 margin,避免换行时首部空白
  2227. .total-mark {
  2228. margin-right: 5px;
  2229. }
  2230. .mark {
  2231. height: 0;
  2232. opacity: 0;
  2233. transition: .1s all ease-out;
  2234. display: none;
  2235. margin-left: 0;
  2236. margin-right: 5px;
  2237. /*不能占位置,否则总计显示不下**/
  2238. }
  2239. &.active {
  2240. border-radius: 6px;
  2241. .address {
  2242. height: 21px;
  2243. opacity: 1;
  2244. }
  2245. .mark {
  2246. opacity: 1;
  2247. display: inline;
  2248. }
  2249. .titleInfo {
  2250. margin-bottom: 10px;
  2251. }
  2252. .bd-bd {
  2253. opacity: 1;
  2254. height: auto;
  2255. }
  2256. }
  2257. }
  2258. @mixin chart-box() {
  2259. display: none;
  2260. width: 100% !important;
  2261. left: 0 !important;
  2262. top: 0 !important;
  2263. background: #F2F8FC !important;
  2264. color: #666 !important;
  2265. font-size: 12px !important;
  2266. position: absolute !important;
  2267. z-index: 999;
  2268. padding: 5px 10px !important;
  2269. white-space: normal !important;
  2270. }
  2271. .income-panel {
  2272. .time-bd {
  2273. margin-top: 90px;
  2274. }
  2275. .head-status {
  2276. padding: 0 15px;
  2277. line-height: 44px;
  2278. }
  2279. .per-box {
  2280. position: relative;
  2281. perspective: 2000px;
  2282. transform-style: preserve-3d;
  2283. }
  2284. #toggleCategory {
  2285. height: 44px;
  2286. width: 80px;
  2287. transition: .2s all linear;
  2288. transform-style: preserve-3d;
  2289. }
  2290. #toggleCategory.rotate {
  2291. transform: rotateX(180deg);
  2292. // 在安卓下,不用隐藏也是正常的,IOS下不隐藏会遮住第二个按钮
  2293. .mui-btn:nth-child(1) {
  2294. opacity: 0;
  2295. }
  2296. }
  2297. .head-status {
  2298. .mui-btn {
  2299. line-height: 30px;
  2300. padding: 0 12px;
  2301. border: none;
  2302. background: $default-color;
  2303. color: #fff;
  2304. margin-top: 7px;
  2305. position: absolute;
  2306. transform-style: preserve-3d;
  2307. }
  2308. .mui-btn:nth-child(2) {
  2309. transform: rotateX(180deg);
  2310. background: $default-color-red !important;
  2311. }
  2312. }
  2313. /**卡片样式**/
  2314. #pullrefresh {
  2315. width: 100%;
  2316. left: 0;
  2317. }
  2318. .list {
  2319. padding: 0 10px;
  2320. }
  2321. #pieChart {
  2322. visibility: hidden;
  2323. width: 100%;
  2324. z-index: 3;
  2325. background: #fff;
  2326. height: 320px;
  2327. position: absolute;
  2328. top: 90px;
  2329. }
  2330. .icon-chart-pie {
  2331. color: #999;
  2332. }
  2333. &.chart-active {
  2334. .icon-chart-pie {
  2335. color: $default-color;
  2336. }
  2337. #pullrefresh {
  2338. display: none;
  2339. }
  2340. #pieChart {
  2341. visibility: visible;
  2342. }
  2343. }
  2344. /*强改echarts样式*/
  2345. .chart-box div:last-child {
  2346. @include chart-box;
  2347. }
  2348. }
  2349. // 收益详情
  2350. .income-trend {
  2351. .incomeTypeList.mui-button-row .mui-btn.active {
  2352. background: #fff;
  2353. }
  2354. .consumeTypeList.mui-button-row .mui-btn.active {
  2355. background: #fff;
  2356. }
  2357. #filterPanel2 {
  2358. .mui-button-row:first-child {
  2359. padding-top: 10px;
  2360. }
  2361. .mui-button-row:last-child {
  2362. padding-bottom: 10px;
  2363. }
  2364. .mui-btn {
  2365. padding-left: 8px;
  2366. padding-right: 8px;
  2367. }
  2368. .mui-button-row {
  2369. padding: 5px 10px;
  2370. }
  2371. }
  2372. }
  2373. // 收益按时间统计
  2374. .income-time {
  2375. .index-hd {
  2376. border-radius: 6px;
  2377. overflow: hidden;
  2378. margin: 12px;
  2379. }
  2380. .chart-box {
  2381. visibility: hidden;
  2382. position: absolute;
  2383. width: 100%;
  2384. min-height: 320px;
  2385. z-index: 1;
  2386. }
  2387. .chart-active .chart-box ~ * {
  2388. display: none;
  2389. }
  2390. .chart-active .chart-box {
  2391. visibility: visible;
  2392. }
  2393. .icon-chart-line {
  2394. color: #aaa;
  2395. }
  2396. .icon-chart-line.active {
  2397. color: $default-color;
  2398. }
  2399. /*强改echarts样式*/
  2400. .chart-box div:last-child {
  2401. @include chart-box;
  2402. br {
  2403. display: none;
  2404. }
  2405. span {
  2406. margin-left: 10px;
  2407. }
  2408. }
  2409. }
  2410. /* ********************
  2411. * 营销活动
  2412. * ********************/
  2413. .marketing-edit {
  2414. #editMarketingPanel {
  2415. padding-bottom: 61px;
  2416. }
  2417. .mui-checkbox label {
  2418. padding-right: 35px;
  2419. }
  2420. .deviceList {
  2421. padding: 0 !important;
  2422. }
  2423. .deviceList .checkbox-btn {
  2424. top: 6px !important;
  2425. right: 0 !important;;
  2426. }
  2427. .deviceList .dev-select-row {
  2428. line-height: 44px;
  2429. padding: 0 12px !important;
  2430. }
  2431. .deviceList > .mui-table-view-cell:after, .group-container > .mui-table-view-cell:after {
  2432. left: 0;
  2433. }
  2434. /*每组最后一个设备需要线条隔开*/
  2435. .deviceList .dev-select-row.mui-table-view-cell:last-child:after {
  2436. height: 1px;
  2437. left: 0;
  2438. }
  2439. .deviceList .group-container:last-child .group-list-container .mui-table-view-cell:last-child:after {
  2440. height: 0;
  2441. }
  2442. /*单位*/
  2443. .input-unit {
  2444. position: absolute;
  2445. font-size: 14px;
  2446. z-index: 1;
  2447. right: 0;
  2448. width: 44px;
  2449. height: 44px;
  2450. line-height: 44px;
  2451. text-align: center;
  2452. color: #999;
  2453. }
  2454. }
  2455. /********流量卡充值**********/
  2456. /**表格*/
  2457. .charge-list {
  2458. .pullrefresh {
  2459. overflow-y: auto;
  2460. position: absolute;
  2461. top: 54px;
  2462. left: 0;
  2463. right: 0;
  2464. bottom: 1rem;
  2465. }
  2466. .scrollload-content {
  2467. top: 1px; //让顶部线条显示
  2468. }
  2469. .pullrefresh.full {
  2470. top: 0;
  2471. }
  2472. .mui-checkbox input {
  2473. top: auto;
  2474. right: auto;
  2475. position: relative;
  2476. }
  2477. }
  2478. /*卡片布局*/
  2479. .charge-card {
  2480. padding: 0;
  2481. .card-item {
  2482. display: flex;
  2483. .card-cb {
  2484. width: 40px;
  2485. .checkbox-btn {
  2486. width: 100%;
  2487. height: 100%;
  2488. position: absolute;
  2489. &:before {
  2490. width: 100%;
  2491. height: 100%;
  2492. line-height: 60px;
  2493. left: 10px;
  2494. position: relative;
  2495. }
  2496. }
  2497. }
  2498. .card-detail {
  2499. flex: 1;
  2500. display: flex;
  2501. font-size: 12px;
  2502. p {
  2503. font-size: 12px;
  2504. }
  2505. .card-img {
  2506. width: 56px;
  2507. text-align: center;
  2508. .iconfont {
  2509. line-height: 60px;
  2510. font-size: 32px;
  2511. }
  2512. }
  2513. .card-info {
  2514. flex: 1;
  2515. padding: 10px 15px;
  2516. .title {
  2517. color: #051b28;
  2518. overflow: hidden;
  2519. line-clamp: 2;
  2520. box-orient: vertical;
  2521. word-break: break-all;
  2522. font-size: 14px;
  2523. }
  2524. .price-box {
  2525. float: right;
  2526. .price {
  2527. font-size: 16px;
  2528. }
  2529. }
  2530. .expire-date, .price {
  2531. margin-top: 2px;
  2532. }
  2533. }
  2534. }
  2535. }
  2536. }
  2537. .group-card-list{
  2538. background: transparent;
  2539. }
  2540. .group-split {
  2541. margin-bottom: 10px;
  2542. background: #fff;
  2543. .group-name {
  2544. padding: 8px 15px;
  2545. font-size: 18px;
  2546. }
  2547. }
  2548. /**底部**/
  2549. .charge-list {
  2550. .handle-panel {
  2551. position: fixed;
  2552. width: 100%;
  2553. left: 0;
  2554. bottom: 0;
  2555. display: -webkit-flex;
  2556. display: flex;
  2557. -webkit-align-items: center;
  2558. align-items: center;
  2559. .handle-btn {
  2560. line-height: 48px;
  2561. text-align: center;
  2562. font-size: 14px;
  2563. padding: 0 22px;
  2564. color: #fff;
  2565. }
  2566. .detail-btn {
  2567. flex: 1;
  2568. -webkit-flex: 1;
  2569. display: flex;
  2570. font-size: 12px;
  2571. background: #fff;
  2572. padding: 0;
  2573. }
  2574. }
  2575. .checkbox-all-lb {
  2576. width: 2em;
  2577. font-size: 14px;
  2578. color: #888;
  2579. }
  2580. .checked-detail {
  2581. flex: 1;
  2582. display: block;
  2583. text-align: right;
  2584. padding-right: 10px;
  2585. }
  2586. .checked-num {
  2587. color: #051b28;
  2588. }
  2589. .checked-price {
  2590. font-size: 16px;
  2591. }
  2592. .checkbox-all-wear {
  2593. white-space: nowrap;
  2594. width: 32px;
  2595. @include box-center;
  2596. input {
  2597. width: auto;
  2598. height: auto;
  2599. top: -2px;
  2600. }
  2601. * {
  2602. padding: 0;
  2603. font-size: 14px;
  2604. vertical-align: middle;
  2605. }
  2606. }
  2607. }
  2608. /**********订单中心样式,主要是设备选择**************/
  2609. .set-condition {
  2610. width: 100%;
  2611. max-width: 7.5rem;
  2612. margin: 0 auto;
  2613. /*选择设备弹窗*/
  2614. .ellipsis {
  2615. overflow: hidden;
  2616. white-space: nowrap;
  2617. text-overflow: ellipsis;
  2618. }
  2619. .date-panel {
  2620. background: #fff;
  2621. .date-num {
  2622. border-bottom: 1px solid #E5E5E5;
  2623. > ul {
  2624. padding: 0.14rem 0.1rem;
  2625. li {
  2626. margin: 0rem 0.1rem;
  2627. border: 1px solid #E5E5E5;
  2628. text-align: center;
  2629. height: 0.6rem;
  2630. line-height: 0.6rem;
  2631. font-size: 0.32rem;
  2632. color: #999;
  2633. border-radius: 0.04rem;
  2634. &.active {
  2635. color: $default-color;
  2636. border: 0.02rem solid $default-color;
  2637. }
  2638. }
  2639. }
  2640. }
  2641. .select-date {
  2642. padding: 0rem 0.16rem;
  2643. height: 0.88rem;
  2644. line-height: 0.88rem;
  2645. font-size: 0.32rem;
  2646. .label-text {
  2647. color: #000;
  2648. }
  2649. .selected-text {
  2650. padding-left: 0.36rem;
  2651. color: #000;
  2652. }
  2653. + .select-date {
  2654. border-top: 1px solid #E5E5E5;
  2655. }
  2656. }
  2657. }
  2658. .tips-text {
  2659. padding: 0.08rem 0rem 0rem 0.2rem;
  2660. font-size: 0.26rem;
  2661. color: #666;
  2662. }
  2663. .other-con-panel {
  2664. margin-top: 0.28rem;
  2665. background: #fff;
  2666. > li {
  2667. display: none;
  2668. height: 0.88rem;
  2669. line-height: 0.88rem;
  2670. font-size: 0.32rem;
  2671. padding: 0rem 0.16rem;
  2672. .label-text {
  2673. float: left;
  2674. color: #000;
  2675. }
  2676. .selected-text {
  2677. display: inline-block;
  2678. max-width: 4.6rem;
  2679. overflow: hidden;
  2680. white-space: nowrap;
  2681. text-overflow: ellipsis;
  2682. padding-left: 0.98rem;
  2683. color: #000;
  2684. }
  2685. + li {
  2686. border-top: 1px solid #E5E5E5;
  2687. }
  2688. }
  2689. }
  2690. .page-modal {
  2691. display: none;
  2692. max-width: 7.5rem;
  2693. margin: 0 auto;
  2694. position: fixed;
  2695. z-index: 99;
  2696. top: 0rem;
  2697. left: 0rem;
  2698. width: 100%;
  2699. height: 100%;
  2700. background: #F0EFF5;
  2701. overflow: auto;
  2702. /*-----自定义滚动条----*/
  2703. ::-webkit-scrollbar-thumb {
  2704. border-radius: 6px;
  2705. -moz-border-radius: 6px;
  2706. -webkit-border-radius: 6px;
  2707. background-color: rgba(0, 0, 0, 0.5);
  2708. transition: all .3s;
  2709. &:hover {
  2710. background-color: rgba(0, 0, 0, 0.6);
  2711. }
  2712. }
  2713. ::-webkit-scrollbar {
  2714. width: 6px;
  2715. height: 6px;
  2716. }
  2717. ::-webkit-scrollbar-track {
  2718. background-color: transparent;
  2719. }
  2720. .modal-content {
  2721. padding-bottom: 1.2rem;
  2722. .panel-header {
  2723. .title {
  2724. font-size: 0.34rem;
  2725. color: #000;
  2726. }
  2727. .tips-text {
  2728. margin: 0rem;
  2729. padding: 0rem;
  2730. font-size: 0.26rem;
  2731. color: #666;
  2732. }
  2733. .select-all {
  2734. display: inline-block;
  2735. border: 1px solid #E5E5E5;
  2736. font-size: 0.28rem;
  2737. border-radius: 0.1rem;
  2738. padding: 0.04rem 0.2rem;
  2739. margin-left: 0.58rem;
  2740. &.active {
  2741. background: $default-color;
  2742. color: #fff;
  2743. }
  2744. }
  2745. }
  2746. .doll-machine-panel {
  2747. display: none;
  2748. background: #fff;
  2749. padding: 0.2rem;
  2750. .panel-content {
  2751. padding: 0.28rem 0rem;
  2752. table {
  2753. border-top: 1px solid #E5E5E5;
  2754. border-left: 1px solid #E5E5E5;
  2755. tbody tr td {
  2756. padding: 0rem 0.1rem;
  2757. width: 1.14rem;
  2758. height: 1.14rem;
  2759. vertical-align: middle;
  2760. text-align: center;
  2761. font-size: 0.34rem;
  2762. color: #000;
  2763. border-right: 1px solid #E5E5E5;
  2764. border-bottom: 1px solid #E5E5E5;
  2765. &.invisible {
  2766. display: none;
  2767. }
  2768. &:acitve {
  2769. background: #eee;
  2770. }
  2771. &.active {
  2772. background: $default-color;
  2773. color: #fff;
  2774. }
  2775. &.load-btn {
  2776. background: #E5E5E5;
  2777. }
  2778. }
  2779. }
  2780. }
  2781. }
  2782. }
  2783. .modal-footer {
  2784. position: fixed;
  2785. left: 0rem;
  2786. bottom: 0rem;
  2787. width: 100%;
  2788. height: 1rem;
  2789. background: #fff;
  2790. a {
  2791. font-size: 0.34rem;
  2792. line-height: 1rem;
  2793. text-align: center;
  2794. &.cancel-btn {
  2795. border-top: 1px solid #E5E5E5;
  2796. color: #000;
  2797. }
  2798. &.confirm-btn {
  2799. color: #fff;
  2800. border-top: 0.02rem solid $default-color;
  2801. background: $default-color;
  2802. }
  2803. }
  2804. }
  2805. }
  2806. }
  2807. /*覆盖weui样式*/
  2808. #weui-picker-confirm {
  2809. color: $default-color !important;
  2810. }
  2811. @media screen and (max-width: 332px) {
  2812. .set-condition .page-modal .modal-content .panel-header .select-all {
  2813. margin-left: 0.2rem;
  2814. }
  2815. .wechatTrxid-font {
  2816. font-size: 13px !important;
  2817. }
  2818. }
  2819. //自定义 switch 开关
  2820. .switch {
  2821. position: absolute;
  2822. top: 50%;
  2823. right: 15px;
  2824. width: 74px;
  2825. height: 30px;
  2826. -webkit-transition-timing-function: ease-in-out;
  2827. transition-timing-function: ease-in-out;
  2828. -webkit-transition-duration: .2s;
  2829. transition-duration: .2s;
  2830. -webkit-transition-property: background-color, border;
  2831. transition-property: background-color, border;
  2832. -webkit-transform: translateY(-50%);
  2833. transform: translateY(-50%);
  2834. border: 2px solid #ddd;
  2835. border-radius: 20px;
  2836. background-color: #fff;
  2837. background-clip: padding-box;
  2838. }
  2839. .switch .switch-handle {
  2840. position: absolute;
  2841. z-index: 1;
  2842. top: -1px;
  2843. left: -1px;
  2844. width: 28px;
  2845. height: 28px;
  2846. -webkit-transition: .2s ease-in-out;
  2847. transition: .2s ease-in-out;
  2848. -webkit-transition-property: -webkit-transform, width, left;
  2849. transition-property: transform, width, left;
  2850. border-radius: 16px;
  2851. background-color: #fff;
  2852. background-clip: padding-box;
  2853. -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .4);
  2854. box-shadow: 0 2px 5px rgba(0, 0, 0, .4);
  2855. }
  2856. .switch.active {
  2857. border-color: $default-color;
  2858. background-color: $default-color;
  2859. }
  2860. .switch-mini {
  2861. width: 47px;
  2862. }
  2863. .switch-mini:before {
  2864. display: none;
  2865. }
  2866. .switch-mini.active .switch-handle {
  2867. -webkit-transform: translate(16px, 0);
  2868. transform: translate(16px, 0);
  2869. }
  2870. /*****代理商给经销商提现******/
  2871. .dealer-wallet-detail {
  2872. * {
  2873. /**便于复制银行信息**/
  2874. -webkit-user-select: text !important;
  2875. }
  2876. .status0 {
  2877. color: $alipay-color !important;
  2878. }
  2879. .status1 {
  2880. color: $default-color-green !important;
  2881. }
  2882. .status3 {
  2883. color: $default-color-red !important;
  2884. }
  2885. .custom-subt input[type='button'].mui-btn-danger {
  2886. background-color: $default-color-red;
  2887. }
  2888. .max-width-7 {
  2889. max-width: 70%;
  2890. word-break: break-all;
  2891. }
  2892. .mui-table-view-cell {
  2893. color: #888;
  2894. font-size: 14px;
  2895. padding: 9px 15px;
  2896. }
  2897. .mui-table-view-cell .mui-pull-right {
  2898. color: #444;
  2899. }
  2900. .bank-logo {
  2901. display: inline-block;
  2902. }
  2903. .bank-logo svg {
  2904. width: 18px;
  2905. height: 18px;
  2906. top: 3.5px;
  2907. position: relative;
  2908. }
  2909. /*退单原因样式*/
  2910. .reason-list i {
  2911. color: #666;
  2912. border: 1px solid #999;
  2913. border-radius: 4px;
  2914. padding: 2px 5px;
  2915. font-size: 12px;
  2916. margin: 4px;
  2917. display: inline-block;
  2918. }
  2919. }
  2920. //银行卡的公共样式
  2921. .card-ul {
  2922. color: #fff;
  2923. padding: 10px;
  2924. a {
  2925. color: #fff;
  2926. }
  2927. .card-text-info {
  2928. display: block;
  2929. padding: 10px 10px 10px 50px;
  2930. position: relative;
  2931. }
  2932. &.card-ticket-ul .card-text-info {
  2933. min-height: 100px;
  2934. }
  2935. li {
  2936. border-radius: 10px;
  2937. margin-bottom: 10px;
  2938. position: relative;
  2939. overflow: hidden;
  2940. &:last-child {
  2941. margin-bottom: 0;
  2942. }
  2943. &.pause {
  2944. > * {
  2945. filter: opacity(.32);
  2946. }
  2947. }
  2948. }
  2949. .name {
  2950. font-size: 14px;
  2951. line-height: 18px;
  2952. }
  2953. .type {
  2954. font-size: 12px;
  2955. line-height: 18px;
  2956. opacity: .6;
  2957. }
  2958. .card-id {
  2959. font-size: 24px;
  2960. line-height: 36px;
  2961. text-align: left;
  2962. em {
  2963. margin-top: 6px;
  2964. }
  2965. }
  2966. .card-logo {
  2967. position: absolute;
  2968. left: 10px;
  2969. top: 10px;
  2970. background: rgba(255, 255, 255, .68);
  2971. width: 32px;
  2972. height: 32px;
  2973. line-height: 32px;
  2974. text-align: center;
  2975. border-radius: 50%;
  2976. svg {
  2977. width: 22px;
  2978. height: 22px;
  2979. top: 5px;
  2980. position: relative;
  2981. }
  2982. }
  2983. .card-logo-back {
  2984. position: absolute;
  2985. right: 42px;
  2986. width: 120px;
  2987. color: #fff;
  2988. opacity: .15;
  2989. font-size: 120px;
  2990. line-height: 120px;
  2991. vertical-align: middle;
  2992. pointer-events: none;
  2993. top: 50%;
  2994. transform: translateY(-50%);
  2995. z-index: 1;
  2996. }
  2997. .bank-logo-back {
  2998. //变灰—>变白
  2999. filter: grayscale(1) brightness(10);
  3000. svg {
  3001. width: 1em;
  3002. }
  3003. }
  3004. .desc {
  3005. font-size: 12px;
  3006. line-height: 16px;
  3007. max-height: 32px;
  3008. margin: 4px 0;
  3009. overflow: hidden;
  3010. text-overflow: ellipsis;
  3011. }
  3012. //卡券可用次数
  3013. .count {
  3014. line-height: 22px;
  3015. strong {
  3016. font-size: 12px;
  3017. font-weight: normal;
  3018. }
  3019. em {
  3020. font-size: 14px;
  3021. }
  3022. }
  3023. //卡券的价格
  3024. .price {
  3025. position: absolute;
  3026. right: 10px;
  3027. bottom: 5px;
  3028. strong {
  3029. font-size: 12px;
  3030. font-weight: normal;
  3031. }
  3032. em {
  3033. font-size: 16px;
  3034. }
  3035. }
  3036. }
  3037. .add-card-btn {
  3038. background: #36393A;
  3039. color: #8B8B8B;
  3040. font-size: 16px;
  3041. line-height: 40px;
  3042. position: relative;
  3043. padding-left: 12px;
  3044. }
  3045. .sp-radio-row {
  3046. &:after {
  3047. display: none;
  3048. }
  3049. span {
  3050. vertical-align: middle;
  3051. }
  3052. .mui-radio * {
  3053. vertical-align: middle;
  3054. top: 0;
  3055. }
  3056. .mui-radio input {
  3057. top: 0 !important;
  3058. }
  3059. }
  3060. .device-param-form,
  3061. .service-param-form {
  3062. .mui-input-row {
  3063. > label {
  3064. //主要是有些标签太长 需要加宽度
  3065. width: 65%;
  3066. }
  3067. > {
  3068. input[type='text'], input[type='password'], input[type='number'], input[type='tel'], input[type='time'] {
  3069. width: 35%;
  3070. text-align: right;
  3071. font-size: 15px;
  3072. color: #000;
  3073. }
  3074. }
  3075. .mui-numbox-container{
  3076. width: 35%;
  3077. float: right;
  3078. }
  3079. .mui-numbox{
  3080. margin: 2px 0;
  3081. width: 100%;
  3082. padding: 0 32px;
  3083. }
  3084. .mui-numbox [class*=numbox-btn]{
  3085. width: 32px;
  3086. }
  3087. }
  3088. .mui-input-row-50-50 {
  3089. > label {
  3090. width: 50%;
  3091. }
  3092. > {
  3093. input[type='text'], input[type='password'], input[type='number'], input[type='tel'], input[type='time'],.mui-numbox-container {
  3094. width: 50%;
  3095. }
  3096. }
  3097. }
  3098. .edit-box{
  3099. .mui-input-row {
  3100. > label {
  3101. // 避免影响弹窗编辑时的宽度
  3102. width: auto;
  3103. }
  3104. }
  3105. }
  3106. .has-unit {
  3107. padding-right: 30px;
  3108. }
  3109. .input-unit {
  3110. position: absolute;
  3111. right: 15px;
  3112. top: 12px;
  3113. font-size: 12px;
  3114. color: #000;
  3115. }
  3116. }
  3117. .package-component {
  3118. .mark {
  3119. font-size: 14px;
  3120. line-height: 16px;
  3121. height: 18px;
  3122. margin-left: 0;
  3123. margin-right: 5px;
  3124. }
  3125. .btn-group em {
  3126. font-size: 12px;
  3127. padding-top: 10px;
  3128. padding-bottom: 10px;
  3129. ~ em {
  3130. margin-left: 5px;
  3131. }
  3132. }
  3133. .p-title-row {
  3134. .switch {
  3135. top: 12px;
  3136. transform: translateY(0%);
  3137. }
  3138. }
  3139. .p-title {
  3140. width: calc(100% - 64px);
  3141. }
  3142. }
  3143. .mui-input-row .mini-unit {
  3144. position: absolute;
  3145. right: 10px;
  3146. top: 12px;
  3147. font-size: 12px;
  3148. }