layui.css 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235
  1. /** layui-v2.4.5 MIT License By https://www.layui.com */
  2. .layui-inline,
  3. img {
  4. display: inline-block;
  5. vertical-align: middle
  6. }
  7. h1,
  8. h2,
  9. h3,
  10. h4,
  11. h5,
  12. h6 {
  13. font-weight: 400
  14. }
  15. .layui-edge,
  16. .layui-header,
  17. .layui-inline,
  18. .layui-main {
  19. position: relative
  20. }
  21. .layui-elip,
  22. .layui-form-checkbox span,
  23. .layui-form-pane .layui-form-label {
  24. text-overflow: ellipsis;
  25. white-space: nowrap
  26. }
  27. .layui-btn,
  28. .layui-edge,
  29. .layui-inline,
  30. img {
  31. vertical-align: middle
  32. }
  33. .layui-btn,
  34. .layui-disabled,
  35. .layui-icon,
  36. .layui-unselect {
  37. -webkit-user-select: none;
  38. -ms-user-select: none;
  39. -moz-user-select: none
  40. }
  41. blockquote,
  42. body,
  43. button,
  44. dd,
  45. div,
  46. dl,
  47. dt,
  48. form,
  49. h1,
  50. h2,
  51. h3,
  52. h4,
  53. h5,
  54. h6,
  55. input,
  56. li,
  57. ol,
  58. p,
  59. pre,
  60. td,
  61. textarea,
  62. th,
  63. ul {
  64. margin: 0;
  65. padding: 0;
  66. -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
  67. }
  68. a:active,
  69. a:hover {
  70. outline: 0
  71. }
  72. img {
  73. border: none
  74. }
  75. li {
  76. list-style: none
  77. }
  78. table {
  79. border-collapse: collapse;
  80. border-spacing: 0
  81. }
  82. h4,
  83. h5,
  84. h6 {
  85. font-size: 100%
  86. }
  87. button,
  88. input,
  89. optgroup,
  90. option,
  91. select,
  92. textarea {
  93. font-family: inherit;
  94. font-size: inherit;
  95. font-style: inherit;
  96. font-weight: inherit;
  97. outline: 0
  98. }
  99. pre {
  100. white-space: pre-wrap;
  101. white-space: -moz-pre-wrap;
  102. white-space: -pre-wrap;
  103. white-space: -o-pre-wrap;
  104. word-wrap: break-word
  105. }
  106. body {
  107. line-height: 24px;
  108. font: 14px Helvetica Neue, Helvetica, PingFang SC, Tahoma, Arial, sans-serif
  109. }
  110. hr {
  111. height: 1px;
  112. margin: 10px 0;
  113. border: 0;
  114. clear: both
  115. }
  116. a {
  117. color: #333;
  118. text-decoration: none
  119. }
  120. a:hover {
  121. color: #777
  122. }
  123. a cite {
  124. font-style: normal;
  125. *cursor: pointer
  126. }
  127. .layui-border-box,
  128. .layui-border-box * {
  129. box-sizing: border-box
  130. }
  131. .layui-box,
  132. .layui-box * {
  133. box-sizing: content-box
  134. }
  135. .layui-clear {
  136. clear: both;
  137. *zoom: 1
  138. }
  139. .layui-clear:after {
  140. content: '\20';
  141. clear: both;
  142. *zoom: 1;
  143. display: block;
  144. height: 0
  145. }
  146. .layui-inline {
  147. *display: inline;
  148. *zoom: 1
  149. }
  150. .layui-edge {
  151. display: inline-block;
  152. width: 0;
  153. height: 0;
  154. border-width: 6px;
  155. border-style: dashed;
  156. border-color: transparent;
  157. overflow: hidden
  158. }
  159. .layui-edge-top {
  160. top: -4px;
  161. border-bottom-color: #999;
  162. border-bottom-style: solid
  163. }
  164. .layui-edge-right {
  165. border-left-color: #999;
  166. border-left-style: solid
  167. }
  168. .layui-edge-bottom {
  169. top: 2px;
  170. border-top-color: #999;
  171. border-top-style: solid
  172. }
  173. .layui-edge-left {
  174. border-right-color: #999;
  175. border-right-style: solid
  176. }
  177. .layui-elip {
  178. overflow: hidden
  179. }
  180. .layui-disabled,
  181. .layui-disabled:hover {
  182. color: #d2d2d2 !important;
  183. cursor: not-allowed !important
  184. }
  185. .layui-circle {
  186. border-radius: 100%
  187. }
  188. .layui-show {
  189. display: block !important
  190. }
  191. .layui-hide {
  192. display: none !important
  193. }
  194. @font-face {
  195. font-family: layui-icon;
  196. src: url(../font/iconfont.eot?v=240);
  197. src: url(../font/iconfont.eot?v=240#iefix) format('embedded-opentype'), url(../font/iconfont.svg?v=240#iconfont) format('svg'), url(../font/iconfont.woff?v=240) format('woff'), url(../font/iconfont.ttf?v=240) format('truetype')
  198. }
  199. .layui-icon {
  200. font-family: layui-icon !important;
  201. font-size: 16px;
  202. font-style: normal;
  203. -webkit-font-smoothing: antialiased;
  204. -moz-osx-font-smoothing: grayscale
  205. }
  206. .layui-icon-reply-fill:before {
  207. content: "\e611"
  208. }
  209. .layui-icon-set-fill:before {
  210. content: "\e614"
  211. }
  212. .layui-icon-menu-fill:before {
  213. content: "\e60f"
  214. }
  215. .layui-icon-search:before {
  216. content: "\e615"
  217. }
  218. .layui-icon-share:before {
  219. content: "\e641"
  220. }
  221. .layui-icon-set-sm:before {
  222. content: "\e620"
  223. }
  224. .layui-icon-engine:before {
  225. content: "\e628"
  226. }
  227. .layui-icon-close:before {
  228. content: "\1006"
  229. }
  230. .layui-icon-close-fill:before {
  231. content: "\1007"
  232. }
  233. .layui-icon-chart-screen:before {
  234. content: "\e629"
  235. }
  236. .layui-icon-star:before {
  237. content: "\e600"
  238. }
  239. .layui-icon-circle-dot:before {
  240. content: "\e617"
  241. }
  242. .layui-icon-chat:before {
  243. content: "\e606"
  244. }
  245. .layui-icon-release:before {
  246. content: "\e609"
  247. }
  248. .layui-icon-list:before {
  249. content: "\e60a"
  250. }
  251. .layui-icon-chart:before {
  252. content: "\e62c"
  253. }
  254. .layui-icon-ok-circle:before {
  255. content: "\1005"
  256. }
  257. .layui-icon-layim-theme:before {
  258. content: "\e61b"
  259. }
  260. .layui-icon-table:before {
  261. content: "\e62d"
  262. }
  263. .layui-icon-right:before {
  264. content: "\e602"
  265. }
  266. .layui-icon-left:before {
  267. content: "\e603"
  268. }
  269. .layui-icon-cart-simple:before {
  270. content: "\e698"
  271. }
  272. .layui-icon-face-cry:before {
  273. content: "\e69c"
  274. }
  275. .layui-icon-face-smile:before {
  276. content: "\e6af"
  277. }
  278. .layui-icon-survey:before {
  279. content: "\e6b2"
  280. }
  281. .layui-icon-tree:before {
  282. content: "\e62e"
  283. }
  284. .layui-icon-upload-circle:before {
  285. content: "\e62f"
  286. }
  287. .layui-icon-add-circle:before {
  288. content: "\e61f"
  289. }
  290. .layui-icon-download-circle:before {
  291. content: "\e601"
  292. }
  293. .layui-icon-templeate-1:before {
  294. content: "\e630"
  295. }
  296. .layui-icon-util:before {
  297. content: "\e631"
  298. }
  299. .layui-icon-face-surprised:before {
  300. content: "\e664"
  301. }
  302. .layui-icon-edit:before {
  303. content: "\e642"
  304. }
  305. .layui-icon-speaker:before {
  306. content: "\e645"
  307. }
  308. .layui-icon-down:before {
  309. content: "\e61a"
  310. }
  311. .layui-icon-file:before {
  312. content: "\e621"
  313. }
  314. .layui-icon-layouts:before {
  315. content: "\e632"
  316. }
  317. .layui-icon-rate-half:before {
  318. content: "\e6c9"
  319. }
  320. .layui-icon-add-circle-fine:before {
  321. content: "\e608"
  322. }
  323. .layui-icon-prev-circle:before {
  324. content: "\e633"
  325. }
  326. .layui-icon-read:before {
  327. content: "\e705"
  328. }
  329. .layui-icon-404:before {
  330. content: "\e61c"
  331. }
  332. .layui-icon-carousel:before {
  333. content: "\e634"
  334. }
  335. .layui-icon-help:before {
  336. content: "\e607"
  337. }
  338. .layui-icon-code-circle:before {
  339. content: "\e635"
  340. }
  341. .layui-icon-water:before {
  342. content: "\e636"
  343. }
  344. .layui-icon-username:before {
  345. content: "\e66f"
  346. }
  347. .layui-icon-find-fill:before {
  348. content: "\e670"
  349. }
  350. .layui-icon-about:before {
  351. content: "\e60b"
  352. }
  353. .layui-icon-location:before {
  354. content: "\e715"
  355. }
  356. .layui-icon-up:before {
  357. content: "\e619"
  358. }
  359. .layui-icon-pause:before {
  360. content: "\e651"
  361. }
  362. .layui-icon-date:before {
  363. content: "\e637"
  364. }
  365. .layui-icon-layim-uploadfile:before {
  366. content: "\e61d"
  367. }
  368. .layui-icon-delete:before {
  369. content: "\e640"
  370. }
  371. .layui-icon-play:before {
  372. content: "\e652"
  373. }
  374. .layui-icon-top:before {
  375. content: "\e604"
  376. }
  377. .layui-icon-friends:before {
  378. content: "\e612"
  379. }
  380. .layui-icon-refresh-3:before {
  381. content: "\e9aa"
  382. }
  383. .layui-icon-ok:before {
  384. content: "\e605"
  385. }
  386. .layui-icon-layer:before {
  387. content: "\e638"
  388. }
  389. .layui-icon-face-smile-fine:before {
  390. content: "\e60c"
  391. }
  392. .layui-icon-dollar:before {
  393. content: "\e659"
  394. }
  395. .layui-icon-group:before {
  396. content: "\e613"
  397. }
  398. .layui-icon-layim-download:before {
  399. content: "\e61e"
  400. }
  401. .layui-icon-picture-fine:before {
  402. content: "\e60d"
  403. }
  404. .layui-icon-link:before {
  405. content: "\e64c"
  406. }
  407. .layui-icon-diamond:before {
  408. content: "\e735"
  409. }
  410. .layui-icon-log:before {
  411. content: "\e60e"
  412. }
  413. .layui-icon-rate-solid:before {
  414. content: "\e67a"
  415. }
  416. .layui-icon-fonts-del:before {
  417. content: "\e64f"
  418. }
  419. .layui-icon-unlink:before {
  420. content: "\e64d"
  421. }
  422. .layui-icon-fonts-clear:before {
  423. content: "\e639"
  424. }
  425. .layui-icon-triangle-r:before {
  426. content: "\e623"
  427. }
  428. .layui-icon-circle:before {
  429. content: "\e63f"
  430. }
  431. .layui-icon-radio:before {
  432. content: "\e643"
  433. }
  434. .layui-icon-align-center:before {
  435. content: "\e647"
  436. }
  437. .layui-icon-align-right:before {
  438. content: "\e648"
  439. }
  440. .layui-icon-align-left:before {
  441. content: "\e649"
  442. }
  443. .layui-icon-loading-1:before {
  444. content: "\e63e"
  445. }
  446. .layui-icon-return:before {
  447. content: "\e65c"
  448. }
  449. .layui-icon-fonts-strong:before {
  450. content: "\e62b"
  451. }
  452. .layui-icon-upload:before {
  453. content: "\e67c"
  454. }
  455. .layui-icon-dialogue:before {
  456. content: "\e63a"
  457. }
  458. .layui-icon-video:before {
  459. content: "\e6ed"
  460. }
  461. .layui-icon-headset:before {
  462. content: "\e6fc"
  463. }
  464. .layui-icon-cellphone-fine:before {
  465. content: "\e63b"
  466. }
  467. .layui-icon-add-1:before {
  468. content: "\e654"
  469. }
  470. .layui-icon-face-smile-b:before {
  471. content: "\e650"
  472. }
  473. .layui-icon-fonts-html:before {
  474. content: "\e64b"
  475. }
  476. .layui-icon-form:before {
  477. content: "\e63c"
  478. }
  479. .layui-icon-cart:before {
  480. content: "\e657"
  481. }
  482. .layui-icon-camera-fill:before {
  483. content: "\e65d"
  484. }
  485. .layui-icon-tabs:before {
  486. content: "\e62a"
  487. }
  488. .layui-icon-fonts-code:before {
  489. content: "\e64e"
  490. }
  491. .layui-icon-fire:before {
  492. content: "\e756"
  493. }
  494. .layui-icon-set:before {
  495. content: "\e716"
  496. }
  497. .layui-icon-fonts-u:before {
  498. content: "\e646"
  499. }
  500. .layui-icon-triangle-d:before {
  501. content: "\e625"
  502. }
  503. .layui-icon-tips:before {
  504. content: "\e702"
  505. }
  506. .layui-icon-picture:before {
  507. content: "\e64a"
  508. }
  509. .layui-icon-more-vertical:before {
  510. content: "\e671"
  511. }
  512. .layui-icon-flag:before {
  513. content: "\e66c"
  514. }
  515. .layui-icon-loading:before {
  516. content: "\e63d"
  517. }
  518. .layui-icon-fonts-i:before {
  519. content: "\e644"
  520. }
  521. .layui-icon-refresh-1:before {
  522. content: "\e666"
  523. }
  524. .layui-icon-rmb:before {
  525. content: "\e65e"
  526. }
  527. .layui-icon-home:before {
  528. content: "\e68e"
  529. }
  530. .layui-icon-user:before {
  531. content: "\e770"
  532. }
  533. .layui-icon-notice:before {
  534. content: "\e667"
  535. }
  536. .layui-icon-login-weibo:before {
  537. content: "\e675"
  538. }
  539. .layui-icon-voice:before {
  540. content: "\e688"
  541. }
  542. .layui-icon-upload-drag:before {
  543. content: "\e681"
  544. }
  545. .layui-icon-login-qq:before {
  546. content: "\e676"
  547. }
  548. .layui-icon-snowflake:before {
  549. content: "\e6b1"
  550. }
  551. .layui-icon-file-b:before {
  552. content: "\e655"
  553. }
  554. .layui-icon-template:before {
  555. content: "\e663"
  556. }
  557. .layui-icon-auz:before {
  558. content: "\e672"
  559. }
  560. .layui-icon-console:before {
  561. content: "\e665"
  562. }
  563. .layui-icon-app:before {
  564. content: "\e653"
  565. }
  566. .layui-icon-prev:before {
  567. content: "\e65a"
  568. }
  569. .layui-icon-website:before {
  570. content: "\e7ae"
  571. }
  572. .layui-icon-next:before {
  573. content: "\e65b"
  574. }
  575. .layui-icon-component:before {
  576. content: "\e857"
  577. }
  578. .layui-icon-more:before {
  579. content: "\e65f"
  580. }
  581. .layui-icon-login-wechat:before {
  582. content: "\e677"
  583. }
  584. .layui-icon-shrink-right:before {
  585. content: "\e668"
  586. }
  587. .layui-icon-spread-left:before {
  588. content: "\e66b"
  589. }
  590. .layui-icon-camera:before {
  591. content: "\e660"
  592. }
  593. .layui-icon-note:before {
  594. content: "\e66e"
  595. }
  596. .layui-icon-refresh:before {
  597. content: "\e669"
  598. }
  599. .layui-icon-female:before {
  600. content: "\e661"
  601. }
  602. .layui-icon-male:before {
  603. content: "\e662"
  604. }
  605. .layui-icon-password:before {
  606. content: "\e673"
  607. }
  608. .layui-icon-senior:before {
  609. content: "\e674"
  610. }
  611. .layui-icon-theme:before {
  612. content: "\e66a"
  613. }
  614. .layui-icon-tread:before {
  615. content: "\e6c5"
  616. }
  617. .layui-icon-praise:before {
  618. content: "\e6c6"
  619. }
  620. .layui-icon-star-fill:before {
  621. content: "\e658"
  622. }
  623. .layui-icon-rate:before {
  624. content: "\e67b"
  625. }
  626. .layui-icon-template-1:before {
  627. content: "\e656"
  628. }
  629. .layui-icon-vercode:before {
  630. content: "\e679"
  631. }
  632. .layui-icon-cellphone:before {
  633. content: "\e678"
  634. }
  635. .layui-icon-screen-full:before {
  636. content: "\e622"
  637. }
  638. .layui-icon-screen-restore:before {
  639. content: "\e758"
  640. }
  641. .layui-icon-cols:before {
  642. content: "\e610"
  643. }
  644. .layui-icon-export:before {
  645. content: "\e67d"
  646. }
  647. .layui-icon-print:before {
  648. content: "\e66d"
  649. }
  650. .layui-icon-slider:before {
  651. content: "\e714"
  652. }
  653. .layui-main {
  654. width: 1140px;
  655. margin: 0 auto
  656. }
  657. .layui-header {
  658. z-index: 1000;
  659. height: 60px
  660. }
  661. .layui-header a:hover {
  662. transition: all .5s;
  663. -webkit-transition: all .5s
  664. }
  665. .layui-side {
  666. position: fixed;
  667. left: 0;
  668. top: 0;
  669. bottom: 0;
  670. z-index: 999;
  671. width: 200px;
  672. overflow-x: hidden
  673. }
  674. .layui-side-scroll {
  675. position: relative;
  676. width: 220px;
  677. height: 100%;
  678. overflow-x: hidden
  679. }
  680. .layui-body {
  681. position: absolute;
  682. left: 200px;
  683. right: 0;
  684. top: 0;
  685. bottom: 0;
  686. z-index: 998;
  687. width: auto;
  688. overflow: hidden;
  689. overflow-y: auto;
  690. box-sizing: border-box
  691. }
  692. .layui-layout-body {
  693. overflow: hidden
  694. }
  695. .layui-layout-admin .layui-header {
  696. background-color: #23262E
  697. }
  698. .layui-layout-admin .layui-side {
  699. top: 60px;
  700. width: 200px;
  701. overflow-x: hidden
  702. }
  703. .layui-layout-admin .layui-body {
  704. top: 60px;
  705. bottom: 44px
  706. }
  707. .layui-layout-admin .layui-main {
  708. width: auto;
  709. margin: 0 15px
  710. }
  711. .layui-layout-admin .layui-footer {
  712. position: fixed;
  713. left: 200px;
  714. right: 0;
  715. bottom: 0;
  716. height: 44px;
  717. line-height: 44px;
  718. padding: 0 15px;
  719. background-color: #eee
  720. }
  721. .layui-layout-admin .layui-logo {
  722. position: absolute;
  723. left: 0;
  724. top: 0;
  725. width: 200px;
  726. height: 100%;
  727. line-height: 60px;
  728. text-align: center;
  729. color: #009688;
  730. font-size: 16px
  731. }
  732. .layui-layout-admin .layui-header .layui-nav {
  733. background: 0 0
  734. }
  735. .layui-layout-left {
  736. position: absolute !important;
  737. left: 200px;
  738. top: 0
  739. }
  740. .layui-layout-right {
  741. position: absolute !important;
  742. right: 0;
  743. top: 0
  744. }
  745. .layui-container {
  746. position: relative;
  747. margin: 0 auto;
  748. padding: 0 15px;
  749. box-sizing: border-box
  750. }
  751. .layui-fluid {
  752. position: relative;
  753. margin: 0 auto;
  754. padding: 0 15px
  755. }
  756. .layui-row:after,
  757. .layui-row:before {
  758. content: '';
  759. display: block;
  760. clear: both
  761. }
  762. .layui-col-lg1,
  763. .layui-col-lg10,
  764. .layui-col-lg11,
  765. .layui-col-lg12,
  766. .layui-col-lg2,
  767. .layui-col-lg3,
  768. .layui-col-lg4,
  769. .layui-col-lg5,
  770. .layui-col-lg6,
  771. .layui-col-lg7,
  772. .layui-col-lg8,
  773. .layui-col-lg9,
  774. .layui-col-md1,
  775. .layui-col-md10,
  776. .layui-col-md11,
  777. .layui-col-md12,
  778. .layui-col-md2,
  779. .layui-col-md3,
  780. .layui-col-md4,
  781. .layui-col-md5,
  782. .layui-col-md6,
  783. .layui-col-md7,
  784. .layui-col-md8,
  785. .layui-col-md9,
  786. .layui-col-sm1,
  787. .layui-col-sm10,
  788. .layui-col-sm11,
  789. .layui-col-sm12,
  790. .layui-col-sm2,
  791. .layui-col-sm3,
  792. .layui-col-sm4,
  793. .layui-col-sm5,
  794. .layui-col-sm6,
  795. .layui-col-sm7,
  796. .layui-col-sm8,
  797. .layui-col-sm9,
  798. .layui-col-xs1,
  799. .layui-col-xs10,
  800. .layui-col-xs11,
  801. .layui-col-xs12,
  802. .layui-col-xs2,
  803. .layui-col-xs3,
  804. .layui-col-xs4,
  805. .layui-col-xs5,
  806. .layui-col-xs6,
  807. .layui-col-xs7,
  808. .layui-col-xs8,
  809. .layui-col-xs9 {
  810. position: relative;
  811. display: block;
  812. box-sizing: border-box
  813. }
  814. .layui-col-xs1,
  815. .layui-col-xs10,
  816. .layui-col-xs11,
  817. .layui-col-xs12,
  818. .layui-col-xs2,
  819. .layui-col-xs3,
  820. .layui-col-xs4,
  821. .layui-col-xs5,
  822. .layui-col-xs6,
  823. .layui-col-xs7,
  824. .layui-col-xs8,
  825. .layui-col-xs9 {
  826. float: left
  827. }
  828. .layui-col-xs1 {
  829. width: 8.33333333%
  830. }
  831. .layui-col-xs2 {
  832. width: 16.66666667%
  833. }
  834. .layui-col-xs3 {
  835. width: 25%
  836. }
  837. .layui-col-xs4 {
  838. width: 33.33333333%
  839. }
  840. .layui-col-xs5 {
  841. width: 41.66666667%
  842. }
  843. .layui-col-xs6 {
  844. width: 50%
  845. }
  846. .layui-col-xs7 {
  847. width: 58.33333333%
  848. }
  849. .layui-col-xs8 {
  850. width: 66.66666667%
  851. }
  852. .layui-col-xs9 {
  853. width: 75%
  854. }
  855. .layui-col-xs10 {
  856. width: 83.33333333%
  857. }
  858. .layui-col-xs11 {
  859. width: 91.66666667%
  860. }
  861. .layui-col-xs12 {
  862. width: 100%
  863. }
  864. .layui-col-xs-offset1 {
  865. margin-left: 8.33333333%
  866. }
  867. .layui-col-xs-offset2 {
  868. margin-left: 16.66666667%
  869. }
  870. .layui-col-xs-offset3 {
  871. margin-left: 25%
  872. }
  873. .layui-col-xs-offset4 {
  874. margin-left: 33.33333333%
  875. }
  876. .layui-col-xs-offset5 {
  877. margin-left: 41.66666667%
  878. }
  879. .layui-col-xs-offset6 {
  880. margin-left: 50%
  881. }
  882. .layui-col-xs-offset7 {
  883. margin-left: 58.33333333%
  884. }
  885. .layui-col-xs-offset8 {
  886. margin-left: 66.66666667%
  887. }
  888. .layui-col-xs-offset9 {
  889. margin-left: 75%
  890. }
  891. .layui-col-xs-offset10 {
  892. margin-left: 83.33333333%
  893. }
  894. .layui-col-xs-offset11 {
  895. margin-left: 91.66666667%
  896. }
  897. .layui-col-xs-offset12 {
  898. margin-left: 100%
  899. }
  900. @media screen and (max-width:768px) {
  901. .layui-hide-xs {
  902. display: none !important
  903. }
  904. .layui-show-xs-block {
  905. display: block !important
  906. }
  907. .layui-show-xs-inline {
  908. display: inline !important
  909. }
  910. .layui-show-xs-inline-block {
  911. display: inline-block !important
  912. }
  913. }
  914. @media screen and (min-width:768px) {
  915. .layui-container {
  916. width: 750px
  917. }
  918. .layui-hide-sm {
  919. display: none !important
  920. }
  921. .layui-show-sm-block {
  922. display: block !important
  923. }
  924. .layui-show-sm-inline {
  925. display: inline !important
  926. }
  927. .layui-show-sm-inline-block {
  928. display: inline-block !important
  929. }
  930. .layui-col-sm1,
  931. .layui-col-sm10,
  932. .layui-col-sm11,
  933. .layui-col-sm12,
  934. .layui-col-sm2,
  935. .layui-col-sm3,
  936. .layui-col-sm4,
  937. .layui-col-sm5,
  938. .layui-col-sm6,
  939. .layui-col-sm7,
  940. .layui-col-sm8,
  941. .layui-col-sm9 {
  942. float: left
  943. }
  944. .layui-col-sm1 {
  945. width: 8.33333333%
  946. }
  947. .layui-col-sm2 {
  948. width: 16.66666667%
  949. }
  950. .layui-col-sm3 {
  951. width: 25%
  952. }
  953. .layui-col-sm4 {
  954. width: 33.33333333%
  955. }
  956. .layui-col-sm5 {
  957. width: 41.66666667%
  958. }
  959. .layui-col-sm6 {
  960. width: 50%
  961. }
  962. .layui-col-sm7 {
  963. width: 58.33333333%
  964. }
  965. .layui-col-sm8 {
  966. width: 66.66666667%
  967. }
  968. .layui-col-sm9 {
  969. width: 75%
  970. }
  971. .layui-col-sm10 {
  972. width: 83.33333333%
  973. }
  974. .layui-col-sm11 {
  975. width: 91.66666667%
  976. }
  977. .layui-col-sm12 {
  978. width: 100%
  979. }
  980. .layui-col-sm-offset1 {
  981. margin-left: 8.33333333%
  982. }
  983. .layui-col-sm-offset2 {
  984. margin-left: 16.66666667%
  985. }
  986. .layui-col-sm-offset3 {
  987. margin-left: 25%
  988. }
  989. .layui-col-sm-offset4 {
  990. margin-left: 33.33333333%
  991. }
  992. .layui-col-sm-offset5 {
  993. margin-left: 41.66666667%
  994. }
  995. .layui-col-sm-offset6 {
  996. margin-left: 50%
  997. }
  998. .layui-col-sm-offset7 {
  999. margin-left: 58.33333333%
  1000. }
  1001. .layui-col-sm-offset8 {
  1002. margin-left: 66.66666667%
  1003. }
  1004. .layui-col-sm-offset9 {
  1005. margin-left: 75%
  1006. }
  1007. .layui-col-sm-offset10 {
  1008. margin-left: 83.33333333%
  1009. }
  1010. .layui-col-sm-offset11 {
  1011. margin-left: 91.66666667%
  1012. }
  1013. .layui-col-sm-offset12 {
  1014. margin-left: 100%
  1015. }
  1016. }
  1017. @media screen and (min-width:992px) {
  1018. .layui-container {
  1019. width: 970px
  1020. }
  1021. .layui-hide-md {
  1022. display: none !important
  1023. }
  1024. .layui-show-md-block {
  1025. display: block !important
  1026. }
  1027. .layui-show-md-inline {
  1028. display: inline !important
  1029. }
  1030. .layui-show-md-inline-block {
  1031. display: inline-block !important
  1032. }
  1033. .layui-col-md1,
  1034. .layui-col-md10,
  1035. .layui-col-md11,
  1036. .layui-col-md12,
  1037. .layui-col-md2,
  1038. .layui-col-md3,
  1039. .layui-col-md4,
  1040. .layui-col-md5,
  1041. .layui-col-md6,
  1042. .layui-col-md7,
  1043. .layui-col-md8,
  1044. .layui-col-md9 {
  1045. float: left
  1046. }
  1047. .layui-col-md1 {
  1048. width: 8.33333333%
  1049. }
  1050. .layui-col-md2 {
  1051. width: 16.66666667%
  1052. }
  1053. .layui-col-md3 {
  1054. width: 25%
  1055. }
  1056. .layui-col-md4 {
  1057. width: 33.33333333%
  1058. }
  1059. .layui-col-md5 {
  1060. width: 41.66666667%
  1061. }
  1062. .layui-col-md6 {
  1063. width: 50%
  1064. }
  1065. .layui-col-md7 {
  1066. width: 58.33333333%
  1067. }
  1068. .layui-col-md8 {
  1069. width: 66.66666667%
  1070. }
  1071. .layui-col-md9 {
  1072. width: 75%
  1073. }
  1074. .layui-col-md10 {
  1075. width: 83.33333333%
  1076. }
  1077. .layui-col-md11 {
  1078. width: 91.66666667%
  1079. }
  1080. .layui-col-md12 {
  1081. width: 100%
  1082. }
  1083. .layui-col-md-offset1 {
  1084. margin-left: 8.33333333%
  1085. }
  1086. .layui-col-md-offset2 {
  1087. margin-left: 16.66666667%
  1088. }
  1089. .layui-col-md-offset3 {
  1090. margin-left: 25%
  1091. }
  1092. .layui-col-md-offset4 {
  1093. margin-left: 33.33333333%
  1094. }
  1095. .layui-col-md-offset5 {
  1096. margin-left: 41.66666667%
  1097. }
  1098. .layui-col-md-offset6 {
  1099. margin-left: 50%
  1100. }
  1101. .layui-col-md-offset7 {
  1102. margin-left: 58.33333333%
  1103. }
  1104. .layui-col-md-offset8 {
  1105. margin-left: 66.66666667%
  1106. }
  1107. .layui-col-md-offset9 {
  1108. margin-left: 75%
  1109. }
  1110. .layui-col-md-offset10 {
  1111. margin-left: 83.33333333%
  1112. }
  1113. .layui-col-md-offset11 {
  1114. margin-left: 91.66666667%
  1115. }
  1116. .layui-col-md-offset12 {
  1117. margin-left: 100%
  1118. }
  1119. }
  1120. @media screen and (min-width:1200px) {
  1121. .layui-container {
  1122. width: 1170px
  1123. }
  1124. .layui-hide-lg {
  1125. display: none !important
  1126. }
  1127. .layui-show-lg-block {
  1128. display: block !important
  1129. }
  1130. .layui-show-lg-inline {
  1131. display: inline !important
  1132. }
  1133. .layui-show-lg-inline-block {
  1134. display: inline-block !important
  1135. }
  1136. .layui-col-lg1,
  1137. .layui-col-lg10,
  1138. .layui-col-lg11,
  1139. .layui-col-lg12,
  1140. .layui-col-lg2,
  1141. .layui-col-lg3,
  1142. .layui-col-lg4,
  1143. .layui-col-lg5,
  1144. .layui-col-lg6,
  1145. .layui-col-lg7,
  1146. .layui-col-lg8,
  1147. .layui-col-lg9 {
  1148. float: left
  1149. }
  1150. .layui-col-lg1 {
  1151. width: 8.33333333%
  1152. }
  1153. .layui-col-lg2 {
  1154. width: 16.66666667%
  1155. }
  1156. .layui-col-lg3 {
  1157. width: 25%
  1158. }
  1159. .layui-col-lg4 {
  1160. width: 33.33333333%
  1161. }
  1162. .layui-col-lg5 {
  1163. width: 41.66666667%
  1164. }
  1165. .layui-col-lg6 {
  1166. width: 50%
  1167. }
  1168. .layui-col-lg7 {
  1169. width: 58.33333333%
  1170. }
  1171. .layui-col-lg8 {
  1172. width: 66.66666667%
  1173. }
  1174. .layui-col-lg9 {
  1175. width: 75%
  1176. }
  1177. .layui-col-lg10 {
  1178. width: 83.33333333%
  1179. }
  1180. .layui-col-lg11 {
  1181. width: 91.66666667%
  1182. }
  1183. .layui-col-lg12 {
  1184. width: 100%
  1185. }
  1186. .layui-col-lg-offset1 {
  1187. margin-left: 8.33333333%
  1188. }
  1189. .layui-col-lg-offset2 {
  1190. margin-left: 16.66666667%
  1191. }
  1192. .layui-col-lg-offset3 {
  1193. margin-left: 25%
  1194. }
  1195. .layui-col-lg-offset4 {
  1196. margin-left: 33.33333333%
  1197. }
  1198. .layui-col-lg-offset5 {
  1199. margin-left: 41.66666667%
  1200. }
  1201. .layui-col-lg-offset6 {
  1202. margin-left: 50%
  1203. }
  1204. .layui-col-lg-offset7 {
  1205. margin-left: 58.33333333%
  1206. }
  1207. .layui-col-lg-offset8 {
  1208. margin-left: 66.66666667%
  1209. }
  1210. .layui-col-lg-offset9 {
  1211. margin-left: 75%
  1212. }
  1213. .layui-col-lg-offset10 {
  1214. margin-left: 83.33333333%
  1215. }
  1216. .layui-col-lg-offset11 {
  1217. margin-left: 91.66666667%
  1218. }
  1219. .layui-col-lg-offset12 {
  1220. margin-left: 100%
  1221. }
  1222. }
  1223. .layui-col-space1 {
  1224. margin: -.5px
  1225. }
  1226. .layui-col-space1>* {
  1227. padding: .5px
  1228. }
  1229. .layui-col-space3 {
  1230. margin: -1.5px
  1231. }
  1232. .layui-col-space3>* {
  1233. padding: 1.5px
  1234. }
  1235. .layui-col-space5 {
  1236. margin: -2.5px
  1237. }
  1238. .layui-col-space5>* {
  1239. padding: 2.5px
  1240. }
  1241. .layui-col-space8 {
  1242. margin: -3.5px
  1243. }
  1244. .layui-col-space8>* {
  1245. padding: 3.5px
  1246. }
  1247. .layui-col-space10 {
  1248. margin: -5px
  1249. }
  1250. .layui-col-space10>* {
  1251. padding: 5px
  1252. }
  1253. .layui-col-space12 {
  1254. margin: -6px
  1255. }
  1256. .layui-col-space12>* {
  1257. padding: 6px
  1258. }
  1259. .layui-col-space15 {
  1260. margin: -7.5px
  1261. }
  1262. .layui-col-space15>* {
  1263. padding: 7.5px
  1264. }
  1265. .layui-col-space18 {
  1266. margin: -9px
  1267. }
  1268. .layui-col-space18>* {
  1269. padding: 9px
  1270. }
  1271. .layui-col-space20 {
  1272. margin: -10px
  1273. }
  1274. .layui-col-space20>* {
  1275. padding: 10px
  1276. }
  1277. .layui-col-space22 {
  1278. margin: -11px
  1279. }
  1280. .layui-col-space22>* {
  1281. padding: 11px
  1282. }
  1283. .layui-col-space25 {
  1284. margin: -12.5px
  1285. }
  1286. .layui-col-space25>* {
  1287. padding: 12.5px
  1288. }
  1289. .layui-col-space30 {
  1290. margin: -15px
  1291. }
  1292. .layui-col-space30>* {
  1293. padding: 15px
  1294. }
  1295. .layui-btn,
  1296. .layui-input,
  1297. .layui-select,
  1298. .layui-textarea,
  1299. .layui-upload-button {
  1300. outline: 0;
  1301. -webkit-appearance: none;
  1302. transition: all .3s;
  1303. -webkit-transition: all .3s;
  1304. box-sizing: border-box
  1305. }
  1306. .layui-elem-quote {
  1307. margin-bottom: 10px;
  1308. padding: 15px;
  1309. line-height: 22px;
  1310. border-left: 5px solid #009688;
  1311. border-radius: 0 2px 2px 0;
  1312. background-color: #f2f2f2
  1313. }
  1314. .layui-quote-nm {
  1315. border-style: solid;
  1316. border-width: 1px 1px 1px 5px;
  1317. background: 0 0
  1318. }
  1319. .layui-elem-field {
  1320. margin-bottom: 10px;
  1321. padding: 0;
  1322. border-width: 1px;
  1323. border-style: solid
  1324. }
  1325. .layui-elem-field legend {
  1326. margin-left: 20px;
  1327. padding: 0 10px;
  1328. font-size: 20px;
  1329. font-weight: 300
  1330. }
  1331. .layui-field-title {
  1332. margin: 10px 0 20px;
  1333. border-width: 1px 0 0
  1334. }
  1335. .layui-field-box {
  1336. padding: 10px 15px
  1337. }
  1338. .layui-field-title .layui-field-box {
  1339. padding: 10px 0
  1340. }
  1341. .layui-progress {
  1342. position: relative;
  1343. height: 6px;
  1344. border-radius: 20px;
  1345. background-color: #e2e2e2
  1346. }
  1347. .layui-progress-bar {
  1348. position: absolute;
  1349. left: 0;
  1350. top: 0;
  1351. width: 0;
  1352. max-width: 100%;
  1353. height: 6px;
  1354. border-radius: 20px;
  1355. text-align: right;
  1356. background-color: #5FB878;
  1357. transition: all .3s;
  1358. -webkit-transition: all .3s
  1359. }
  1360. .layui-progress-big,
  1361. .layui-progress-big .layui-progress-bar {
  1362. height: 18px;
  1363. line-height: 18px
  1364. }
  1365. .layui-progress-text {
  1366. position: relative;
  1367. top: -20px;
  1368. line-height: 18px;
  1369. font-size: 12px;
  1370. color: #666
  1371. }
  1372. .layui-progress-big .layui-progress-text {
  1373. position: static;
  1374. padding: 0 10px;
  1375. color: #fff
  1376. }
  1377. .layui-collapse {
  1378. border-width: 1px;
  1379. border-style: solid;
  1380. border-radius: 2px
  1381. }
  1382. .layui-colla-content,
  1383. .layui-colla-item {
  1384. border-top-width: 1px;
  1385. border-top-style: solid
  1386. }
  1387. .layui-colla-item:first-child {
  1388. border-top: none
  1389. }
  1390. .layui-colla-title {
  1391. position: relative;
  1392. height: 42px;
  1393. line-height: 42px;
  1394. padding: 0 15px 0 35px;
  1395. color: #333;
  1396. background-color: #f2f2f2;
  1397. cursor: pointer;
  1398. font-size: 14px;
  1399. overflow: hidden
  1400. }
  1401. .layui-colla-content {
  1402. display: none;
  1403. padding: 10px 15px;
  1404. line-height: 22px;
  1405. color: #666
  1406. }
  1407. .layui-colla-icon {
  1408. position: absolute;
  1409. left: 15px;
  1410. top: 0;
  1411. font-size: 14px
  1412. }
  1413. .layui-card {
  1414. margin-bottom: 15px;
  1415. border-radius: 2px;
  1416. background-color: #fff;
  1417. box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05)
  1418. }
  1419. .layui-card:last-child {
  1420. margin-bottom: 0
  1421. }
  1422. .layui-card-header {
  1423. position: relative;
  1424. height: 42px;
  1425. line-height: 42px;
  1426. padding: 0 15px;
  1427. border-bottom: 1px solid #f6f6f6;
  1428. color: #333;
  1429. border-radius: 2px 2px 0 0;
  1430. font-size: 14px
  1431. }
  1432. .layui-bg-black,
  1433. .layui-bg-blue,
  1434. .layui-bg-cyan,
  1435. .layui-bg-green,
  1436. .layui-bg-orange,
  1437. .layui-bg-red {
  1438. color: #fff !important
  1439. }
  1440. .layui-card-body {
  1441. position: relative;
  1442. padding: 10px 15px;
  1443. line-height: 24px
  1444. }
  1445. .layui-card-body[pad15] {
  1446. padding: 15px
  1447. }
  1448. .layui-card-body[pad20] {
  1449. padding: 20px
  1450. }
  1451. .layui-card-body .layui-table {
  1452. margin: 5px 0
  1453. }
  1454. .layui-card .layui-tab {
  1455. margin: 0
  1456. }
  1457. .layui-panel-window {
  1458. position: relative;
  1459. padding: 15px;
  1460. border-radius: 0;
  1461. border-top: 5px solid #E6E6E6;
  1462. background-color: #fff
  1463. }
  1464. .layui-auxiliar-moving {
  1465. position: fixed;
  1466. left: 0;
  1467. right: 0;
  1468. top: 0;
  1469. bottom: 0;
  1470. width: 100%;
  1471. height: 100%;
  1472. background: 0 0;
  1473. z-index: 9999999999
  1474. }
  1475. .layui-form-label,
  1476. .layui-form-mid,
  1477. .layui-form-select,
  1478. .layui-input-block,
  1479. .layui-input-inline,
  1480. .layui-textarea {
  1481. position: relative
  1482. }
  1483. .layui-bg-red {
  1484. background-color: #FF5722 !important
  1485. }
  1486. .layui-bg-orange {
  1487. background-color: #FFB800 !important
  1488. }
  1489. .layui-bg-green {
  1490. background-color: #009688 !important
  1491. }
  1492. .layui-bg-cyan {
  1493. background-color: #2F4056 !important
  1494. }
  1495. .layui-bg-blue {
  1496. background-color: #1E9FFF !important
  1497. }
  1498. .layui-bg-black {
  1499. background-color: #393D49 !important
  1500. }
  1501. .layui-bg-gray {
  1502. background-color: #eee !important;
  1503. color: #666 !important
  1504. }
  1505. .layui-badge-rim,
  1506. .layui-colla-content,
  1507. .layui-colla-item,
  1508. .layui-collapse,
  1509. .layui-elem-field,
  1510. .layui-form-pane .layui-form-item[pane],
  1511. .layui-form-pane .layui-form-label,
  1512. .layui-input,
  1513. .layui-layedit,
  1514. .layui-layedit-tool,
  1515. .layui-quote-nm,
  1516. .layui-select,
  1517. .layui-tab-bar,
  1518. .layui-tab-card,
  1519. .layui-tab-title,
  1520. .layui-tab-title .layui-this:after,
  1521. .layui-textarea {
  1522. border-color: #e6e6e6
  1523. }
  1524. .layui-timeline-item:before,
  1525. hr {
  1526. background-color: #e6e6e6
  1527. }
  1528. .layui-text {
  1529. line-height: 22px;
  1530. font-size: 14px;
  1531. color: #666
  1532. }
  1533. .layui-text h1,
  1534. .layui-text h2,
  1535. .layui-text h3 {
  1536. font-weight: 500;
  1537. color: #333
  1538. }
  1539. .layui-text h1 {
  1540. font-size: 30px
  1541. }
  1542. .layui-text h2 {
  1543. font-size: 24px
  1544. }
  1545. .layui-text h3 {
  1546. font-size: 18px
  1547. }
  1548. .layui-text a:not(.layui-btn) {
  1549. color: #01AAED
  1550. }
  1551. .layui-text a:not(.layui-btn):hover {
  1552. text-decoration: underline
  1553. }
  1554. .layui-text ul {
  1555. padding: 5px 0 5px 15px
  1556. }
  1557. .layui-text ul li {
  1558. margin-top: 5px;
  1559. list-style-type: disc
  1560. }
  1561. .layui-text em,
  1562. .layui-word-aux {
  1563. color: #999 !important;
  1564. padding: 0 5px !important
  1565. }
  1566. .layui-btn {
  1567. display: inline-block;
  1568. height: 38px;
  1569. line-height: 38px;
  1570. padding: 0 18px;
  1571. background-color: #009688;
  1572. color: #fff;
  1573. white-space: nowrap;
  1574. text-align: center;
  1575. font-size: 14px;
  1576. border: none;
  1577. border-radius: 2px;
  1578. cursor: pointer
  1579. }
  1580. .layui-btn:hover {
  1581. opacity: .8;
  1582. filter: alpha(opacity=80);
  1583. color: #fff
  1584. }
  1585. .layui-btn:active {
  1586. opacity: 1;
  1587. filter: alpha(opacity=100)
  1588. }
  1589. .layui-btn+.layui-btn {
  1590. margin-left: 10px
  1591. }
  1592. .layui-btn-container {
  1593. font-size: 0
  1594. }
  1595. .layui-btn-container .layui-btn {
  1596. margin-right: 10px;
  1597. margin-bottom: 10px
  1598. }
  1599. .layui-btn-container .layui-btn+.layui-btn {
  1600. margin-left: 0
  1601. }
  1602. .layui-table .layui-btn-container .layui-btn {
  1603. margin-bottom: 9px
  1604. }
  1605. .layui-btn-radius {
  1606. border-radius: 100px
  1607. }
  1608. .layui-btn .layui-icon {
  1609. margin-right: 3px;
  1610. font-size: 18px;
  1611. vertical-align: bottom;
  1612. vertical-align: middle\9
  1613. }
  1614. .layui-btn-primary {
  1615. border: 1px solid #C9C9C9;
  1616. background-color: #fff;
  1617. color: #555
  1618. }
  1619. .layui-btn-primary:hover {
  1620. border-color: #009688;
  1621. color: #333
  1622. }
  1623. .layui-btn-normal {
  1624. background-color: #1E9FFF
  1625. }
  1626. .layui-btn-warm {
  1627. background-color: #FFB800
  1628. }
  1629. .layui-btn-danger {
  1630. background-color: #FF5722
  1631. }
  1632. .layui-btn-disabled,
  1633. .layui-btn-disabled:active,
  1634. .layui-btn-disabled:hover {
  1635. border: 1px solid #e6e6e6;
  1636. background-color: #FBFBFB;
  1637. color: #C9C9C9;
  1638. cursor: not-allowed;
  1639. opacity: 1
  1640. }
  1641. .layui-btn-lg {
  1642. height: 44px;
  1643. line-height: 44px;
  1644. padding: 0 25px;
  1645. font-size: 16px
  1646. }
  1647. .layui-btn-sm {
  1648. height: 30px;
  1649. line-height: 30px;
  1650. padding: 0 10px;
  1651. font-size: 12px
  1652. }
  1653. .layui-btn-sm i {
  1654. font-size: 16px !important
  1655. }
  1656. .layui-btn-xs {
  1657. height: 22px;
  1658. line-height: 22px;
  1659. padding: 0 5px;
  1660. font-size: 12px
  1661. }
  1662. .layui-btn-xs i {
  1663. font-size: 14px !important
  1664. }
  1665. .layui-btn-group {
  1666. display: inline-block;
  1667. vertical-align: middle;
  1668. font-size: 0
  1669. }
  1670. .layui-btn-group .layui-btn {
  1671. margin-left: 0 !important;
  1672. margin-right: 0 !important;
  1673. border-left: 1px solid rgba(255, 255, 255, .5);
  1674. border-radius: 0
  1675. }
  1676. .layui-btn-group .layui-btn-primary {
  1677. border-left: none
  1678. }
  1679. .layui-btn-group .layui-btn-primary:hover {
  1680. border-color: #C9C9C9;
  1681. color: #009688
  1682. }
  1683. .layui-btn-group .layui-btn:first-child {
  1684. border-left: none;
  1685. border-radius: 2px 0 0 2px
  1686. }
  1687. .layui-btn-group .layui-btn-primary:first-child {
  1688. border-left: 1px solid #c9c9c9
  1689. }
  1690. .layui-btn-group .layui-btn:last-child {
  1691. border-radius: 0 2px 2px 0
  1692. }
  1693. .layui-btn-group .layui-btn+.layui-btn {
  1694. margin-left: 0
  1695. }
  1696. .layui-btn-group+.layui-btn-group {
  1697. margin-left: 10px
  1698. }
  1699. .layui-btn-fluid {
  1700. width: 100%
  1701. }
  1702. .layui-input,
  1703. .layui-select,
  1704. .layui-textarea {
  1705. height: 38px;
  1706. line-height: 1.3;
  1707. line-height: 38px\9;
  1708. border-width: 1px;
  1709. border-style: solid;
  1710. background-color: #fff;
  1711. border-radius: 2px
  1712. }
  1713. .layui-input::-webkit-input-placeholder,
  1714. .layui-select::-webkit-input-placeholder,
  1715. .layui-textarea::-webkit-input-placeholder {
  1716. line-height: 1.3
  1717. }
  1718. .layui-input,
  1719. .layui-textarea {
  1720. display: block;
  1721. width: 100%;
  1722. padding-left: 10px
  1723. }
  1724. .layui-input:hover,
  1725. .layui-textarea:hover {
  1726. border-color: #D2D2D2 !important
  1727. }
  1728. .layui-input:focus,
  1729. .layui-textarea:focus {
  1730. border-color: #C9C9C9 !important
  1731. }
  1732. .layui-textarea {
  1733. min-height: 100px;
  1734. height: auto;
  1735. line-height: 20px;
  1736. padding: 6px 10px;
  1737. resize: vertical
  1738. }
  1739. .layui-select {
  1740. padding: 0 10px
  1741. }
  1742. .layui-form input[type=checkbox],
  1743. .layui-form input[type=radio],
  1744. .layui-form select {
  1745. display: none
  1746. }
  1747. .layui-form [lay-ignore] {
  1748. display: initial
  1749. }
  1750. .layui-form-item {
  1751. margin-bottom: 15px;
  1752. clear: both;
  1753. *zoom: 1
  1754. }
  1755. .layui-form-item:after {
  1756. content: '\20';
  1757. clear: both;
  1758. *zoom: 1;
  1759. display: block;
  1760. height: 0
  1761. }
  1762. .layui-form-label {
  1763. float: left;
  1764. display: block;
  1765. padding: 9px 15px;
  1766. width: 80px;
  1767. font-weight: 400;
  1768. line-height: 20px;
  1769. text-align: right
  1770. }
  1771. .layui-form-label-col {
  1772. display: block;
  1773. float: none;
  1774. padding: 9px 0;
  1775. line-height: 20px;
  1776. text-align: left
  1777. }
  1778. .layui-form-item .layui-inline {
  1779. margin-bottom: 5px;
  1780. margin-right: 10px
  1781. }
  1782. .layui-input-block {
  1783. margin-left: 110px;
  1784. min-height: 36px
  1785. }
  1786. .layui-input-inline {
  1787. display: inline-block;
  1788. vertical-align: middle
  1789. }
  1790. .layui-form-item .layui-input-inline {
  1791. float: left;
  1792. width: 190px;
  1793. margin-right: 10px
  1794. }
  1795. .layui-form-text .layui-input-inline {
  1796. width: auto
  1797. }
  1798. .layui-form-mid {
  1799. float: left;
  1800. display: block;
  1801. padding: 9px 0 !important;
  1802. line-height: 20px;
  1803. margin-right: 10px
  1804. }
  1805. .layui-form-danger+.layui-form-select .layui-input,
  1806. .layui-form-danger:focus {
  1807. border-color: #FF5722 !important
  1808. }
  1809. .layui-form-select .layui-input {
  1810. padding-right: 30px;
  1811. cursor: pointer
  1812. }
  1813. .layui-form-select .layui-edge {
  1814. position: absolute;
  1815. right: 10px;
  1816. top: 50%;
  1817. margin-top: -3px;
  1818. cursor: pointer;
  1819. border-width: 6px;
  1820. border-top-color: #c2c2c2;
  1821. border-top-style: solid;
  1822. transition: all .3s;
  1823. -webkit-transition: all .3s
  1824. }
  1825. .layui-form-select dl {
  1826. display: none;
  1827. position: absolute;
  1828. left: 0;
  1829. top: 42px;
  1830. padding: 5px 0;
  1831. z-index: 899;
  1832. min-width: 100%;
  1833. border: 1px solid #d2d2d2;
  1834. max-height: 300px;
  1835. overflow-y: auto;
  1836. background-color: #fff;
  1837. border-radius: 2px;
  1838. box-shadow: 0 2px 4px rgba(0, 0, 0, .12);
  1839. box-sizing: border-box
  1840. }
  1841. .layui-form-select dl dd,
  1842. .layui-form-select dl dt {
  1843. padding: 0 10px;
  1844. line-height: 36px;
  1845. white-space: nowrap;
  1846. overflow: hidden;
  1847. text-overflow: ellipsis
  1848. }
  1849. .layui-form-select dl dt {
  1850. font-size: 12px;
  1851. color: #999
  1852. }
  1853. .layui-form-select dl dd {
  1854. cursor: pointer
  1855. }
  1856. .layui-form-select dl dd:hover {
  1857. background-color: #f2f2f2;
  1858. -webkit-transition: .5s all;
  1859. transition: .5s all
  1860. }
  1861. .layui-form-select .layui-select-group dd {
  1862. padding-left: 20px
  1863. }
  1864. .layui-form-select dl dd.layui-select-tips {
  1865. padding-left: 10px !important;
  1866. color: #999
  1867. }
  1868. .layui-form-select dl dd.layui-this {
  1869. background-color: #5FB878;
  1870. color: #fff
  1871. }
  1872. .layui-form-checkbox,
  1873. .layui-form-select dl dd.layui-disabled {
  1874. background-color: #fff
  1875. }
  1876. .layui-form-selected dl {
  1877. display: block
  1878. }
  1879. .layui-form-checkbox,
  1880. .layui-form-checkbox *,
  1881. .layui-form-switch {
  1882. display: inline-block;
  1883. vertical-align: middle
  1884. }
  1885. .layui-form-selected .layui-edge {
  1886. margin-top: -9px;
  1887. -webkit-transform: rotate(180deg);
  1888. transform: rotate(180deg);
  1889. margin-top: -3px\9
  1890. }
  1891. :root .layui-form-selected .layui-edge {
  1892. margin-top: -9px\0/IE9
  1893. }
  1894. .layui-form-selectup dl {
  1895. top: auto;
  1896. bottom: 42px
  1897. }
  1898. .layui-select-none {
  1899. margin: 5px 0;
  1900. text-align: center;
  1901. color: #999
  1902. }
  1903. .layui-select-disabled .layui-disabled {
  1904. border-color: #eee !important
  1905. }
  1906. .layui-select-disabled .layui-edge {
  1907. border-top-color: #d2d2d2
  1908. }
  1909. .layui-form-checkbox {
  1910. position: relative;
  1911. height: 30px;
  1912. line-height: 30px;
  1913. margin-right: 10px;
  1914. padding-right: 30px;
  1915. cursor: pointer;
  1916. font-size: 0;
  1917. -webkit-transition: .1s linear;
  1918. transition: .1s linear;
  1919. box-sizing: border-box
  1920. }
  1921. .layui-form-checkbox span {
  1922. padding: 0 10px;
  1923. height: 100%;
  1924. font-size: 14px;
  1925. border-radius: 2px 0 0 2px;
  1926. background-color: #d2d2d2;
  1927. color: #fff;
  1928. overflow: hidden
  1929. }
  1930. .layui-form-checkbox:hover span {
  1931. background-color: #c2c2c2
  1932. }
  1933. .layui-form-checkbox i {
  1934. position: absolute;
  1935. right: 0;
  1936. top: 0;
  1937. width: 30px;
  1938. height: 28px;
  1939. border: 1px solid #d2d2d2;
  1940. border-left: none;
  1941. border-radius: 0 2px 2px 0;
  1942. color: #fff;
  1943. font-size: 20px;
  1944. text-align: center
  1945. }
  1946. .layui-form-checkbox:hover i {
  1947. border-color: #c2c2c2;
  1948. color: #c2c2c2
  1949. }
  1950. .layui-form-checked,
  1951. .layui-form-checked:hover {
  1952. border-color: #5FB878
  1953. }
  1954. .layui-form-checked span,
  1955. .layui-form-checked:hover span {
  1956. background-color: #5FB878
  1957. }
  1958. .layui-form-checked i,
  1959. .layui-form-checked:hover i {
  1960. color: #5FB878
  1961. }
  1962. .layui-form-item .layui-form-checkbox {
  1963. margin-top: 4px
  1964. }
  1965. .layui-form-checkbox[lay-skin=primary] {
  1966. height: auto !important;
  1967. line-height: normal !important;
  1968. min-width: 18px;
  1969. min-height: 18px;
  1970. border: none !important;
  1971. margin-right: 0;
  1972. padding-left: 28px;
  1973. padding-right: 0;
  1974. background: 0 0
  1975. }
  1976. .layui-form-checkbox[lay-skin=primary] span {
  1977. padding-left: 0;
  1978. padding-right: 15px;
  1979. line-height: 18px;
  1980. background: 0 0;
  1981. color: #666
  1982. }
  1983. .layui-form-checkbox[lay-skin=primary] i {
  1984. right: auto;
  1985. left: 0;
  1986. width: 16px;
  1987. height: 16px;
  1988. line-height: 16px;
  1989. border: 1px solid #d2d2d2;
  1990. font-size: 12px;
  1991. border-radius: 2px;
  1992. background-color: #fff;
  1993. -webkit-transition: .1s linear;
  1994. transition: .1s linear
  1995. }
  1996. .layui-form-checkbox[lay-skin=primary]:hover i {
  1997. border-color: #5FB878;
  1998. color: #fff
  1999. }
  2000. .layui-form-checked[lay-skin=primary] i {
  2001. border-color: #5FB878;
  2002. background-color: #5FB878;
  2003. color: #fff
  2004. }
  2005. .layui-checkbox-disbaled[lay-skin=primary] span {
  2006. background: 0 0 !important;
  2007. color: #c2c2c2
  2008. }
  2009. .layui-checkbox-disbaled[lay-skin=primary]:hover i {
  2010. border-color: #d2d2d2
  2011. }
  2012. .layui-form-item .layui-form-checkbox[lay-skin=primary] {
  2013. margin-top: 10px
  2014. }
  2015. .layui-form-switch {
  2016. position: relative;
  2017. height: 22px;
  2018. line-height: 22px;
  2019. min-width: 35px;
  2020. padding: 0 5px;
  2021. margin-top: 8px;
  2022. border: 1px solid #d2d2d2;
  2023. border-radius: 20px;
  2024. cursor: pointer;
  2025. background-color: #fff;
  2026. -webkit-transition: .1s linear;
  2027. transition: .1s linear
  2028. }
  2029. .layui-form-switch i {
  2030. position: absolute;
  2031. left: 5px;
  2032. top: 3px;
  2033. width: 16px;
  2034. height: 16px;
  2035. border-radius: 20px;
  2036. background-color: #d2d2d2;
  2037. -webkit-transition: .1s linear;
  2038. transition: .1s linear
  2039. }
  2040. .layui-form-switch em {
  2041. position: relative;
  2042. top: 0;
  2043. width: 25px;
  2044. margin-left: 21px;
  2045. padding: 0 !important;
  2046. text-align: center !important;
  2047. color: #999 !important;
  2048. font-style: normal !important;
  2049. font-size: 12px
  2050. }
  2051. .layui-form-onswitch {
  2052. border-color: #5FB878;
  2053. background-color: #5FB878
  2054. }
  2055. .layui-checkbox-disbaled,
  2056. .layui-checkbox-disbaled i {
  2057. border-color: #e2e2e2 !important
  2058. }
  2059. .layui-form-onswitch i {
  2060. left: 100%;
  2061. margin-left: -21px;
  2062. background-color: #fff
  2063. }
  2064. .layui-form-onswitch em {
  2065. margin-left: 5px;
  2066. margin-right: 21px;
  2067. color: #fff !important
  2068. }
  2069. .layui-checkbox-disbaled span {
  2070. background-color: #e2e2e2 !important
  2071. }
  2072. .layui-checkbox-disbaled:hover i {
  2073. color: #fff !important
  2074. }
  2075. [lay-radio] {
  2076. display: none
  2077. }
  2078. .layui-form-radio,
  2079. .layui-form-radio * {
  2080. display: inline-block;
  2081. vertical-align: middle
  2082. }
  2083. .layui-form-radio {
  2084. line-height: 28px;
  2085. margin: 6px 10px 0 0;
  2086. padding-right: 10px;
  2087. cursor: pointer;
  2088. font-size: 0
  2089. }
  2090. .layui-form-radio * {
  2091. font-size: 14px
  2092. }
  2093. .layui-form-radio>i {
  2094. margin-right: 8px;
  2095. font-size: 22px;
  2096. color: #c2c2c2
  2097. }
  2098. .layui-form-radio>i:hover,
  2099. .layui-form-radioed>i {
  2100. color: #5FB878
  2101. }
  2102. .layui-radio-disbaled>i {
  2103. color: #e2e2e2 !important
  2104. }
  2105. .layui-form-pane .layui-form-label {
  2106. width: 110px;
  2107. padding: 8px 15px;
  2108. height: 38px;
  2109. line-height: 20px;
  2110. border-width: 1px;
  2111. border-style: solid;
  2112. border-radius: 2px 0 0 2px;
  2113. text-align: center;
  2114. background-color: #FBFBFB;
  2115. overflow: hidden;
  2116. box-sizing: border-box
  2117. }
  2118. .layui-form-pane .layui-input-inline {
  2119. margin-left: -1px
  2120. }
  2121. .layui-form-pane .layui-input-block {
  2122. margin-left: 110px;
  2123. left: -1px
  2124. }
  2125. .layui-form-pane .layui-input {
  2126. border-radius: 0 2px 2px 0
  2127. }
  2128. .layui-form-pane .layui-form-text .layui-form-label {
  2129. float: none;
  2130. width: 100%;
  2131. border-radius: 2px;
  2132. box-sizing: border-box;
  2133. text-align: left
  2134. }
  2135. .layui-form-pane .layui-form-text .layui-input-inline {
  2136. display: block;
  2137. margin: 0;
  2138. top: -1px;
  2139. clear: both
  2140. }
  2141. .layui-form-pane .layui-form-text .layui-input-block {
  2142. margin: 0;
  2143. left: 0;
  2144. top: -1px
  2145. }
  2146. .layui-form-pane .layui-form-text .layui-textarea {
  2147. min-height: 100px;
  2148. border-radius: 0 0 2px 2px
  2149. }
  2150. .layui-form-pane .layui-form-checkbox {
  2151. margin: 4px 0 4px 10px
  2152. }
  2153. .layui-form-pane .layui-form-radio,
  2154. .layui-form-pane .layui-form-switch {
  2155. margin-top: 6px;
  2156. margin-left: 10px
  2157. }
  2158. .layui-form-pane .layui-form-item[pane] {
  2159. position: relative;
  2160. border-width: 1px;
  2161. border-style: solid
  2162. }
  2163. .layui-form-pane .layui-form-item[pane] .layui-form-label {
  2164. position: absolute;
  2165. left: 0;
  2166. top: 0;
  2167. height: 100%;
  2168. border-width: 0 1px 0 0
  2169. }
  2170. .layui-form-pane .layui-form-item[pane] .layui-input-inline {
  2171. margin-left: 110px
  2172. }
  2173. @media screen and (max-width:450px) {
  2174. .layui-form-item .layui-form-label {
  2175. text-overflow: ellipsis;
  2176. overflow: hidden;
  2177. white-space: nowrap
  2178. }
  2179. .layui-form-item .layui-inline {
  2180. display: block;
  2181. margin-right: 0;
  2182. margin-bottom: 20px;
  2183. clear: both
  2184. }
  2185. .layui-form-item .layui-inline:after {
  2186. content: '\20';
  2187. clear: both;
  2188. display: block;
  2189. height: 0
  2190. }
  2191. .layui-form-item .layui-input-inline {
  2192. display: block;
  2193. float: none;
  2194. left: -3px;
  2195. width: auto;
  2196. margin: 0 0 10px 112px
  2197. }
  2198. .layui-form-item .layui-input-inline+.layui-form-mid {
  2199. margin-left: 110px;
  2200. top: -5px;
  2201. padding: 0
  2202. }
  2203. .layui-form-item .layui-form-checkbox {
  2204. margin-right: 5px;
  2205. margin-bottom: 5px
  2206. }
  2207. }
  2208. .layui-layedit {
  2209. border-width: 1px;
  2210. border-style: solid;
  2211. border-radius: 2px
  2212. }
  2213. .layui-layedit-tool {
  2214. padding: 3px 5px;
  2215. border-bottom-width: 1px;
  2216. border-bottom-style: solid;
  2217. font-size: 0
  2218. }
  2219. .layedit-tool-fixed {
  2220. position: fixed;
  2221. top: 0;
  2222. border-top: 1px solid #e2e2e2
  2223. }
  2224. .layui-layedit-tool .layedit-tool-mid,
  2225. .layui-layedit-tool .layui-icon {
  2226. display: inline-block;
  2227. vertical-align: middle;
  2228. text-align: center;
  2229. font-size: 14px
  2230. }
  2231. .layui-layedit-tool .layui-icon {
  2232. position: relative;
  2233. width: 32px;
  2234. height: 30px;
  2235. line-height: 30px;
  2236. margin: 3px 5px;
  2237. color: #777;
  2238. cursor: pointer;
  2239. border-radius: 2px
  2240. }
  2241. .layui-layedit-tool .layui-icon:hover {
  2242. color: #393D49
  2243. }
  2244. .layui-layedit-tool .layui-icon:active {
  2245. color: #000
  2246. }
  2247. .layui-layedit-tool .layedit-tool-active {
  2248. background-color: #e2e2e2;
  2249. color: #000
  2250. }
  2251. .layui-layedit-tool .layui-disabled,
  2252. .layui-layedit-tool .layui-disabled:hover {
  2253. color: #d2d2d2;
  2254. cursor: not-allowed
  2255. }
  2256. .layui-layedit-tool .layedit-tool-mid {
  2257. width: 1px;
  2258. height: 18px;
  2259. margin: 0 10px;
  2260. background-color: #d2d2d2
  2261. }
  2262. .layedit-tool-html {
  2263. width: 50px !important;
  2264. font-size: 30px !important
  2265. }
  2266. .layedit-tool-b,
  2267. .layedit-tool-code,
  2268. .layedit-tool-help {
  2269. font-size: 16px !important
  2270. }
  2271. .layedit-tool-d,
  2272. .layedit-tool-face,
  2273. .layedit-tool-image,
  2274. .layedit-tool-unlink {
  2275. font-size: 18px !important
  2276. }
  2277. .layedit-tool-image input {
  2278. position: absolute;
  2279. font-size: 0;
  2280. left: 0;
  2281. top: 0;
  2282. width: 100%;
  2283. height: 100%;
  2284. opacity: .01;
  2285. filter: Alpha(opacity=1);
  2286. cursor: pointer
  2287. }
  2288. .layui-layedit-iframe iframe {
  2289. display: block;
  2290. width: 100%
  2291. }
  2292. #LAY_layedit_code {
  2293. overflow: hidden
  2294. }
  2295. .layui-laypage {
  2296. display: inline-block;
  2297. *display: inline;
  2298. *zoom: 1;
  2299. vertical-align: middle;
  2300. margin: 10px 0;
  2301. font-size: 0
  2302. }
  2303. .layui-laypage>a:first-child,
  2304. .layui-laypage>a:first-child em {
  2305. border-radius: 2px 0 0 2px
  2306. }
  2307. .layui-laypage>a:last-child,
  2308. .layui-laypage>a:last-child em {
  2309. border-radius: 0 2px 2px 0
  2310. }
  2311. .layui-laypage>:first-child {
  2312. margin-left: 0 !important
  2313. }
  2314. .layui-laypage>:last-child {
  2315. margin-right: 0 !important
  2316. }
  2317. .layui-laypage a,
  2318. .layui-laypage button,
  2319. .layui-laypage input,
  2320. .layui-laypage select,
  2321. .layui-laypage span {
  2322. border: 1px solid #e2e2e2
  2323. }
  2324. .layui-laypage a,
  2325. .layui-laypage span {
  2326. display: inline-block;
  2327. *display: inline;
  2328. *zoom: 1;
  2329. vertical-align: middle;
  2330. padding: 0 15px;
  2331. height: 28px;
  2332. line-height: 28px;
  2333. margin: 0 -1px 5px 0;
  2334. background-color: #fff;
  2335. color: #333;
  2336. font-size: 12px
  2337. }
  2338. .layui-flow-more a *,
  2339. .layui-laypage input,
  2340. .layui-table-view select[lay-ignore] {
  2341. display: inline-block
  2342. }
  2343. .layui-laypage a:hover {
  2344. color: #009688
  2345. }
  2346. .layui-laypage em {
  2347. font-style: normal
  2348. }
  2349. .layui-laypage .layui-laypage-spr {
  2350. color: #999;
  2351. font-weight: 700
  2352. }
  2353. .layui-laypage a {
  2354. text-decoration: none
  2355. }
  2356. .layui-laypage .layui-laypage-curr {
  2357. position: relative
  2358. }
  2359. .layui-laypage .layui-laypage-curr em {
  2360. position: relative;
  2361. color: #fff
  2362. }
  2363. .layui-laypage .layui-laypage-curr .layui-laypage-em {
  2364. position: absolute;
  2365. left: -1px;
  2366. top: -1px;
  2367. padding: 1px;
  2368. width: 100%;
  2369. height: 100%;
  2370. background-color: #009688
  2371. }
  2372. .layui-laypage-em {
  2373. border-radius: 2px
  2374. }
  2375. .layui-laypage-next em,
  2376. .layui-laypage-prev em {
  2377. font-family: Sim sun;
  2378. font-size: 16px
  2379. }
  2380. .layui-laypage .layui-laypage-count,
  2381. .layui-laypage .layui-laypage-limits,
  2382. .layui-laypage .layui-laypage-refresh,
  2383. .layui-laypage .layui-laypage-skip {
  2384. margin-left: 10px;
  2385. margin-right: 10px;
  2386. padding: 0;
  2387. border: none
  2388. }
  2389. .layui-laypage .layui-laypage-limits,
  2390. .layui-laypage .layui-laypage-refresh {
  2391. vertical-align: top
  2392. }
  2393. .layui-laypage .layui-laypage-refresh i {
  2394. font-size: 18px;
  2395. cursor: pointer
  2396. }
  2397. .layui-laypage select {
  2398. height: 22px;
  2399. padding: 3px;
  2400. border-radius: 2px;
  2401. cursor: pointer
  2402. }
  2403. .layui-laypage .layui-laypage-skip {
  2404. height: 30px;
  2405. line-height: 30px;
  2406. color: #999
  2407. }
  2408. .layui-laypage button,
  2409. .layui-laypage input {
  2410. height: 30px;
  2411. line-height: 30px;
  2412. border-radius: 2px;
  2413. vertical-align: top;
  2414. background-color: #fff;
  2415. box-sizing: border-box
  2416. }
  2417. .layui-laypage input {
  2418. width: 40px;
  2419. margin: 0 10px;
  2420. padding: 0 3px;
  2421. text-align: center
  2422. }
  2423. .layui-laypage input:focus,
  2424. .layui-laypage select:focus {
  2425. border-color: #009688 !important
  2426. }
  2427. .layui-laypage button {
  2428. margin-left: 10px;
  2429. padding: 0 10px;
  2430. cursor: pointer
  2431. }
  2432. .layui-table,
  2433. .layui-table-view {
  2434. margin: 10px 0
  2435. }
  2436. .layui-flow-more {
  2437. margin: 10px 0;
  2438. text-align: center;
  2439. color: #999;
  2440. font-size: 14px
  2441. }
  2442. .layui-flow-more a {
  2443. height: 32px;
  2444. line-height: 32px
  2445. }
  2446. .layui-flow-more a * {
  2447. vertical-align: top
  2448. }
  2449. .layui-flow-more a cite {
  2450. padding: 0 20px;
  2451. border-radius: 3px;
  2452. background-color: #eee;
  2453. color: #333;
  2454. font-style: normal
  2455. }
  2456. .layui-flow-more a cite:hover {
  2457. opacity: .8
  2458. }
  2459. .layui-flow-more a i {
  2460. font-size: 30px;
  2461. color: #737383
  2462. }
  2463. .layui-table {
  2464. width: 100%;
  2465. background-color: #fff;
  2466. color: #666
  2467. }
  2468. .layui-table tr {
  2469. transition: all .3s;
  2470. -webkit-transition: all .3s
  2471. }
  2472. .layui-table th {
  2473. text-align: left;
  2474. font-weight: 400
  2475. }
  2476. .layui-table tbody tr:hover,
  2477. .layui-table thead tr,
  2478. .layui-table-click,
  2479. .layui-table-header,
  2480. .layui-table-hover,
  2481. .layui-table-mend,
  2482. .layui-table-patch,
  2483. .layui-table-tool,
  2484. .layui-table-total,
  2485. .layui-table-total tr,
  2486. .layui-table[lay-even] tr:nth-child(even) {
  2487. background-color: #f2f2f2
  2488. }
  2489. .layui-table td,
  2490. .layui-table th,
  2491. .layui-table-col-set,
  2492. .layui-table-fixed-r,
  2493. .layui-table-grid-down,
  2494. .layui-table-header,
  2495. .layui-table-page,
  2496. .layui-table-tips-main,
  2497. .layui-table-tool,
  2498. .layui-table-total,
  2499. .layui-table-view,
  2500. .layui-table[lay-skin=line],
  2501. .layui-table[lay-skin=row] {
  2502. border-width: 1px;
  2503. border-style: solid;
  2504. border-color: #e6e6e6
  2505. }
  2506. /* 修改的 */
  2507. .layui-table-view {
  2508. height: 380px;
  2509. border-color: #e6e6e6;
  2510. }
  2511. .layui-table td,
  2512. .layui-table th {
  2513. position: relative;
  2514. padding: 9px 15px;
  2515. min-height: 20px;
  2516. line-height: 20px;
  2517. font-size: 14px
  2518. }
  2519. .layui-table[lay-skin=line] td,
  2520. .layui-table[lay-skin=line] th {
  2521. border-width: 0 0 1px
  2522. }
  2523. .layui-table[lay-skin=row] td,
  2524. .layui-table[lay-skin=row] th {
  2525. border-width: 0 1px 0 0
  2526. }
  2527. .layui-table[lay-skin=nob] td,
  2528. .layui-table[lay-skin=nob] th {
  2529. border: none
  2530. }
  2531. .layui-table img {
  2532. max-width: 100px
  2533. }
  2534. .layui-table[lay-size=lg] td,
  2535. .layui-table[lay-size=lg] th {
  2536. padding: 15px 30px
  2537. }
  2538. .layui-table-view .layui-table[lay-size=lg] .layui-table-cell {
  2539. height: 40px;
  2540. line-height: 40px
  2541. }
  2542. .layui-table[lay-size=sm] td,
  2543. .layui-table[lay-size=sm] th {
  2544. font-size: 12px;
  2545. padding: 5px 10px
  2546. }
  2547. .layui-table-view .layui-table[lay-size=sm] .layui-table-cell {
  2548. height: 20px;
  2549. line-height: 20px
  2550. }
  2551. /* 修改 */
  2552. /* .layui-table[lay-data] {
  2553. display: none
  2554. } */
  2555. .layui-table-box {
  2556. position: relative;
  2557. overflow: hidden;
  2558. }
  2559. .layui-table-view .layui-table {
  2560. position: relative;
  2561. width: auto;
  2562. margin: 0
  2563. }
  2564. .layui-table-view .layui-table[lay-skin=line] {
  2565. border-width: 0 1px 0 0
  2566. }
  2567. .layui-table-view .layui-table[lay-skin=row] {
  2568. border-width: 0 0 1px
  2569. }
  2570. .layui-table-view .layui-table td,
  2571. .layui-table-view .layui-table th {
  2572. padding: 5px 0;
  2573. border-top: none;
  2574. border-left: none
  2575. }
  2576. .layui-table-view .layui-table th.layui-unselect .layui-table-cell span {
  2577. cursor: pointer
  2578. }
  2579. .layui-table-view .layui-table td {
  2580. cursor: default
  2581. }
  2582. .layui-table-view .layui-form-checkbox[lay-skin=primary] i {
  2583. width: 18px;
  2584. height: 18px
  2585. }
  2586. .layui-table-view .layui-form-radio {
  2587. line-height: 0;
  2588. padding: 0
  2589. }
  2590. .layui-table-view .layui-form-radio>i {
  2591. margin: 0;
  2592. font-size: 20px
  2593. }
  2594. .layui-table-init {
  2595. position: absolute;
  2596. left: 0;
  2597. top: 0;
  2598. width: 100%;
  2599. height: 100%;
  2600. text-align: center;
  2601. z-index: 110
  2602. }
  2603. .layui-table-init .layui-icon {
  2604. position: absolute;
  2605. left: 50%;
  2606. top: 50%;
  2607. margin: -15px 0 0 -15px;
  2608. font-size: 30px;
  2609. color: #c2c2c2
  2610. }
  2611. .layui-table-header {
  2612. border-width: 0 0 1px;
  2613. overflow: hidden
  2614. }
  2615. .layui-table-header .layui-table {
  2616. margin-bottom: -1px
  2617. }
  2618. .layui-table-tool .layui-inline[lay-event] {
  2619. position: relative;
  2620. width: 26px;
  2621. height: 26px;
  2622. padding: 5px;
  2623. line-height: 16px;
  2624. margin-right: 10px;
  2625. text-align: center;
  2626. color: #333;
  2627. border: 1px solid #ccc;
  2628. cursor: pointer;
  2629. -webkit-transition: .5s all;
  2630. transition: .5s all
  2631. }
  2632. .layui-table-tool .layui-inline[lay-event]:hover {
  2633. border: 1px solid #999
  2634. }
  2635. .layui-table-tool-temp {
  2636. padding-right: 120px
  2637. }
  2638. .layui-table-tool-self {
  2639. position: absolute;
  2640. right: 17px;
  2641. top: 10px
  2642. }
  2643. .layui-table-tool .layui-table-tool-self .layui-inline[lay-event] {
  2644. margin: 0 0 0 10px
  2645. }
  2646. .layui-table-tool-panel {
  2647. position: absolute;
  2648. top: 29px;
  2649. left: -1px;
  2650. padding: 5px 0;
  2651. min-width: 150px;
  2652. min-height: 40px;
  2653. border: 1px solid #d2d2d2;
  2654. text-align: left;
  2655. overflow-y: auto;
  2656. background-color: #fff;
  2657. box-shadow: 0 2px 4px rgba(0, 0, 0, .12)
  2658. }
  2659. .layui-table-cell,
  2660. .layui-table-tool-panel li {
  2661. overflow: hidden;
  2662. text-overflow: ellipsis;
  2663. white-space: nowrap
  2664. }
  2665. .layui-table-tool-panel li {
  2666. padding: 0 10px;
  2667. line-height: 30px;
  2668. -webkit-transition: .5s all;
  2669. transition: .5s all
  2670. }
  2671. .layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary] {
  2672. width: 100%;
  2673. padding-left: 28px
  2674. }
  2675. .layui-table-tool-panel li:hover {
  2676. background-color: #f2f2f2
  2677. }
  2678. .layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary] i {
  2679. position: absolute;
  2680. left: 0;
  2681. top: 0
  2682. }
  2683. .layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary] span {
  2684. padding: 0
  2685. }
  2686. .layui-table-tool .layui-table-tool-self .layui-table-tool-panel {
  2687. left: auto;
  2688. right: -1px
  2689. }
  2690. .layui-table-col-set {
  2691. position: absolute;
  2692. right: 0;
  2693. top: 0;
  2694. width: 20px;
  2695. height: 100%;
  2696. border-width: 0 0 0 1px;
  2697. background-color: #fff
  2698. }
  2699. .layui-table-sort {
  2700. width: 10px;
  2701. height: 20px;
  2702. margin-left: 5px;
  2703. cursor: pointer !important
  2704. }
  2705. .layui-table-sort .layui-edge {
  2706. position: absolute;
  2707. left: 5px;
  2708. border-width: 5px
  2709. }
  2710. .layui-table-sort .layui-table-sort-asc {
  2711. top: 3px;
  2712. border-top: none;
  2713. border-bottom-style: solid;
  2714. border-bottom-color: #b2b2b2
  2715. }
  2716. .layui-table-sort .layui-table-sort-asc:hover {
  2717. border-bottom-color: #666
  2718. }
  2719. .layui-table-sort .layui-table-sort-desc {
  2720. bottom: 5px;
  2721. border-bottom: none;
  2722. border-top-style: solid;
  2723. border-top-color: #b2b2b2
  2724. }
  2725. .layui-table-sort .layui-table-sort-desc:hover {
  2726. border-top-color: #666
  2727. }
  2728. .layui-table-sort[lay-sort=asc] .layui-table-sort-asc {
  2729. border-bottom-color: #000
  2730. }
  2731. .layui-table-sort[lay-sort=desc] .layui-table-sort-desc {
  2732. border-top-color: #000
  2733. }
  2734. .layui-table-cell {
  2735. height: 28px;
  2736. line-height: 28px;
  2737. padding: 0 15px;
  2738. position: relative;
  2739. box-sizing: border-box
  2740. }
  2741. .layui-table-cell .layui-form-checkbox[lay-skin=primary] {
  2742. top: -1px;
  2743. padding: 0
  2744. }
  2745. .layui-table-cell .layui-table-link {
  2746. color: #01AAED
  2747. }
  2748. .laytable-cell-checkbox,
  2749. .laytable-cell-numbers,
  2750. .laytable-cell-radio,
  2751. .laytable-cell-space {
  2752. padding: 0;
  2753. text-align: center
  2754. }
  2755. .layui-table-body {
  2756. position: relative;
  2757. overflow: auto;
  2758. margin-right: -1px;
  2759. margin-bottom: -1px
  2760. }
  2761. .layui-table-body .layui-none {
  2762. line-height: 26px;
  2763. padding: 15px;
  2764. text-align: center;
  2765. color: #999
  2766. }
  2767. .layui-table-fixed {
  2768. position: absolute;
  2769. left: 0;
  2770. top: 0;
  2771. z-index: 101
  2772. }
  2773. .layui-table-fixed .layui-table-body {
  2774. overflow: hidden
  2775. }
  2776. .layui-table-fixed-l {
  2777. box-shadow: 0 -1px 8px rgba(0, 0, 0, .08)
  2778. }
  2779. .layui-table-fixed-r {
  2780. left: auto;
  2781. right: -1px;
  2782. border-width: 0 0 0 1px;
  2783. box-shadow: -1px 0 8px rgba(0, 0, 0, .08)
  2784. }
  2785. .layui-table-fixed-r .layui-table-header {
  2786. position: relative;
  2787. overflow: visible
  2788. }
  2789. .layui-table-mend {
  2790. position: absolute;
  2791. right: -49px;
  2792. top: 0;
  2793. height: 100%;
  2794. width: 50px
  2795. }
  2796. .layui-table-tool {
  2797. position: relative;
  2798. z-index: 890;
  2799. width: 100%;
  2800. min-height: 50px;
  2801. line-height: 30px;
  2802. padding: 10px 15px;
  2803. border-width: 0 0 1px
  2804. }
  2805. .layui-table-tool .layui-btn-container {
  2806. margin-bottom: -10px
  2807. }
  2808. .layui-table-page,
  2809. .layui-table-total {
  2810. border-width: 1px 0 0;
  2811. margin-bottom: -1px;
  2812. overflow: hidden
  2813. }
  2814. .layui-table-page {
  2815. position: relative;
  2816. width: 100%;
  2817. padding: 7px 7px 0;
  2818. height: 41px;
  2819. font-size: 12px;
  2820. white-space: nowrap
  2821. }
  2822. .layui-table-page>div {
  2823. height: 26px
  2824. }
  2825. .layui-table-page .layui-laypage {
  2826. margin: 0
  2827. }
  2828. .layui-table-page .layui-laypage a,
  2829. .layui-table-page .layui-laypage span {
  2830. height: 26px;
  2831. line-height: 26px;
  2832. margin-bottom: 10px;
  2833. border: none;
  2834. background: 0 0
  2835. }
  2836. .layui-table-page .layui-laypage a,
  2837. .layui-table-page .layui-laypage span.layui-laypage-curr {
  2838. padding: 0 12px
  2839. }
  2840. .layui-table-page .layui-laypage span {
  2841. margin-left: 0;
  2842. padding: 0
  2843. }
  2844. .layui-table-page .layui-laypage .layui-laypage-prev {
  2845. margin-left: -7px !important
  2846. }
  2847. .layui-table-page .layui-laypage .layui-laypage-curr .layui-laypage-em {
  2848. left: 0;
  2849. top: 0;
  2850. padding: 0
  2851. }
  2852. .layui-table-page .layui-laypage button,
  2853. .layui-table-page .layui-laypage input {
  2854. height: 26px;
  2855. line-height: 26px
  2856. }
  2857. .layui-table-page .layui-laypage input {
  2858. width: 40px
  2859. }
  2860. .layui-table-page .layui-laypage button {
  2861. padding: 0 10px
  2862. }
  2863. .layui-table-page select {
  2864. height: 18px
  2865. }
  2866. .layui-table-patch .layui-table-cell {
  2867. padding: 0;
  2868. width: 30px
  2869. }
  2870. .layui-table-edit {
  2871. position: absolute;
  2872. left: 0;
  2873. top: 0;
  2874. width: 100%;
  2875. height: 100%;
  2876. padding: 0 14px 1px;
  2877. border-radius: 0;
  2878. box-shadow: 1px 1px 20px rgba(0, 0, 0, .15)
  2879. }
  2880. .layui-table-edit:focus {
  2881. border-color: #5FB878 !important
  2882. }
  2883. select.layui-table-edit {
  2884. padding: 0 0 0 10px;
  2885. border-color: #C9C9C9
  2886. }
  2887. .layui-table-view .layui-form-checkbox,
  2888. .layui-table-view .layui-form-radio,
  2889. .layui-table-view .layui-form-switch {
  2890. top: 0;
  2891. margin: 0;
  2892. box-sizing: content-box
  2893. }
  2894. .layui-table-view .layui-form-checkbox {
  2895. top: -1px;
  2896. height: 26px;
  2897. line-height: 26px
  2898. }
  2899. .layui-table-view .layui-form-checkbox i {
  2900. height: 26px
  2901. }
  2902. .layui-table-grid .layui-table-cell {
  2903. overflow: visible
  2904. }
  2905. .layui-table-grid-down {
  2906. position: absolute;
  2907. top: 0;
  2908. right: 0;
  2909. width: 26px;
  2910. height: 100%;
  2911. padding: 5px 0;
  2912. border-width: 0 0 0 1px;
  2913. text-align: center;
  2914. background-color: #fff;
  2915. color: #999;
  2916. cursor: pointer
  2917. }
  2918. .layui-table-grid-down .layui-icon {
  2919. position: absolute;
  2920. top: 50%;
  2921. left: 50%;
  2922. margin: -8px 0 0 -8px
  2923. }
  2924. .layui-table-grid-down:hover {
  2925. background-color: #fbfbfb
  2926. }
  2927. body .layui-table-tips .layui-layer-content {
  2928. background: 0 0;
  2929. padding: 0;
  2930. box-shadow: 0 1px 6px rgba(0, 0, 0, .12)
  2931. }
  2932. .layui-table-tips-main {
  2933. margin: -44px 0 0 -1px;
  2934. max-height: 150px;
  2935. padding: 8px 15px;
  2936. font-size: 14px;
  2937. overflow-y: scroll;
  2938. background-color: #fff;
  2939. color: #666
  2940. }
  2941. .layui-table-tips-c {
  2942. position: absolute;
  2943. right: -3px;
  2944. top: -13px;
  2945. width: 20px;
  2946. height: 20px;
  2947. padding: 3px;
  2948. cursor: pointer;
  2949. background-color: #666;
  2950. border-radius: 50%;
  2951. color: #fff
  2952. }
  2953. .layui-table-tips-c:hover {
  2954. background-color: #777
  2955. }
  2956. .layui-table-tips-c:before {
  2957. position: relative;
  2958. right: -2px
  2959. }
  2960. .layui-upload-file {
  2961. display: none !important;
  2962. opacity: .01;
  2963. filter: Alpha(opacity=1)
  2964. }
  2965. .layui-upload-drag,
  2966. .layui-upload-form,
  2967. .layui-upload-wrap {
  2968. display: inline-block
  2969. }
  2970. .layui-upload-list {
  2971. margin: 10px 0
  2972. }
  2973. .layui-upload-choose {
  2974. padding: 0 10px;
  2975. color: #999
  2976. }
  2977. .layui-upload-drag {
  2978. position: relative;
  2979. padding: 30px;
  2980. border: 1px dashed #e2e2e2;
  2981. background-color: #fff;
  2982. text-align: center;
  2983. cursor: pointer;
  2984. color: #999
  2985. }
  2986. .layui-upload-drag .layui-icon {
  2987. font-size: 50px;
  2988. color: #009688
  2989. }
  2990. .layui-upload-drag[lay-over] {
  2991. border-color: #009688
  2992. }
  2993. .layui-upload-iframe {
  2994. position: absolute;
  2995. width: 0;
  2996. height: 0;
  2997. border: 0;
  2998. visibility: hidden
  2999. }
  3000. .layui-upload-wrap {
  3001. position: relative;
  3002. vertical-align: middle
  3003. }
  3004. .layui-upload-wrap .layui-upload-file {
  3005. display: block !important;
  3006. position: absolute;
  3007. left: 0;
  3008. top: 0;
  3009. z-index: 10;
  3010. font-size: 100px;
  3011. width: 100%;
  3012. height: 100%;
  3013. opacity: .01;
  3014. filter: Alpha(opacity=1);
  3015. cursor: pointer
  3016. }
  3017. .layui-tree {
  3018. line-height: 26px
  3019. }
  3020. .layui-tree li {
  3021. text-overflow: ellipsis;
  3022. overflow: hidden;
  3023. white-space: nowrap
  3024. }
  3025. .layui-tree li .layui-tree-spread,
  3026. .layui-tree li a {
  3027. display: inline-block;
  3028. vertical-align: top;
  3029. height: 26px;
  3030. *display: inline;
  3031. *zoom: 1;
  3032. cursor: pointer
  3033. }
  3034. .layui-tree li a {
  3035. font-size: 0
  3036. }
  3037. .layui-tree li a i {
  3038. font-size: 16px
  3039. }
  3040. .layui-tree li a cite {
  3041. padding: 0 6px;
  3042. font-size: 14px;
  3043. font-style: normal
  3044. }
  3045. .layui-tree li i {
  3046. padding-left: 6px;
  3047. color: #333;
  3048. -moz-user-select: none
  3049. }
  3050. .layui-tree li .layui-tree-check {
  3051. font-size: 13px
  3052. }
  3053. .layui-tree li .layui-tree-check:hover {
  3054. color: #009E94
  3055. }
  3056. .layui-tree li ul {
  3057. display: none;
  3058. margin-left: 20px
  3059. }
  3060. .layui-tree li .layui-tree-enter {
  3061. line-height: 24px;
  3062. border: 1px dotted #000
  3063. }
  3064. .layui-tree-drag {
  3065. display: none;
  3066. position: absolute;
  3067. left: -666px;
  3068. top: -666px;
  3069. background-color: #f2f2f2;
  3070. padding: 5px 10px;
  3071. border: 1px dotted #000;
  3072. white-space: nowrap
  3073. }
  3074. .layui-tree-drag i {
  3075. padding-right: 5px
  3076. }
  3077. .layui-nav {
  3078. position: relative;
  3079. padding: 0 20px;
  3080. background-color: #393D49;
  3081. color: #fff;
  3082. border-radius: 2px;
  3083. font-size: 0;
  3084. box-sizing: border-box
  3085. }
  3086. .layui-nav * {
  3087. font-size: 14px
  3088. }
  3089. .layui-nav .layui-nav-item {
  3090. position: relative;
  3091. display: inline-block;
  3092. *display: inline;
  3093. *zoom: 1;
  3094. vertical-align: middle;
  3095. line-height: 60px
  3096. }
  3097. .layui-nav .layui-nav-item a {
  3098. display: block;
  3099. padding: 0 20px;
  3100. color: #fff;
  3101. color: rgba(255, 255, 255, .7);
  3102. transition: all .3s;
  3103. -webkit-transition: all .3s
  3104. }
  3105. .layui-nav .layui-this:after,
  3106. .layui-nav-bar,
  3107. .layui-nav-tree .layui-nav-itemed:after {
  3108. position: absolute;
  3109. left: 0;
  3110. top: 0;
  3111. width: 0;
  3112. height: 5px;
  3113. background-color: #5FB878;
  3114. transition: all .2s;
  3115. -webkit-transition: all .2s
  3116. }
  3117. .layui-nav-bar {
  3118. z-index: 1000
  3119. }
  3120. .layui-nav .layui-nav-item a:hover,
  3121. .layui-nav .layui-this a {
  3122. color: #fff
  3123. }
  3124. .layui-nav .layui-this:after {
  3125. content: '';
  3126. top: auto;
  3127. bottom: 0;
  3128. width: 100%
  3129. }
  3130. .layui-nav-img {
  3131. width: 30px;
  3132. height: 30px;
  3133. margin-right: 10px;
  3134. border-radius: 50%
  3135. }
  3136. .layui-nav .layui-nav-more {
  3137. content: '';
  3138. width: 0;
  3139. height: 0;
  3140. border-style: solid dashed dashed;
  3141. border-color: #fff transparent transparent;
  3142. overflow: hidden;
  3143. cursor: pointer;
  3144. transition: all .2s;
  3145. -webkit-transition: all .2s;
  3146. position: absolute;
  3147. top: 50%;
  3148. right: 3px;
  3149. margin-top: -3px;
  3150. border-width: 6px;
  3151. border-top-color: rgba(255, 255, 255, .7)
  3152. }
  3153. .layui-nav .layui-nav-mored,
  3154. .layui-nav-itemed>a .layui-nav-more {
  3155. margin-top: -9px;
  3156. border-style: dashed dashed solid;
  3157. border-color: transparent transparent #fff
  3158. }
  3159. .layui-nav-child {
  3160. display: none;
  3161. position: absolute;
  3162. left: 0;
  3163. top: 65px;
  3164. min-width: 100%;
  3165. line-height: 36px;
  3166. padding: 5px 0;
  3167. box-shadow: 0 2px 4px rgba(0, 0, 0, .12);
  3168. border: 1px solid #d2d2d2;
  3169. background-color: #fff;
  3170. z-index: 100;
  3171. border-radius: 2px;
  3172. white-space: nowrap
  3173. }
  3174. .layui-nav .layui-nav-child a {
  3175. color: #333
  3176. }
  3177. .layui-nav .layui-nav-child a:hover {
  3178. background-color: #f2f2f2;
  3179. color: #000
  3180. }
  3181. .layui-nav-child dd {
  3182. position: relative
  3183. }
  3184. .layui-nav .layui-nav-child dd.layui-this a,
  3185. .layui-nav-child dd.layui-this {
  3186. background-color: #5FB878;
  3187. color: #fff
  3188. }
  3189. .layui-nav-child dd.layui-this:after {
  3190. display: none
  3191. }
  3192. .layui-nav-tree {
  3193. width: 200px;
  3194. padding: 0
  3195. }
  3196. .layui-nav-tree .layui-nav-item {
  3197. display: block;
  3198. width: 100%;
  3199. line-height: 45px
  3200. }
  3201. .layui-nav-tree .layui-nav-item a {
  3202. position: relative;
  3203. height: 45px;
  3204. line-height: 45px;
  3205. text-overflow: ellipsis;
  3206. overflow: hidden;
  3207. white-space: nowrap
  3208. }
  3209. .layui-nav-tree .layui-nav-item a:hover {
  3210. background-color: #4E5465
  3211. }
  3212. .layui-nav-tree .layui-nav-bar {
  3213. width: 5px;
  3214. height: 0;
  3215. background-color: #009688
  3216. }
  3217. .layui-nav-tree .layui-nav-child dd.layui-this,
  3218. .layui-nav-tree .layui-nav-child dd.layui-this a,
  3219. .layui-nav-tree .layui-this,
  3220. .layui-nav-tree .layui-this>a,
  3221. .layui-nav-tree .layui-this>a:hover {
  3222. background-color: #009688;
  3223. color: #fff
  3224. }
  3225. .layui-nav-tree .layui-this:after {
  3226. display: none
  3227. }
  3228. .layui-nav-itemed>a,
  3229. .layui-nav-tree .layui-nav-title a,
  3230. .layui-nav-tree .layui-nav-title a:hover {
  3231. color: #fff !important
  3232. }
  3233. .layui-nav-tree .layui-nav-child {
  3234. position: relative;
  3235. z-index: 0;
  3236. top: 0;
  3237. border: none;
  3238. box-shadow: none
  3239. }
  3240. .layui-nav-tree .layui-nav-child a {
  3241. height: 40px;
  3242. line-height: 40px;
  3243. color: #fff;
  3244. color: rgba(255, 255, 255, .7)
  3245. }
  3246. .layui-nav-tree .layui-nav-child,
  3247. .layui-nav-tree .layui-nav-child a:hover {
  3248. background: 0 0;
  3249. color: #fff
  3250. }
  3251. .layui-nav-tree .layui-nav-more {
  3252. right: 10px
  3253. }
  3254. .layui-nav-itemed>.layui-nav-child {
  3255. display: block;
  3256. padding: 0;
  3257. background-color: rgba(0, 0, 0, .3) !important
  3258. }
  3259. .layui-nav-itemed>.layui-nav-child>.layui-this>.layui-nav-child {
  3260. display: block
  3261. }
  3262. .layui-nav-side {
  3263. position: fixed;
  3264. top: 0;
  3265. bottom: 0;
  3266. left: 0;
  3267. overflow-x: hidden;
  3268. z-index: 999
  3269. }
  3270. .layui-bg-blue .layui-nav-bar,
  3271. .layui-bg-blue .layui-nav-itemed:after,
  3272. .layui-bg-blue .layui-this:after {
  3273. background-color: #93D1FF
  3274. }
  3275. .layui-bg-blue .layui-nav-child dd.layui-this {
  3276. background-color: #1E9FFF
  3277. }
  3278. .layui-bg-blue .layui-nav-itemed>a,
  3279. .layui-nav-tree.layui-bg-blue .layui-nav-title a,
  3280. .layui-nav-tree.layui-bg-blue .layui-nav-title a:hover {
  3281. background-color: #007DDB !important
  3282. }
  3283. .layui-breadcrumb {
  3284. visibility: hidden;
  3285. font-size: 0
  3286. }
  3287. .layui-breadcrumb>* {
  3288. font-size: 14px
  3289. }
  3290. .layui-breadcrumb a {
  3291. color: #999 !important
  3292. }
  3293. .layui-breadcrumb a:hover {
  3294. color: #5FB878 !important
  3295. }
  3296. .layui-breadcrumb a cite {
  3297. color: #666;
  3298. font-style: normal
  3299. }
  3300. .layui-breadcrumb span[lay-separator] {
  3301. margin: 0 10px;
  3302. color: #999
  3303. }
  3304. .layui-tab {
  3305. /* margin: 10px 0; */
  3306. text-align: left !important
  3307. }
  3308. .layui-tab[overflow]>.layui-tab-title {
  3309. overflow: hidden
  3310. }
  3311. .layui-tab-title {
  3312. position: relative;
  3313. left: 0;
  3314. height: 40px;
  3315. white-space: nowrap;
  3316. font-size: 0;
  3317. border-bottom-width: 1px;
  3318. border-bottom-style: solid;
  3319. transition: all .2s;
  3320. -webkit-transition: all .2s
  3321. }
  3322. .layui-tab-title li {
  3323. display: inline-block;
  3324. *display: inline;
  3325. *zoom: 1;
  3326. vertical-align: middle;
  3327. font-size: 14px;
  3328. transition: all .2s;
  3329. -webkit-transition: all .2s;
  3330. position: relative;
  3331. line-height: 40px;
  3332. min-width: 65px;
  3333. padding: 0 15px;
  3334. text-align: center;
  3335. cursor: pointer
  3336. }
  3337. .layui-tab-title li a {
  3338. display: block
  3339. }
  3340. .layui-tab-title .layui-this {
  3341. color: #000
  3342. }
  3343. .layui-tab-title .layui-this:after {
  3344. position: absolute;
  3345. left: 0;
  3346. top: 0;
  3347. content: '';
  3348. width: 100%;
  3349. height: 41px;
  3350. border-width: 1px;
  3351. border-style: solid;
  3352. border-bottom-color: #fff;
  3353. border-radius: 2px 2px 0 0;
  3354. box-sizing: border-box;
  3355. pointer-events: none
  3356. }
  3357. .layui-tab-bar {
  3358. position: absolute;
  3359. right: 0;
  3360. top: 0;
  3361. z-index: 10;
  3362. width: 30px;
  3363. height: 39px;
  3364. line-height: 39px;
  3365. border-width: 1px;
  3366. border-style: solid;
  3367. border-radius: 2px;
  3368. text-align: center;
  3369. background-color: #fff;
  3370. cursor: pointer
  3371. }
  3372. .layui-tab-bar .layui-icon {
  3373. position: relative;
  3374. display: inline-block;
  3375. top: 3px;
  3376. transition: all .3s;
  3377. -webkit-transition: all .3s
  3378. }
  3379. .layui-tab-item {
  3380. display: none
  3381. }
  3382. .layui-tab-more {
  3383. padding-right: 30px;
  3384. height: auto !important;
  3385. white-space: normal !important
  3386. }
  3387. .layui-tab-more li.layui-this:after {
  3388. border-bottom-color: #e2e2e2;
  3389. border-radius: 2px
  3390. }
  3391. .layui-tab-more .layui-tab-bar .layui-icon {
  3392. top: -2px;
  3393. top: 3px\9;
  3394. -webkit-transform: rotate(180deg);
  3395. transform: rotate(180deg)
  3396. }
  3397. :root .layui-tab-more .layui-tab-bar .layui-icon {
  3398. top: -2px\0/IE9
  3399. }
  3400. .layui-tab-content {
  3401. padding: 10px
  3402. }
  3403. .layui-tab-title li .layui-tab-close {
  3404. position: relative;
  3405. display: inline-block;
  3406. width: 18px;
  3407. height: 18px;
  3408. line-height: 20px;
  3409. margin-left: 8px;
  3410. top: 1px;
  3411. text-align: center;
  3412. font-size: 14px;
  3413. color: #c2c2c2;
  3414. transition: all .2s;
  3415. -webkit-transition: all .2s
  3416. }
  3417. .layui-tab-title li .layui-tab-close:hover {
  3418. border-radius: 2px;
  3419. background-color: #FF5722;
  3420. color: #fff
  3421. }
  3422. .layui-tab-brief>.layui-tab-title .layui-this {
  3423. color: #009688
  3424. }
  3425. .layui-tab-brief>.layui-tab-more li.layui-this:after,
  3426. .layui-tab-brief>.layui-tab-title .layui-this:after {
  3427. border: none;
  3428. border-radius: 0;
  3429. border-bottom: 2px solid #5FB878
  3430. }
  3431. .layui-tab-brief[overflow]>.layui-tab-title .layui-this:after {
  3432. top: -1px
  3433. }
  3434. .layui-tab-card {
  3435. border-width: 1px;
  3436. border-style: solid;
  3437. border-radius: 2px;
  3438. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .1)
  3439. }
  3440. .layui-tab-card>.layui-tab-title {
  3441. background-color: #f2f2f2
  3442. }
  3443. .layui-tab-card>.layui-tab-title li {
  3444. margin-right: -1px;
  3445. margin-left: -1px
  3446. }
  3447. .layui-tab-card>.layui-tab-title .layui-this {
  3448. background-color: #fff
  3449. }
  3450. .layui-tab-card>.layui-tab-title .layui-this:after {
  3451. border-top: none;
  3452. border-width: 1px;
  3453. border-bottom-color: #fff
  3454. }
  3455. .layui-tab-card>.layui-tab-title .layui-tab-bar {
  3456. height: 40px;
  3457. line-height: 40px;
  3458. border-radius: 0;
  3459. border-top: none;
  3460. border-right: none
  3461. }
  3462. .layui-tab-card>.layui-tab-more .layui-this {
  3463. background: 0 0;
  3464. color: #5FB878
  3465. }
  3466. .layui-tab-card>.layui-tab-more .layui-this:after {
  3467. border: none
  3468. }
  3469. .layui-timeline {
  3470. padding-left: 5px
  3471. }
  3472. .layui-timeline-item {
  3473. position: relative;
  3474. padding-bottom: 20px
  3475. }
  3476. .layui-timeline-axis {
  3477. position: absolute;
  3478. left: -5px;
  3479. top: 0;
  3480. z-index: 10;
  3481. width: 20px;
  3482. height: 20px;
  3483. line-height: 20px;
  3484. background-color: #fff;
  3485. color: #5FB878;
  3486. border-radius: 50%;
  3487. text-align: center;
  3488. cursor: pointer
  3489. }
  3490. .layui-timeline-axis:hover {
  3491. color: #FF5722
  3492. }
  3493. .layui-timeline-item:before {
  3494. content: '';
  3495. position: absolute;
  3496. left: 5px;
  3497. top: 0;
  3498. z-index: 0;
  3499. width: 1px;
  3500. height: 100%
  3501. }
  3502. .layui-timeline-item:last-child:before {
  3503. display: none
  3504. }
  3505. .layui-timeline-item:first-child:before {
  3506. display: block
  3507. }
  3508. .layui-timeline-content {
  3509. padding-left: 25px
  3510. }
  3511. .layui-timeline-title {
  3512. position: relative;
  3513. margin-bottom: 10px
  3514. }
  3515. .layui-badge,
  3516. .layui-badge-dot,
  3517. .layui-badge-rim {
  3518. position: relative;
  3519. display: inline-block;
  3520. padding: 0 6px;
  3521. font-size: 12px;
  3522. text-align: center;
  3523. background-color: #FF5722;
  3524. color: #fff;
  3525. border-radius: 2px
  3526. }
  3527. .layui-badge {
  3528. height: 18px;
  3529. line-height: 18px
  3530. }
  3531. .layui-badge-dot {
  3532. width: 8px;
  3533. height: 8px;
  3534. padding: 0;
  3535. border-radius: 50%
  3536. }
  3537. .layui-badge-rim {
  3538. height: 18px;
  3539. line-height: 18px;
  3540. border-width: 1px;
  3541. border-style: solid;
  3542. background-color: #fff;
  3543. color: #666
  3544. }
  3545. .layui-btn .layui-badge,
  3546. .layui-btn .layui-badge-dot {
  3547. margin-left: 5px
  3548. }
  3549. .layui-nav .layui-badge,
  3550. .layui-nav .layui-badge-dot {
  3551. position: absolute;
  3552. top: 50%;
  3553. margin: -8px 6px 0
  3554. }
  3555. .layui-tab-title .layui-badge,
  3556. .layui-tab-title .layui-badge-dot {
  3557. left: 5px;
  3558. top: -2px
  3559. }
  3560. .layui-carousel {
  3561. position: relative;
  3562. left: 0;
  3563. top: 0;
  3564. background-color: #f8f8f8
  3565. }
  3566. .layui-carousel>[carousel-item] {
  3567. position: relative;
  3568. width: 100%;
  3569. height: 100%;
  3570. overflow: hidden
  3571. }
  3572. .layui-carousel>[carousel-item]:before {
  3573. position: absolute;
  3574. content: '\e63d';
  3575. left: 50%;
  3576. top: 50%;
  3577. width: 100px;
  3578. line-height: 20px;
  3579. margin: -10px 0 0 -50px;
  3580. text-align: center;
  3581. color: #c2c2c2;
  3582. font-family: layui-icon !important;
  3583. font-size: 30px;
  3584. font-style: normal;
  3585. -webkit-font-smoothing: antialiased;
  3586. -moz-osx-font-smoothing: grayscale
  3587. }
  3588. .layui-carousel>[carousel-item]>* {
  3589. display: none;
  3590. position: absolute;
  3591. left: 0;
  3592. top: 0;
  3593. width: 100%;
  3594. height: 100%;
  3595. background-color: #f8f8f8;
  3596. transition-duration: .3s;
  3597. -webkit-transition-duration: .3s
  3598. }
  3599. .layui-carousel-updown>* {
  3600. -webkit-transition: .3s ease-in-out up;
  3601. transition: .3s ease-in-out up
  3602. }
  3603. .layui-carousel-arrow {
  3604. display: none\9;
  3605. opacity: 0;
  3606. position: absolute;
  3607. left: 10px;
  3608. top: 50%;
  3609. margin-top: -18px;
  3610. width: 36px;
  3611. height: 36px;
  3612. line-height: 36px;
  3613. text-align: center;
  3614. font-size: 20px;
  3615. border: 0;
  3616. border-radius: 50%;
  3617. background-color: rgba(0, 0, 0, .2);
  3618. color: #fff;
  3619. -webkit-transition-duration: .3s;
  3620. transition-duration: .3s;
  3621. cursor: pointer
  3622. }
  3623. .layui-carousel-arrow[lay-type=add] {
  3624. left: auto !important;
  3625. right: 10px
  3626. }
  3627. .layui-carousel:hover .layui-carousel-arrow[lay-type=add],
  3628. .layui-carousel[lay-arrow=always] .layui-carousel-arrow[lay-type=add] {
  3629. right: 20px
  3630. }
  3631. .layui-carousel[lay-arrow=always] .layui-carousel-arrow {
  3632. opacity: 1;
  3633. left: 20px
  3634. }
  3635. .layui-carousel[lay-arrow=none] .layui-carousel-arrow {
  3636. display: none
  3637. }
  3638. .layui-carousel-arrow:hover,
  3639. .layui-carousel-ind ul:hover {
  3640. background-color: rgba(0, 0, 0, .35)
  3641. }
  3642. .layui-carousel:hover .layui-carousel-arrow {
  3643. display: block\9;
  3644. opacity: 1;
  3645. left: 20px
  3646. }
  3647. .layui-carousel-ind {
  3648. position: relative;
  3649. top: -35px;
  3650. width: 100%;
  3651. line-height: 0 !important;
  3652. text-align: center;
  3653. font-size: 0
  3654. }
  3655. .layui-carousel[lay-indicator=outside] {
  3656. margin-bottom: 30px
  3657. }
  3658. .layui-carousel[lay-indicator=outside] .layui-carousel-ind {
  3659. top: 10px
  3660. }
  3661. .layui-carousel[lay-indicator=outside] .layui-carousel-ind ul {
  3662. background-color: rgba(0, 0, 0, .5)
  3663. }
  3664. .layui-carousel[lay-indicator=none] .layui-carousel-ind {
  3665. display: none
  3666. }
  3667. .layui-carousel-ind ul {
  3668. display: inline-block;
  3669. padding: 5px;
  3670. background-color: rgba(0, 0, 0, .2);
  3671. border-radius: 10px;
  3672. -webkit-transition-duration: .3s;
  3673. transition-duration: .3s
  3674. }
  3675. .layui-carousel-ind li {
  3676. display: inline-block;
  3677. width: 10px;
  3678. height: 10px;
  3679. margin: 0 3px;
  3680. font-size: 14px;
  3681. background-color: #e2e2e2;
  3682. background-color: rgba(255, 255, 255, .5);
  3683. border-radius: 50%;
  3684. cursor: pointer;
  3685. -webkit-transition-duration: .3s;
  3686. transition-duration: .3s
  3687. }
  3688. .layui-carousel-ind li:hover {
  3689. background-color: rgba(255, 255, 255, .7)
  3690. }
  3691. .layui-carousel-ind li.layui-this {
  3692. background-color: #fff
  3693. }
  3694. .layui-carousel>[carousel-item]>.layui-carousel-next,
  3695. .layui-carousel>[carousel-item]>.layui-carousel-prev,
  3696. .layui-carousel>[carousel-item]>.layui-this {
  3697. display: block
  3698. }
  3699. .layui-carousel>[carousel-item]>.layui-this {
  3700. left: 0
  3701. }
  3702. .layui-carousel>[carousel-item]>.layui-carousel-prev {
  3703. left: -100%
  3704. }
  3705. .layui-carousel>[carousel-item]>.layui-carousel-next {
  3706. left: 100%
  3707. }
  3708. .layui-carousel>[carousel-item]>.layui-carousel-next.layui-carousel-left,
  3709. .layui-carousel>[carousel-item]>.layui-carousel-prev.layui-carousel-right {
  3710. left: 0
  3711. }
  3712. .layui-carousel>[carousel-item]>.layui-this.layui-carousel-left {
  3713. left: -100%
  3714. }
  3715. .layui-carousel>[carousel-item]>.layui-this.layui-carousel-right {
  3716. left: 100%
  3717. }
  3718. .layui-carousel[lay-anim=updown] .layui-carousel-arrow {
  3719. left: 50% !important;
  3720. top: 20px;
  3721. margin: 0 0 0 -18px
  3722. }
  3723. .layui-carousel[lay-anim=updown]>[carousel-item]>*,
  3724. .layui-carousel[lay-anim=fade]>[carousel-item]>* {
  3725. left: 0 !important
  3726. }
  3727. .layui-carousel[lay-anim=updown] .layui-carousel-arrow[lay-type=add] {
  3728. top: auto !important;
  3729. bottom: 20px
  3730. }
  3731. .layui-carousel[lay-anim=updown] .layui-carousel-ind {
  3732. position: absolute;
  3733. top: 50%;
  3734. right: 20px;
  3735. width: auto;
  3736. height: auto
  3737. }
  3738. .layui-carousel[lay-anim=updown] .layui-carousel-ind ul {
  3739. padding: 3px 5px
  3740. }
  3741. .layui-carousel[lay-anim=updown] .layui-carousel-ind li {
  3742. display: block;
  3743. margin: 6px 0
  3744. }
  3745. .layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this {
  3746. top: 0
  3747. }
  3748. .layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-prev {
  3749. top: -100%
  3750. }
  3751. .layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-next {
  3752. top: 100%
  3753. }
  3754. .layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-next.layui-carousel-left,
  3755. .layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-prev.layui-carousel-right {
  3756. top: 0
  3757. }
  3758. .layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this.layui-carousel-left {
  3759. top: -100%
  3760. }
  3761. .layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this.layui-carousel-right {
  3762. top: 100%
  3763. }
  3764. .layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-next,
  3765. .layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-prev {
  3766. opacity: 0
  3767. }
  3768. .layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-next.layui-carousel-left,
  3769. .layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-prev.layui-carousel-right {
  3770. opacity: 1
  3771. }
  3772. .layui-carousel[lay-anim=fade]>[carousel-item]>.layui-this.layui-carousel-left,
  3773. .layui-carousel[lay-anim=fade]>[carousel-item]>.layui-this.layui-carousel-right {
  3774. opacity: 0
  3775. }
  3776. .layui-fixbar {
  3777. position: fixed;
  3778. right: 15px;
  3779. bottom: 15px;
  3780. z-index: 999999
  3781. }
  3782. .layui-fixbar li {
  3783. width: 50px;
  3784. height: 50px;
  3785. line-height: 50px;
  3786. margin-bottom: 1px;
  3787. text-align: center;
  3788. cursor: pointer;
  3789. font-size: 30px;
  3790. background-color: #9F9F9F;
  3791. color: #fff;
  3792. border-radius: 2px;
  3793. opacity: .95
  3794. }
  3795. .layui-fixbar li:hover {
  3796. opacity: .85
  3797. }
  3798. .layui-fixbar li:active {
  3799. opacity: 1
  3800. }
  3801. .layui-fixbar .layui-fixbar-top {
  3802. display: none;
  3803. font-size: 40px
  3804. }
  3805. body .layui-util-face {
  3806. border: none;
  3807. background: 0 0
  3808. }
  3809. body .layui-util-face .layui-layer-content {
  3810. padding: 0;
  3811. background-color: #fff;
  3812. color: #666;
  3813. box-shadow: none
  3814. }
  3815. .layui-util-face .layui-layer-TipsG {
  3816. display: none
  3817. }
  3818. .layui-util-face ul {
  3819. position: relative;
  3820. width: 372px;
  3821. padding: 10px;
  3822. border: 1px solid #D9D9D9;
  3823. background-color: #fff;
  3824. box-shadow: 0 0 20px rgba(0, 0, 0, .2)
  3825. }
  3826. .layui-util-face ul li {
  3827. cursor: pointer;
  3828. float: left;
  3829. border: 1px solid #e8e8e8;
  3830. height: 22px;
  3831. width: 26px;
  3832. overflow: hidden;
  3833. margin: -1px 0 0 -1px;
  3834. padding: 4px 2px;
  3835. text-align: center
  3836. }
  3837. .layui-util-face ul li:hover {
  3838. position: relative;
  3839. z-index: 2;
  3840. border: 1px solid #eb7350;
  3841. background: #fff9ec
  3842. }
  3843. .layui-code {
  3844. position: relative;
  3845. margin: 10px 0;
  3846. padding: 15px;
  3847. line-height: 20px;
  3848. border: 1px solid #ddd;
  3849. border-left-width: 6px;
  3850. background-color: #F2F2F2;
  3851. color: #333;
  3852. font-family: Courier New;
  3853. font-size: 12px
  3854. }
  3855. .layui-rate,
  3856. .layui-rate * {
  3857. display: inline-block;
  3858. vertical-align: middle
  3859. }
  3860. .layui-rate {
  3861. padding: 10px 5px 10px 0;
  3862. font-size: 0
  3863. }
  3864. .layui-rate li i.layui-icon {
  3865. font-size: 20px;
  3866. color: #FFB800;
  3867. margin-right: 5px;
  3868. transition: all .3s;
  3869. -webkit-transition: all .3s
  3870. }
  3871. .layui-rate li i:hover {
  3872. cursor: pointer;
  3873. transform: scale(1.12);
  3874. -webkit-transform: scale(1.12)
  3875. }
  3876. .layui-rate[readonly] li i:hover {
  3877. cursor: default;
  3878. transform: scale(1)
  3879. }
  3880. .layui-colorpicker {
  3881. width: 26px;
  3882. height: 26px;
  3883. border: 1px solid #e6e6e6;
  3884. padding: 5px;
  3885. border-radius: 2px;
  3886. line-height: 24px;
  3887. display: inline-block;
  3888. cursor: pointer;
  3889. transition: all .3s;
  3890. -webkit-transition: all .3s
  3891. }
  3892. .layui-colorpicker:hover {
  3893. border-color: #d2d2d2
  3894. }
  3895. .layui-colorpicker.layui-colorpicker-lg {
  3896. width: 34px;
  3897. height: 34px;
  3898. line-height: 32px
  3899. }
  3900. .layui-colorpicker.layui-colorpicker-sm {
  3901. width: 24px;
  3902. height: 24px;
  3903. line-height: 22px
  3904. }
  3905. .layui-colorpicker.layui-colorpicker-xs {
  3906. width: 22px;
  3907. height: 22px;
  3908. line-height: 20px
  3909. }
  3910. .layui-colorpicker-trigger-bgcolor {
  3911. display: block;
  3912. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
  3913. border-radius: 2px
  3914. }
  3915. .layui-colorpicker-trigger-span {
  3916. display: block;
  3917. height: 100%;
  3918. box-sizing: border-box;
  3919. border: 1px solid rgba(0, 0, 0, .15);
  3920. border-radius: 2px;
  3921. text-align: center
  3922. }
  3923. .layui-colorpicker-trigger-i {
  3924. display: inline-block;
  3925. color: #FFF;
  3926. font-size: 12px
  3927. }
  3928. .layui-colorpicker-trigger-i.layui-icon-close {
  3929. color: #999
  3930. }
  3931. .layui-colorpicker-main {
  3932. position: absolute;
  3933. z-index: 66666666;
  3934. width: 280px;
  3935. padding: 7px;
  3936. background: #FFF;
  3937. border: 1px solid #d2d2d2;
  3938. border-radius: 2px;
  3939. box-shadow: 0 2px 4px rgba(0, 0, 0, .12)
  3940. }
  3941. .layui-colorpicker-main-wrapper {
  3942. height: 180px;
  3943. position: relative
  3944. }
  3945. .layui-colorpicker-basis {
  3946. width: 260px;
  3947. height: 100%;
  3948. position: relative
  3949. }
  3950. .layui-colorpicker-basis-white {
  3951. width: 100%;
  3952. height: 100%;
  3953. position: absolute;
  3954. top: 0;
  3955. left: 0;
  3956. background: linear-gradient(90deg, #FFF, hsla(0, 0%, 100%, 0))
  3957. }
  3958. .layui-colorpicker-basis-black {
  3959. width: 100%;
  3960. height: 100%;
  3961. position: absolute;
  3962. top: 0;
  3963. left: 0;
  3964. background: linear-gradient(0deg, #000, transparent)
  3965. }
  3966. .layui-colorpicker-basis-cursor {
  3967. width: 10px;
  3968. height: 10px;
  3969. border: 1px solid #FFF;
  3970. border-radius: 50%;
  3971. position: absolute;
  3972. top: -3px;
  3973. right: -3px;
  3974. cursor: pointer
  3975. }
  3976. .layui-colorpicker-side {
  3977. position: absolute;
  3978. top: 0;
  3979. right: 0;
  3980. width: 12px;
  3981. height: 100%;
  3982. background: linear-gradient(red, #FF0, #0F0, #0FF, #00F, #F0F, red)
  3983. }
  3984. .layui-colorpicker-side-slider {
  3985. width: 100%;
  3986. height: 5px;
  3987. box-shadow: 0 0 1px #888;
  3988. box-sizing: border-box;
  3989. background: #FFF;
  3990. border-radius: 1px;
  3991. border: 1px solid #f0f0f0;
  3992. cursor: pointer;
  3993. position: absolute;
  3994. left: 0
  3995. }
  3996. .layui-colorpicker-main-alpha {
  3997. display: none;
  3998. height: 12px;
  3999. margin-top: 7px;
  4000. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)
  4001. }
  4002. .layui-colorpicker-alpha-bgcolor {
  4003. height: 100%;
  4004. position: relative
  4005. }
  4006. .layui-colorpicker-alpha-slider {
  4007. width: 5px;
  4008. height: 100%;
  4009. box-shadow: 0 0 1px #888;
  4010. box-sizing: border-box;
  4011. background: #FFF;
  4012. border-radius: 1px;
  4013. border: 1px solid #f0f0f0;
  4014. cursor: pointer;
  4015. position: absolute;
  4016. top: 0
  4017. }
  4018. .layui-colorpicker-main-pre {
  4019. padding-top: 7px;
  4020. font-size: 0
  4021. }
  4022. .layui-colorpicker-pre {
  4023. width: 20px;
  4024. height: 20px;
  4025. border-radius: 2px;
  4026. display: inline-block;
  4027. margin-left: 6px;
  4028. margin-bottom: 7px;
  4029. cursor: pointer
  4030. }
  4031. .layui-colorpicker-pre:nth-child(11n+1) {
  4032. margin-left: 0
  4033. }
  4034. .layui-colorpicker-pre-isalpha {
  4035. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)
  4036. }
  4037. .layui-colorpicker-pre.layui-this {
  4038. box-shadow: 0 0 3px 2px rgba(0, 0, 0, .15)
  4039. }
  4040. .layui-colorpicker-pre>div {
  4041. height: 100%;
  4042. border-radius: 2px
  4043. }
  4044. .layui-colorpicker-main-input {
  4045. text-align: right;
  4046. padding-top: 7px
  4047. }
  4048. .layui-colorpicker-main-input .layui-btn-container .layui-btn {
  4049. margin: 0 0 0 10px
  4050. }
  4051. .layui-colorpicker-main-input div.layui-inline {
  4052. float: left;
  4053. margin-right: 10px;
  4054. font-size: 14px
  4055. }
  4056. .layui-colorpicker-main-input input.layui-input {
  4057. width: 150px;
  4058. height: 30px;
  4059. color: #666
  4060. }
  4061. .layui-slider {
  4062. height: 4px;
  4063. background: #e2e2e2;
  4064. border-radius: 3px;
  4065. position: relative;
  4066. cursor: pointer
  4067. }
  4068. .layui-slider-bar {
  4069. border-radius: 3px;
  4070. position: absolute;
  4071. height: 100%
  4072. }
  4073. .layui-slider-step {
  4074. position: absolute;
  4075. top: 0;
  4076. width: 4px;
  4077. height: 4px;
  4078. border-radius: 50%;
  4079. background: #FFF;
  4080. -webkit-transform: translateX(-50%);
  4081. transform: translateX(-50%)
  4082. }
  4083. .layui-slider-wrap {
  4084. width: 36px;
  4085. height: 36px;
  4086. position: absolute;
  4087. top: -16px;
  4088. -webkit-transform: translateX(-50%);
  4089. transform: translateX(-50%);
  4090. z-index: 10;
  4091. text-align: center
  4092. }
  4093. .layui-slider-wrap-btn {
  4094. width: 12px;
  4095. height: 12px;
  4096. border-radius: 50%;
  4097. background: #FFF;
  4098. display: inline-block;
  4099. vertical-align: middle;
  4100. cursor: pointer;
  4101. transition: .3s
  4102. }
  4103. .layui-slider-wrap:after {
  4104. content: "";
  4105. height: 100%;
  4106. display: inline-block;
  4107. vertical-align: middle
  4108. }
  4109. .layui-slider-wrap-btn.layui-slider-hover,
  4110. .layui-slider-wrap-btn:hover {
  4111. transform: scale(1.2)
  4112. }
  4113. .layui-slider-wrap-btn.layui-disabled:hover {
  4114. transform: scale(1) !important
  4115. }
  4116. .layui-slider-tips {
  4117. position: absolute;
  4118. top: -42px;
  4119. z-index: 66666666;
  4120. white-space: nowrap;
  4121. display: none;
  4122. -webkit-transform: translateX(-50%);
  4123. transform: translateX(-50%);
  4124. color: #FFF;
  4125. background: #000;
  4126. border-radius: 3px;
  4127. height: 25px;
  4128. line-height: 25px;
  4129. padding: 0 10px
  4130. }
  4131. .layui-slider-tips:after {
  4132. content: '';
  4133. position: absolute;
  4134. bottom: -12px;
  4135. left: 50%;
  4136. margin-left: -6px;
  4137. width: 0;
  4138. height: 0;
  4139. border-width: 6px;
  4140. border-style: solid;
  4141. border-color: #000 transparent transparent
  4142. }
  4143. .layui-slider-input {
  4144. width: 70px;
  4145. height: 32px;
  4146. border: 1px solid #e6e6e6;
  4147. border-radius: 3px;
  4148. font-size: 16px;
  4149. line-height: 32px;
  4150. position: absolute;
  4151. right: 0;
  4152. top: -15px
  4153. }
  4154. .layui-slider-input-btn {
  4155. display: none;
  4156. position: absolute;
  4157. top: 0;
  4158. right: 0;
  4159. width: 20px;
  4160. height: 100%;
  4161. border-left: 1px solid #d2d2d2
  4162. }
  4163. .layui-slider-input-btn i {
  4164. cursor: pointer;
  4165. position: absolute;
  4166. right: 0;
  4167. bottom: 0;
  4168. width: 20px;
  4169. height: 50%;
  4170. font-size: 12px;
  4171. line-height: 16px;
  4172. text-align: center;
  4173. color: #999
  4174. }
  4175. .layui-slider-input-btn i:first-child {
  4176. top: 0;
  4177. border-bottom: 1px solid #d2d2d2
  4178. }
  4179. .layui-slider-input-txt {
  4180. height: 100%;
  4181. font-size: 14px
  4182. }
  4183. .layui-slider-input-txt input {
  4184. height: 100%;
  4185. border: none
  4186. }
  4187. .layui-slider-input-btn i:hover {
  4188. color: #009688
  4189. }
  4190. .layui-slider-vertical {
  4191. width: 4px;
  4192. margin-left: 34px
  4193. }
  4194. .layui-slider-vertical .layui-slider-bar {
  4195. width: 4px
  4196. }
  4197. .layui-slider-vertical .layui-slider-step {
  4198. top: auto;
  4199. left: 0;
  4200. -webkit-transform: translateY(50%);
  4201. transform: translateY(50%)
  4202. }
  4203. .layui-slider-vertical .layui-slider-wrap {
  4204. top: auto;
  4205. left: -16px;
  4206. -webkit-transform: translateY(50%);
  4207. transform: translateY(50%)
  4208. }
  4209. .layui-slider-vertical .layui-slider-tips {
  4210. top: auto;
  4211. left: 2px
  4212. }
  4213. @media \0screen {
  4214. .layui-slider-wrap-btn {
  4215. margin-left: -20px
  4216. }
  4217. .layui-slider-vertical .layui-slider-wrap-btn {
  4218. margin-left: 0;
  4219. margin-bottom: -20px
  4220. }
  4221. .layui-slider-vertical .layui-slider-tips {
  4222. margin-left: -8px
  4223. }
  4224. .layui-slider>span {
  4225. margin-left: 8px
  4226. }
  4227. }
  4228. .layui-anim {
  4229. -webkit-animation-duration: .3s;
  4230. animation-duration: .3s;
  4231. -webkit-animation-fill-mode: both;
  4232. animation-fill-mode: both
  4233. }
  4234. .layui-anim.layui-icon {
  4235. display: inline-block
  4236. }
  4237. .layui-anim-loop {
  4238. -webkit-animation-iteration-count: infinite;
  4239. animation-iteration-count: infinite
  4240. }
  4241. .layui-trans,
  4242. .layui-trans a {
  4243. transition: all .3s;
  4244. -webkit-transition: all .3s
  4245. }
  4246. @-webkit-keyframes layui-rotate {
  4247. from {
  4248. -webkit-transform: rotate(0)
  4249. }
  4250. to {
  4251. -webkit-transform: rotate(360deg)
  4252. }
  4253. }
  4254. @keyframes layui-rotate {
  4255. from {
  4256. transform: rotate(0)
  4257. }
  4258. to {
  4259. transform: rotate(360deg)
  4260. }
  4261. }
  4262. .layui-anim-rotate {
  4263. -webkit-animation-name: layui-rotate;
  4264. animation-name: layui-rotate;
  4265. -webkit-animation-duration: 1s;
  4266. animation-duration: 1s;
  4267. -webkit-animation-timing-function: linear;
  4268. animation-timing-function: linear
  4269. }
  4270. @-webkit-keyframes layui-up {
  4271. from {
  4272. -webkit-transform: translate3d(0, 100%, 0);
  4273. opacity: .3
  4274. }
  4275. to {
  4276. -webkit-transform: translate3d(0, 0, 0);
  4277. opacity: 1
  4278. }
  4279. }
  4280. @keyframes layui-up {
  4281. from {
  4282. transform: translate3d(0, 100%, 0);
  4283. opacity: .3
  4284. }
  4285. to {
  4286. transform: translate3d(0, 0, 0);
  4287. opacity: 1
  4288. }
  4289. }
  4290. .layui-anim-up {
  4291. -webkit-animation-name: layui-up;
  4292. animation-name: layui-up
  4293. }
  4294. @-webkit-keyframes layui-upbit {
  4295. from {
  4296. -webkit-transform: translate3d(0, 30px, 0);
  4297. opacity: .3
  4298. }
  4299. to {
  4300. -webkit-transform: translate3d(0, 0, 0);
  4301. opacity: 1
  4302. }
  4303. }
  4304. @keyframes layui-upbit {
  4305. from {
  4306. transform: translate3d(0, 30px, 0);
  4307. opacity: .3
  4308. }
  4309. to {
  4310. transform: translate3d(0, 0, 0);
  4311. opacity: 1
  4312. }
  4313. }
  4314. .layui-anim-upbit {
  4315. -webkit-animation-name: layui-upbit;
  4316. animation-name: layui-upbit
  4317. }
  4318. @-webkit-keyframes layui-scale {
  4319. 0% {
  4320. opacity: .3;
  4321. -webkit-transform: scale(.5)
  4322. }
  4323. 100% {
  4324. opacity: 1;
  4325. -webkit-transform: scale(1)
  4326. }
  4327. }
  4328. @keyframes layui-scale {
  4329. 0% {
  4330. opacity: .3;
  4331. -ms-transform: scale(.5);
  4332. transform: scale(.5)
  4333. }
  4334. 100% {
  4335. opacity: 1;
  4336. -ms-transform: scale(1);
  4337. transform: scale(1)
  4338. }
  4339. }
  4340. .layui-anim-scale {
  4341. -webkit-animation-name: layui-scale;
  4342. animation-name: layui-scale
  4343. }
  4344. @-webkit-keyframes layui-scale-spring {
  4345. 0% {
  4346. opacity: .5;
  4347. -webkit-transform: scale(.5)
  4348. }
  4349. 80% {
  4350. opacity: .8;
  4351. -webkit-transform: scale(1.1)
  4352. }
  4353. 100% {
  4354. opacity: 1;
  4355. -webkit-transform: scale(1)
  4356. }
  4357. }
  4358. @keyframes layui-scale-spring {
  4359. 0% {
  4360. opacity: .5;
  4361. transform: scale(.5)
  4362. }
  4363. 80% {
  4364. opacity: .8;
  4365. transform: scale(1.1)
  4366. }
  4367. 100% {
  4368. opacity: 1;
  4369. transform: scale(1)
  4370. }
  4371. }
  4372. .layui-anim-scaleSpring {
  4373. -webkit-animation-name: layui-scale-spring;
  4374. animation-name: layui-scale-spring
  4375. }
  4376. @-webkit-keyframes layui-fadein {
  4377. 0% {
  4378. opacity: 0
  4379. }
  4380. 100% {
  4381. opacity: 1
  4382. }
  4383. }
  4384. @keyframes layui-fadein {
  4385. 0% {
  4386. opacity: 0
  4387. }
  4388. 100% {
  4389. opacity: 1
  4390. }
  4391. }
  4392. .layui-anim-fadein {
  4393. -webkit-animation-name: layui-fadein;
  4394. animation-name: layui-fadein
  4395. }
  4396. @-webkit-keyframes layui-fadeout {
  4397. 0% {
  4398. opacity: 1
  4399. }
  4400. 100% {
  4401. opacity: 0
  4402. }
  4403. }
  4404. @keyframes layui-fadeout {
  4405. 0% {
  4406. opacity: 1
  4407. }
  4408. 100% {
  4409. opacity: 0
  4410. }
  4411. }
  4412. .layui-anim-fadeout {
  4413. -webkit-animation-name: layui-fadeout;
  4414. animation-name: layui-fadeout
  4415. }