style.min.css 108 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368
  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, system-ui, 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 8px;
  1900. line-height: 18px
  1901. }
  1902. .btn-group-sm>.btn,
  1903. .btn-sm {
  1904. font-size: 12px;
  1905. padding: 4px 12px;
  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-group-justified {
  1915. display: -webkit-box;
  1916. display: flex;
  1917. -webkit-box-pack: justify;
  1918. justify-content: space-between;
  1919. }
  1920. .btn-group-justified .btn {
  1921. width: 100%;
  1922. }
  1923. .btn-group-round .btn:first-child {
  1924. border-top-left-radius: 10rem;
  1925. border-bottom-left-radius: 10rem;
  1926. }
  1927. .btn-group-round .btn:last-child {
  1928. border-top-right-radius: 10rem;
  1929. border-bottom-right-radius: 10rem;
  1930. }
  1931. /* 背景色 */
  1932. .bg-primary {
  1933. background-color: #33cabb !important;
  1934. color: #fff!important;
  1935. }
  1936. .bg-secondary {
  1937. background-color: #e4e7ea !important;
  1938. color: #fff!important;
  1939. }
  1940. .bg-success {
  1941. background-color: #15c377 !important;
  1942. color: #fff!important;
  1943. }
  1944. .bg-info {
  1945. background-color: #48b0f7 !important;
  1946. color: #fff!important;
  1947. }
  1948. .bg-warning {
  1949. background-color: #faa64b !important;
  1950. color: #fff!important;
  1951. }
  1952. .bg-danger {
  1953. background-color: #f96868 !important;
  1954. color: #fff!important;
  1955. }
  1956. .bg-pink {
  1957. background-color: #f96197 !important;
  1958. color: #fff!important;
  1959. }
  1960. .bg-purple {
  1961. background-color: #926dde !important;
  1962. color: #fff!important;
  1963. }
  1964. .bg-brown {
  1965. background-color: #8d6658 !important;
  1966. color: #fff!important;
  1967. }
  1968. .bg-cyan {
  1969. background-color: #57c7d4 !important;
  1970. color: #fff!important;
  1971. }
  1972. .bg-yellow {
  1973. background-color: #fcc525 !important;
  1974. color: #fff!important;
  1975. }
  1976. .bg-gray {
  1977. background-color: #868e96 !important;
  1978. color: #fff!important;
  1979. }
  1980. .bg-dark {
  1981. background-color: #465161 !important;
  1982. color: #fff!important;
  1983. }
  1984. .bg-white {
  1985. background-color: #fff !important
  1986. }
  1987. .bg-lightest {
  1988. background-color: #fcfdfe !important
  1989. }
  1990. .bg-lighter {
  1991. background-color: #f9fafb !important
  1992. }
  1993. .bg-light {
  1994. background-color: #f5f6f7 !important
  1995. }
  1996. .bg-translucent {
  1997. background-color: rgba(255, 255, 255, 0.175)
  1998. }
  1999. .bg-transparent {
  2000. background-color: transparent !important
  2001. }
  2002. /* 字体颜色 */
  2003. .text-primary {
  2004. color: #33cabb !important
  2005. }
  2006. .text-secondary {
  2007. color: #e4e7ea !important
  2008. }
  2009. .text-success {
  2010. color: #15c377 !important
  2011. }
  2012. .text-info {
  2013. color: #48b0f7 !important
  2014. }
  2015. .text-warning {
  2016. color: #faa64b !important
  2017. }
  2018. .text-danger {
  2019. color: #f96868 !important
  2020. }
  2021. .text-pink {
  2022. color: #f96197 !important
  2023. }
  2024. .text-purple {
  2025. color: #926dde !important
  2026. }
  2027. .text-brown {
  2028. color: #8d6658 !important
  2029. }
  2030. .text-cyan {
  2031. color: #57c7d4 !important
  2032. }
  2033. .text-yellow {
  2034. color: #fcc525 !important
  2035. }
  2036. .text-gray {
  2037. color: #868e96 !important
  2038. }
  2039. .text-dark {
  2040. color: #465161 !important
  2041. }
  2042. .text-default {
  2043. color: #4d5259 !important
  2044. }
  2045. .text-muted {
  2046. color: #868e96 !important
  2047. }
  2048. .text-light {
  2049. color: #616a78 !important
  2050. }
  2051. .text-lighter {
  2052. color: #a5b3c7 !important
  2053. }
  2054. .text-fade {
  2055. color: rgba(77,82,89,0.7) !important
  2056. }
  2057. .text-fader {
  2058. color: rgba(77,82,89,0.5) !important
  2059. }
  2060. .text-fadest {
  2061. color: rgba(77,82,89,0.4) !important
  2062. }
  2063. .text-white {
  2064. color: #ffffff!important
  2065. }
  2066. .text-transparent {
  2067. color: transparent !important
  2068. }
  2069. a.text-primary:hover,a.text-primary:focus {
  2070. color: #33cabb !important
  2071. }
  2072. a.text-secondary:hover,a.text-secondary:focus {
  2073. color: #e4e7ea !important
  2074. }
  2075. a.text-info:hover,a.text-info:focus {
  2076. color: #48b0f7 !important
  2077. }
  2078. a.text-success:hover,a.text-success:focus {
  2079. color: #15c377 !important
  2080. }
  2081. a.text-warning:hover,a.text-warning:focus {
  2082. color: #faa64b !important
  2083. }
  2084. a.text-danger:hover,a.text-danger:focus {
  2085. color: #f96868 !important
  2086. }
  2087. /* 分割线 */
  2088. .divider {
  2089. display: -webkit-box;
  2090. display: flex;
  2091. -webkit-box-align: center;
  2092. align-items: center;
  2093. -webkit-box-flex: 0;
  2094. flex: 0 1;
  2095. color: #8b95a5;
  2096. font-size: 11px;
  2097. letter-spacing: .5px;
  2098. margin: 2rem auto;
  2099. width: 100%;
  2100. }
  2101. .divider::before,
  2102. .divider::after {
  2103. content: '';
  2104. -webkit-box-flex: 1;
  2105. flex-grow: 1;
  2106. border-top: 1px solid #ebebeb;
  2107. }
  2108. .divider::before {
  2109. margin-right: 16px;
  2110. }
  2111. .divider::after {
  2112. margin-left: 16px;
  2113. }
  2114. /* 其他 */
  2115. hr {
  2116. border-top-color: rgba(77,82,89,0.05);
  2117. margin: 2rem auto;
  2118. }
  2119. dd, dt {
  2120. line-height: 1.75;
  2121. }
  2122. .lead {
  2123. font-size: 16px;
  2124. line-height: 1.75;
  2125. }
  2126. .irs {
  2127. font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  2128. }
  2129. /** ----------------------------------
  2130. * 辅助类
  2131. -------------------------------------- */
  2132. /* margin */
  2133. .m-0 {
  2134. margin: 0px!important;
  2135. }
  2136. .m-t-0 {
  2137. margin-top: 0px!important;
  2138. }
  2139. .m-b-0 {
  2140. margin-bottom: 0px!important;
  2141. }
  2142. .m-5 {
  2143. margin: 5px!important;
  2144. }
  2145. .m-t-5 {
  2146. margin-top: 5px!important;
  2147. }
  2148. .m-r-5 {
  2149. margin-right: 5px!important;
  2150. }
  2151. .m-b-5 {
  2152. margin-bottom: 5px!important;
  2153. }
  2154. .m-l-5 {
  2155. margin-left: 5px!important;
  2156. }
  2157. .m-10 {
  2158. margin: 10px!important;
  2159. }
  2160. .m-tb-10 {
  2161. margin: 10px 0px!important;
  2162. }
  2163. .m-lr-10 {
  2164. margin: 0px 10px!important;
  2165. }
  2166. .m-t-10 {
  2167. margin-top: 10px!important;
  2168. }
  2169. .m-r-10 {
  2170. margin-right: 10px!important;
  2171. }
  2172. .m-b-10 {
  2173. margin-bottom: 10px!important;
  2174. }
  2175. .m-l-10 {
  2176. margin-left: 10px!important;
  2177. }
  2178. .m-15 {
  2179. margin: 15px!important;
  2180. }
  2181. .m-tb-15 {
  2182. margin: 15px 0px!important;
  2183. }
  2184. .m-lr-15 {
  2185. margin: 0px 15px!important;
  2186. }
  2187. .m-t-15 {
  2188. margin-top: 15px!important;
  2189. }
  2190. .m-r-15 {
  2191. margin-right: 15px!important;
  2192. }
  2193. .m-b-15 {
  2194. margin-bottom: 15px!important;
  2195. }
  2196. .m-l-15 {
  2197. margin-left: 15px!important;
  2198. }
  2199. /* padding */
  2200. .p-0 {
  2201. padding: 0px!important;
  2202. }
  2203. .p-t-0 {
  2204. padding-top: 0px!important;
  2205. }
  2206. .p-b-0 {
  2207. padding-bottom: 0px!important;
  2208. }
  2209. .p-10 {
  2210. padding: 10px!important;
  2211. }
  2212. .p-tb-10 {
  2213. padding: 10px 0px!important;
  2214. }
  2215. .p-lr-10 {
  2216. padding: 0px 10px!important;
  2217. }
  2218. .p-t-10 {
  2219. padding-top: 10px!important;
  2220. }
  2221. .p-r-10 {
  2222. padding-right: 10px!important;
  2223. }
  2224. .p-b-10 {
  2225. padding-bottom: 10px!important;
  2226. }
  2227. .p-l-10 {
  2228. padding-left: 10px!important;
  2229. }
  2230. .p-15 {
  2231. padding: 15px!important;
  2232. }
  2233. .p-tb-15 {
  2234. padding: 15px 0px!important;
  2235. }
  2236. .p-lr-15 {
  2237. padding: 0px 15px!important;
  2238. }
  2239. .p-t-15 {
  2240. padding-top: 15px!important;
  2241. }
  2242. .p-r-15 {
  2243. padding-right: 15px!important;
  2244. }
  2245. .p-b-15 {
  2246. padding-bottom: 15px!important;
  2247. }
  2248. .p-l-15 {
  2249. padding-left: 15px!important;
  2250. }
  2251. .p-l-20 {
  2252. padding-left: 20px!important;
  2253. }
  2254. .p-l-40 {
  2255. padding-left: 40px!important;
  2256. }
  2257. /* 字体大小 */
  2258. .fa-1-5x {
  2259. font-size: 1.5em;
  2260. }
  2261. .fa-2x {
  2262. font-size: 2em;
  2263. }
  2264. .fa-3x {
  2265. font-size: 3em;
  2266. }
  2267. .fa-4x {
  2268. font-size: 4em;
  2269. }
  2270. .fa-5x {
  2271. font-size: 5em;
  2272. }
  2273. .fa-6x {
  2274. font-size: 6em;
  2275. }
  2276. .fa-7x {
  2277. font-size: 7em;
  2278. }
  2279. .fa-8x {
  2280. font-size: 8em;
  2281. }
  2282. .fa-9x {
  2283. font-size: 9em;
  2284. }
  2285. .fa-10x {
  2286. font-size: 10em;
  2287. }
  2288. /* 宽度 */
  2289. .w-5 {
  2290. width: 5%;
  2291. }
  2292. .w-10 {
  2293. width: 10%;
  2294. }
  2295. .w-15 {
  2296. width: 15%;
  2297. }
  2298. .w-20 {
  2299. width: 20%;
  2300. }
  2301. .w-25 {
  2302. width: 25%;
  2303. }
  2304. .w-30 {
  2305. width: 30%;
  2306. }
  2307. .w-35 {
  2308. width: 35%;
  2309. }
  2310. .w-40 {
  2311. width: 40%;
  2312. }
  2313. .w-45 {
  2314. width: 45%;
  2315. }
  2316. .w-50 {
  2317. width: 50%;
  2318. }
  2319. .w-55 {
  2320. width: 55%;
  2321. }
  2322. .w-60 {
  2323. width: 60%;
  2324. }
  2325. .w-65 {
  2326. width: 65%;
  2327. }
  2328. .w-70 {
  2329. width: 70%;
  2330. }
  2331. .w-75 {
  2332. width: 75%;
  2333. }
  2334. .w-80 {
  2335. width: 80%;
  2336. }
  2337. .w-85 {
  2338. width: 85%;
  2339. }
  2340. .w-90 {
  2341. width: 90%;
  2342. }
  2343. .w-95 {
  2344. width: 95%;
  2345. }
  2346. .w-100 {
  2347. width: 100%;
  2348. }
  2349. /* 图库 */
  2350. .masonry-grid {
  2351. -webkit-column-count: 3;
  2352. -moz-column-count: 3;
  2353. column-count: 3;
  2354. -webkit-column-gap: 30px;
  2355. -moz-column-gap: 30px;
  2356. column-gap: 30px;
  2357. }
  2358. .masonry-item {
  2359. display: block;
  2360. -webkit-column-break-inside: avoid;
  2361. break-inside: avoid;
  2362. padding-bottom: 30px;
  2363. }
  2364. .masonry-grid.gap-2 {
  2365. -webkit-column-gap: 16px;
  2366. -moz-column-gap: 16px;
  2367. column-gap: 16px;
  2368. }
  2369. .masonry-grid.gap-2 .masonry-item {
  2370. padding-bottom: 16px;
  2371. }
  2372. /** ----------------------------------
  2373. * 滚动条样式
  2374. -------------------------------------- */
  2375. .ps {
  2376. overflow: hidden !important;
  2377. overflow-anchor: none;
  2378. -ms-overflow-style: none;
  2379. touch-action: auto;
  2380. -ms-touch-action: auto;
  2381. }
  2382. .ps__rail-x {
  2383. display: none;
  2384. opacity: 0;
  2385. transition: background-color .2s linear, opacity .2s linear;
  2386. -webkit-transition: background-color .2s linear, opacity .2s linear;
  2387. height: 6px;
  2388. bottom: 2px;
  2389. position: absolute;
  2390. }
  2391. .ps__rail-y {
  2392. display: none;
  2393. opacity: 0;
  2394. transition: background-color .2s linear, opacity .2s linear;
  2395. -webkit-transition: background-color .2s linear, opacity .2s linear;
  2396. width: 6px;
  2397. right: 2px;
  2398. position: absolute;
  2399. }
  2400. .ps--active-x > .ps__rail-x,
  2401. .ps--active-y > .ps__rail-y {
  2402. display: block;
  2403. background-color: transparent;
  2404. }
  2405. .ps:hover > .ps__rail-x,
  2406. .ps:hover > .ps__rail-y,
  2407. .ps--focus > .ps__rail-x,
  2408. .ps--focus > .ps__rail-y,
  2409. .ps--scrolling-x > .ps__rail-x,
  2410. .ps--scrolling-y > .ps__rail-y {
  2411. opacity: 0.6;
  2412. }
  2413. .ps .ps__rail-x:hover,
  2414. .ps .ps__rail-y:hover,
  2415. .ps .ps__rail-x:focus,
  2416. .ps .ps__rail-y:focus,
  2417. .ps .ps__rail-x.ps--clicking,
  2418. .ps .ps__rail-y.ps--clicking {
  2419. background-color: #eee;
  2420. opacity: 0.9;
  2421. }
  2422. .ps__thumb-x {
  2423. background-color: #aaa;
  2424. border-radius: 6px;
  2425. transition: background-color .2s linear, height .2s ease-in-out;
  2426. -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  2427. height: 3px;
  2428. bottom: 0px;
  2429. position: absolute;
  2430. }
  2431. .ps__thumb-y {
  2432. background-color: #aaa;
  2433. border-radius: 6px;
  2434. transition: background-color .2s linear, width .2s ease-in-out;
  2435. -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  2436. width: 3px;
  2437. right: 0px;
  2438. position: absolute;
  2439. }
  2440. .ps__rail-x:hover > .ps__thumb-x,
  2441. .ps__rail-x:focus > .ps__thumb-x,
  2442. .ps__rail-x.ps--clicking .ps__thumb-x {
  2443. background-color: #999;
  2444. height: 6px;
  2445. }
  2446. .ps__rail-y:hover > .ps__thumb-y,
  2447. .ps__rail-y:focus > .ps__thumb-y,
  2448. .ps__rail-y.ps--clicking .ps__thumb-y {
  2449. background-color: #999;
  2450. width: 6px;
  2451. }
  2452. @supports (-ms-overflow-style: none) {
  2453. .ps {
  2454. overflow: auto !important;
  2455. }
  2456. }
  2457. @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  2458. .ps {
  2459. overflow: auto !important;
  2460. }
  2461. }
  2462. /** ----------------------------------
  2463. * 左侧导航
  2464. -------------------------------------- */
  2465. .lyear-layout-sidebar {
  2466. position: fixed;
  2467. top: 0;
  2468. bottom: 0;
  2469. z-index: 5;
  2470. display: block;
  2471. width: 240px;
  2472. font-weight: 500;
  2473. -webkit-backface-visibility: hidden;
  2474. backface-visibility: hidden;
  2475. -webkit-transition: 0.3s transform;
  2476. transition: 0.3s transform;
  2477. transform: translateX(0);
  2478. -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.08);
  2479. -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.08);
  2480. box-shadow: 0px 0px 5px rgba(0,0,0,0.08);
  2481. }
  2482. .lyear-layout-sidebar-close .lyear-layout-sidebar {
  2483. width: 60px;
  2484. }
  2485. .lyear-layout-sidebar-close .lyear-layout-header,
  2486. .lyear-layout-sidebar-close .lyear-layout-content {
  2487. padding-left: 60px;
  2488. }
  2489. .lyear-layout-sidebar-scroll {
  2490. height: -moz-calc(100% - 68px);
  2491. height: -webkit-calc(100% - 68px);
  2492. height: calc(100% - 68px);
  2493. position: relative;
  2494. background-color: #fff;
  2495. }
  2496. /* 侧边栏开关 */
  2497. .lyear-aside-toggler {
  2498. margin-right: .25rem;
  2499. padding: .25rem .95rem .25rem .25rem;
  2500. line-height: 1.5;
  2501. cursor: pointer;
  2502. }
  2503. .lyear-aside-toggler .lyear-toggler-bar {
  2504. display: block;
  2505. height: 2px;
  2506. width: 20px;
  2507. background-color: #4d5259;
  2508. margin: 4px 0px;
  2509. -webkit-transition: 0.3s;
  2510. transition: 0.3s;
  2511. }
  2512. .lyear-aside-toggler .lyear-toggler-bar:nth-child(2) {
  2513. width: 15px;
  2514. }
  2515. .lyear-aside-toggler:hover .lyear-toggler-bar:nth-child(2) {
  2516. width: 20px;
  2517. }
  2518. .lyear-layout-sidebar-close .lyear-aside-toggler .lyear-toggler-bar {
  2519. width: 20px;
  2520. }
  2521. /* logo */
  2522. .sidebar-header {
  2523. position: relative;
  2524. overflow: hidden;
  2525. z-index: 999;
  2526. background-color: #fff;
  2527. width: 100%;
  2528. -webkit-box-shadow: 0 1px 1px -1px rgba(77,82,89,0.15);
  2529. box-shadow: 0 1px 1px -1px rgba(77,82,89,0.15);
  2530. }
  2531. .sidebar-header:before, .sidebar-header:after {
  2532. content: " ";
  2533. display: table;
  2534. }
  2535. .sidebar-header a {
  2536. display: block;
  2537. height: auto;
  2538. width: 100%;
  2539. text-align: center;
  2540. }
  2541. .sidebar-header a img {
  2542. max-width: 240px;
  2543. margin: 16px 0px;
  2544. }
  2545. .sidebar-main {
  2546. -webkit-transform: translateZ(0);
  2547. transform: translateZ(0);
  2548. }
  2549. .nav-drawer li a {
  2550. padding-right: 24px;
  2551. padding-left: 52.99999px;
  2552. color: inherit;
  2553. font-weight: 500;
  2554. white-space: nowrap;
  2555. }
  2556. .nav-drawer > li > a {
  2557. border-right: 3px solid transparent;
  2558. padding-top: 14px;
  2559. padding-bottom: 13px;
  2560. }
  2561. .nav-drawer > li > a > span {
  2562. white-space: nowrap;
  2563. }
  2564. .nav-drawer > .active > a {
  2565. background-color: rgba(0,0,0,.0125);
  2566. border-color: #33cabb;
  2567. }
  2568. .nav-drawer > li.active > a {
  2569. background-color: rgba(0,0,0,.0125)!important;
  2570. }
  2571. .nav-drawer > .active > a:hover,
  2572. .nav-drawer > .active > a:focus,
  2573. .nav-drawer > .active > a:active {
  2574. background-color: rgba(0,0,0,.0125);
  2575. border-color: #33cabb;
  2576. }
  2577. .nav-drawer .nav-subnav > li.active > a,
  2578. .nav-drawer .nav-subnav > li > a:hover {
  2579. color: #33cabb;
  2580. background-color: transparent;
  2581. }
  2582. .nav-drawer > li > a > i {
  2583. position: absolute;
  2584. left: 21px;
  2585. top: 11px;
  2586. font-size: 1.25em;
  2587. }
  2588. .nav-drawer ul li ul {
  2589. padding-left: 15px;
  2590. }
  2591. .nav-item-has-subnav > a:after {
  2592. position: absolute;
  2593. top: 14px;
  2594. right: 24px;
  2595. font-family: 'Material Design Icons';
  2596. font-size: 10px;
  2597. line-height: 1.75;
  2598. content: '\f142';
  2599. -webkit-transition: -webkit-transform 0.3s linear;
  2600. transition: -webkit-transform 0.3s linear;
  2601. transition: transform 0.3s linear;
  2602. transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  2603. }
  2604. .nav-item-has-subnav.open > a:after {
  2605. -webkit-transform: rotate(90deg);
  2606. transform: rotate(90deg);
  2607. }
  2608. .nav-item-has-subnav.open > .nav-subnav {
  2609. display: block;
  2610. }
  2611. .nav-subnav {
  2612. display: none;
  2613. margin-top: 8px;
  2614. margin-bottom: 8px;
  2615. }
  2616. /* 左侧版权信息 */
  2617. .sidebar-footer {
  2618. bottom: 0;
  2619. width: 100%;
  2620. height: 96px;
  2621. border-top: 1px solid rgba(77,82,89,0.05);
  2622. margin-top: 24px;
  2623. padding-top: 24px;
  2624. padding-right: 24px;
  2625. padding-bottom: 24px;
  2626. padding-left: 24px;
  2627. font-size: 13px;
  2628. line-height: 24px;
  2629. }
  2630. /** ----------------------------------
  2631. * 头部信息
  2632. -------------------------------------- */
  2633. .lyear-layout-header {
  2634. position: fixed;
  2635. top: 0;
  2636. right: 0;
  2637. left: 0;
  2638. z-index: 4;
  2639. padding-left: 240px;
  2640. background-color: #fff;
  2641. -webkit-transition: padding 0.3s;
  2642. transition: padding 0.3s;
  2643. -webkit-box-shadow: 4px 0 5px rgba(0, 0, 0, 0.035);
  2644. -moz-box-shadow: 4px 0 5px rgba(0, 0, 0, 0.035);
  2645. box-shadow: 4px 0 5px rgba(0, 0, 0, 0.035);
  2646. }
  2647. .lyear-layout-header .navbar {
  2648. position: relative;
  2649. min-height: 64px;
  2650. margin-bottom: 0;
  2651. border: 0px;
  2652. -webkit-border-radius: 0px;
  2653. -moz-border-radius: 0px;
  2654. border-radius: 0px;
  2655. }
  2656. .lyear-layout-header .navbar-default {
  2657. background-color: transparent;
  2658. }
  2659. .topbar {
  2660. display: -webkit-box;
  2661. display: flex;
  2662. -webkit-box-pack: justify;
  2663. justify-content: space-between;
  2664. -webkit-box-align: center;
  2665. align-items: center;
  2666. min-height: 64px;
  2667. padding: 0 15px;
  2668. }
  2669. .topbar .topbar-left {
  2670. display: -webkit-box;
  2671. display: flex;
  2672. -webkit-box-align: center;
  2673. align-items: center;
  2674. }
  2675. .topbar .topbar-right {
  2676. display: -webkit-box;
  2677. display: flex;
  2678. -webkit-box-align: center;
  2679. align-items: center;
  2680. -webkit-box-orient: horizontal;
  2681. -webkit-box-direction: reverse;
  2682. flex-direction: row-reverse;
  2683. list-style: none;
  2684. margin: 0px;
  2685. padding: 0px;
  2686. }
  2687. .topbar-right > li > a {
  2688. position: relative;
  2689. display: block;
  2690. padding: 10px 0px 10px 15px;
  2691. }
  2692. /* 头像相关 */
  2693. .img-avatar {
  2694. display: inline-block !important;
  2695. width: 64px;
  2696. height: 64px;
  2697. line-height: 64px;
  2698. text-align: center;
  2699. vertical-align: middle;
  2700. -webkit-border-radius: 50%;
  2701. border-radius: 50%;
  2702. }
  2703. .img-avatar-48 {
  2704. width: 48px;
  2705. height: 48px;
  2706. line-height: 48px;
  2707. }
  2708. .edit-avatar {
  2709. display: -ms-flexbox;
  2710. display: flex;
  2711. -ms-flex-align: start;
  2712. align-items: flex-start;
  2713. }
  2714. .avatar-divider {
  2715. display: inline-block;
  2716. border-left: 1px solid rgba(77,82,89,0.07);
  2717. height: 50px;
  2718. align-self: center;
  2719. margin: 0px 20px;
  2720. }
  2721. .edit-avatar-content {
  2722. display: inline-block;
  2723. }
  2724. /** ----------------------------------
  2725. * 主要内容
  2726. -------------------------------------- */
  2727. .lyear-layout-content {
  2728. position: absolute;
  2729. height: 100%;
  2730. width: 100%;
  2731. padding-top: 68px;
  2732. padding-left: 240px;
  2733. -webkit-transition: padding 0.3s;
  2734. transition: padding 0.3s;
  2735. }
  2736. .lyear-layout-content #iframe-content {
  2737. height: 100%;
  2738. }
  2739. /* card */
  2740. .card {
  2741. margin-bottom: 24px;
  2742. background-color: #fff;
  2743. -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.035);
  2744. box-shadow: 0 2px 3px rgba(0, 0, 0, 0.035);
  2745. }
  2746. .card-header {
  2747. width: 100%;
  2748. margin: 0;
  2749. padding: 15px 24px;
  2750. border-bottom: 1px solid rgba(77,82,89,0.05);
  2751. }
  2752. .card-header > * {
  2753. margin: 0;
  2754. display: table-cell;
  2755. vertical-align: middle;
  2756. }
  2757. .card-header:after,
  2758. .card-footer:after {
  2759. display: table;
  2760. content: " ";
  2761. clear: both;
  2762. }
  2763. .card-body {
  2764. padding: 24px 24px;
  2765. }
  2766. .card-header .h4,
  2767. .card-header h4 {
  2768. float: left;
  2769. font-size: 16px;
  2770. }
  2771. .card-header + .card-body {
  2772. padding-top: 15px;
  2773. }
  2774. .card-header[class*='bg'] .card-actions > li > a:not(.label),
  2775. .card-header[class*='bg'] .card-actions > li > button,
  2776. .card-header[class*='bg'] h1,
  2777. .card-header[class*='bg'] h2,
  2778. .card-header[class*='bg'] h3,
  2779. .card-header[class*='bg'] h4,
  2780. .card-header[class*='bg'] h5,
  2781. .card-header[class*='bg'] h6,
  2782. .card-header[class*='bg'] .h1,
  2783. .card-header[class*='bg'] .h2,
  2784. .card-header[class*='bg'] .h3,
  2785. .card-header[class*='bg'] .h4,
  2786. .card-header[class*='bg'] .h5,
  2787. .card-header[class*='bg'] .h6 {
  2788. color: #ffffff;
  2789. }
  2790. .card-toolbar {
  2791. padding: 24px 24px 0px 24px;
  2792. position: relative;
  2793. }
  2794. .card-toolbar .search-bar {
  2795. max-width: 280px;
  2796. }
  2797. .card-toolbar .dropdown-menu {
  2798. min-width: 100%;
  2799. }
  2800. /* card-actions */
  2801. .card-actions {
  2802. float: right;
  2803. margin-bottom: 0;
  2804. margin-left: auto;
  2805. padding: 0;
  2806. }
  2807. .card-actions > li {
  2808. display: inline-block;
  2809. padding: 0;
  2810. }
  2811. .card-actions > li > a:not(.label),
  2812. .card-actions > li > button {
  2813. color: #86939e;
  2814. display: inline-block;
  2815. padding: 0;
  2816. line-height: 1;
  2817. opacity: .7;
  2818. vertical-align: middle;
  2819. -webkit-transition: opacity 0.15s ease-out;
  2820. transition: opacity 0.15s ease-out;
  2821. }
  2822. .card-actions > li > a:not(.label):hover,
  2823. .card-actions > li > button:hover {
  2824. text-decoration: none;
  2825. opacity: 1;
  2826. }
  2827. .card-actions > li > a:not(.label):active,
  2828. .card-actions > li > button:active {
  2829. opacity: .6;
  2830. }
  2831. .card-actions > li > span {
  2832. display: block;
  2833. }
  2834. .card-actions > li > .label {
  2835. line-height: 1.25;
  2836. }
  2837. .card-actions > li > a:focus {
  2838. text-decoration: none;
  2839. opacity: 1;
  2840. }
  2841. .card-actions > li > button {
  2842. background: none;
  2843. border: none;
  2844. }
  2845. .card-actions > li.active > a,
  2846. .card-actions > li.open > button {
  2847. text-decoration: none;
  2848. opacity: 1;
  2849. }
  2850. .card-actions > li + li {
  2851. margin-left: 10px;
  2852. }
  2853. .card .tab-content {
  2854. padding: 10px 24px;
  2855. }
  2856. .card-footer {
  2857. background-color: #fcfdfe;
  2858. border-top: 1px solid rgba(77,82,89,0.05);
  2859. padding: 15px 24px;
  2860. }
  2861. /* page-tabs */
  2862. .page-tabs.nav-tabs {
  2863. padding: 0px 10px;
  2864. }
  2865. .page-tabs.nav-tabs > li > a {
  2866. padding: 15px;
  2867. }
  2868. /* 加载动画 */
  2869. #lyear-loading {
  2870. position: fixed;
  2871. width: 100%;
  2872. height: 100%;
  2873. z-index: 9990;
  2874. background: rgba(0, 0, 0, 0.0325)
  2875. }
  2876. #lyear-loading .spinner-border {
  2877. z-index: 999999;
  2878. position: fixed;
  2879. left: 50%;
  2880. top: 50%
  2881. }
  2882. @-webkit-keyframes spinner-border {
  2883. to {
  2884. -webkit-transform: rotate(360deg);
  2885. transform: rotate(360deg);
  2886. }
  2887. }
  2888. @keyframes spinner-border {
  2889. to {
  2890. -webkit-transform: rotate(360deg);
  2891. transform: rotate(360deg);
  2892. }
  2893. }
  2894. .spinner-border {
  2895. display: inline-block;
  2896. width: 3rem;
  2897. height: 3rem;
  2898. vertical-align: text-bottom;
  2899. border: 0.125em solid currentColor;
  2900. border-right-color: transparent;
  2901. border-radius: 50%;
  2902. -webkit-animation: spinner-border .75s linear infinite;
  2903. animation: spinner-border .75s linear infinite;
  2904. }
  2905. /* 步骤条 */
  2906. .nav-step {
  2907. display: -webkit-box;
  2908. display: flex;
  2909. -webkit-box-pack: justify;
  2910. justify-content: space-between;
  2911. -webkit-box-align: baseline;
  2912. align-items: baseline;
  2913. padding: 0px;
  2914. margin-bottom: 1rem;
  2915. }
  2916. .step-dots .nav-step-item {
  2917. position: relative;
  2918. display: -webkit-box;
  2919. display: flex;
  2920. -webkit-box-orient: vertical;
  2921. -webkit-box-direction: normal;
  2922. flex-direction: column;
  2923. -webkit-box-flex: 1;
  2924. -webkit-box-align: center;
  2925. align-items: center;
  2926. flex: 1 1;
  2927. padding: 0 12px
  2928. }
  2929. .step-dots .nav-step-item:first-child a::before {
  2930. display: none
  2931. }
  2932. .step-dots .nav-step-item.complete a,
  2933. .step-dots .nav-step-item.complete a::before,
  2934. .step-dots .nav-step-item.active a,
  2935. .step-dots .nav-step-item.active a::before {
  2936. background-color: #dcfcfa
  2937. }
  2938. .step-dots .nav-step-item.complete a::after,
  2939. .step-dots .nav-step-item.active a::after {
  2940. background-color: #33cabb;
  2941. width: 29px;
  2942. height: 29px;
  2943. -webkit-transform: translateX(0);
  2944. transform: translateX(0);
  2945. color: #fff
  2946. }
  2947. .step-dots .nav-step-item.complete a::after {
  2948. width: 29px;
  2949. height: 29px;
  2950. -webkit-transform: translateX(0);
  2951. transform: translateX(0);
  2952. color: #fff
  2953. }
  2954. .step-dots .nav-step-item.active a::after {
  2955. width: 13px;
  2956. height: 13px;
  2957. margin-top: 8px;
  2958. -webkit-transform: translateX(8px);
  2959. transform: translateX(8px);
  2960. color: transparent
  2961. }
  2962. .step-dots a {
  2963. display: -webkit-inline-box;
  2964. display: inline-flex;
  2965. padding: 0;
  2966. margin: 10px 0;
  2967. width: 29px;
  2968. height: 29px;
  2969. max-height: 29px;
  2970. border-radius: 50%;
  2971. background-color: #f7fafc;
  2972. -webkit-transition: .5s;
  2973. transition: .5s;
  2974. z-index: 1
  2975. }
  2976. .step-dots a::before {
  2977. content: '';
  2978. position: absolute;
  2979. left: calc(-50% + 14.5px);
  2980. right: calc(50% + 14.5px);
  2981. height: 10px;
  2982. margin-top: 9.5px;
  2983. background-color: #f7fafc;
  2984. cursor: default;
  2985. -webkit-transition: .5s;
  2986. transition: .5s;
  2987. }
  2988. .step-dots a::after {
  2989. content: "\f12c";
  2990. font-family: "Material Design Icons";
  2991. width: 0;
  2992. height: 0;
  2993. text-align: center;
  2994. font-size: 15px;
  2995. position: absolute;
  2996. border-radius: 50%;
  2997. background-color: transparent;
  2998. color: transparent;
  2999. -webkit-transform: translate(14.5px, 14.5px);
  3000. transform: translate(14.5px, 14.5px);
  3001. -webkit-transition: .5s;
  3002. transition: .5s;
  3003. z-index: 1;
  3004. display: -webkit-inline-box;
  3005. display: inline-flex;
  3006. -webkit-box-align: center;
  3007. align-items: center;
  3008. -webkit-box-pack: center;
  3009. justify-content: center
  3010. }
  3011. .nav-step-pane.active {
  3012. display: block!important;
  3013. }
  3014. .nav-step-button {
  3015. display: -webkit-box;
  3016. display: flex;
  3017. -webkit-box-pack: justify;
  3018. justify-content: space-between;
  3019. }
  3020. .nav-step-button button.disabled {
  3021. opacity: 0;
  3022. }
  3023. .nav-step.step-anchor {
  3024. justify-content: flex-start;
  3025. border: 0;
  3026. background: #fcfdfe;
  3027. border-radius: 0;
  3028. list-style: none;
  3029. overflow: hidden;
  3030. }
  3031. .step-anchor > li > a,
  3032. .step-anchor > li > a:hover {
  3033. color: #bbb;
  3034. text-decoration: none;
  3035. padding: 10px 0 10px 45px;
  3036. position: relative;
  3037. display: block;
  3038. border: 0!important;
  3039. border-radius: 0;
  3040. outline-style: none;
  3041. background: #f7fafc;
  3042. }
  3043. .step-anchor > li > a:before,
  3044. .step-anchor > li > a:after {
  3045. -webkit-transition: .2s linear;
  3046. transition: .2s linear;
  3047. }
  3048. .step-anchor > li > a:after {
  3049. content: " ";
  3050. display: block;
  3051. width: 0;
  3052. height: 0;
  3053. border-top: 50px solid transparent;
  3054. border-bottom: 50px solid transparent;
  3055. border-left: 30px solid #f7fafc;
  3056. position: absolute;
  3057. top: 50%;
  3058. margin-top: -50px;
  3059. left: 100%;
  3060. z-index: 2
  3061. }
  3062. .step-anchor > li > a:before {
  3063. content: " ";
  3064. display: block;
  3065. width: 0;
  3066. height: 0;
  3067. border-top: 50px solid transparent;
  3068. border-bottom: 50px solid transparent;
  3069. border-left: 30px solid rgba(77,82,89,0.075);
  3070. position: absolute;
  3071. top: 50%;
  3072. margin-top: -50px;
  3073. margin-left: 1px;
  3074. left: 100%;
  3075. z-index: 1
  3076. }
  3077. .step-anchor > li:first-child > a {
  3078. padding-left: 15px;
  3079. }
  3080. .step-anchor > li.active h6,
  3081. .step-anchor > li.complete h6 {
  3082. color: #fff!important;
  3083. }
  3084. .step-anchor > li.active > a,
  3085. .step-anchor > li.complete > a {
  3086. border-color: #33cabb!important;
  3087. color: rgba(255, 255, 255, .8)!important;
  3088. background: #33cabb!important;
  3089. }
  3090. .step-anchor > li.active > a:after,
  3091. .step-anchor > li.complete > a:after {
  3092. border-left: 30px solid #33cabb!important;
  3093. }
  3094. /* 多图上传 */
  3095. .lyear-uploads-pic {
  3096. display: -webkit-flex;
  3097. display: flex;
  3098. -webkit-align-items: stretch;
  3099. align-items: stretch;
  3100. flex-direction: row;
  3101. flex-wrap: wrap;
  3102. margin-bottom: -10px;
  3103. }
  3104. .lyear-uploads-pic li {
  3105. margin-bottom: 10px;
  3106. }
  3107. .lyear-uploads-pic figure {
  3108. position: relative;
  3109. background: #4d5259;
  3110. overflow: hidden;
  3111. text-align: center;
  3112. cursor: pointer;
  3113. }
  3114. .lyear-uploads-pic figure img {
  3115. position: relative;
  3116. display: block;
  3117. min-height: 100%;
  3118. max-width: 100%;
  3119. width: 100%;
  3120. opacity: 1;
  3121. backface-visibility: hidden;
  3122. -webkit-backface-visibility: hidden;
  3123. -webkit-transition: opacity 0.5s;
  3124. transition: opacity 0.5s;
  3125. }
  3126. .lyear-uploads-pic figure:hover img {
  3127. opacity: 0.5;
  3128. }
  3129. .lyear-uploads-pic figure figcaption,
  3130. .lyear-uploads-pic figure figcaption > a:not(.btn) {
  3131. position: absolute;
  3132. top: 0;
  3133. left: 0;
  3134. width: 100%;
  3135. height: 100%;
  3136. }
  3137. .lyear-uploads-pic figure figcaption {
  3138. display: -webkit-box;
  3139. display: flex;
  3140. -webkit-box-align: center;
  3141. align-items: center;
  3142. -webkit-box-pack: center;
  3143. justify-content: center;
  3144. text-transform: none;
  3145. padding: 2em;
  3146. color: #fff;
  3147. -webkit-transform: scale(0);
  3148. transform: scale(0);
  3149. -webkit-transition: .35s;
  3150. transition: .35s;
  3151. }
  3152. .lyear-uploads-pic figure figcaption > a {
  3153. position: static;
  3154. z-index: auto;
  3155. text-indent: 0;
  3156. white-space: nowrap;
  3157. opacity: 1;
  3158. margin-left: 2px;
  3159. margin-right: 2px
  3160. }
  3161. .lyear-uploads-pic figure figcaption > *:first-child {
  3162. margin-left: 0;
  3163. }
  3164. .lyear-uploads-pic figure:hover figcaption {
  3165. -webkit-transform: scale(1);
  3166. transform: scale(1)
  3167. }
  3168. .lyear-uploads-pic .pic-add {
  3169. display: -webkit-flex;
  3170. justify-content: center;
  3171. align-items: center;
  3172. height: 100%;
  3173. border: 1px dashed #ebebeb;
  3174. font-family: "Material Design Icons";
  3175. font-size: 2.875rem;
  3176. color: #8b95a5;
  3177. -webkit-transition: .35s;
  3178. transition: .35s;
  3179. }
  3180. .lyear-uploads-pic .pic-add:before {
  3181. content: "\f415";
  3182. }
  3183. .lyear-uploads-pic .pic-add:hover {
  3184. border-color: #33cabb;
  3185. color: #33cabb;
  3186. }
  3187. /** ----------------------------------
  3188. * 响应式处理
  3189. -------------------------------------- */
  3190. @media (max-width: 1024px) {
  3191. .lyear-layout-sidebar {
  3192. transform: translateX(-100%);
  3193. }
  3194. .lyear-layout-header,
  3195. .lyear-layout-content {
  3196. padding-left: 0;
  3197. }
  3198. .lyear-layout-sidebar {
  3199. -webkit-box-shadow: none;
  3200. -moz-webkit-box-shadow: none;
  3201. box-shadow: none;
  3202. }
  3203. .lyear-layout-sidebar.lyear-aside-open {
  3204. transform: translateX(0);
  3205. }
  3206. /* 遮罩层 */
  3207. .lyear-mask-modal {
  3208. background-color: rgba(0, 0, 0, 0.5);
  3209. height: 100%;
  3210. left: 0;
  3211. opacity: 1;
  3212. top: 0;
  3213. visibility: visible;
  3214. width: 100%;
  3215. z-index: 5;
  3216. position: fixed;
  3217. -webkit-transition: visibility 0 linear 0.4s, opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  3218. transition: visibility 0 linear 0.4s, opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  3219. -webkit-transform: translateZ(0);
  3220. transform: translateZ(0);
  3221. }
  3222. .lyear-layout-sidebar-close .lyear-layout-sidebar {
  3223. width: 240px;
  3224. }
  3225. .lyear-layout-sidebar-close .lyear-layout-header,
  3226. .lyear-layout-sidebar-close .lyear-layout-content {
  3227. padding-left: 0px;
  3228. }
  3229. }
  3230. @media screen and (max-width: 767px) {
  3231. .table-responsive {
  3232. border-color: #eceeef;
  3233. }
  3234. }
  3235. @media screen and (max-width: 700px) {
  3236. .card-toolbar .search-bar {
  3237. max-width: 100%;
  3238. margin-bottom: 10px;
  3239. float: none!important;
  3240. }
  3241. }
  3242. @media screen and (max-width: 430px) {
  3243. .dropdown-skin .dropdown-menu {
  3244. left: -80px!important;
  3245. }
  3246. .nav-step .nav-step-item p {
  3247. display: none;
  3248. }
  3249. }
  3250. @media (min-width: 1024px) {
  3251. .lyear-layout-sidebar-close .nav-drawer > li > a {
  3252. padding: 14px 28px 13px 29px;
  3253. height: 48px;
  3254. }
  3255. .lyear-layout-sidebar-close .nav-drawer > li > a span {
  3256. display: none;
  3257. }
  3258. .lyear-layout-sidebar-close .nav-drawer > li > a:after {
  3259. content: '';
  3260. }
  3261. .lyear-layout-sidebar-close .ps__rail-x,
  3262. .lyear-layout-sidebar-close .ps__rail-y {
  3263. pointer-events: none;
  3264. }
  3265. .lyear-layout-sidebar-close .lyear-layout-sidebar:not(:hover) .ps {
  3266. overflow: visible!important;
  3267. }
  3268. .lyear-layout-sidebar-close .lyear-layout-sidebar:not(:hover) .nav-item-has-subnav > .nav-subnav {
  3269. display: none!important;
  3270. }
  3271. .lyear-layout-sidebar-close .sidebar-footer {
  3272. visibility: hidden;
  3273. opacity: 0;
  3274. }
  3275. .lyear-layout-sidebar {
  3276. -webkit-transition: all .3s ease-in-out;
  3277. transition: all .3s ease-in-out;
  3278. }
  3279. .lyear-layout-sidebar-close .lyear-layout-sidebar:hover {
  3280. width: 240px;
  3281. }
  3282. .lyear-layout-sidebar-close .lyear-layout-sidebar:hover .nav-drawer > li > a {
  3283. padding-right: 24px;
  3284. padding-left: 52.99999px;
  3285. padding-top: 14px;
  3286. padding-bottom: 13px;
  3287. }
  3288. .lyear-layout-sidebar-close .lyear-layout-sidebar:hover .nav-drawer > li > a span {
  3289. display: block;
  3290. }
  3291. .lyear-layout-sidebar-close .lyear-layout-sidebar:hover .nav-drawer .nav-item-has-subnav > a:after {
  3292. content: '\f142';
  3293. }
  3294. .lyear-layout-sidebar-close .lyear-layout-sidebar:hover .sidebar-footer {
  3295. visibility: visible;
  3296. opacity: 1;
  3297. -webkit-transition: opacity 0.3s ease-in-out 0.15s;
  3298. transition: opacity 0.3s ease-in-out 0.15s;
  3299. }
  3300. body:not(.lyear-layout-sidebar-close) .sidebar-footer {
  3301. -webkit-transition: opacity 0.3s ease-in-out 0.15s;
  3302. transition: opacity 0.3s ease-in-out 0.15s;
  3303. }
  3304. }
  3305. /** ----------------------------------
  3306. * 主题设置
  3307. -------------------------------------- */
  3308. .icon-palette {
  3309. display: block;
  3310. height: 68px;
  3311. line-height: 68px;
  3312. font-size: 1.5em;
  3313. cursor: pointer;
  3314. padding: 0 12px;
  3315. text-align: center;
  3316. }
  3317. .drop-title {
  3318. color: #4d5259;
  3319. }
  3320. .drop-title p {
  3321. padding: 5px 15px 0px 15px;
  3322. }
  3323. .drop-skin-li {
  3324. padding: 0px 12px;
  3325. }
  3326. .drop-skin-li input[type=radio] {
  3327. display: none;
  3328. }
  3329. .drop-skin-li input[type=radio]+label {
  3330. display: inline-block;
  3331. width: 20px;
  3332. height: 20px;
  3333. cursor: pointer;
  3334. margin: 3px;
  3335. -webkit-border-radius: 50%;
  3336. -moz-border-radius: 50%;
  3337. border-radius: 50%;
  3338. -webkit-transition: all .1s ease;
  3339. transition: all .1s ease;
  3340. }
  3341. .drop-skin-li input[type=radio]:checked+label {
  3342. position: relative;
  3343. }
  3344. .drop-skin-li input[type=radio]:checked+label::after {
  3345. content: "\f12c";
  3346. font-family: "Material Design Icons";
  3347. font-size: 1rem;
  3348. display: block;
  3349. color: #fff;
  3350. width: 100%;
  3351. text-align: center;
  3352. line-height: 20px;
  3353. position: absolute;
  3354. top: 0px;
  3355. -webkit-transition: .2s;
  3356. transition: .2s;
  3357. }
  3358. .drop-skin-li .inverse input[type=radio]:checked+label::after {
  3359. color: #4d5259;
  3360. }
  3361. .dropdown-skin .dropdown-menu {
  3362. border: none;
  3363. width: 262px;
  3364. }
  3365. #header_bg_1+label, #logo_bg_1+label, #sidebar_bg_1+label, #site_theme_1+label {
  3366. background-color: #fff;
  3367. border: 1px solid #f0f0f0;
  3368. }
  3369. #header_bg_2+label, #logo_bg_2+label, #sidebar_bg_2+label {
  3370. background-color: #15c377;
  3371. border: 1px solid #15c377;
  3372. }
  3373. #header_bg_3+label, #logo_bg_3+label, #sidebar_bg_3+label {
  3374. background-color: #48b0f7;
  3375. border: 1px solid #48b0f7;
  3376. }
  3377. #header_bg_4+label, #logo_bg_4+label, #sidebar_bg_4+label {
  3378. background-color: #faa64b;
  3379. border: 1px solid #faa64b;
  3380. }
  3381. #header_bg_5+label, #logo_bg_5+label, #sidebar_bg_5+label {
  3382. background-color: #f96868;
  3383. border: 1px solid #f96868;
  3384. }
  3385. #header_bg_6+label, #logo_bg_6+label, #sidebar_bg_6+label {
  3386. background-color: #926dde;
  3387. border: 1px solid #926dde;
  3388. }
  3389. #header_bg_7+label, #logo_bg_7+label, #sidebar_bg_7+label {
  3390. background-color: #33cabb;
  3391. border: 1px solid #33cabb;
  3392. }
  3393. #header_bg_8+label, #logo_bg_8+label, #sidebar_bg_8+label, #site_theme_2+label {
  3394. background-color: #465161;
  3395. border: 1px solid #465161;
  3396. }
  3397. #site_theme_3+label {
  3398. background: -webkit-linear-gradient(135deg, #65FDF0 10%, #1D6FA3 100%);
  3399. background: -o-linear-gradient(135deg, #65FDF0 10%, #1D6FA3 100%);
  3400. background: -moz-linear-gradient(135deg, #65FDF0 10%, #1D6FA3 100%);
  3401. background: linear-gradient(135deg, #65FDF0 10%, #1D6FA3 100%);
  3402. }
  3403. /* 暗黑 */
  3404. body[data-theme='dark'] {
  3405. background-color: #1c1e2f;
  3406. color: #8c909a;
  3407. }
  3408. body[data-theme='dark'] a,
  3409. [data-theme='dark'] .input-group-addon,
  3410. [data-theme='dark'] a.list-group-item,
  3411. [data-theme='dark'] button.list-group-item,
  3412. [data-theme='dark'] h1,
  3413. [data-theme='dark'] h2,
  3414. [data-theme='dark'] h3,
  3415. [data-theme='dark'] h4,
  3416. [data-theme='dark'] h5,
  3417. [data-theme='dark'] h6,
  3418. [data-theme='dark'] .h1,
  3419. [data-theme='dark'] .h2,
  3420. [data-theme='dark'] .h3,
  3421. [data-theme='dark'] .h4,
  3422. [data-theme='dark'] .h5,
  3423. [data-theme='dark'] .h6 {
  3424. color: #8c909a;
  3425. }
  3426. [data-theme='dark'] code,
  3427. [data-theme='dark'] .panel {
  3428. background-color: #292B3D;
  3429. }
  3430. [data-theme='dark'] .lyear-aside-toggler .lyear-toggler-bar {
  3431. background-color: #8c909a;
  3432. }
  3433. [data-theme='dark'] .lyear-layout-header {
  3434. -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
  3435. -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
  3436. box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
  3437. }
  3438. [data-theme='dark'] .sidebar-header {
  3439. -webkit-box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.35);
  3440. -moz-box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.35);
  3441. box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.35);
  3442. }
  3443. [data-theme='dark'] .lyear-layout-sidebar-scroll {
  3444. -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.35);
  3445. -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.35);
  3446. box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.35)
  3447. }
  3448. [data-theme='dark'] .sidebar-header,
  3449. [data-theme='dark'] .lyear-layout-sidebar-scroll,
  3450. [data-theme='dark'] .lyear-layout-header,
  3451. [data-theme='dark'] .card,
  3452. [data-theme='dark'] .jconfirm .jconfirm-box {
  3453. background-color: #222437;
  3454. }
  3455. [data-theme='dark'] .nav-drawer > .active > a {
  3456. background-color: #202234!important;
  3457. }
  3458. [data-theme='dark'] .nav-drawer .nav-subnav > li.active > a,
  3459. [data-theme='dark'] .nav-drawer .nav-subnav > li > a:hover {
  3460. color: #bebdc2;
  3461. }
  3462. [data-theme='dark'] hr,
  3463. [data-theme='dark'] .card-header,
  3464. [data-theme='dark'] .sidebar-footer,
  3465. [data-theme='dark'] .modal-header,
  3466. [data-theme='dark'] .modal-footer,
  3467. [data-theme='dark'] .table>tbody>tr>td,
  3468. [data-theme='dark'] .table>tbody>tr>th,
  3469. [data-theme='dark'] .table>tfoot>tr>td,
  3470. [data-theme='dark'] .table>tfoot>tr>th,
  3471. [data-theme='dark'] .table>thead>tr>td,
  3472. [data-theme='dark'] .table>thead>tr>th,
  3473. [data-theme='dark'] .table-bordered {
  3474. border-color: #303243;
  3475. }
  3476. [data-theme='dark'] .table-hover > tbody > tr:hover,
  3477. [data-theme='dark'] .table-striped tbody tr:nth-of-type(odd) {
  3478. background-color: #292B3D;
  3479. }
  3480. [data-theme='dark'] .dropdown-menu,
  3481. [data-theme='dark'] .modal-content {
  3482. background-color: #222437;
  3483. border: none;
  3484. -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
  3485. -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.35);
  3486. box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
  3487. }
  3488. [data-theme='dark'] .dropdown-menu > li > a:focus,
  3489. [data-theme='dark'] .dropdown-menu > li > a:hover,
  3490. [data-theme='dark'] .dropdown-menu>.active>a,
  3491. [data-theme='dark'] .dropdown-menu>.active>a:focus,
  3492. [data-theme='dark'] .dropdown-menu>.active>a:hover {
  3493. background-color: #292B3D;
  3494. color: #bebdc2;
  3495. }
  3496. [data-theme='dark'] .dropdown-menu .divider {
  3497. background-color: #303243;
  3498. }
  3499. [data-theme='dark'] .divider::before,
  3500. [data-theme='dark'] .divider::after {
  3501. border-color: #303243;
  3502. }
  3503. [data-theme='dark'] .popover {
  3504. background-color: #222437;
  3505. border: none;
  3506. -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.35);
  3507. box-shadow: 0 0 4px rgba(0, 0, 0, 0.35);
  3508. }
  3509. [data-theme='dark'] .popover.top>.arrow:after {
  3510. border-top-color: #222437;
  3511. }
  3512. [data-theme='dark'] .popover.right>.arrow:after {
  3513. border-right-color: #222437;
  3514. }
  3515. [data-theme='dark'] .popover.bottom>.arrow:after {
  3516. border-bottom-color: #222437;
  3517. }
  3518. [data-theme='dark'] .popover.left>.arrow:after {
  3519. border-left-color: #222437;
  3520. }
  3521. [data-theme='dark'] .popover.top>.arrow {
  3522. border-top-color: #1D1F2F;
  3523. }
  3524. [data-theme='dark'] .popover.right>.arrow {
  3525. border-right-color: #1D1F2F;
  3526. }
  3527. [data-theme='dark'] .popover.bottom>.arrow {
  3528. border-bottom-color: #1D1F2F;
  3529. }
  3530. [data-theme='dark'] .popover.left>.arrow {
  3531. border-left-color: #1D1F2F;
  3532. }
  3533. [data-theme='dark'] .popover-title {
  3534. background-color: #222437;
  3535. border-color: #303243;
  3536. }
  3537. [data-theme='dark'] .progress,
  3538. [data-theme='dark'] .irs--flat .irs-min,
  3539. [data-theme='dark'] .irs--flat .irs-max,
  3540. [data-theme='dark'] .irs--flat .irs-line {
  3541. background-color: #303243;
  3542. }
  3543. [data-theme='dark'] .nav-tabs,
  3544. [data-theme='dark'] blockquote {
  3545. border-color: #303243;
  3546. }
  3547. [data-theme='dark'] .nav-tabs > li.active > a,
  3548. [data-theme='dark'] .nav-tabs > li.active > a:focus,
  3549. [data-theme='dark'] .nav-tabs > li.active > a:hover {
  3550. color: #bebdc2;
  3551. }
  3552. @media (min-width: 768px) {
  3553. [data-theme='dark'] .nav-tabs.nav-justified>li>a {
  3554. border-bottom-color: #303243;
  3555. }
  3556. }
  3557. [data-theme='dark'] .nav-tabs.nav-justified>.active>a,
  3558. [data-theme='dark'] .nav-tabs.nav-justified>.active>a:focus,
  3559. [data-theme='dark'] .nav-tabs.nav-justified>.active>a:hover {
  3560. border-bottom-color: #33cabb;
  3561. }
  3562. [data-theme='dark'] :not(panel-default) .panel-title a {
  3563. color: #fff;
  3564. }
  3565. [data-theme='dark'] .form-control {
  3566. border-color: #303243;
  3567. background-color: #1D1F2F;
  3568. }
  3569. [data-theme='dark'] .form-control:focus {
  3570. border-color: #33cabb;
  3571. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(51, 202, 187, .6);
  3572. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(51, 202, 187, .6);
  3573. }
  3574. [data-theme='dark'] div.tagsinput,
  3575. [data-theme='dark'] .input-group-addon,
  3576. [data-theme='dark'] .input-group-btn .btn-default,
  3577. [data-theme='dark'] .btn-group .btn-default,
  3578. [data-theme='dark'] .btn-group-vertical .btn-default,
  3579. [data-theme='dark'] .pagination > li > a,
  3580. [data-theme='dark'] .pagination > li > span {
  3581. border-color: #303243!important;
  3582. background-color: #1D1F2F!important;
  3583. }
  3584. [data-theme='dark'] .pagination > li > a:hover,
  3585. [data-theme='dark'] .pagination > li > a:focus
  3586. [data-theme='dark'] .pagination > li > span:hover,
  3587. [data-theme='dark'] .pagination > li > span:focus {
  3588. background-color: #191A28;
  3589. color: #8c909a;
  3590. }
  3591. [data-theme='dark'] .pagination > .active > a,
  3592. [data-theme='dark'] .pagination > .active > a:focus,
  3593. [data-theme='dark'] .pagination > .active > a:hover,
  3594. [data-theme='dark'] .pagination > .active > span,
  3595. [data-theme='dark'] .pagination > .active > span:focus,
  3596. [data-theme='dark'] .pagination > .active > span:hover {
  3597. border-color: #303243;
  3598. background-color: #191A28;
  3599. color: #fff;
  3600. }
  3601. [data-theme='dark'] .pager li > a,
  3602. [data-theme='dark'] .pager li > span {
  3603. background-color: #1D1F2F;
  3604. border-color: #303243;
  3605. }
  3606. [data-theme='dark'] .pager li > a:hover,
  3607. [data-theme='dark'] .pager li > a:focus{
  3608. background-color: #191A28;
  3609. color: #8c909a
  3610. }
  3611. [data-theme='dark'] .pager li > a:active,
  3612. [data-theme='dark'] .pager li > a.active {
  3613. background-color: #191A28;
  3614. color: #fff
  3615. }
  3616. [data-theme='dark'] .pager .disabled > a,
  3617. [data-theme='dark'] .pager .disabled > a:focus,
  3618. [data-theme='dark'] .pager .disabled > a:hover,
  3619. [data-theme='dark'] .pager .disabled > span {
  3620. opacity: .6;
  3621. background-color: #1D1F2F;
  3622. }
  3623. [data-theme='dark'] .well {
  3624. background-color: #292B3D;
  3625. border-color: #303243;
  3626. }
  3627. [data-theme='dark'] .list-group-item {
  3628. background-color: transparent;
  3629. border-color: #303243;
  3630. }
  3631. [data-theme='dark'] .list-group-item.active,
  3632. [data-theme='dark'] .list-group-item.active:focus,
  3633. [data-theme='dark'] .list-group-item.active:hover {
  3634. background-color: #33cabb;
  3635. border-color: #33cabb;
  3636. color: #fff;
  3637. }
  3638. [data-theme='dark'] a.list-group-item:hover,
  3639. [data-theme='dark'] button.list-group-item:hover,
  3640. [data-theme='dark'] a.list-group-item:focus,
  3641. [data-theme='dark'] button.list-group-item:focus {
  3642. background-color: #292B3D;
  3643. color: #bebdc2;
  3644. }
  3645. [data-theme='dark'] button.list-group-item {
  3646. -webkit-transition: .2s linear;
  3647. transition: .2s linear
  3648. }
  3649. [data-theme='dark'] .list-group-item.disabled,
  3650. [data-theme='dark'] .list-group-item.disabled:focus,
  3651. [data-theme='dark'] .list-group-item.disabled:hover {
  3652. background-color: #292B3D;
  3653. color: #bebdc2;
  3654. }
  3655. [data-theme='dark'] .list-group-item-success,
  3656. [data-theme='translucent'] .list-group-item-success {
  3657. color: #155724!important;
  3658. }
  3659. [data-theme='dark'] .list-group-item-info,
  3660. [data-theme='translucent'] .list-group-item-info {
  3661. color: #0c5460!important;
  3662. }
  3663. [data-theme='dark'] .list-group-item-warning,
  3664. [data-theme='translucent'] .list-group-item-warning {
  3665. color: #856404!important;
  3666. }
  3667. [data-theme='dark'] .list-group-item-danger,
  3668. [data-theme='translucent'] .list-group-item-danger {
  3669. color: #721c24!important;
  3670. }
  3671. [data-theme='dark'] a.list-group-item .list-group-item-heading,
  3672. [data-theme='dark'] button.list-group-item .list-group-item-heading {
  3673. color: #bebdc2;
  3674. }
  3675. [data-theme='dark'] .list-group-item.active .list-group-item-heading,
  3676. [data-theme='dark'] .list-group-item.active .list-group-item-heading>.small,
  3677. [data-theme='dark'] .list-group-item.active .list-group-item-heading>small,
  3678. [data-theme='dark'] .list-group-item.active:focus .list-group-item-heading,
  3679. [data-theme='dark'] .list-group-item.active:focus .list-group-item-heading>.small,
  3680. [data-theme='dark'] .list-group-item.active:focus .list-group-item-heading>small,
  3681. [data-theme='dark'] .list-group-item.active:hover .list-group-item-heading,
  3682. [data-theme='dark'] .list-group-item.active:hover .list-group-item-heading>.small,
  3683. [data-theme='dark'] .list-group-item.active:hover .list-group-item-heading>small {
  3684. color: #fff;
  3685. }
  3686. [data-theme='dark'] .lyear-checkbox span::before,
  3687. [data-theme='dark'] .lyear-radio span::before {
  3688. border-color: #656B77;
  3689. }
  3690. [data-theme='dark'] .lyear-checkbox.checkbox-grey span::before,
  3691. [data-theme='dark'] .lyear-checkbox.radio-grey span::before,
  3692. [data-theme='dark'] .lyear-radio.checkbox-grey span::before,
  3693. [data-theme='dark'] .lyear-radio.radio-grey span::before {
  3694. background-color: #656B77;
  3695. }
  3696. [data-theme='dark'] .lyear-switch span {
  3697. background-color: #1D1F2F;
  3698. border-color: #1D1F2F;
  3699. }
  3700. [data-theme='dark'] .lyear-switch.switch-outline span {
  3701. background-color: transparent;
  3702. }
  3703. [data-theme='dark'] .input-group-btn .btn-default:focus,
  3704. [data-theme='dark'] .input-group-btn .btn-default.focus,
  3705. [data-theme='dark'] .input-group-btn .btn-default:active,
  3706. [data-theme='dark'] .input-group-btn .btn-default.active,
  3707. [data-theme='dark'] .input-group-btn .show>.btn-default.dropdown-toggle,
  3708. [data-theme='dark'] .input-group-btn .open>.btn-default.dropdown-toggle {
  3709. border-color: #303243!important;
  3710. background-color: #292B3D!important;
  3711. color: #BEBDC2;
  3712. }
  3713. [data-theme='dark'] .input-group-btn .btn-default:hover {
  3714. color: #BEBDC2;
  3715. }
  3716. [data-theme='dark'] .has-success .input-group-addon {
  3717. color: #15c377!important;
  3718. border-color: #15c377!important;
  3719. }
  3720. [data-theme='dark'] .has-info .input-group-addon {
  3721. color: #48b0f7!important;
  3722. border-color: #48b0f7!important;
  3723. }
  3724. [data-theme='dark'] .has-warning .input-group-addon {
  3725. color: #faa64b!important;
  3726. border-color: #faa64b!important;
  3727. }
  3728. [data-theme='dark'] .has-error .input-group-addon {
  3729. color: #f96868!important;
  3730. border-color: #f96868!important;
  3731. }
  3732. [data-theme='dark'] .login-center {
  3733. background-color: #222437;
  3734. -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
  3735. -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.35);
  3736. box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
  3737. }
  3738. [data-theme='dark'] .datepicker-dropdown.datepicker-orient-top:after {
  3739. border-top-color: #222437;
  3740. }
  3741. [data-theme='dark'] .datepicker-dropdown:after {
  3742. border-bottom-color: #222437;
  3743. }
  3744. [data-theme='dark'] .bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
  3745. border-bottom-color: #1D1E2F;
  3746. }
  3747. [data-theme='dark'] .bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
  3748. border-bottom-color: #222437;
  3749. }
  3750. [data-theme='dark'] .bootstrap-datetimepicker-widget.dropdown-menu.top:before {
  3751. border-top-color: #1D1E2F;
  3752. }
  3753. [data-theme='dark'] .bootstrap-datetimepicker-widget.dropdown-menu.top:after {
  3754. border-top-color: #222437;
  3755. }
  3756. [data-theme='dark'] .bootstrap-datetimepicker-widget .btn {
  3757. background-color: transparent;
  3758. }
  3759. [data-theme='dark'] .close {
  3760. text-shadow: none;
  3761. -webkit-transition: .2s linear;
  3762. transition: .2s linear
  3763. }
  3764. [data-theme='dark'] .alert-success {
  3765. background-color: #16d17f;
  3766. border-color: #16d17f;
  3767. color: #fff;
  3768. }
  3769. [data-theme='dark'] .alert-info {
  3770. background-color: #48b0f7;
  3771. border-color: #48b0f7;
  3772. color: #fff;
  3773. }
  3774. [data-theme='dark'] .alert-warning {
  3775. background-color: #faa64b;
  3776. border-color: #faa64b;
  3777. color: #fff;
  3778. }
  3779. [data-theme='dark'] .alert-danger {
  3780. background-color: #f96868;
  3781. border-color: #f96868;
  3782. color: #fff;
  3783. }
  3784. [data-theme='dark'] .alert-link {
  3785. color: #fff;
  3786. }
  3787. [data-theme='dark'] .alert h1,
  3788. [data-theme='dark'] .alert h2,
  3789. [data-theme='dark'] .alert h3,
  3790. [data-theme='dark'] .alert h4,
  3791. [data-theme='dark'] .alert h5,
  3792. [data-theme='dark'] .alert h6,
  3793. [data-theme='dark'] .alert .h1,
  3794. [data-theme='dark'] .alert .h2,
  3795. [data-theme='dark'] .alert .h3,
  3796. [data-theme='dark'] .alert .h4,
  3797. [data-theme='dark'] .alert .h5,
  3798. [data-theme='dark'] .alert .h6 {
  3799. color: #fff;
  3800. }
  3801. /* 半透明 */
  3802. body[data-theme='translucent'] {
  3803. color: rgba(255, 255, 255, .85);
  3804. background: -webkit-linear-gradient(135deg, #65FDF0 10%, #1D6FA3 100%);
  3805. background: -o-linear-gradient(135deg, #65FDF0 10%, #1D6FA3 100%);
  3806. background: -moz-linear-gradient(135deg, #65FDF0 10%, #1D6FA3 100%);
  3807. background: linear-gradient(135deg, #65FDF0 10%, #1D6FA3 100%);
  3808. background-repeat: no-repeat;
  3809. background-size: cover;
  3810. background-attachment: fixed;
  3811. }
  3812. [data-theme='translucent'] ::-webkit-input-placeholder {
  3813. color: rgba(255, 255, 255, .85);
  3814. }
  3815. [data-theme='translucent'] :-moz-placeholder {
  3816. color: rgba(255, 255, 255, .85);
  3817. }
  3818. [data-theme='translucent'] ::-moz-placeholder {
  3819. color: rgba(255, 255, 255, .85);
  3820. }
  3821. [data-theme='translucent'] :-ms-input-placeholder {
  3822. color: rgba(255, 255, 255, .85);
  3823. }
  3824. [data-theme='translucent'] .sidebar-footer {
  3825. border-color: rgba(255, 255, 255, .075);
  3826. }
  3827. [data-theme='translucent'] a,
  3828. [data-theme='translucent'] h1,
  3829. [data-theme='translucent'] h2,
  3830. [data-theme='translucent'] h3,
  3831. [data-theme='translucent'] h4,
  3832. [data-theme='translucent'] h5,
  3833. [data-theme='translucent'] h6,
  3834. [data-theme='translucent'] .h1,
  3835. [data-theme='translucent'] .h2,
  3836. [data-theme='translucent'] .h3,
  3837. [data-theme='translucent'] .h4,
  3838. [data-theme='translucent'] .h5,
  3839. [data-theme='translucent'] .h6,
  3840. [data-theme='translucent'] .divider {
  3841. color: rgba(255, 255, 255, .85);
  3842. }
  3843. [data-theme='translucent'] .h1 .small,
  3844. [data-theme='translucent'] .h1 small,
  3845. [data-theme='translucent'] .h2 .small,
  3846. [data-theme='translucent'] .h2 small,
  3847. [data-theme='translucent'] .h3 .small,
  3848. [data-theme='translucent'] .h3 small,
  3849. [data-theme='translucent'] .h4 .small,
  3850. [data-theme='translucent'] .h4 small,
  3851. [data-theme='translucent'] .h5 .small,
  3852. [data-theme='translucent'] .h5 small,
  3853. [data-theme='translucent'] .h6 .small,
  3854. [data-theme='translucent'] .h6 small,
  3855. [data-theme='translucent'] h1 .small,
  3856. [data-theme='translucent'] h1 small,
  3857. [data-theme='translucent'] h2 .small,
  3858. [data-theme='translucent'] h2 small,
  3859. [data-theme='translucent'] h3 .small,
  3860. [data-theme='translucent'] h3 small,
  3861. [data-theme='translucent'] h4 .small,
  3862. [data-theme='translucent'] h4 small,
  3863. [data-theme='translucent'] h5 .small,
  3864. [data-theme='translucent'] h5 small,
  3865. [data-theme='translucent'] h6 .small,
  3866. [data-theme='translucent'] h6 small {
  3867. color: rgba(255, 255, 255, .65);
  3868. }
  3869. [data-theme='translucent'] a:hover,
  3870. [data-theme='translucent'] .nav-drawer .nav-subnav > li.active > a,
  3871. [data-theme='translucent'] .nav-drawer .nav-subnav > li > a:hover,
  3872. [data-theme='translucent'] .card-header h1,
  3873. [data-theme='translucent'] .card-header h2,
  3874. [data-theme='translucent'] .card-header h3,
  3875. [data-theme='translucent'] .card-header h4,
  3876. [data-theme='translucent'] .card-header h5,
  3877. [data-theme='translucent'] .card-header h6,
  3878. [data-theme='translucent'] .card-header .h1,
  3879. [data-theme='translucent'] .card-header .h2,
  3880. [data-theme='translucent'] .card-header .h3,
  3881. [data-theme='translucent'] .card-header .h4,
  3882. [data-theme='translucent'] .card-header .h5,
  3883. [data-theme='translucent'] .card-header .h6 {
  3884. color: #fff;
  3885. }
  3886. [data-theme='translucent'] .card,
  3887. [data-theme='translucent'] .sidebar-header,
  3888. [data-theme='translucent'] .lyear-layout-sidebar-scroll,
  3889. [data-theme='translucent'] .lyear-layout-header {
  3890. background-color: rgba(0, 0, 0, .075);
  3891. }
  3892. [data-theme='translucent'] .card-header,
  3893. [data-theme='translucent'] .modal-header,
  3894. [data-theme='translucent'] .modal-footer,
  3895. [data-theme='translucent'] .divider::before,
  3896. [data-theme='translucent'] .divider::after {
  3897. border-color: rgba(255, 255, 255, .075);
  3898. }
  3899. [data-theme='translucent'] .lyear-aside-toggler .lyear-toggler-bar {
  3900. background-color: rgba(255, 255, 255, .85);
  3901. }
  3902. [data-theme='translucent'] .table-bordered,
  3903. [data-theme='translucent'] .table>tbody>tr>td,
  3904. [data-theme='translucent'] .table>tbody>tr>th,
  3905. [data-theme='translucent'] .table>tfoot>tr>td,
  3906. [data-theme='translucent'] .table>tfoot>tr>th,
  3907. [data-theme='translucent'] .table>thead>tr>td,
  3908. [data-theme='translucent'] .table>thead>tr>th {
  3909. border-color: rgba(255, 255, 255, .075);
  3910. }
  3911. [data-theme='translucent'] .table-striped tbody tr:nth-of-type(odd) {
  3912. background-color: rgba(255, 255, 255, .1);
  3913. }
  3914. [data-theme='translucent'] .table-hover > tbody > tr:hover,
  3915. [data-theme='translucent'] a.list-group-item:focus,
  3916. [data-theme='translucent'] a.list-group-item:hover,
  3917. [data-theme='translucent'] button.list-group-item:focus,
  3918. [data-theme='translucent'] button.list-group-item:hover {
  3919. background-color: rgba(255, 255, 255, .075);
  3920. }
  3921. [data-theme='translucent'] .table>tbody>tr.active>td,
  3922. [data-theme='translucent'] .table>tbody>tr.active>th,
  3923. [data-theme='translucent'] .table>tbody>tr>td.active,
  3924. [data-theme='translucent'] .table>tbody>tr>th.active,
  3925. [data-theme='translucent'] .table>tfoot>tr.active>td,
  3926. [data-theme='translucent'] .table>tfoot>tr.active>th,
  3927. [data-theme='translucent'] .table>tfoot>tr>td.active,
  3928. [data-theme='translucent'] .table>tfoot>tr>th.active,
  3929. [data-theme='translucent'] .table>thead>tr.active>td,
  3930. [data-theme='translucent'] .table>thead>tr.active>th,
  3931. [data-theme='translucent'] .table>thead>tr>td.active,
  3932. [data-theme='translucent'] .table>thead>tr>th.active {
  3933. background-color: rgba(245, 245, 245, .35);
  3934. }
  3935. [data-theme='translucent'] .table>tbody>tr.success>td,
  3936. [data-theme='translucent'] .table>tbody>tr.success>th,
  3937. [data-theme='translucent'] .table>tbody>tr>td.success,
  3938. [data-theme='translucent'] .table>tbody>tr>th.success,
  3939. [data-theme='translucent'] .table>tfoot>tr.success>td,
  3940. [data-theme='translucent'] .table>tfoot>tr.success>th,
  3941. [data-theme='translucent'] .table>tfoot>tr>td.success,
  3942. [data-theme='translucent'] .table>tfoot>tr>th.success,
  3943. [data-theme='translucent'] .table>thead>tr.success>td,
  3944. [data-theme='translucent'] .table>thead>tr.success>th,
  3945. [data-theme='translucent'] .table>thead>tr>td.success,
  3946. [data-theme='translucent'] .table>thead>tr>th.success {
  3947. background-color: rgba(21, 195, 119, .35);
  3948. }
  3949. [data-theme='translucent'] .table>tbody>tr.info>td,
  3950. [data-theme='translucent'] .table>tbody>tr.info>th,
  3951. [data-theme='translucent'] .table>tbody>tr>td.info,
  3952. [data-theme='translucent'] .table>tbody>tr>th.info,
  3953. [data-theme='translucent'] .table>tfoot>tr.info>td,
  3954. [data-theme='translucent'] .table>tfoot>tr.info>th,
  3955. [data-theme='translucent'] .table>tfoot>tr>td.info,
  3956. [data-theme='translucent'] .table>tfoot>tr>th.info,
  3957. [data-theme='translucent'] .table>thead>tr.info>td,
  3958. [data-theme='translucent'] .table>thead>tr.info>th,
  3959. [data-theme='translucent'] .table>thead>tr>td.info,
  3960. [data-theme='translucent'] .table>thead>tr>th.info {
  3961. background-color: rgba(72, 176, 247, .35);
  3962. }
  3963. [data-theme='translucent'] .table>tbody>tr.warning>td,
  3964. [data-theme='translucent'] .table>tbody>tr.warning>th,
  3965. [data-theme='translucent'] .table>tbody>tr>td.warning,
  3966. [data-theme='translucent'] .table>tbody>tr>th.warning,
  3967. [data-theme='translucent'] .table>tfoot>tr.warning>td,
  3968. [data-theme='translucent'] .table>tfoot>tr.warning>th,
  3969. [data-theme='translucent'] .table>tfoot>tr>td.warning,
  3970. [data-theme='translucent'] .table>tfoot>tr>th.warning,
  3971. [data-theme='translucent'] .table>thead>tr.warning>td,
  3972. [data-theme='translucent'] .table>thead>tr.warning>th,
  3973. [data-theme='translucent'] .table>thead>tr>td.warning,
  3974. [data-theme='translucent'] .table>thead>tr>th.warning {
  3975. background-color: rgba(250, 166, 75, .35);
  3976. }
  3977. [data-theme='translucent'] .table>tbody>tr.danger>td,
  3978. [data-theme='translucent'] .table>tbody>tr.danger>th,
  3979. [data-theme='translucent'] .table>tbody>tr>td.danger,
  3980. [data-theme='translucent'] .table>tbody>tr>th.danger,
  3981. [data-theme='translucent'] .table>tfoot>tr.danger>td,
  3982. [data-theme='translucent'] .table>tfoot>tr.danger>th,
  3983. [data-theme='translucent'] .table>tfoot>tr>td.danger,
  3984. [data-theme='translucent'] .table>tfoot>tr>th.danger,
  3985. [data-theme='translucent'] .table>thead>tr.danger>td,
  3986. [data-theme='translucent'] .table>thead>tr.danger>th,
  3987. [data-theme='translucent'] .table>thead>tr>td.danger,
  3988. [data-theme='translucent'] .table>thead>tr>th.danger {
  3989. background-color: rgba(249, 104, 104, .35);
  3990. }
  3991. [data-theme='translucent'] .btn-default {
  3992. border-color: rgba(255, 255, 255, .075);
  3993. background-color: rgba(255, 255, 255, .075);
  3994. color: rgba(255, 255, 255, .85);
  3995. }
  3996. [data-theme='translucent'] .btn-default:hover {
  3997. background-color: rgba(255, 255, 255, .125);
  3998. border-color: rgba(255, 255, 255, .125);
  3999. color: #fff
  4000. }
  4001. [data-theme='translucent'] .btn-default:focus,
  4002. [data-theme='translucent'] .btn-default.focus,
  4003. [data-theme='translucent'] .btn-default:active,
  4004. [data-theme='translucent'] .btn-default.active,
  4005. [data-theme='translucent'] .show>.btn-default.dropdown-toggle,
  4006. [data-theme='translucent'] .open>.btn-default.dropdown-toggle,
  4007. [data-theme='translucent'] .btn-default:not([disabled]):not(.disabled).active,
  4008. [data-theme='translucent'] .btn-default:not([disabled]):not(.disabled):active,
  4009. [data-theme='translucent'] .show>.btn-default.dropdown-toggle,
  4010. [data-theme='translucent'] .btn-default.disabled,
  4011. [data-theme='translucent'] .btn-default:disabled {
  4012. background-color: rgba(255, 255, 255, .125)!important;
  4013. border-color: rgba(255, 255, 255, .125)!important;
  4014. color: #fff
  4015. }
  4016. [data-theme='translucent'] .dropdown-menu {
  4017. border: none;
  4018. }
  4019. [data-theme='translucent'] blockquote {
  4020. border-color: rgba(255, 255, 255, .1);
  4021. }
  4022. [data-theme='translucent'] blockquote .small,
  4023. [data-theme='translucent'] blockquote footer,
  4024. [data-theme='translucent'] blockquote small {
  4025. color: rgba(255, 255, 255, .85);
  4026. }
  4027. [data-theme='translucent'] .bg-white {
  4028. background-color: rgba(255, 255, 255, .35) !important
  4029. }
  4030. [data-theme='translucent'] .bg-lightest {
  4031. background-color: rgba(253, 252, 254, .35)!important;
  4032. }
  4033. [data-theme='translucent'] .bg-lighter {
  4034. background-color: rgba(249, 250, 251, .35) !important;
  4035. }
  4036. [data-theme='translucent'] .bg-light {
  4037. background-color: rgba(245, 246, 247, .35) !important;
  4038. }
  4039. [data-theme='translucent'] .progress {
  4040. background-color: rgba(245, 246, 247, .075);
  4041. }
  4042. [data-theme='translucent'] .nav-tabs {
  4043. border-bottom-color: rgba(255, 255, 255, .075);
  4044. }
  4045. [data-theme='translucent'] .nav-tabs > li > a {
  4046. color: rgba(255, 255, 255, .85);
  4047. }
  4048. [data-theme='translucent'] .nav-tabs > li.active > a,
  4049. [data-theme='translucent'] .nav-tabs > li.active > a:focus,
  4050. [data-theme='translucent'] .nav-tabs > li.active > a:hover,
  4051. [data-theme='translucent'] .nav-tabs.nav-justified > .active > a,
  4052. [data-theme='translucent'] .nav-tabs.nav-justified > .active > a:focus,
  4053. [data-theme='translucent'] .nav-tabs.nav-justified > .active > a:hover {
  4054. color: #fff;
  4055. border-bottom-color: rgba(255, 255, 255, .35);
  4056. }
  4057. [data-theme='translucent'] .nav-tabs.nav > li > a:hover,
  4058. [data-theme='translucent'] .nav-tabs.nav > li > a:focus {
  4059. border-bottom-color: rgba(255, 255, 255, .35);
  4060. }
  4061. @media (min-width: 768px) {
  4062. [data-theme='translucent'] .nav-tabs.nav-justified>li>a {
  4063. border-bottom-color: rgba(255, 255, 255, .075);
  4064. }
  4065. }
  4066. [data-theme='translucent'] .modal-content,
  4067. [data-theme='translucent'] .popover {
  4068. background-color: #474747;
  4069. border: none;
  4070. -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, .35);
  4071. -moz-box-shadow: 0 0 4px rgba(0, 0, 0, .35);
  4072. box-shadow: 0 0 4px rgba(0, 0, 0, .35);
  4073. }
  4074. [data-theme='translucent'] .popover-title {
  4075. background-color: #474747;
  4076. border-color: rgba(255, 255, 255, .075);
  4077. }
  4078. [data-theme='translucent'] .popover.top>.arrow {
  4079. border-top-color: #474747;
  4080. }
  4081. [data-theme='translucent'] .popover.right>.arrow {
  4082. border-right-color: #474747;
  4083. }
  4084. [data-theme='translucent'] .popover.bottom>.arrow {
  4085. border-bottom-color: #474747;
  4086. }
  4087. [data-theme='translucent'] .popover.left>.arrow {
  4088. border-left-color: #474747;
  4089. }
  4090. [data-theme='translucent'] .popover.top>.arrow:after,
  4091. [data-theme='translucent'] .popover.right>.arrow:after,
  4092. [data-theme='translucent'] .popover.bottom>.arrow:after,
  4093. [data-theme='translucent'] .popover.left>.arrow:after {
  4094. border-color: transparent;
  4095. }
  4096. [data-theme='translucent'] .alert-success,
  4097. [data-theme='translucent'] .alert-info,
  4098. [data-theme='translucent'] .alert-warning,
  4099. [data-theme='translucent'] .alert-danger {
  4100. border: none;
  4101. color: rgba(255, 255, 255, .85);
  4102. }
  4103. [data-theme='translucent'] .alert-success a,
  4104. [data-theme='translucent'] .alert-info a,
  4105. [data-theme='translucent'] .alert-warning a,
  4106. [data-theme='translucent'] .alert-danger a {
  4107. color: rgba(255, 255, 255, .85);
  4108. }
  4109. [data-theme='translucent'] .alert-success {
  4110. background-color: #15c377;
  4111. }
  4112. [data-theme='translucent'] .alert-info {
  4113. background-color: #48b0f7;
  4114. }
  4115. [data-theme='translucent'] .alert-warning {
  4116. background-color: #faa64b;
  4117. }
  4118. [data-theme='translucent'] .alert-danger {
  4119. background-color: #f96868;
  4120. }
  4121. [data-theme='translucent'] .pagination > li > a,
  4122. [data-theme='translucent'] .pagination > li > span,
  4123. [data-theme='translucent'] .pager li > a,
  4124. [data-theme='translucent'] .pager li > span {
  4125. color: rgba(255, 255, 255, .85);
  4126. border-color: rgba(255, 255, 255, .125);
  4127. background-color: rgba(255, 255, 255, .075);
  4128. }
  4129. [data-theme='translucent'] .pagination > li > a:hover,
  4130. [data-theme='translucent'] .pagination > li > a:focus
  4131. [data-theme='translucent'] .pagination > li > span:hover,
  4132. [data-theme='translucent'] .pagination > li > span:focus,
  4133. [data-theme='translucent'] .pager li > a:hover,
  4134. [data-theme='translucent'] .pager li > a:focus {
  4135. color: #fff;
  4136. background-color: rgba(255, 255, 255, .125);
  4137. }
  4138. [data-theme='translucent'] .pagination > .active > a,
  4139. [data-theme='translucent'] .pagination > .active > a:focus,
  4140. [data-theme='translucent'] .pagination > .active > a:hover,
  4141. [data-theme='translucent'] .pagination > .active > span,
  4142. [data-theme='translucent'] .pagination > .active > span:focus,
  4143. [data-theme='translucent'] .pagination > .active > span:hover,
  4144. [data-theme='translucent'] .pager li > a:active,
  4145. [data-theme='translucent'] .pager li > a.active {
  4146. background-color: rgba(255, 255, 255, .125);
  4147. }
  4148. [data-theme='translucent'] .well,
  4149. [data-theme='translucent'] .panel,
  4150. [data-theme='translucent'] code,
  4151. [data-theme='translucent'] .list-group-item {
  4152. background-color: rgba(0, 0, 0, .035);
  4153. }
  4154. [data-theme='translucent'] .well,
  4155. [data-theme='translucent'] .list-group-item {
  4156. border-color: rgba(0, 0, 0, .035);
  4157. }
  4158. [data-theme='translucent'] .list-group-item.active,
  4159. [data-theme='translucent'] .list-group-item.active:focus,
  4160. [data-theme='translucent'] .list-group-item.active:hover {
  4161. background-color: #33cabb;
  4162. border-color: #33cabb;
  4163. }
  4164. [data-theme='translucent'] .form-control,
  4165. [data-theme='translucent'] div.tagsinput {
  4166. border-color: rgba(255, 255, 255, .075);
  4167. background-color: rgba(0, 0, 0, .035);
  4168. color: rgba(255, 255, 255, .85);
  4169. }
  4170. [data-theme='translucent'] .form-control:focus {
  4171. border-color: rgba(255, 255, 255, .35);
  4172. }
  4173. [data-theme='translucent'] .input-group-btn:first-child>.btn,
  4174. [data-theme='translucent'] .input-group-btn:first-child>.btn-group {
  4175. margin-right: 0px;
  4176. }
  4177. [data-theme='translucent'] .input-group-addon {
  4178. background-color: rgba(255, 255, 255, .075);
  4179. border-color: rgba(255, 255, 255, .075);
  4180. color: rgba(255, 255, 255, .85);
  4181. }
  4182. [data-theme='translucent'] .help-block {
  4183. color: rgba(255, 255, 255, .5);
  4184. }
  4185. [data-theme='translucent'] .lyear-checkbox span::before,
  4186. [data-theme='translucent'] .lyear-radio span::before,
  4187. [data-theme='translucent'] .lyear-checkbox.checkbox-grey span::before,
  4188. [data-theme='translucent'] .lyear-checkbox.radio-grey span::before,
  4189. [data-theme='translucent'] .lyear-radio.checkbox-grey span::before,
  4190. [data-theme='translucent'] .lyear-radio.radio-grey span::before {
  4191. border-color: rgba(0, 0, 0, .125);
  4192. }
  4193. [data-theme='translucent'] .lyear-checkbox.checkbox-grey span::before,
  4194. [data-theme='translucent'] .lyear-checkbox.radio-grey span::before,
  4195. [data-theme='translucent'] .lyear-radio.checkbox-grey span::before,
  4196. [data-theme='translucent'] .lyear-radio.radio-grey span::before {
  4197. background-color: rgba(235, 235, 235, .35)
  4198. }
  4199. [data-theme='translucent'] .lyear-switch.switch-outline span {
  4200. background-color: transparent;
  4201. border-color: rgba(0, 0, 0, .35);
  4202. }
  4203. [data-theme='translucent'] .lyear-switch span {
  4204. border-color: rgba(0, 0, 0, .035);
  4205. background-color: rgba(0, 0, 0, .35);
  4206. }
  4207. [data-theme='translucent'] .login-center {
  4208. background-color: rgba(0, 0, 0, .125);
  4209. }
  4210. [data-theme='translucent'] .datepicker.dropdown-menu {
  4211. color: #333;
  4212. }
  4213. [data-theme='translucent'] .irs--flat .irs-min,
  4214. [data-theme='translucent'] .irs--flat .irs-max {
  4215. background-color: rgba(0, 0, 0, .035);
  4216. color: rgba(255, 255, 255, .85);
  4217. }
  4218. [data-theme='translucent'] .irs--flat .irs-line {
  4219. background-color: rgba(0, 0, 0, .075);
  4220. }
  4221. [data-theme='translucent'] .irs--flat .irs-grid-text {
  4222. color: rgba(255, 255, 255, .85);
  4223. }
  4224. [data-theme='translucent'] .text-muted {
  4225. color: rgba(255, 255, 255, .5)!important;
  4226. }
  4227. @media (max-width: 1024px) {
  4228. [data-theme='translucent'].lyear-layout-sidebar-close .lyear-layout-sidebar-scroll,
  4229. [data-theme='translucent'].lyear-layout-sidebar-close .sidebar-header {
  4230. background-color: rgba(0, 0, 0, .75);
  4231. }
  4232. }
  4233. /* 颜色搭配 */
  4234. [data-headerbg='color_2'] .lyear-layout-header,
  4235. [data-logobg='color_2'] .sidebar-header,
  4236. [data-sidebarbg='color_2'] .lyear-layout-sidebar-scroll {
  4237. background-color: #15c377;
  4238. }
  4239. [data-headerbg='color_3'] .lyear-layout-header,
  4240. [data-logobg='color_3'] .sidebar-header,
  4241. [data-sidebarbg='color_3'] .lyear-layout-sidebar-scroll {
  4242. background-color: #48b0f7;
  4243. }
  4244. [data-headerbg='color_4'] .lyear-layout-header,
  4245. [data-logobg='color_4'] .sidebar-header,
  4246. [data-sidebarbg='color_4'] .lyear-layout-sidebar-scroll {
  4247. background-color: #faa64b;
  4248. }
  4249. [data-headerbg='color_5'] .lyear-layout-header,
  4250. [data-logobg='color_5'] .sidebar-header,
  4251. [data-sidebarbg='color_5'] .lyear-layout-sidebar-scroll {
  4252. background-color: #f96868;
  4253. }
  4254. [data-headerbg='color_6'] .lyear-layout-header,
  4255. [data-logobg='color_6'] .sidebar-header,
  4256. [data-sidebarbg='color_6'] .lyear-layout-sidebar-scroll {
  4257. background-color: #926dde;
  4258. }
  4259. [data-headerbg='color_7'] .lyear-layout-header,
  4260. [data-logobg='color_7'] .sidebar-header,
  4261. [data-sidebarbg='color_7'] .lyear-layout-sidebar-scroll {
  4262. background-color: #33cabb;
  4263. }
  4264. [data-headerbg='color_8'] .lyear-layout-header,
  4265. [data-logobg='color_8'] .sidebar-header,
  4266. [data-sidebarbg='color_8'] .lyear-layout-sidebar-scroll {
  4267. background-color: #465161;
  4268. }
  4269. [data-logobg*='color_'] .sidebar-header img,
  4270. [data-theme='translucent'] .sidebar-header img {
  4271. position: relative;
  4272. left: -220px;
  4273. -webkit-filter: drop-shadow(rgb(255, 255, 255) 220px 0px);
  4274. -moz-filter: drop-shadow(rgb(255, 255, 255) 220px 0px);
  4275. -ms-filter: drop-shadow(rgb(255, 255, 255) 220px 0px);
  4276. -o-filter: drop-shadow(rgb(255, 255, 255) 220px 0px);
  4277. filter: drop-shadow(rgb(255, 255, 255) 220px 0px);
  4278. }
  4279. [data-headerbg*='color_'] .lyear-layout-header,
  4280. [data-headerbg*='color_'] .lyear-layout-header .topbar-right > li > a,
  4281. [data-sidebarbg*='color_'] .lyear-layout-sidebar-scroll a,
  4282. [data-sidebarbg*='color_'] .sidebar-footer {
  4283. color: rgba(255, 255, 255, .85);
  4284. }
  4285. [data-sidebarbg*='color_'] .nav-drawer .nav-subnav > li.active > a,
  4286. [data-sidebarbg*='color_'] .nav-drawer .nav-subnav > li > a:hover {
  4287. color: #fff;
  4288. }
  4289. [data-headerbg*='color_'] .lyear-aside-toggler .lyear-toggler-bar {
  4290. background-color: #fff;
  4291. }
  4292. [data-sidebarbg*='color_'] .nav-drawer > .active > a {
  4293. border-color: rgba(255, 255, 255, .35);
  4294. background-color: rgba(255, 255, 255, .075)!important;
  4295. }
  4296. [data-sidebarbg*='color_'] .nav > li > a:hover {
  4297. background-color: rgba(255, 255, 255, .035);
  4298. }
  4299. [data-sidebarbg*='color_'] .nav-drawer > .active > a:hover,
  4300. [data-sidebarbg*='color_'] .nav-drawer > .active > a:focus,
  4301. [data-sidebarbg*='color_'] .nav-drawer > .active > a:active {
  4302. border-color: rgba(255, 255, 255, .35);
  4303. }