style.min.css 105 KB

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