style.min.css 105 KB

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