style.min.css 108 KB

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