style.min.css 68 KB

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