style.min.css 105 KB

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