style.min.css 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907
  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. /** ----------------------------------
  50. * 示例中用到的样式,可删除
  51. -------------------------------------- */
  52. .example-box .btn {
  53. margin-bottom: 10px;
  54. margin-right: 6px;
  55. }
  56. /** ----------------------------------
  57. * 重设样式
  58. -------------------------------------- */
  59. /* 标题 */
  60. h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  61. font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'PingFang SC', 'Microsoft YaHei', 'Source Han Sans SC', 'Noto Sans CJK SC', 'WenQuanYi Micro Hei', sans-serif;
  62. color: #313944;
  63. line-height: 1.5;
  64. letter-spacing: .5px;
  65. }
  66. .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  67. margin-top: 0;
  68. margin-bottom: .5rem;
  69. }
  70. /* 导航相关 */
  71. .navbar-toggle {
  72. background-color: transparent;
  73. border-color: transparent!important;
  74. }
  75. .navbar-default .navbar-toggle:hover,
  76. .navbar-default .navbar-toggle:focus {
  77. background-color: transparent;
  78. }
  79. .navbar-default .navbar-toggle .icon-bar {
  80. background-color: #4d5259;
  81. }
  82. .nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
  83. background-color: transparent;
  84. border-color: transparent;
  85. }
  86. /* 下拉 */
  87. .dropdown-menu {
  88. border-radius: 0;
  89. border: 1px solid rgba(235, 235, 235, 0.4);
  90. -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.035);
  91. box-shadow: 0 0 4px rgba(0, 0, 0, 0.035);
  92. }
  93. .dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
  94. background-color: #f9fafb;
  95. }
  96. .dropdown-menu .divider {
  97. background-color: #f1f2f3;
  98. }
  99. .dropdown-menu > li > a {
  100. padding-top: 8px;
  101. padding-bottom: 8px;
  102. }
  103. .dropdown-menu > li > a > i {
  104. margin-right: 10px;
  105. }
  106. .dropdown-menu>.active>a,
  107. .dropdown-menu>.active>a:focus,
  108. .dropdown-menu>.active>a:hover {
  109. background-color: #33cabb;
  110. }
  111. /* 表格 */
  112. .table-bordered {
  113. border-color: #eceeef;
  114. }
  115. .table>tbody>tr>td,
  116. .table>tbody>tr>th,
  117. .table>tfoot>tr>td,
  118. .table>tfoot>tr>th,
  119. .table>thead>tr>td,
  120. .table>thead>tr>th {
  121. padding: .75em;
  122. line-height: 1.5;
  123. border-color: #eceeef;
  124. }
  125. .table-striped tbody tr:nth-of-type(odd) {
  126. background-color: #fcfdfe;
  127. }
  128. .table-hover > tbody > tr:hover {
  129. background-color: #f9fafb;
  130. }
  131. .table-vcenter > thead > tr > th,
  132. .table-vcenter > thead > tr > td,
  133. .table-vcenter > tbody > tr > th,
  134. .table-vcenter > tbody > tr > td,
  135. .table-vcenter > tfoot > tr > th,
  136. .table-vcenter > tfoot > tr > td {
  137. vertical-align: middle;
  138. }
  139. .table-hover tbody tr {
  140. -webkit-transition: background-color 0.2s linear;
  141. transition: background-color 0.2s linear;
  142. }
  143. .table-condensed > tbody > tr > td,
  144. .table-condensed > tbody > tr > th,
  145. .table-condensed > tfoot > tr > td,
  146. .table-condensed > tfoot > tr > th,
  147. .table-condensed > thead > tr > td,
  148. .table-condensed > thead > tr > th {
  149. padding: .5em;
  150. }
  151. /* 标签 */
  152. .label {
  153. border-radius: 2px;
  154. font-weight: 300;
  155. }
  156. .label-default {
  157. background-color: #fcfdfe;
  158. border: 1px solid #ebebeb;
  159. color: #8b95a5;
  160. }
  161. .label-primary {
  162. background-color: #33cabb;
  163. }
  164. .label-success {
  165. background-color: #15c377;
  166. }
  167. .label-info {
  168. background-color: #48b0f7;
  169. }
  170. .label-warning {
  171. background-color: #faa64b;
  172. }
  173. .label-danger {
  174. background-color: #f96868;
  175. }
  176. .label-dark {
  177. background-color: #465161;
  178. }
  179. .label-secondary {
  180. background-color: #e4e7ea;
  181. color: #4d5259;
  182. }
  183. .label-purple {
  184. background-color: #926dde;
  185. }
  186. .label-pink {
  187. background-color: #f96197;
  188. }
  189. .label-cyan {
  190. background-color: #57c7d4;
  191. }
  192. .label-yellow {
  193. background-color: #fcc525;
  194. }
  195. .label-brown {
  196. background-color: #8d6658;
  197. }
  198. /* well */
  199. .well {
  200. border-radius: 2px;
  201. background-color: #f7f7f7;
  202. border-color: #f0f0f0;
  203. -webkit-box-shadow: none;
  204. box-shadow: none;
  205. }
  206. /* 面板 */
  207. .panel {
  208. border-color: #f0f0f0;
  209. -webkit-box-shadow: none;
  210. box-shadow: none;
  211. margin-bottom: 30px;
  212. }
  213. .panel a:hover,
  214. .panel a:focus,
  215. .panel a:active {
  216. color: inherit;
  217. }
  218. .panel-heading {
  219. -webkit-border-radius: 0px;
  220. border-radius: 0px;
  221. }
  222. .panel-default>.panel-heading,
  223. .panel-default>.panel-heading+.panel-collapse>.panel-body {
  224. border-color: #f0f0f0;
  225. }
  226. .panel-primary>.panel-heading {
  227. background-color: #33cabb;
  228. border-color: #33cabb;
  229. }
  230. .panel-primary {
  231. border-color: #33cabb;
  232. }
  233. .panel-primary>.panel-heading+.panel-collapse>.panel-body {
  234. border-top-color: #33cabb;
  235. }
  236. .panel-primary > .panel-heading .badge {
  237. color: #33cabb;
  238. }
  239. .panel-success>.panel-heading {
  240. color: #fff;
  241. background-color: #15c377;
  242. border-color: #15c377;
  243. }
  244. .panel-success {
  245. border-color: #15c377;
  246. }
  247. .panel-success>.panel-heading+.panel-collapse>.panel-body {
  248. border-top-color: #15c377;
  249. }
  250. .panel-success > .panel-heading .badge {
  251. background-color: #fff;
  252. color: #15c377;
  253. }
  254. .panel-info>.panel-heading {
  255. color: #fff;
  256. background-color: #48b0f7;
  257. border-color: #48b0f7;
  258. }
  259. .panel-info {
  260. border-color: #48b0f7;
  261. }
  262. .panel-info>.panel-heading+.panel-collapse>.panel-body {
  263. border-top-color: #48b0f7;
  264. }
  265. .panel-info > .panel-heading .badge {
  266. background-color: #fff;
  267. color: #48b0f7;
  268. }
  269. .panel-warning>.panel-heading {
  270. color: #fff;
  271. background-color: #faa64b;
  272. border-color: #faa64b;
  273. }
  274. .panel-warning {
  275. border-color: #faa64b;
  276. }
  277. .panel-warning>.panel-heading+.panel-collapse>.panel-body {
  278. border-top-color: #faa64b;
  279. }
  280. .panel-warning > .panel-heading .badge {
  281. background-color: #fff;
  282. color: #faa64b;
  283. }
  284. .panel-danger>.panel-heading {
  285. color: #fff;
  286. background-color: #f96868;
  287. border-color: #f96868;
  288. }
  289. .panel-danger {
  290. border-color: #f96868;
  291. }
  292. .panel-danger>.panel-heading+.panel-collapse>.panel-body {
  293. border-top-color: #f96868;
  294. }
  295. .panel-danger > .panel-heading .badge {
  296. background-color: #fff;
  297. color: #f96868;
  298. }
  299. .panel-dark>.panel-heading {
  300. color: #fff;
  301. background-color: #465161;
  302. border-color: #465161;
  303. }
  304. .panel-dark {
  305. border-color: #465161;
  306. }
  307. .panel-dark>.panel-heading+.panel-collapse>.panel-body {
  308. border-top-color: #465161;
  309. }
  310. .panel-secondary>.panel-heading {
  311. background-color: #e4e7ea;
  312. border-color: #e4e7ea;
  313. }
  314. .panel-secondary {
  315. border-color: #e4e7ea;
  316. }
  317. .panel-secondary>.panel-heading+.panel-collapse>.panel-body {
  318. border-top-color: #e4e7ea;
  319. }
  320. .panel-purple>.panel-heading {
  321. color: #fff;
  322. background-color: #926dde;
  323. border-color: #926dde;
  324. }
  325. .panel-purple {
  326. border-color: #926dde;
  327. }
  328. .panel-purple>.panel-heading+.panel-collapse>.panel-body {
  329. border-top-color: #926dde;
  330. }
  331. .panel-pink>.panel-heading {
  332. color: #fff;
  333. background-color: #f96197;
  334. border-color: #f96197;
  335. }
  336. .panel-pink {
  337. border-color: #f96197;
  338. }
  339. .panel-pink>.panel-heading+.panel-collapse>.panel-body {
  340. border-top-color: #f96197;
  341. }
  342. .panel-cyan>.panel-heading {
  343. color: #fff;
  344. background-color: #57c7d4;
  345. border-color: #57c7d4;
  346. }
  347. .panel-cyan {
  348. border-color: #57c7d4;
  349. }
  350. .panel-cyan>.panel-heading+.panel-collapse>.panel-body {
  351. border-top-color: #57c7d4;
  352. }
  353. /* 列表组 */
  354. .list-group-item {
  355. border-color: #f0f0f0;
  356. }
  357. a.list-group-item:focus,
  358. a.list-group-item:hover,
  359. button.list-group-item:focus,
  360. button.list-group-item:hover {
  361. background-color: #f9fafb;
  362. }
  363. .list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
  364. background-color: #33cabb;
  365. border-color: #33cabb;
  366. }
  367. .list-group-item:first-child {
  368. border-top-left-radius: 2px;
  369. border-top-right-radius: 2px;
  370. }
  371. .list-group-item:last-child {
  372. border-bottom-right-radius: 2px;
  373. border-bottom-left-radius: 2px;
  374. }
  375. /* 表单 */
  376. .form-control {
  377. height: 38px;
  378. border-color: #ebebeb;
  379. -webkit-border-radius: 2px;
  380. border-radius: 2px;
  381. color: #8b95a5;
  382. padding: 5px 12px;
  383. line-height: inherit;
  384. -webkit-transition: 0.2s linear;
  385. transition: 0.2s linear;
  386. -webkit-box-shadow: none;
  387. box-shadow: none;
  388. }
  389. .form-control:focus {
  390. border-color: #33cabb;
  391. outline: 0;
  392. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(51, 202, 187, .6);
  393. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(51, 202, 187, .6);
  394. }
  395. .input-group-addon {
  396. border-color: #ebebeb;
  397. background-color: #f9fafb;
  398. -webkit-border-radius: 2px;
  399. border-radius: 2px;
  400. }
  401. .input-group-lg>.form-control, .input-group-lg>.input-group-addon, .input-group-lg>.input-group-btn>.btn {
  402. -webkit-border-radius: 2px;
  403. border-radius: 2px;
  404. }
  405. .input-sm {
  406. height: 30px;
  407. }
  408. .input-lg {
  409. height: 46px;
  410. }
  411. .has-success .help-block,
  412. .has-success .control-label,
  413. .has-success .radio,
  414. .has-success .checkbox,
  415. .has-success .radio-inline,
  416. .has-success .checkbox-inline,
  417. .has-success.radio label,
  418. .has-success.checkbox label,
  419. .has-success.radio-inline label,
  420. .has-success.checkbox-inline label {
  421. color: #15c377;
  422. }
  423. .has-success .form-control {
  424. border-color: #15c377;
  425. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  426. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  427. }
  428. .has-success .form-control:focus {
  429. border-color: #15c377;
  430. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(21, 195, 119, .6);
  431. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(21, 195, 119, .6);
  432. }
  433. .has-success .input-group-addon {
  434. color: #15c377;
  435. background-color: #dff0d8;
  436. border-color: #15c377;
  437. }
  438. .has-success .form-control-feedback {
  439. color: #15c377;
  440. }
  441. .has-info .help-block,
  442. .has-info .control-label,
  443. .has-info .radio,
  444. .has-info .checkbox,
  445. .has-info .radio-inline,
  446. .has-info .checkbox-inline,
  447. .has-info.radio label,
  448. .has-info.checkbox label,
  449. .has-info.radio-inline label,
  450. .has-info.checkbox-inline label {
  451. color: #48b0f7;
  452. }
  453. .has-info .form-control {
  454. border-color: #48b0f7;
  455. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  456. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  457. }
  458. .has-info .form-control:focus {
  459. border-color: #48b0f7;
  460. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(72, 176, 247, .6);
  461. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(72, 176, 247, .6);
  462. }
  463. .has-info .input-group-addon {
  464. color: #48b0f7;
  465. background-color: #dff0d8;
  466. border-color: #48b0f7;
  467. }
  468. .has-info .form-control-feedback {
  469. color: #48b0f7;
  470. }
  471. .has-warning .help-block,
  472. .has-warning .control-label,
  473. .has-warning .radio,
  474. .has-warning .checkbox,
  475. .has-warning .radio-inline,
  476. .has-warning .checkbox-inline,
  477. .has-warning.radio label,
  478. .has-warning.checkbox label,
  479. .has-warning.radio-inline label,
  480. .has-warning.checkbox-inline label {
  481. color: #faa64b;
  482. }
  483. .has-warning .form-control {
  484. border-color: #faa64b;
  485. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  486. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  487. }
  488. .has-warning .form-control:focus {
  489. border-color: #faa64b;
  490. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px rgba(250, 166, 75, .6);
  491. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px rgba(250, 166, 75, .6);
  492. }
  493. .has-warning .input-group-addon {
  494. color: #f96868;
  495. background-color: #fcf8e3;
  496. border-color: #f96868;
  497. }
  498. .has-warning .form-control-feedback {
  499. color: #f96868;
  500. }
  501. .has-error .help-block,
  502. .has-error .control-label,
  503. .has-error .radio,
  504. .has-error .checkbox,
  505. .has-error .radio-inline,
  506. .has-error .checkbox-inline,
  507. .has-error.radio label,
  508. .has-error.checkbox label,
  509. .has-error.radio-inline label,
  510. .has-error.checkbox-inline label {
  511. color: #f96868;
  512. }
  513. .has-error .form-control {
  514. border-color: #f96868;
  515. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  516. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  517. }
  518. .has-error .form-control:focus {
  519. border-color: #f96868;
  520. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px rgba(249, 104, 104, .6);
  521. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px rgba(249, 104, 104, .6);
  522. }
  523. .has-error .input-group-addon {
  524. color: #f96868;
  525. background-color: #f2dede;
  526. border-color: #f96868;
  527. }
  528. .has-error .form-control-feedback {
  529. color: #f96868;
  530. }
  531. /* 复选框 & 单选框 */
  532. .lyear-checkbox,
  533. .lyear-radio {
  534. display: block;
  535. position: relative;
  536. margin-top: 0px;
  537. margin-bottom: 0px;
  538. cursor: pointer;
  539. padding-left: 30px;
  540. font-weight: 400;
  541. min-height: 18px;
  542. }
  543. input[type=checkbox],
  544. input[type=radio] {
  545. -webkit-box-sizing: border-box;
  546. box-sizing: border-box;
  547. padding: 0;
  548. }
  549. .lyear-checkbox input,
  550. .lyear-radio input {
  551. position: absolute;
  552. opacity: 0;
  553. }
  554. .lyear-checkbox span::before,
  555. .lyear-radio span::before {
  556. content: '';
  557. position: absolute;
  558. display: inline-block;
  559. height: 18px;
  560. width: 18px;
  561. left: 0;
  562. top: 1px;
  563. border: 2px solid #ebebeb;;
  564. -webkit-transition: all .1s;
  565. -o-transition: all .1s;
  566. transition: all .1s;
  567. }
  568. .lyear-checkbox span::after,
  569. .lyear-radio span::after {
  570. content: '';
  571. position: absolute;
  572. display: none;
  573. width: 5px;
  574. height: 10px;
  575. left: 7px;
  576. top: 4px;
  577. border: solid #4d5259;
  578. border-width: 0 2px 2px 0;
  579. -webkit-transform: rotate(45deg);
  580. -ms-transform: rotate(45deg);
  581. transform: rotate(45deg);
  582. }
  583. .lyear-checkbox span,
  584. .lyear-radio span {
  585. display: inline-block;
  586. }
  587. .lyear-checkbox input:checked~span:after,
  588. .lyear-radio input:checked~span:after {
  589. display: inline-block;
  590. }
  591. .lyear-checkbox:hover span::before,
  592. .lyear-radio:hover span::before {
  593. border-color: #ebebeb;
  594. }
  595. .lyear-checkbox.checkbox-grey span::before,
  596. .lyear-checkbox.radio-grey span::before,
  597. .lyear-radio.checkbox-grey span::before,
  598. .lyear-radio.radio-grey span::before {
  599. background-color: #ebebeb;
  600. border-color: #ebebeb;
  601. }
  602. /* checkbox */
  603. .checkbox-primary input:checked~span::before {
  604. background-color: #33cabb;
  605. border-color: #33cabb;
  606. }
  607. .checkbox-primary input:checked~span::after {
  608. border-color: #fff;
  609. }
  610. .checkbox-success input:checked~span::before {
  611. background-color: #15c377;
  612. border-color: #15c377;
  613. }
  614. .checkbox-success input:checked~span::after {
  615. border-color: #fff;
  616. }
  617. .checkbox-info input:checked~span::before {
  618. background-color: #48b0f7;
  619. border-color: #48b0f7;
  620. }
  621. .checkbox-info input:checked~span::after {
  622. border-color: #fff;
  623. }
  624. .checkbox-warning input:checked~span::before {
  625. background-color: #faa64b;
  626. border-color: #faa64b;
  627. }
  628. .checkbox-warning input:checked~span::after {
  629. border-color: #fff;
  630. }
  631. .checkbox-danger input:checked~span::before {
  632. background-color: #f96868;
  633. border-color: #f96868;
  634. }
  635. .checkbox-danger input:checked~span::after {
  636. border-color: #fff;
  637. }
  638. .checkbox-dark input:checked~span::before {
  639. background-color: #465161;
  640. border-color: #465161;
  641. }
  642. .checkbox-dark input:checked~span::after {
  643. border-color: #fff;
  644. }
  645. .checkbox-secondary input:checked~span::before {
  646. background-color: #e4e7ea;
  647. border-color: #e4e7ea;
  648. }
  649. .checkbox-secondary input:checked~span::after {
  650. border-color: #fff;
  651. }
  652. .checkbox-purple input:checked~span::before {
  653. background-color: #926dde;
  654. border-color: #926dde;
  655. }
  656. .checkbox-purple input:checked~span::after {
  657. border-color: #fff;
  658. }
  659. .checkbox-pink input:checked~span::before {
  660. background-color: #f96197;
  661. border-color: #f96197;
  662. }
  663. .checkbox-pink input:checked~span::after {
  664. border-color: #fff;
  665. }
  666. .checkbox-cyan input:checked~span::before {
  667. background-color: #57c7d4;
  668. border-color: #57c7d4;
  669. }
  670. .checkbox-cyan input:checked~span::after {
  671. border-color: #fff;
  672. }
  673. .checkbox-yellow input:checked~span::before {
  674. background-color: #fcc525;
  675. border-color: #fcc525;
  676. }
  677. .checkbox-yellow input:checked~span::after {
  678. border-color: #fff;
  679. }
  680. .checkbox-brown input:checked~span::before {
  681. background-color: #8d6658;
  682. border-color: #8d6658;
  683. }
  684. .checkbox-brown input:checked~span::after {
  685. border-color: #fff;
  686. }
  687. /* radio */
  688. .lyear-radio span::before {
  689. -webkit-border-radius: 50%;
  690. border-radius: 50%;
  691. }
  692. .lyear-radio span::after {
  693. border: 0;
  694. height: 6px;
  695. left: 6px;
  696. top: 7px;
  697. width: 6px;
  698. background: #4d5259;
  699. -webkit-border-radius: 100%;
  700. border-radius: 100%;
  701. }
  702. .radio-primary input:checked~span::before {
  703. background-color: #33cabb;
  704. border-color: #33cabb;
  705. }
  706. .radio-primary input:checked~span::after {
  707. background-color: #fff;
  708. }
  709. .radio-success input:checked~span::before {
  710. background-color: #15c377;
  711. border-color: #15c377;
  712. }
  713. .radio-success input:checked~span::after {
  714. background-color: #fff;
  715. }
  716. .radio-info input:checked~span::before {
  717. background-color: #48b0f7;
  718. border-color: #48b0f7;
  719. }
  720. .radio-info input:checked~span::after {
  721. background-color: #fff;
  722. }
  723. .radio-warning input:checked~span::before {
  724. background-color: #faa64b;
  725. border-color: #faa64b;
  726. }
  727. .radio-warning input:checked~span::after {
  728. background-color: #fff;
  729. }
  730. .radio-danger input:checked~span::before {
  731. background-color: #f96868;
  732. border-color: #f96868;
  733. }
  734. .radio-danger input:checked~span::after {
  735. background-color: #fff;
  736. }
  737. .radio-dark input:checked~span::before {
  738. background-color: #465161;
  739. border-color: #465161;
  740. }
  741. .radio-dark input:checked~span::after {
  742. background-color: #fff;
  743. }
  744. .radio-secondary input:checked~span::before {
  745. background-color: #e4e7ea;
  746. border-color: #e4e7ea;
  747. }
  748. .radio-secondary input:checked~span::after {
  749. background-color: #fff;
  750. }
  751. .radio-purple input:checked~span::before {
  752. background-color: #926dde;
  753. border-color: #926dde;
  754. }
  755. .radio-purple input:checked~span::after {
  756. background-color: #fff;
  757. }
  758. .radio-pink input:checked~span::before {
  759. background-color: #f96197;
  760. border-color: #f96197;
  761. }
  762. .radio-pink input:checked~span::after {
  763. background-color: #fff;
  764. }
  765. .radio-cyan input:checked~span::before {
  766. background-color: #57c7d4;
  767. border-color: #57c7d4;
  768. }
  769. .radio-cyan input:checked~span::after {
  770. background-color: #fff;
  771. }
  772. .radio-yellow input:checked~span::before {
  773. background-color: #fcc525;
  774. border-color: #fcc525;
  775. }
  776. .radio-yellow input:checked~span::after {
  777. background-color: #fff;
  778. }
  779. .radio-brown input:checked~span::before {
  780. background-color: #8d6658;
  781. border-color: #8d6658;
  782. }
  783. .radio-brown input:checked~span::after {
  784. background-color: #fff;
  785. }
  786. .checkbox-inline, .radio-inline {
  787. display: inline-block;
  788. }
  789. /* 开关 */
  790. .lyear-switch {
  791. display: -webkit-inline-box;
  792. display: -webkit-inline-flex;
  793. display: -ms-inline-flexbox;
  794. display: inline-flex;
  795. -webkit-box-align: center;
  796. -webkit-align-items: center;
  797. -ms-flex-align: center;
  798. align-items: center;
  799. margin-bottom: 0;
  800. }
  801. .lyear-switch input {
  802. height: 0;
  803. width: 0;
  804. position: absolute;
  805. opacity: 0;
  806. }
  807. .lyear-switch span {
  808. display: inline-block;
  809. position: relative;
  810. width: 40px;
  811. height: 10px;
  812. -webkit-border-radius: 10px;
  813. border-radius: 10px;
  814. background-color: #ebebeb;
  815. border: 2px solid #ebebeb;
  816. cursor: pointer;
  817. -webkit-transition: all .1s ease;
  818. -o-transition: all .1s ease;
  819. transition: all .1s ease
  820. }
  821. .lyear-switch span:after {
  822. content: '';
  823. height: 20px;
  824. width: 20px;
  825. -webkit-border-radius: 50%;
  826. border-radius: 50%;
  827. position: absolute;
  828. left: 1px;
  829. top: -7px;
  830. color: #aaa;
  831. -webkit-transition: all .1s ease;
  832. -o-transition: all .1s ease;
  833. transition: all .1s ease;
  834. text-align: center;
  835. font-size: 13px;
  836. background-color: #fff;
  837. -webkit-box-shadow: rgba(0,0,0,.12) 0 1px 6px,rgba(0,0,0,.12) 0 1px 4px;
  838. box-shadow: rgba(0,0,0,.12) 0 1px 6px,rgba(0,0,0,.12) 0 1px 4px
  839. }
  840. .lyear-switch input:checked~span:after {
  841. left: -webkit-calc(100% - 20px);
  842. left: calc(100% - 20px);
  843. }
  844. .switch-primary input:checked~span:after {
  845. background-color: #33cabb
  846. }
  847. .switch-success input:checked~span:after {
  848. background-color: #15c377
  849. }
  850. .switch-info input:checked~span:after {
  851. background-color: #48b0f7
  852. }
  853. .switch-warning input:checked~span:after {
  854. background-color: #faa64b
  855. }
  856. .switch-danger input:checked~span:after {
  857. background-color: #f96868
  858. }
  859. .switch-secondary input:checked~span:after {
  860. background-color: #868e96
  861. }
  862. .switch-dark input:checked~span:after {
  863. background-color: #465161
  864. }
  865. .switch-purple input:checked~span:after {
  866. background-color: #926dde
  867. }
  868. .switch-pink input:checked~span:after {
  869. background-color: #f96197
  870. }
  871. .switch-cyan input:checked~span:after {
  872. background-color: #57c7d4
  873. }
  874. .switch-yellow input:checked~span:after {
  875. background-color: #fcc525
  876. }
  877. .switch-brown input:checked~span:after {
  878. background-color: #8d6658
  879. }
  880. .lyear-switch.switch-solid span,
  881. .lyear-switch.switch-light span,
  882. .lyear-switch.switch-outline span {
  883. height: 20px;
  884. }
  885. .lyear-switch.switch-solid span:after,
  886. .lyear-switch.switch-light span:after,
  887. .lyear-switch.switch-outline span:after {
  888. top: -2px;
  889. }
  890. .lyear-switch.switch-outline span {
  891. background-color: #fff
  892. }
  893. .switch-solid.switch-primary input:checked~span {
  894. background-color: #33cabb;
  895. border-color: #33cabb
  896. }
  897. .switch-solid.switch-primary input:checked~span:after {
  898. background-color: #fff;
  899. color: #33cabb
  900. }
  901. .switch-solid.switch-success input:checked~span {
  902. background-color: #15c377;
  903. border-color: #15c377
  904. }
  905. .switch-solid.switch-success input:checked~span:after {
  906. background-color: #fff;
  907. color: #15c377
  908. }
  909. .switch-solid.switch-info input:checked~span {
  910. background-color: #48b0f7;
  911. border-color: #48b0f7
  912. }
  913. .switch-solid.switch-info input:checked~span:after {
  914. background-color: #fff;
  915. color: #48b0f7
  916. }
  917. .switch-solid.switch-warning input:checked~span {
  918. background-color: #faa64b;
  919. border-color: #faa64b
  920. }
  921. .switch-solid.switch-warning input:checked~span:after {
  922. background-color: #fff;
  923. color: #faa64b
  924. }
  925. .switch-solid.switch-danger input:checked~span {
  926. background-color: #f96868;
  927. border-color: #f96868
  928. }
  929. .switch-solid.switch-danger input:checked~span:after {
  930. background-color: #fff;
  931. color: #f96868
  932. }
  933. .switch-solid.switch-secondary input:checked~span {
  934. background-color: #868e96;
  935. border-color: #868e96
  936. }
  937. .switch-solid.switch-secondary input:checked~span:after {
  938. background-color: #fff;
  939. color: #868e96
  940. }
  941. .switch-solid.switch-dark input:checked~span {
  942. background-color: #465161;
  943. border-color: #465161
  944. }
  945. .switch-solid.switch-dark input:checked~span:after {
  946. background-color: #fff;
  947. color: #465161
  948. }
  949. .switch-solid.switch-purple input:checked~span {
  950. background-color: #926dde;
  951. border-color: #926dde
  952. }
  953. .switch-solid.switch-purple input:checked~span:after {
  954. background-color: #fff;
  955. color: #926dde
  956. }
  957. .switch-solid.switch-pink input:checked~span {
  958. background-color: #f96197;
  959. border-color: #f96197
  960. }
  961. .switch-solid.switch-pink input:checked~span:after {
  962. background-color: #fff;
  963. color: #f96197
  964. }
  965. .switch-solid.switch-cyan input:checked~span {
  966. background-color: #57c7d4;
  967. border-color: #57c7d4
  968. }
  969. .switch-solid.switch-cyan input:checked~span:after {
  970. background-color: #fff;
  971. color: #57c7d4
  972. }
  973. .switch-solid.switch-yellow input:checked~span {
  974. background-color: #fcc525;
  975. border-color: #fcc525
  976. }
  977. .switch-solid.switch-yellow input:checked~span:after {
  978. background-color: #fff;
  979. color: #fcc525
  980. }
  981. .switch-solid.switch-brown input:checked~span {
  982. background-color: #8d6658;
  983. border-color: #8d6658
  984. }
  985. .switch-solid.switch-brown input:checked~span:after {
  986. background-color: #fff;
  987. color: #8d6658
  988. }
  989. /* 模态框 */
  990. .modal-header {
  991. border-bottom-color: #f1f2f3;
  992. }
  993. .modal-footer {
  994. border-top-color: #f1f2f3;
  995. }
  996. .modal-content {
  997. -webkit-border-radius: 3px;
  998. border-radius: 3px;
  999. border: none;
  1000. -webkit-box-shadow: none;
  1001. box-shadow: none;
  1002. }
  1003. /* 标签页 */
  1004. .nav-tabs {
  1005. border-bottom-color: #ebebeb;
  1006. margin-bottom: 1rem;
  1007. }
  1008. .nav-tabs > li > a {
  1009. margin-right: 0px;
  1010. border: none;
  1011. border-bottom: 1px solid transparent;
  1012. border-radius: 0;
  1013. color: #8b95a5;
  1014. -webkit-transition: 0.5s;
  1015. transition: 0.5s;
  1016. }
  1017. .nav-tabs > li.active > a,
  1018. .nav-tabs > li.active > a:focus,
  1019. .nav-tabs > li.active > a:hover {
  1020. color: #4d5259;
  1021. border: none;
  1022. border-bottom: 1px solid #33cabb;
  1023. }
  1024. .nav-tabs.nav > li > a:hover,
  1025. .nav-tabs.nav > li > a:focus {
  1026. text-decoration: none;
  1027. background-color: transparent;
  1028. border-bottom-color: #33cabb;
  1029. }
  1030. .nav-tabs.nav-justified>.active>a,
  1031. .nav-tabs.nav-justified>.active>a:focus,
  1032. .nav-tabs.nav-justified>.active>a:hover {
  1033. color: #4d5259;
  1034. border: none;
  1035. border-bottom: 1px solid #33cabb;
  1036. }
  1037. @media (min-width: 768px) {
  1038. .nav-tabs.nav-justified>li>a {
  1039. border-bottom-color: #ebebeb;
  1040. -webkit-border-radius: 0px;
  1041. border-radius: 0px;
  1042. }
  1043. }
  1044. /* 进度条 */
  1045. .progress {
  1046. height: 12px;
  1047. -webkit-border-radius: 2px;
  1048. -moz-border-radius: 2px;
  1049. -ms-border-radius: 2px;
  1050. -o-border-radius: 2px;
  1051. border-radius: 2px;
  1052. margin-bottom: 8px;
  1053. background-color: #f5f6f7;
  1054. -webkit-box-shadow: none;
  1055. box-shadow: none;
  1056. }
  1057. .progress-bar {
  1058. font-size: 10px;
  1059. line-height: 12px;
  1060. background-color: #33cabb;
  1061. -webkit-box-shadow: none;
  1062. box-shadow: none;
  1063. }
  1064. .progress-bar-success {
  1065. background-color: #15c377;
  1066. }
  1067. .progress-bar-info {
  1068. background-color: #48b0f7;
  1069. }
  1070. .progress-bar-warning {
  1071. background-color: #faa64b;
  1072. }
  1073. .progress-bar-danger {
  1074. background-color: #f96868;
  1075. }
  1076. .progress-bar-secondary {
  1077. background-color: #e4e7ea;
  1078. }
  1079. .progress-bar-pink {
  1080. background-color: #f96197;
  1081. }
  1082. .progress-bar-purple {
  1083. background-color: #926dde;
  1084. }
  1085. .progress-bar-brown {
  1086. background-color: #8d6658;
  1087. }
  1088. .progress-bar-cyan {
  1089. background-color: #57c7d4;
  1090. }
  1091. .progress-bar-yellow {
  1092. background-color: #fcc525;
  1093. }
  1094. .progress-bar-gray {
  1095. background-color: #868e96;
  1096. }
  1097. .progress-bar-dark {
  1098. background-color: #465161;
  1099. }
  1100. .progress-sm {
  1101. height: 8px;
  1102. }
  1103. .progress-lg {
  1104. height: 16px;
  1105. }
  1106. /* 弹出框 */
  1107. .popover {
  1108. border-color: #ebebeb;
  1109. -webkit-border-radius: 2px;
  1110. border-radius: 2px;
  1111. -webkit-box-shadow: none;
  1112. box-shadow: none;
  1113. padding: 0px;
  1114. }
  1115. .popover-title {
  1116. background-color: #fcfdfe;
  1117. padding-top: 10px;
  1118. padding-bottom: 10px;
  1119. color: #616a78;
  1120. border-bottom-color: #f1f2f3;
  1121. }
  1122. .popover.top>.arrow {
  1123. border-top-color: #ebebeb;
  1124. }
  1125. .popover.right>.arrow {
  1126. border-right-color: #ebebeb;
  1127. }
  1128. .popover.bottom>.arrow {
  1129. border-bottom-color: #ebebeb;
  1130. }
  1131. .popover.left>.arrow {
  1132. border-left-color: #ebebeb;
  1133. }
  1134. /* 警告框 */
  1135. .alert {
  1136. -webkit-border-radius: 2px;
  1137. border-radius: 2px;
  1138. }
  1139. .alert .alert-link:hover {
  1140. text-decoration: underline;
  1141. }
  1142. /* 分页 */
  1143. .pagination > li > a,
  1144. .pagination > li > span {
  1145. padding: 0px 8px;
  1146. margin: 0 3px;
  1147. color: #6c757d;
  1148. border-color: #dee2e6;
  1149. line-height: 29px;
  1150. min-width: 31px;
  1151. text-align: center;
  1152. -webkit-border-radius: 2px;
  1153. border-radius: 2px;
  1154. }
  1155. .pagination-sm > li > a,
  1156. .pagination-sm > li > span {
  1157. padding: 0;
  1158. min-width: 26px;
  1159. line-height: 24px;
  1160. }
  1161. .pagination-lg > li > a,
  1162. .pagination-lg > li > span {
  1163. padding: 0;
  1164. min-width: 37px;
  1165. line-height: 35px;
  1166. }
  1167. .pagination > li > a:hover,
  1168. .pagination > li > a:focus
  1169. .pagination > li > span:hover,
  1170. .pagination > li > span:focus {
  1171. background-color: #f9fafb;
  1172. color: #4d5259;
  1173. }
  1174. .pagination > li:first-child a,
  1175. .pagination > li:first-child span {
  1176. -webkit-border-radius: 2px;
  1177. border-radius: 2px;
  1178. }
  1179. .pagination > li:last-child a,
  1180. .pagination > li:last-child span {
  1181. border-top-right-radius: 2px;
  1182. border-bottom-right-radius: 2px;
  1183. }
  1184. .pagination > .active > a,
  1185. .pagination > .active > a:focus,
  1186. .pagination > .active > a:hover,
  1187. .pagination > .active > span,
  1188. .pagination > .active > span:focus,
  1189. .pagination > .active > span:hover {
  1190. background-color: #33cabb;
  1191. border-color: #33cabb;
  1192. }
  1193. .pagination > .disabled > a,
  1194. .pagination > .disabled > a:focus,
  1195. .pagination > .disabled > a:hover,
  1196. .pagination > .disabled > span,
  1197. .pagination > .disabled > span:focus,
  1198. .pagination > .disabled > span:hover {
  1199. color: #6c757d;
  1200. opacity: 0.6;
  1201. }
  1202. .pagination.no-border > li a,
  1203. .pagination.no-border > li span {
  1204. border: none;
  1205. }
  1206. .pagination-circle > li a,
  1207. .pagination-circle > li span {
  1208. -webkit-border-radius: 50% !important;
  1209. border-radius: 50% !important;
  1210. }
  1211. .pagination.no-gutters > li a,
  1212. .pagination.no-gutters > li span {
  1213. margin: 0;
  1214. margin-left: -1px;
  1215. -webkit-border-radius: 0 !important;
  1216. border-radius: 0 !important;
  1217. }
  1218. .pager li > a,
  1219. .pager li > span {
  1220. -webkit-border-radius: 2px;
  1221. border-radius: 2px;
  1222. background-color: #fcfdfe;
  1223. border-color: #ebebeb;
  1224. color: #8b95a5;
  1225. }
  1226. .pager li > a:hover,
  1227. .pager li > a:focus{
  1228. background-color: #f9fafb;
  1229. color: #4d5259
  1230. }
  1231. .pager li > a:active,
  1232. .pager li > a.active {
  1233. background-color: #f9fafb;
  1234. color: #4d5259
  1235. }
  1236. .pager .disabled > a,
  1237. .pager .disabled > a:focus,
  1238. .pager .disabled > a:hover,
  1239. .pager .disabled > span {
  1240. opacity: .6;
  1241. background-color: #fcfdfe;
  1242. }
  1243. /* 按钮 */
  1244. .btn-w-xs {
  1245. width: 80px
  1246. }
  1247. .btn-w-sm {
  1248. width: 100px
  1249. }
  1250. .btn-w-md {
  1251. width: 120px
  1252. }
  1253. .btn-w-lg {
  1254. width: 145px
  1255. }
  1256. .btn-w-xl {
  1257. width: 180px
  1258. }
  1259. .btn {
  1260. color: #8b95a5;
  1261. padding: 8px 12px;
  1262. letter-spacing: 1px;
  1263. border-radius: 2px;
  1264. background-color: #fff;
  1265. outline: none !important;
  1266. -webkit-transition: 0.15s linear;
  1267. transition: 0.15s linear
  1268. }
  1269. .btn:focus,
  1270. .btn.focus,
  1271. .btn:active,
  1272. .btn.active {
  1273. -webkit-box-shadow: none !important;
  1274. box-shadow: none !important
  1275. }
  1276. .btn-default {
  1277. background-color: #fcfdfe;
  1278. border-color: #ebebeb;
  1279. color: #8b95a5
  1280. }
  1281. .btn-default:hover {
  1282. background-color: #f9fafb;
  1283. border-color: #ebebeb;
  1284. color: #4d5259
  1285. }
  1286. .btn-default:focus,
  1287. .btn-default.focus,
  1288. .btn-default:active,
  1289. .btn-default.active,
  1290. .show>.btn-default.dropdown-toggle,
  1291. .open>.btn-default.dropdown-toggle {
  1292. background-color: #f9fafb!important;
  1293. border-color: #ebebeb!important;
  1294. color: #4d5259
  1295. }
  1296. .btn-default:not([disabled]):not(.disabled).active,
  1297. .btn-default:not([disabled]):not(.disabled):active,
  1298. .show>.btn-default.dropdown-toggle {
  1299. background-color: #f9fafb!important;
  1300. border-color: #ebebeb!important;
  1301. color: #fff;
  1302. -webkit-box-shadow: none;
  1303. box-shadow: none
  1304. }
  1305. .btn-default.disabled,
  1306. .btn-default:disabled {
  1307. background-color: #fcfdfe;
  1308. border-color: #ebebeb;
  1309. opacity: 0.5
  1310. }
  1311. .btn-primary {
  1312. background-color: #33cabb;
  1313. border-color: #33cabb;
  1314. color: #fff
  1315. }
  1316. .btn-primary:hover {
  1317. background-color: #52d3c7;
  1318. border-color: #52d3c7;
  1319. color: #fff
  1320. }
  1321. .btn-primary:focus,
  1322. .btn-primary.focus,
  1323. .btn-primary.active,
  1324. .btn-primary:active,
  1325. .open>.dropdown-toggle.btn-primary {
  1326. background-color: #52d3c7!important;
  1327. border-color: #52d3c7!important;
  1328. color: #fff
  1329. }
  1330. .btn-primary.disabled,
  1331. .btn-primary:disabled {
  1332. background-color: #33cabb;
  1333. border-color: #33cabb;
  1334. opacity: 0.5
  1335. }
  1336. .btn-primary:not([disabled]):not(.disabled).active,
  1337. .btn-primary:not([disabled]):not(.disabled):active,
  1338. .show>.btn-primary.dropdown-toggle {
  1339. background-color: #2ba99d!important;
  1340. border-color: #2ba99d!important;
  1341. color: #fff;
  1342. -webkit-box-shadow: none;
  1343. box-shadow: none
  1344. }
  1345. .btn-primary.disabled.focus,
  1346. .btn-primary.disabled:focus,
  1347. .btn-primary.disabled:hover,
  1348. .btn-primary[disabled].focus,
  1349. .btn-primary[disabled]:focus,
  1350. .btn-primary[disabled]:hover,
  1351. fieldset[disabled] .btn-primary.focus,
  1352. fieldset[disabled] .btn-primary:focus,
  1353. fieldset[disabled] .btn-primary:hover {
  1354. background-color: #26BBA8;
  1355. border-color: #26BBA8;
  1356. }
  1357. .btn-success {
  1358. background-color: #15c377;
  1359. border-color: #15c377;
  1360. color: #fff
  1361. }
  1362. .btn-success:hover {
  1363. background-color: #16d17f;
  1364. border-color: #16d17f;
  1365. color: #fff
  1366. }
  1367. .btn-success:focus,
  1368. .btn-success.focus,
  1369. .btn-success.active,
  1370. .btn-success:active,
  1371. .open>.dropdown-toggle.btn-success {
  1372. background-color: #16d17f!important;
  1373. border-color: #16d17f!important;
  1374. color: #fff
  1375. }
  1376. .btn-success.disabled,.btn-success:disabled {
  1377. background-color: #15c377;
  1378. border-color: #15c377;
  1379. opacity: 0.5
  1380. }
  1381. .btn-success:not([disabled]):not(.disabled).active,
  1382. .btn-success:not([disabled]):not(.disabled):active,
  1383. .show>.btn-success.dropdown-toggle {
  1384. background-color: #14b56f!important;
  1385. border-color: #14b56f!important;
  1386. color: #fff;
  1387. -webkit-box-shadow: none;
  1388. box-shadow: none
  1389. }
  1390. .btn-success.disabled.focus,
  1391. .btn-success.disabled:focus,
  1392. .btn-success.disabled:hover,
  1393. .btn-success[disabled].focus,
  1394. .btn-success[disabled]:focus,
  1395. .btn-success[disabled]:hover,
  1396. fieldset[disabled] .btn-success.focus,
  1397. fieldset[disabled] .btn-success:focus,
  1398. fieldset[disabled] .btn-success:hover {
  1399. background-color: #0FB25F;
  1400. border-color: #0FB25F;
  1401. }
  1402. .btn-info {
  1403. background-color: #48b0f7;
  1404. border-color: #48b0f7;
  1405. color: #fff
  1406. }
  1407. .btn-info:hover {
  1408. background-color: #65bdf8;
  1409. border-color: #65bdf8;
  1410. color: #fff
  1411. }
  1412. .btn-info:focus,
  1413. .btn-info.focus,
  1414. .btn-info.active,
  1415. .btn-info:active,
  1416. .open>.dropdown-toggle.btn-info {
  1417. background-color: #65bdf8!important;
  1418. border-color: #65bdf8!important;
  1419. color: #fff
  1420. }
  1421. .btn-info.disabled,
  1422. .btn-info:disabled {
  1423. background-color: #48b0f7;
  1424. border-color: #48b0f7;
  1425. opacity: 0.5
  1426. }
  1427. .btn-info:not([disabled]):not(.disabled).active,
  1428. .btn-info:not([disabled]):not(.disabled):active,
  1429. .show>.btn-info.dropdown-toggle {
  1430. background-color: #2ba3f6!important;
  1431. border-color: #2ba3f6!important;
  1432. color: #fff;
  1433. -webkit-box-shadow: none;
  1434. box-shadow: none
  1435. }
  1436. .btn-info.disabled.focus,
  1437. .btn-info.disabled:focus,
  1438. .btn-info.disabled:hover,
  1439. .btn-info[disabled].focus,
  1440. .btn-info[disabled]:focus,
  1441. .btn-info[disabled]:hover,
  1442. fieldset[disabled] .btn-info.focus,
  1443. fieldset[disabled] .btn-info:focus,
  1444. fieldset[disabled] .btn-info:hover {
  1445. background-color: #379BF5;
  1446. border-color: #379BF5;
  1447. }
  1448. .btn-warning {
  1449. background-color: #faa64b;
  1450. border-color: #faa64b;
  1451. color: #fff
  1452. }
  1453. .btn-warning:hover {
  1454. background-color: #fbb264;
  1455. border-color: #fbb264;
  1456. color: #fff
  1457. }
  1458. .btn-warning:focus,
  1459. .btn-warning.focus,
  1460. .btn-warning.active,
  1461. .btn-warning:active,
  1462. .open>.dropdown-toggle.btn-warning {
  1463. background-color: #fbb264!important;
  1464. border-color: #fbb264!important;
  1465. color: #fff
  1466. }
  1467. .btn-warning.disabled,.btn-warning:disabled {
  1468. background-color: #faa64b;
  1469. border-color: #faa64b;
  1470. opacity: 0.5
  1471. }
  1472. .btn-warning:not([disabled]):not(.disabled).active,
  1473. .btn-warning:not([disabled]):not(.disabled):active,
  1474. .show>.btn-warning.dropdown-toggle {
  1475. background-color: #f99a32!important;
  1476. border-color: #f99a32!important;
  1477. color: #fff;
  1478. -webkit-box-shadow: none;
  1479. box-shadow: none
  1480. }
  1481. .btn-warning.disabled.focus,
  1482. .btn-warning.disabled:focus,
  1483. .btn-warning.disabled:hover,
  1484. .btn-warning[disabled].focus,
  1485. .btn-warning[disabled]:focus,
  1486. .btn-warning[disabled]:hover,
  1487. fieldset[disabled] .btn-warning.focus,
  1488. fieldset[disabled] .btn-warning:focus,
  1489. fieldset[disabled] .btn-warning:hover {
  1490. background-color: #F89038;
  1491. border-color: #F89038;
  1492. }
  1493. .btn-danger {
  1494. background-color: #f96868;
  1495. border-color: #f96868;
  1496. color: #fff
  1497. }
  1498. .btn-danger:hover {
  1499. background-color: #fa8181;
  1500. border-color: #fa8181;
  1501. color: #fff
  1502. }
  1503. .btn-danger:focus,
  1504. .btn-danger.focus,
  1505. .btn-danger.active,
  1506. .btn-danger:active,
  1507. .open>.dropdown-toggle.btn-danger {
  1508. background-color: #fa8181!important;
  1509. border-color: #fa8181!important;
  1510. color: #fff
  1511. }
  1512. .btn-danger.disabled,
  1513. .btn-danger:disabled {
  1514. background-color: #f96868;
  1515. border-color: #f96868;
  1516. opacity: 0.5
  1517. }
  1518. .btn-danger:not([disabled]):not(.disabled).active,
  1519. .btn-danger:not([disabled]):not(.disabled):active,
  1520. .show>.btn-danger.dropdown-toggle {
  1521. background-color: #f84f4f!important;
  1522. border-color: #f84f4f!important;
  1523. color: #fff;
  1524. -webkit-box-shadow: none;
  1525. box-shadow: none
  1526. }
  1527. .btn-danger.disabled.focus,
  1528. .btn-danger.disabled:focus,
  1529. .btn-danger.disabled:hover,
  1530. .btn-danger[disabled].focus,
  1531. .btn-danger[disabled]:focus,
  1532. .btn-danger[disabled]:hover,
  1533. fieldset[disabled] .btn-danger.focus,
  1534. fieldset[disabled] .btn-danger:focus,
  1535. fieldset[disabled] .btn-danger:hover {
  1536. background-color: #F75252;
  1537. border-color: #F75252;
  1538. }
  1539. .btn-secondary {
  1540. color: #4d5259 !important;
  1541. background-color: #e4e7ea;
  1542. border-color: #e4e7ea;
  1543. color: #fff
  1544. }
  1545. .btn-secondary:hover {
  1546. background-color: #edeff1;
  1547. border-color: #edeff1;
  1548. color: #fff
  1549. }
  1550. .btn-secondary:focus,
  1551. .btn-secondary.focus,
  1552. .btn-secondary.active,
  1553. .btn-secondary:active,
  1554. .open>.dropdown-toggle.btn-secondary {
  1555. background-color: #edeff1!important;
  1556. border-color: #edeff1!important;
  1557. color: #fff
  1558. }
  1559. .btn-secondary.disabled,
  1560. .btn-secondary:disabled {
  1561. background-color: #e4e7ea;
  1562. border-color: #e4e7ea;
  1563. opacity: 0.5
  1564. }
  1565. .btn-secondary:not([disabled]):not(.disabled).active,
  1566. .btn-secondary:not([disabled]):not(.disabled):active,
  1567. .show>.btn-secondary.dropdown-toggle {
  1568. background-color: #dbdfe3!important;
  1569. border-color: #dbdfe3!important;
  1570. color: #fff;
  1571. -webkit-box-shadow: none;
  1572. box-shadow: none
  1573. }
  1574. .btn-secondary.disabled.focus,
  1575. .btn-secondary.disabled:focus,
  1576. .btn-secondary.disabled:hover,
  1577. .btn-secondary[disabled].focus,
  1578. .btn-secondary[disabled]:focus,
  1579. .btn-secondary[disabled]:hover,
  1580. fieldset[disabled] .btn-secondary.focus,
  1581. fieldset[disabled] .btn-secondary:focus,
  1582. fieldset[disabled] .btn-secondary:hover {
  1583. background-color: #DBDFE3;
  1584. border-color: #DBDFE3;
  1585. }
  1586. .btn-link {
  1587. color: #48b0f7;
  1588. background-color: transparent;
  1589. border-color: transparent;
  1590. }
  1591. .btn-link:hover,
  1592. .btn-link:focus {
  1593. text-decoration: none;
  1594. color: #e4e7ea
  1595. }
  1596. .btn-purple {
  1597. background-color: #926dde;
  1598. border-color: #926dde;
  1599. color: #fff
  1600. }
  1601. .btn-purple:hover {
  1602. background-color: #a282e3;
  1603. border-color: #a282e3;
  1604. color: #fff
  1605. }
  1606. .btn-purple:focus,
  1607. .btn-purple.focus,
  1608. .btn-purple.active,
  1609. .btn-purple:active,
  1610. .open>.dropdown-toggle.btn-purple {
  1611. background-color: #a282e3!important;
  1612. border-color: #a282e3!important;
  1613. color: #fff
  1614. }
  1615. .btn-purple.disabled,
  1616. .btn-purple:disabled {
  1617. background-color: #926dde;
  1618. border-color: #926dde;
  1619. opacity: 0.5
  1620. }
  1621. .btn-purple:not([disabled]):not(.disabled).active,
  1622. .btn-purple:not([disabled]):not(.disabled):active,
  1623. .show>.btn-purple.dropdown-toggle {
  1624. background-color: #8258d9!important;
  1625. border-color: #8258d9!important;
  1626. color: #fff;
  1627. -webkit-box-shadow: none;
  1628. box-shadow: none
  1629. }
  1630. .btn-purple.disabled.focus,
  1631. .btn-purple.disabled:focus,
  1632. .btn-purple.disabled:hover,
  1633. .btn-purple[disabled].focus,
  1634. .btn-purple[disabled]:focus,
  1635. .btn-purple[disabled]:hover,
  1636. fieldset[disabled] .btn-purple.focus,
  1637. fieldset[disabled] .btn-purple:focus,
  1638. fieldset[disabled] .btn-purple:hover {
  1639. background-color: #7A56D4;
  1640. border-color: #7A56D4;
  1641. }
  1642. .btn-pink {
  1643. background-color: #f96197;
  1644. border-color: #f96197;
  1645. color: #fff
  1646. }
  1647. .btn-pink:hover {
  1648. background-color: #fa75a4;
  1649. border-color: #fa75a4;
  1650. color: #fff
  1651. }
  1652. .btn-pink:focus,
  1653. .btn-pink.focus,
  1654. .btn-pink.active,
  1655. .btn-pink:active,
  1656. .open>.dropdown-toggle.btn-pink {
  1657. background-color: #fa75a4!important;
  1658. border-color: #fa75a4!important;
  1659. color: #fff
  1660. }
  1661. .btn-pink.disabled,
  1662. .btn-pink:disabled {
  1663. background-color: #f96197;
  1664. border-color: #f96197;
  1665. opacity: 0.5
  1666. }
  1667. .btn-pink:not([disabled]):not(.disabled).active,
  1668. .btn-pink:not([disabled]):not(.disabled):active,
  1669. .show>.btn-pink.dropdown-toggle {
  1670. background-color: #f84d8a!important;
  1671. border-color: #f84d8a!important;
  1672. color: #fff;
  1673. -webkit-box-shadow: none;
  1674. box-shadow: none
  1675. }
  1676. .btn-pink.disabled.focus,
  1677. .btn-pink.disabled:focus,
  1678. .btn-pink.disabled:hover,
  1679. .btn-pink[disabled].focus,
  1680. .btn-pink[disabled]:focus,
  1681. .btn-pink[disabled]:hover,
  1682. fieldset[disabled] .btn-pink.focus,
  1683. fieldset[disabled] .btn-pink:focus,
  1684. fieldset[disabled] .btn-pink:hover {
  1685. background-color: #F74B80;
  1686. border-color: #F74B80;
  1687. }
  1688. .btn-cyan {
  1689. background-color: #57c7d4;
  1690. border-color: #57c7d4;
  1691. color: #fff
  1692. }
  1693. .btn-cyan:hover {
  1694. background-color: #77d2dc;
  1695. border-color: #77d2dc;
  1696. color: #fff
  1697. }
  1698. .btn-cyan:focus,
  1699. .btn-cyan.focus,
  1700. .btn-cyan.active,
  1701. .btn-cyan:active,
  1702. .open>.dropdown-toggle.btn-cyan {
  1703. background-color: #77d2dc!important;
  1704. border-color: #77d2dc!important;
  1705. color: #fff
  1706. }
  1707. .btn-cyan.disabled,
  1708. .btn-cyan:disabled {
  1709. background-color: #57c7d4;
  1710. border-color: #57c7d4;
  1711. opacity: 0.5
  1712. }
  1713. .btn-cyan:not([disabled]):not(.disabled).active,
  1714. .btn-cyan:not([disabled]):not(.disabled):active,
  1715. .show>.btn-cyan.dropdown-toggle {
  1716. background-color: #37bccc!important;
  1717. border-color: #37bccc!important;
  1718. color: #fff;
  1719. -webkit-box-shadow: none;
  1720. box-shadow: none
  1721. }
  1722. .btn-cyan.disabled.focus,
  1723. .btn-cyan.disabled:focus,
  1724. .btn-cyan.disabled:hover,
  1725. .btn-cyan[disabled].focus,
  1726. .btn-cyan[disabled]:focus,
  1727. .btn-cyan[disabled]:hover,
  1728. fieldset[disabled] .btn-cyan.focus,
  1729. fieldset[disabled] .btn-cyan:focus,
  1730. fieldset[disabled] .btn-cyan:hover {
  1731. background-color: #42B7C7;
  1732. border-color: #42B7C7;
  1733. }
  1734. .btn-yellow {
  1735. background-color: #fcc525;
  1736. border-color: #fcc525;
  1737. color: #fff
  1738. }
  1739. .btn-yellow:hover {
  1740. background-color: #fdd04d;
  1741. border-color: #fdd04d;
  1742. color: #fff
  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. color: #fff
  1752. }
  1753. .btn-yellow.disabled,
  1754. .btn-yellow:disabled {
  1755. background-color: #fcc525;
  1756. border-color: #fcc525;
  1757. opacity: 0.5
  1758. }
  1759. .btn-yellow:not([disabled]):not(.disabled).active,
  1760. .btn-yellow:not([disabled]):not(.disabled):active,
  1761. .show>.btn-yellow.dropdown-toggle {
  1762. background-color: #f5b703!important;
  1763. border-color: #f5b703!important;
  1764. color: #fff;
  1765. -webkit-box-shadow: none;
  1766. box-shadow: none
  1767. }
  1768. .btn-yellow.disabled.focus,
  1769. .btn-yellow.disabled:focus,
  1770. .btn-yellow.disabled:hover,
  1771. .btn-yellow[disabled].focus,
  1772. .btn-yellow[disabled]:focus,
  1773. .btn-yellow[disabled]:hover,
  1774. fieldset[disabled] .btn-yellow.focus,
  1775. fieldset[disabled] .btn-yellow:focus,
  1776. fieldset[disabled] .btn-yellow:hover {
  1777. background-color: #FCB41B;
  1778. border-color: #FCB41B;
  1779. }
  1780. .btn-brown {
  1781. background-color: #8d6658;
  1782. border-color: #8d6658;
  1783. color: #fff
  1784. }
  1785. .btn-brown:hover {
  1786. background-color: #9d7162;
  1787. border-color: #9d7162;
  1788. color: #fff
  1789. }
  1790. .btn-brown:focus,
  1791. .btn-brown.focus,
  1792. .btn-brown.active,
  1793. .btn-brown:active,
  1794. .open>.dropdown-toggle.btn-brown {
  1795. background-color: #8d6658!important;
  1796. border-color: #8d6658!important;
  1797. color: #fff
  1798. }
  1799. .btn-brown.disabled,
  1800. .btn-brown:disabled {
  1801. background-color: #8d6658;
  1802. border-color: #8d6658;
  1803. opacity: 0.5
  1804. }
  1805. .btn-brown:not([disabled]):not(.disabled).active,
  1806. .btn-brown:not([disabled]):not(.disabled):active,
  1807. .show>.btn-brown.dropdown-toggle {
  1808. background-color: #7d5b4e!important;
  1809. border-color: #7d5b4e!important;
  1810. color: #fff;
  1811. -webkit-box-shadow: none;
  1812. box-shadow: none
  1813. }
  1814. .btn-brown.disabled.focus,
  1815. .btn-brown.disabled:focus,
  1816. .btn-brown.disabled:hover,
  1817. .btn-brown[disabled].focus,
  1818. .btn-brown[disabled]:focus,
  1819. .btn-brown[disabled]:hover,
  1820. fieldset[disabled] .btn-brown.focus,
  1821. fieldset[disabled] .btn-brown:focus,
  1822. fieldset[disabled] .btn-brown:hover {
  1823. background-color: #755043;
  1824. border-color: #755043;
  1825. }
  1826. .btn-dark {
  1827. background-color: #465161;
  1828. border-color: #465161;
  1829. color: #fff
  1830. }
  1831. .btn-dark:hover {
  1832. background-color: #515d70;
  1833. border-color: #515d70;
  1834. color: #fff
  1835. }
  1836. .btn-dark:focus,
  1837. .btn-dark.focus,
  1838. .btn-dark.active,
  1839. .btn-dark:active,
  1840. .open>.dropdown-toggle.btn-dark {
  1841. background-color: #515d70!important;
  1842. border-color: #515d70!important;
  1843. color: #fff
  1844. }
  1845. .btn-dark.disabled,
  1846. .btn-dark:disabled {
  1847. background-color: #465161;
  1848. border-color: #465161;
  1849. opacity: 0.5
  1850. }
  1851. .btn-dark:not([disabled]):not(.disabled).active,
  1852. .btn-dark:not([disabled]):not(.disabled):active,
  1853. .show>.btn-dark.dropdown-toggle {
  1854. background-color: #3b4552!important;
  1855. border-color: #3b4552!important;
  1856. color: #fff;
  1857. -webkit-box-shadow: none;
  1858. box-shadow: none
  1859. }
  1860. .btn-dark.disabled.focus,
  1861. .btn-dark.disabled:focus,
  1862. .btn-dark.disabled:hover,
  1863. .btn-dark[disabled].focus,
  1864. .btn-dark[disabled]:focus,
  1865. .btn-dark[disabled]:hover,
  1866. fieldset[disabled] .btn-dark.focus,
  1867. fieldset[disabled] .btn-dark:focus,
  1868. fieldset[disabled] .btn-dark:hover {
  1869. background-color: #353E4B;
  1870. border-color: #353E4B;
  1871. }
  1872. .btn-round {
  1873. -webkit-border-radius: 10rem;
  1874. }
  1875. .btn-label {
  1876. position: relative;
  1877. padding-left: 52px;
  1878. overflow: hidden;
  1879. }
  1880. .btn-label label {
  1881. position: absolute;
  1882. left: 0;
  1883. top: 0;
  1884. bottom: 0;
  1885. width: 36px;
  1886. line-height: 1.5;
  1887. padding-top: 5px;
  1888. padding-bottom: 5px;
  1889. background-color: rgba(0,0,0,0.1);
  1890. cursor: pointer;
  1891. margin-bottom: 0;
  1892. }
  1893. .btn-label label i {
  1894. font-size: 16px;
  1895. }
  1896. .btn-group-xs>.btn,
  1897. .btn-xs {
  1898. font-size: 12px;
  1899. padding: 2px 8px;
  1900. line-height: 18px
  1901. }
  1902. .btn-group-sm>.btn,
  1903. .btn-sm {
  1904. font-size: 12px;
  1905. padding: 4px 12px;
  1906. line-height: 20px
  1907. }
  1908. .btn-group-lg>.btn,
  1909. .btn-lg {
  1910. font-size: 16px;
  1911. padding: 7px 20px;
  1912. line-height: 32px
  1913. }
  1914. .btn-group-justified {
  1915. display: -webkit-box;
  1916. display: flex;
  1917. -webkit-box-pack: justify;
  1918. justify-content: space-between;
  1919. }
  1920. .btn-group-justified .btn {
  1921. width: 100%;
  1922. }
  1923. .btn-group-round .btn:first-child {
  1924. border-top-left-radius: 10rem;
  1925. border-bottom-left-radius: 10rem;
  1926. }
  1927. .btn-group-round .btn:last-child {
  1928. border-top-right-radius: 10rem;
  1929. border-bottom-right-radius: 10rem;
  1930. }
  1931. /* 背景色 */
  1932. .bg-primary {
  1933. background-color: #33cabb !important;
  1934. color: #fff!important;
  1935. }
  1936. .bg-secondary {
  1937. background-color: #e4e7ea !important;
  1938. color: #fff!important;
  1939. }
  1940. .bg-success {
  1941. background-color: #15c377 !important;
  1942. color: #fff!important;
  1943. }
  1944. .bg-info {
  1945. background-color: #48b0f7 !important;
  1946. color: #fff!important;
  1947. }
  1948. .bg-warning {
  1949. background-color: #faa64b !important;
  1950. color: #fff!important;
  1951. }
  1952. .bg-danger {
  1953. background-color: #f96868 !important;
  1954. color: #fff!important;
  1955. }
  1956. .bg-pink {
  1957. background-color: #f96197 !important;
  1958. color: #fff!important;
  1959. }
  1960. .bg-purple {
  1961. background-color: #926dde !important;
  1962. color: #fff!important;
  1963. }
  1964. .bg-brown {
  1965. background-color: #8d6658 !important;
  1966. color: #fff!important;
  1967. }
  1968. .bg-cyan {
  1969. background-color: #57c7d4 !important;
  1970. color: #fff!important;
  1971. }
  1972. .bg-yellow {
  1973. background-color: #fcc525 !important;
  1974. color: #fff!important;
  1975. }
  1976. .bg-gray {
  1977. background-color: #868e96 !important;
  1978. color: #fff!important;
  1979. }
  1980. .bg-dark {
  1981. background-color: #465161 !important;
  1982. color: #fff!important;
  1983. }
  1984. .bg-white {
  1985. background-color: #fff !important
  1986. }
  1987. .bg-lightest {
  1988. background-color: #fcfdfe !important
  1989. }
  1990. .bg-lighter {
  1991. background-color: #f9fafb !important
  1992. }
  1993. .bg-light {
  1994. background-color: #f5f6f7 !important
  1995. }
  1996. .bg-translucent {
  1997. background-color: rgba(255, 255, 255, 0.175)
  1998. }
  1999. .bg-transparent {
  2000. background-color: transparent !important
  2001. }
  2002. /* 字体颜色 */
  2003. .text-primary {
  2004. color: #33cabb !important
  2005. }
  2006. .text-secondary {
  2007. color: #e4e7ea !important
  2008. }
  2009. .text-success {
  2010. color: #15c377 !important
  2011. }
  2012. .text-info {
  2013. color: #48b0f7 !important
  2014. }
  2015. .text-warning {
  2016. color: #faa64b !important
  2017. }
  2018. .text-danger {
  2019. color: #f96868 !important
  2020. }
  2021. .text-pink {
  2022. color: #f96197 !important
  2023. }
  2024. .text-purple {
  2025. color: #926dde !important
  2026. }
  2027. .text-brown {
  2028. color: #8d6658 !important
  2029. }
  2030. .text-cyan {
  2031. color: #57c7d4 !important
  2032. }
  2033. .text-yellow {
  2034. color: #fcc525 !important
  2035. }
  2036. .text-gray {
  2037. color: #868e96 !important
  2038. }
  2039. .text-dark {
  2040. color: #465161 !important
  2041. }
  2042. .text-default {
  2043. color: #4d5259 !important
  2044. }
  2045. .text-muted {
  2046. color: #868e96 !important
  2047. }
  2048. .text-light {
  2049. color: #616a78 !important
  2050. }
  2051. .text-lighter {
  2052. color: #a5b3c7 !important
  2053. }
  2054. .text-fade {
  2055. color: rgba(77,82,89,0.7) !important
  2056. }
  2057. .text-fader {
  2058. color: rgba(77,82,89,0.5) !important
  2059. }
  2060. .text-fadest {
  2061. color: rgba(77,82,89,0.4) !important
  2062. }
  2063. .text-white {
  2064. color: #ffffff!important
  2065. }
  2066. .text-transparent {
  2067. color: transparent !important
  2068. }
  2069. a.text-primary:hover,a.text-primary:focus {
  2070. color: #33cabb !important
  2071. }
  2072. a.text-secondary:hover,a.text-secondary:focus {
  2073. color: #e4e7ea !important
  2074. }
  2075. a.text-info:hover,a.text-info:focus {
  2076. color: #48b0f7 !important
  2077. }
  2078. a.text-success:hover,a.text-success:focus {
  2079. color: #15c377 !important
  2080. }
  2081. a.text-warning:hover,a.text-warning:focus {
  2082. color: #faa64b !important
  2083. }
  2084. a.text-danger:hover,a.text-danger:focus {
  2085. color: #f96868 !important
  2086. }
  2087. /* 分割线 */
  2088. .divider {
  2089. display: -webkit-box;
  2090. display: flex;
  2091. -webkit-box-align: center;
  2092. align-items: center;
  2093. -webkit-box-flex: 0;
  2094. flex: 0 1;
  2095. color: #8b95a5;
  2096. font-size: 11px;
  2097. letter-spacing: .5px;
  2098. margin: 2rem auto;
  2099. width: 100%;
  2100. }
  2101. .divider::before,
  2102. .divider::after {
  2103. content: '';
  2104. -webkit-box-flex: 1;
  2105. flex-grow: 1;
  2106. border-top: 1px solid #ebebeb;
  2107. }
  2108. .divider::before {
  2109. margin-right: 16px;
  2110. }
  2111. .divider::after {
  2112. margin-left: 16px;
  2113. }
  2114. /* 其他 */
  2115. hr {
  2116. border-top-color: rgba(77,82,89,0.05);
  2117. margin: 2rem auto;
  2118. }
  2119. dd, dt {
  2120. line-height: 1.75;
  2121. }
  2122. .lead {
  2123. font-size: 16px;
  2124. line-height: 1.75;
  2125. }
  2126. /** ----------------------------------
  2127. * 辅助类
  2128. -------------------------------------- */
  2129. /* margin */
  2130. .m-0 {
  2131. margin: 0px!important;
  2132. }
  2133. .m-t-0 {
  2134. margin-top: 0px!important;
  2135. }
  2136. .m-b-0 {
  2137. margin-bottom: 0px!important;
  2138. }
  2139. .m-5 {
  2140. margin: 5px!important;
  2141. }
  2142. .m-t-5 {
  2143. margin-top: 5px!important;
  2144. }
  2145. .m-r-5 {
  2146. margin-right: 5px!important;
  2147. }
  2148. .m-b-5 {
  2149. margin-bottom: 5px!important;
  2150. }
  2151. .m-l-5 {
  2152. margin-left: 5px!important;
  2153. }
  2154. .m-10 {
  2155. margin: 10px!important;
  2156. }
  2157. .m-tb-10 {
  2158. margin: 10px 0px!important;
  2159. }
  2160. .m-lr-10 {
  2161. margin: 0px 10px!important;
  2162. }
  2163. .m-t-10 {
  2164. margin-top: 10px!important;
  2165. }
  2166. .m-r-10 {
  2167. margin-right: 10px!important;
  2168. }
  2169. .m-b-10 {
  2170. margin-bottom: 10px!important;
  2171. }
  2172. .m-l-10 {
  2173. margin-left: 10px!important;
  2174. }
  2175. /* padding */
  2176. .p-0 {
  2177. padding: 0px!important;
  2178. }
  2179. .p-t-0 {
  2180. padding-top: 0px!important;
  2181. }
  2182. .p-b-0 {
  2183. padding-bottom: 0px!important;
  2184. }
  2185. .p-10 {
  2186. padding: 10px!important;
  2187. }
  2188. .p-tb-10 {
  2189. padding: 10px 0px!important;
  2190. }
  2191. .p-lr-10 {
  2192. padding: 0px 10px!important;
  2193. }
  2194. .p-t-10 {
  2195. padding-top: 10px!important;
  2196. }
  2197. .p-r-10 {
  2198. padding-right: 10px!important;
  2199. }
  2200. .p-b-10 {
  2201. padding-bottom: 10px!important;
  2202. }
  2203. .p-l-10 {
  2204. padding-left: 10px!important;
  2205. }
  2206. .p-lr-15 {
  2207. padding: 0px 15px!important;
  2208. }
  2209. .p-l-20 {
  2210. padding-left: 20px!important;
  2211. }
  2212. .p-l-40 {
  2213. padding-left: 40px!important;
  2214. }
  2215. /* 字体大小 */
  2216. .fa-1-5x {
  2217. font-size: 1.5em;
  2218. }
  2219. .fa-2x {
  2220. font-size: 2em;
  2221. }
  2222. .fa-3x {
  2223. font-size: 3em;
  2224. }
  2225. .fa-4x {
  2226. font-size: 4em;
  2227. }
  2228. .fa-5x {
  2229. font-size: 5em;
  2230. }
  2231. .fa-6x {
  2232. font-size: 6em;
  2233. }
  2234. .fa-7x {
  2235. font-size: 7em;
  2236. }
  2237. .fa-8x {
  2238. font-size: 8em;
  2239. }
  2240. .fa-9x {
  2241. font-size: 9em;
  2242. }
  2243. .fa-10x {
  2244. font-size: 10em;
  2245. }
  2246. /* 宽度 */
  2247. .w-5 {
  2248. width: 5%;
  2249. }
  2250. .w-10 {
  2251. width: 10%;
  2252. }
  2253. .w-15 {
  2254. width: 15%;
  2255. }
  2256. .w-20 {
  2257. width: 20%;
  2258. }
  2259. .w-25 {
  2260. width: 25%;
  2261. }
  2262. .w-30 {
  2263. width: 30%;
  2264. }
  2265. .w-35 {
  2266. width: 35%;
  2267. }
  2268. .w-40 {
  2269. width: 40%;
  2270. }
  2271. .w-45 {
  2272. width: 45%;
  2273. }
  2274. .w-50 {
  2275. width: 50%;
  2276. }
  2277. .w-55 {
  2278. width: 55%;
  2279. }
  2280. .w-60 {
  2281. width: 60%;
  2282. }
  2283. .w-65 {
  2284. width: 65%;
  2285. }
  2286. .w-70 {
  2287. width: 70%;
  2288. }
  2289. .w-75 {
  2290. width: 75%;
  2291. }
  2292. .w-80 {
  2293. width: 80%;
  2294. }
  2295. .w-85 {
  2296. width: 85%;
  2297. }
  2298. .w-90 {
  2299. width: 90%;
  2300. }
  2301. .w-95 {
  2302. width: 95%;
  2303. }
  2304. .w-100 {
  2305. width: 100%;
  2306. }
  2307. /* 图库 */
  2308. .masonry-grid {
  2309. -webkit-column-count: 3;
  2310. -moz-column-count: 3;
  2311. column-count: 3;
  2312. -webkit-column-gap: 30px;
  2313. -moz-column-gap: 30px;
  2314. column-gap: 30px;
  2315. }
  2316. .masonry-item {
  2317. display: block;
  2318. -webkit-column-break-inside: avoid;
  2319. break-inside: avoid;
  2320. padding-bottom: 30px;
  2321. }
  2322. .masonry-grid.gap-2 {
  2323. -webkit-column-gap: 16px;
  2324. -moz-column-gap: 16px;
  2325. column-gap: 16px;
  2326. }
  2327. .masonry-grid.gap-2 .masonry-item {
  2328. padding-bottom: 16px;
  2329. }
  2330. /** ----------------------------------
  2331. * 滚动条样式
  2332. -------------------------------------- */
  2333. .ps {
  2334. overflow: hidden !important;
  2335. overflow-anchor: none;
  2336. -ms-overflow-style: none;
  2337. touch-action: auto;
  2338. -ms-touch-action: auto;
  2339. }
  2340. .ps__rail-x {
  2341. display: none;
  2342. opacity: 0;
  2343. transition: background-color .2s linear, opacity .2s linear;
  2344. -webkit-transition: background-color .2s linear, opacity .2s linear;
  2345. height: 6px;
  2346. bottom: 2px;
  2347. position: absolute;
  2348. }
  2349. .ps__rail-y {
  2350. display: none;
  2351. opacity: 0;
  2352. transition: background-color .2s linear, opacity .2s linear;
  2353. -webkit-transition: background-color .2s linear, opacity .2s linear;
  2354. width: 6px;
  2355. right: 2px;
  2356. position: absolute;
  2357. }
  2358. .ps--active-x > .ps__rail-x,
  2359. .ps--active-y > .ps__rail-y {
  2360. display: block;
  2361. background-color: transparent;
  2362. }
  2363. .ps:hover > .ps__rail-x,
  2364. .ps:hover > .ps__rail-y,
  2365. .ps--focus > .ps__rail-x,
  2366. .ps--focus > .ps__rail-y,
  2367. .ps--scrolling-x > .ps__rail-x,
  2368. .ps--scrolling-y > .ps__rail-y {
  2369. opacity: 0.6;
  2370. }
  2371. .ps .ps__rail-x:hover,
  2372. .ps .ps__rail-y:hover,
  2373. .ps .ps__rail-x:focus,
  2374. .ps .ps__rail-y:focus,
  2375. .ps .ps__rail-x.ps--clicking,
  2376. .ps .ps__rail-y.ps--clicking {
  2377. background-color: #eee;
  2378. opacity: 0.9;
  2379. }
  2380. .ps__thumb-x {
  2381. background-color: #aaa;
  2382. border-radius: 6px;
  2383. transition: background-color .2s linear, height .2s ease-in-out;
  2384. -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  2385. height: 3px;
  2386. bottom: 0px;
  2387. position: absolute;
  2388. }
  2389. .ps__thumb-y {
  2390. background-color: #aaa;
  2391. border-radius: 6px;
  2392. transition: background-color .2s linear, width .2s ease-in-out;
  2393. -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  2394. width: 3px;
  2395. right: 0px;
  2396. position: absolute;
  2397. }
  2398. .ps__rail-x:hover > .ps__thumb-x,
  2399. .ps__rail-x:focus > .ps__thumb-x,
  2400. .ps__rail-x.ps--clicking .ps__thumb-x {
  2401. background-color: #999;
  2402. height: 6px;
  2403. }
  2404. .ps__rail-y:hover > .ps__thumb-y,
  2405. .ps__rail-y:focus > .ps__thumb-y,
  2406. .ps__rail-y.ps--clicking .ps__thumb-y {
  2407. background-color: #999;
  2408. width: 6px;
  2409. }
  2410. @supports (-ms-overflow-style: none) {
  2411. .ps {
  2412. overflow: auto !important;
  2413. }
  2414. }
  2415. @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  2416. .ps {
  2417. overflow: auto !important;
  2418. }
  2419. }
  2420. /** ----------------------------------
  2421. * 左侧导航
  2422. -------------------------------------- */
  2423. .lyear-layout-sidebar {
  2424. position: fixed;
  2425. top: 0;
  2426. bottom: 0;
  2427. z-index: 5;
  2428. display: block;
  2429. width: 240px;
  2430. font-weight: 500;
  2431. background-color: #fff;
  2432. -webkit-transform: translateX(-240px);
  2433. transform: translateX(-240px);
  2434. -webkit-transform-style: preserve-3d;
  2435. transform-style: preserve-3d;
  2436. -webkit-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  2437. transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  2438. -webkit-transition-property: visibility, -webkit-transform;
  2439. transition-property: visibility, -webkit-transform;
  2440. transition-property: transform, visibility;
  2441. transition-property: transform, visibility, -webkit-transform;
  2442. -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.08);
  2443. box-shadow: 0px 0px 5px rgba(0,0,0,0.08);
  2444. }
  2445. .lyear-layout-sidebar.lyear-layout-sidebar-open {
  2446. -webkit-transform: translateX(0);
  2447. transform: translateX(0);
  2448. }
  2449. .lyear-layout-sidebar.lyear-layout-sidebar-visible {
  2450. visibility: visible;
  2451. }
  2452. .lyear-layout-sidebar-scroll {
  2453. height: -moz-calc(100% - 68px);
  2454. height: -webkit-calc(100% - 68px);
  2455. height: calc(100% - 68px);
  2456. position: relative;
  2457. }
  2458. /* logo */
  2459. .sidebar-header {
  2460. position: relative;
  2461. overflow: hidden;
  2462. width: 100%;
  2463. -webkit-box-shadow: 0 1px 1px -1px rgba(77,82,89,0.15);
  2464. box-shadow: 0 1px 1px -1px rgba(77,82,89,0.15);
  2465. }
  2466. .sidebar-header:before, .sidebar-header:after {
  2467. content: " ";
  2468. display: table;
  2469. }
  2470. .sidebar-header a {
  2471. display: block;
  2472. height: auto;
  2473. width: 100%;
  2474. text-align: center;
  2475. }
  2476. .sidebar-header a img {
  2477. max-width: 240px;
  2478. margin: 16px 0px;
  2479. }
  2480. .sidebar-main {
  2481. -webkit-transform: translateZ(0);
  2482. transform: translateZ(0);
  2483. }
  2484. .nav-drawer li a {
  2485. padding-right: 24px;
  2486. padding-left: 52.99999px;
  2487. color: inherit;
  2488. font-weight: 500;
  2489. }
  2490. .nav-drawer > li > a {
  2491. border-right: 3px solid transparent;
  2492. padding-top: 14px;
  2493. padding-bottom: 13px;
  2494. }
  2495. .nav-drawer > .active > a {
  2496. background-color: transparent;
  2497. border-color: #33cabb;
  2498. }
  2499. .nav > li > a:hover {
  2500. text-decoration: none;
  2501. background-color: #f9fafb;
  2502. }
  2503. .nav > li > a:focus {
  2504. background-color: transparent;
  2505. }
  2506. .nav-drawer > .active > a:hover,
  2507. .nav-drawer > .active > a:focus,
  2508. .nav-drawer > .active > a:active {
  2509. border-color: #33cabb;
  2510. }
  2511. .nav-drawer > li > a > i {
  2512. position: absolute;
  2513. left: 21px;
  2514. top: 11px;
  2515. font-size: 1.25em;
  2516. }
  2517. .nav-item-has-subnav > a:after {
  2518. position: absolute;
  2519. right: 24px;
  2520. top: 15px;
  2521. font-family: 'Material Design Icons';
  2522. font-size: 10px;
  2523. content: '\f142';
  2524. -webkit-transition: -webkit-transform 0.3s linear;
  2525. transition: -webkit-transform 0.3s linear;
  2526. transition: transform 0.3s linear;
  2527. transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  2528. }
  2529. .nav-item-has-subnav.open > a:after {
  2530. -webkit-transform: rotate(90deg);
  2531. transform: rotate(90deg);
  2532. }
  2533. .nav-item-has-subnav.open > .nav-subnav {
  2534. display: block;
  2535. }
  2536. .nav-subnav > .active > a {
  2537. color: #33cabb;
  2538. background-color: #f9fafb;
  2539. }
  2540. .nav-subnav {
  2541. display: none;
  2542. margin-top: 8px;
  2543. margin-bottom: 8px;
  2544. }
  2545. /* 左侧版权信息 */
  2546. .sidebar-footer {
  2547. bottom: 0;
  2548. width: 100%;
  2549. height: 96px;
  2550. border-top: 1px solid rgba(77,82,89,0.05);
  2551. margin-top: 24px;
  2552. padding-top: 24px;
  2553. padding-right: 24px;
  2554. padding-bottom: 24px;
  2555. padding-left: 24px;
  2556. font-size: 13px;
  2557. line-height: 24px;
  2558. }
  2559. /* 遮罩层 */
  2560. .lyear-mask-modal {
  2561. background-color: rgba(0, 0, 0, 0.5);
  2562. height: 100%;
  2563. left: 0;
  2564. opacity: 1;
  2565. top: 0;
  2566. visibility: visible;
  2567. width: 100%;
  2568. z-index: 5;
  2569. position: fixed;
  2570. -webkit-transition: visibility 0 linear 0.4s, opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  2571. transition: visibility 0 linear 0.4s, opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  2572. -webkit-transform: translateZ(0);
  2573. transform: translateZ(0);
  2574. }
  2575. /** ----------------------------------
  2576. * 头部信息
  2577. -------------------------------------- */
  2578. .lyear-layout-header {
  2579. position: fixed;
  2580. top: 0;
  2581. right: 0;
  2582. left: 0;
  2583. z-index: 4;
  2584. background-color: #fff;
  2585. -webkit-box-shadow: 4px 0 5px rgba(0, 0, 0, 0.035);
  2586. box-shadow: 4px 0 5px rgba(0, 0, 0, 0.035);
  2587. }
  2588. .lyear-layout-header .navbar {
  2589. position: relative;
  2590. min-height: 64px;
  2591. margin-bottom: 0;
  2592. border: 0px;
  2593. }
  2594. .lyear-layout-header .navbar-default {
  2595. background-color: transparent;
  2596. }
  2597. .topbar {
  2598. display: -webkit-box;
  2599. display: flex;
  2600. -webkit-box-pack: justify;
  2601. justify-content: space-between;
  2602. -webkit-box-align: center;
  2603. align-items: center;
  2604. min-height: 64px;
  2605. padding: 0 15px;
  2606. }
  2607. .topbar .topbar-left {
  2608. display: -webkit-box;
  2609. display: flex;
  2610. -webkit-box-align: center;
  2611. align-items: center;
  2612. }
  2613. .topbar .topbar-right {
  2614. display: -webkit-box;
  2615. display: flex;
  2616. -webkit-box-align: center;
  2617. align-items: center;
  2618. -webkit-box-orient: horizontal;
  2619. -webkit-box-direction: reverse;
  2620. flex-direction: row-reverse;
  2621. list-style: none;
  2622. margin: 0px;
  2623. padding: 0px;
  2624. }
  2625. .topbar-right > li > a {
  2626. position: relative;
  2627. display: block;
  2628. padding: 10px 0px 10px 15px;
  2629. }
  2630. .navbar-page-title {
  2631. display: inline-block;
  2632. margin-right: 20px;
  2633. padding-top: 20px;
  2634. padding-bottom: 20px;
  2635. font-size: 16px;
  2636. }
  2637. /* 头像相关 */
  2638. .img-avatar {
  2639. display: inline-block !important;
  2640. width: 64px;
  2641. height: 64px;
  2642. line-height: 64px;
  2643. text-align: center;
  2644. vertical-align: middle;
  2645. -webkit-border-radius: 50%;
  2646. border-radius: 50%;
  2647. }
  2648. .img-avatar-48 {
  2649. width: 48px;
  2650. height: 48px;
  2651. line-height: 48px;
  2652. }
  2653. .edit-avatar {
  2654. display: -ms-flexbox;
  2655. display: flex;
  2656. -ms-flex-align: start;
  2657. align-items: flex-start;
  2658. }
  2659. .avatar-divider {
  2660. display: inline-block;
  2661. border-left: 1px solid rgba(77,82,89,0.07);
  2662. height: 50px;
  2663. align-self: center;
  2664. margin: 0px 20px;
  2665. }
  2666. .edit-avatar-content {
  2667. display: inline-block;
  2668. }
  2669. /** ----------------------------------
  2670. * 主要内容
  2671. -------------------------------------- */
  2672. .lyear-layout-content {
  2673. height: 100%;
  2674. width: 100%;
  2675. padding-top: 68px;
  2676. }
  2677. .lyear-layout-content .container-fluid {
  2678. padding-top: 15px;
  2679. padding-bottom: 15px;
  2680. }
  2681. /* card */
  2682. .card {
  2683. margin-bottom: 24px;
  2684. background-color: #fff;
  2685. -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.035);
  2686. box-shadow: 0 2px 3px rgba(0, 0, 0, 0.035);
  2687. }
  2688. .card-header {
  2689. display: table;
  2690. width: 100%;
  2691. margin: 0;
  2692. padding: 15px 24px;
  2693. border-bottom: 1px solid rgba(77,82,89,0.05);
  2694. }
  2695. .card-header > * {
  2696. margin: 0;
  2697. display: table-cell;
  2698. vertical-align: middle;
  2699. }
  2700. .card-body {
  2701. padding: 24px 24px;
  2702. }
  2703. .card-header .h4,
  2704. .card-header h4 {
  2705. font-size: 16px;
  2706. }
  2707. .card-header + .card-body {
  2708. padding-top: 15px;
  2709. }
  2710. .card-header[class*='bg'] .card-actions > li > a:not(.label),
  2711. .card-header[class*='bg'] .card-actions > li > button,
  2712. .card-header[class*='bg'] h1,
  2713. .card-header[class*='bg'] h2,
  2714. .card-header[class*='bg'] h3,
  2715. .card-header[class*='bg'] h4,
  2716. .card-header[class*='bg'] h5,
  2717. .card-header[class*='bg'] h6,
  2718. .card-header[class*='bg'] .h1,
  2719. .card-header[class*='bg'] .h2,
  2720. .card-header[class*='bg'] .h3,
  2721. .card-header[class*='bg'] .h4,
  2722. .card-header[class*='bg'] .h5,
  2723. .card-header[class*='bg'] .h6 {
  2724. color: #ffffff;
  2725. }
  2726. .card-toolbar {
  2727. padding: 24px 24px 0px 24px;
  2728. position: relative;
  2729. }
  2730. .card-toolbar .search-bar {
  2731. max-width: 280px;
  2732. }
  2733. .card-toolbar .dropdown-menu {
  2734. min-width: 100%;
  2735. }
  2736. /* card-actions */
  2737. .card-actions {
  2738. float: right;
  2739. margin-bottom: 0;
  2740. margin-left: auto;
  2741. padding: 0;
  2742. }
  2743. .card-actions > li {
  2744. display: inline-block;
  2745. padding: 0;
  2746. }
  2747. .card-actions > li > a:not(.label),
  2748. .card-actions > li > button {
  2749. color: #86939e;
  2750. display: inline-block;
  2751. padding: 0;
  2752. line-height: 1;
  2753. opacity: .7;
  2754. vertical-align: middle;
  2755. -webkit-transition: opacity 0.15s ease-out;
  2756. transition: opacity 0.15s ease-out;
  2757. }
  2758. .card-actions > li > a:not(.label):hover,
  2759. .card-actions > li > button:hover {
  2760. text-decoration: none;
  2761. opacity: 1;
  2762. }
  2763. .card-actions > li > a:not(.label):active,
  2764. .card-actions > li > button:active {
  2765. opacity: .6;
  2766. }
  2767. .card-actions > li > span {
  2768. display: block;
  2769. }
  2770. .card-actions > li > .label {
  2771. line-height: 1.25;
  2772. }
  2773. .card-actions > li > a:focus {
  2774. text-decoration: none;
  2775. opacity: 1;
  2776. }
  2777. .card-actions > li > button {
  2778. background: none;
  2779. border: none;
  2780. }
  2781. .card-actions > li.active > a,
  2782. .card-actions > li.open > button {
  2783. text-decoration: none;
  2784. opacity: 1;
  2785. }
  2786. .card-actions > li + li {
  2787. margin-left: 10px;
  2788. }
  2789. .card .tab-content {
  2790. padding: 10px 24px;
  2791. }
  2792. /* 加载动画 */
  2793. #lyear-loading {
  2794. position: fixed;
  2795. width: 100%;
  2796. height: 100%;
  2797. z-index: 9990;
  2798. background: rgba(0, 0, 0, 0.0325)
  2799. }
  2800. #lyear-loading .spinner-border {
  2801. z-index: 999999;
  2802. position: fixed;
  2803. left: 50%;
  2804. top: 50%
  2805. }
  2806. @-webkit-keyframes spinner-border {
  2807. to {
  2808. -webkit-transform: rotate(360deg);
  2809. transform: rotate(360deg);
  2810. }
  2811. }
  2812. @keyframes spinner-border {
  2813. to {
  2814. -webkit-transform: rotate(360deg);
  2815. transform: rotate(360deg);
  2816. }
  2817. }
  2818. .spinner-border {
  2819. display: inline-block;
  2820. width: 3rem;
  2821. height: 3rem;
  2822. vertical-align: text-bottom;
  2823. border: 0.125em solid currentColor;
  2824. border-right-color: transparent;
  2825. border-radius: 50%;
  2826. -webkit-animation: spinner-border .75s linear infinite;
  2827. animation: spinner-border .75s linear infinite;
  2828. }
  2829. /** ----------------------------------
  2830. * 响应式处理
  2831. -------------------------------------- */
  2832. @media screen and (max-width: 768px)
  2833. {
  2834. .lyear-layout-sidebar {
  2835. -webkit-overflow-scrolling: touch;
  2836. overflow-x: hidden;
  2837. overflow-y: auto;
  2838. }
  2839. .lyear-layout-sidebar:not(.lyear-layout-sidebar-open) {
  2840. -webkit-box-shadow: none;
  2841. box-shadow: none;
  2842. }
  2843. }
  2844. @media screen and (min-width: 769px)
  2845. {
  2846. .lyear-layout-sidebar {
  2847. visibility: visible;
  2848. -webkit-transform: translateX(0);
  2849. transform: translateX(0);
  2850. -webkit-transition: none;
  2851. transition: none;
  2852. }
  2853. .lyear-layout-header,
  2854. .lyear-layout-content {
  2855. padding-left: 240px;
  2856. }
  2857. .navbar {
  2858. border-radius: 0;
  2859. }
  2860. }