style.min.css 105 KB

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