common.css 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469
  1. .m-0 {
  2. margin-top: 0px !important;
  3. margin-right: 0px !important;
  4. margin-bottom: 0px !important;
  5. margin-left: 0px !important;
  6. }
  7. .mt-0 {
  8. margin-top: 0px !important;
  9. }
  10. .mr-0 {
  11. margin-right: 0px !important;
  12. }
  13. .mb-0 {
  14. margin-bottom: 0px !important;
  15. }
  16. .ml-0 {
  17. margin-left: 0px !important;
  18. }
  19. .mx-0 {
  20. margin-left: 0px !important;
  21. margin-right: 0px !important;
  22. }
  23. .my-0 {
  24. margin-top: 0px !important;
  25. margin-bottom: 0px !important;
  26. }
  27. .m-1 {
  28. margin-top: 5px !important;
  29. margin-right: 5px !important;
  30. margin-bottom: 5px !important;
  31. margin-left: 5px !important;
  32. }
  33. .mt-1 {
  34. margin-top: 5px !important;
  35. }
  36. .mr-1 {
  37. margin-right: 5px !important;
  38. }
  39. .mb-1 {
  40. margin-bottom: 5px !important;
  41. }
  42. .ml-1 {
  43. margin-left: 5px !important;
  44. }
  45. .mx-1 {
  46. margin-left: 5px !important;
  47. margin-right: 5px !important;
  48. }
  49. .my-1 {
  50. margin-top: 5px !important;
  51. margin-bottom: 5px !important;
  52. }
  53. .m-2 {
  54. margin-top: 10px !important;
  55. margin-right: 10px !important;
  56. margin-bottom: 10px !important;
  57. margin-left: 10px !important;
  58. }
  59. .mt-2 {
  60. margin-top: 10px !important;
  61. }
  62. .mr-2 {
  63. margin-right: 10px !important;
  64. }
  65. .mb-2 {
  66. margin-bottom: 10px !important;
  67. }
  68. .ml-2 {
  69. margin-left: 10px !important;
  70. }
  71. .mx-2 {
  72. margin-left: 10px !important;
  73. margin-right: 10px !important;
  74. }
  75. .my-2 {
  76. margin-top: 10px !important;
  77. margin-bottom: 10px !important;
  78. }
  79. .m-3 {
  80. margin-top: 15px !important;
  81. margin-right: 15px !important;
  82. margin-bottom: 15px !important;
  83. margin-left: 15px !important;
  84. }
  85. .mt-3 {
  86. margin-top: 15px !important;
  87. }
  88. .mr-3 {
  89. margin-right: 15px !important;
  90. }
  91. .mb-3 {
  92. margin-bottom: 15px !important;
  93. }
  94. .ml-3 {
  95. margin-left: 15px !important;
  96. }
  97. .mx-3 {
  98. margin-left: 15px !important;
  99. margin-right: 15px !important;
  100. }
  101. .my-3 {
  102. margin-top: 15px !important;
  103. margin-bottom: 15px !important;
  104. }
  105. .m-4 {
  106. margin-top: 20px !important;
  107. margin-right: 20px !important;
  108. margin-bottom: 20px !important;
  109. margin-left: 20px !important;
  110. }
  111. .mt-4 {
  112. margin-top: 20px !important;
  113. }
  114. .mr-4 {
  115. margin-right: 20px !important;
  116. }
  117. .mb-4 {
  118. margin-bottom: 20px !important;
  119. }
  120. .ml-4 {
  121. margin-left: 20px !important;
  122. }
  123. .mx-4 {
  124. margin-left: 20px !important;
  125. margin-right: 20px !important;
  126. }
  127. .my-4 {
  128. margin-top: 20px !important;
  129. margin-bottom: 20px !important;
  130. }
  131. .p-0 {
  132. padding-top: 0px !important;
  133. padding-right: 0px !important;
  134. padding-bottom: 0px !important;
  135. padding-left: 0px !important;
  136. }
  137. .pt-0 {
  138. padding-top: 0px !important;
  139. }
  140. .pr-0 {
  141. padding-right: 0px !important;
  142. }
  143. .pb-0 {
  144. padding-bottom: 0px !important;
  145. }
  146. .pl-0 {
  147. padding-left: 0px !important;
  148. }
  149. .px-0 {
  150. padding-left: 0px !important;
  151. padding-right: 0px !important;
  152. }
  153. .py-0 {
  154. padding-top: 0px !important;
  155. padding-bottom: 0px !important;
  156. }
  157. .p-1 {
  158. padding-top: 5px !important;
  159. padding-right: 5px !important;
  160. padding-bottom: 5px !important;
  161. padding-left: 5px !important;
  162. }
  163. .pt-1 {
  164. padding-top: 5px !important;
  165. }
  166. .pr-1 {
  167. padding-right: 5px !important;
  168. }
  169. .pb-1 {
  170. padding-bottom: 5px !important;
  171. }
  172. .pl-1 {
  173. padding-left: 5px !important;
  174. }
  175. .px-1 {
  176. padding-left: 5px !important;
  177. padding-right: 5px !important;
  178. }
  179. .py-1 {
  180. padding-top: 5px !important;
  181. padding-bottom: 5px !important;
  182. }
  183. .p-2 {
  184. padding-top: 10px !important;
  185. padding-right: 10px !important;
  186. padding-bottom: 10px !important;
  187. padding-left: 10px !important;
  188. }
  189. .pt-2 {
  190. padding-top: 10px !important;
  191. }
  192. .pr-2 {
  193. padding-right: 10px !important;
  194. }
  195. .pb-2 {
  196. padding-bottom: 10px !important;
  197. }
  198. .pl-2 {
  199. padding-left: 10px !important;
  200. }
  201. .px-2 {
  202. padding-left: 10px !important;
  203. padding-right: 10px !important;
  204. }
  205. .py-2 {
  206. padding-top: 10px !important;
  207. padding-bottom: 10px !important;
  208. }
  209. .p-3 {
  210. padding-top: 15px !important;
  211. padding-right: 15px !important;
  212. padding-bottom: 15px !important;
  213. padding-left: 15px !important;
  214. }
  215. .pt-3 {
  216. padding-top: 15px !important;
  217. }
  218. .pr-3 {
  219. padding-right: 15px !important;
  220. }
  221. .pb-3 {
  222. padding-bottom: 15px !important;
  223. }
  224. .pl-3 {
  225. padding-left: 15px !important;
  226. }
  227. .px-3 {
  228. padding-left: 15px !important;
  229. padding-right: 15px !important;
  230. }
  231. .py-3 {
  232. padding-top: 15px !important;
  233. padding-bottom: 15px !important;
  234. }
  235. .p-4 {
  236. padding-top: 20px !important;
  237. padding-right: 20px !important;
  238. padding-bottom: 20px !important;
  239. padding-left: 20px !important;
  240. }
  241. .pt-4 {
  242. padding-top: 20px !important;
  243. }
  244. .pr-4 {
  245. padding-right: 20px !important;
  246. }
  247. .pb-4 {
  248. padding-bottom: 20px !important;
  249. }
  250. .pl-4 {
  251. padding-left: 20px !important;
  252. }
  253. .px-4 {
  254. padding-left: 20px !important;
  255. padding-right: 20px !important;
  256. }
  257. .py-4 {
  258. padding-top: 20px !important;
  259. padding-bottom: 20px !important;
  260. }
  261. html,
  262. body {
  263. height: 100%;
  264. -webkit-font-smoothing: antialiased;
  265. text-rendering: optimizeLegibility;
  266. -moz-osx-font-smoothing: grayscale;
  267. font-feature-settings: 'liga';
  268. -webkit-text-size-adjust: 100%;
  269. font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, Helvetica, Arial, PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
  270. font-weight: 400;
  271. background: #f4f6f8;
  272. font-size: 14px;
  273. color: #555;
  274. }
  275. body {
  276. padding-top: 70px;
  277. }
  278. a {
  279. color: #555;
  280. }
  281. a:hover,
  282. a:focus {
  283. color: #007bff;
  284. }
  285. a.primary-link {
  286. color: #007bff;
  287. }
  288. .btn {
  289. font-size: 13px;
  290. }
  291. .btn-primary {
  292. color: #fff;
  293. background-color: #007bff;
  294. border-color: #007bff;
  295. }
  296. .btn-primary:hover,
  297. .btn-primary:focus,
  298. .btn-primary:active,
  299. .btn-primary:active:focus {
  300. color: #fff;
  301. background-color: #0062cc;
  302. border-color: #0062cc;
  303. }
  304. .btn-gray {
  305. color: #212529;
  306. background-color: #f8f9fa;
  307. border-color: #f8f9fa;
  308. }
  309. .btn-gray:hover {
  310. color: #212529;
  311. background-color: #e2e6ea;
  312. border-color: #dae0e5;
  313. }
  314. .btn-light {
  315. color: #007bff;
  316. background: #b3d7ff;
  317. border-color: transparent;
  318. }
  319. .btn-light:hover {
  320. color: #fff;
  321. background-color: #007bff;
  322. border-color: #007bff;
  323. }
  324. .label-primary {
  325. color: #fff;
  326. background-color: #007bff;
  327. border-color: #007bff;
  328. }
  329. .btn-outline-primary {
  330. color: #007bff;
  331. background-color: transparent;
  332. background-image: none;
  333. border-color: #007bff;
  334. }
  335. .btn-outline-primary:hover {
  336. color: #fff;
  337. background-color: #007bff;
  338. border-color: #007bff;
  339. }
  340. .btn-lg {
  341. -webkit-border-radius: 3px;
  342. -webkit-background-clip: padding-box;
  343. -moz-border-radius: 3px;
  344. -moz-background-clip: padding;
  345. border-radius: 3px;
  346. background-clip: padding-box;
  347. }
  348. .form-control {
  349. font-size: 13px;
  350. }
  351. .wow {
  352. visibility: hidden;
  353. }
  354. .navbar-inverse .navbar-nav > li > a {
  355. color: #caced2;
  356. }
  357. .skin-white {
  358. padding-top: 80px;
  359. }
  360. .navbar-white {
  361. background-color: #fff;
  362. border-color: #fff;
  363. box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  364. }
  365. .navbar-white .dropdown-menu {
  366. border-radius: 5px;
  367. -webkit-box-shadow: 0px 20px 30px rgba(83, 88, 93, 0.05), 0px 0px 30px rgba(83, 88, 93, 0.1);
  368. -moz-box-shadow: 0px 20px 30px rgba(83, 88, 93, 0.05), 0px 0px 30px rgba(83, 88, 93, 0.1);
  369. box-shadow: 0px 20px 30px rgba(83, 88, 93, 0.05), 0px 0px 30px rgba(83, 88, 93, 0.1);
  370. }
  371. @media (min-width: 768px) {
  372. .navbar-default .navbar-brand {
  373. height: 60px;
  374. line-height: 27px;
  375. }
  376. .navbar-default .navbar-nav > li > a {
  377. height: 60px;
  378. line-height: 27px;
  379. }
  380. .navbar-white .navbar-nav > li > a {
  381. height: 60px;
  382. line-height: 27px;
  383. color: #555;
  384. }
  385. .navbar-white .navbar-nav > li > a:hover,
  386. .navbar-white .navbar-nav > li > a:focus {
  387. color: #007bff;
  388. }
  389. .navbar-white .navbar-nav > .active > a,
  390. .navbar-white .navbar-nav > .active > a:hover,
  391. .navbar-white .navbar-nav > .active > a:focus {
  392. background-color: inherit;
  393. color: #007bff;
  394. }
  395. }
  396. @media (hover: hover) {
  397. .dropdown a:hover + .dropdown-menu {
  398. display: block;
  399. margin-top: 0;
  400. }
  401. }
  402. .alert-paid {
  403. margin: 10px 0;
  404. text-align: center;
  405. }
  406. .alert-paid a {
  407. color: #f39c12;
  408. }
  409. .navbar-inverse .navbar-nav .dropdown:hover > a {
  410. color: #fff;
  411. background-color: transparent;
  412. }
  413. .dropdown-menu > li > a {
  414. font-size: 14px;
  415. padding: 5px 20px;
  416. }
  417. .dropdown-menu {
  418. border-radius: 2px;
  419. border: 0px;
  420. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  421. padding: 5px 0px;
  422. }
  423. .dropdown-menu li a {
  424. padding-top: 10px !important;
  425. padding-bottom: 10px;
  426. }
  427. .dropdown-menu > li > a {
  428. font-weight: 400;
  429. color: #444;
  430. padding: 5px 15px;
  431. padding-bottom: 10px;
  432. font-size: 14px;
  433. }
  434. .dropdown-menu > li > a:hover,
  435. .dropdown-menu > li > a:focus {
  436. text-decoration: none;
  437. color: #777;
  438. background: rgba(0, 0, 0, 0.05);
  439. }
  440. .dropdown-submenu {
  441. position: relative;
  442. }
  443. .dropdown-submenu > .dropdown-menu {
  444. top: 0;
  445. left: 100%;
  446. margin-top: 0;
  447. margin-left: -1px;
  448. -webkit-border-radius: 3px 0 3px 3px;
  449. -webkit-background-clip: padding-box;
  450. -moz-border-radius: 3px 0 3px 3px;
  451. -moz-background-clip: padding;
  452. border-radius: 3px 0 3px 3px;
  453. background-clip: padding-box;
  454. }
  455. .dropdown-submenu:hover > .dropdown-menu {
  456. display: block;
  457. }
  458. .dropdown-submenu > a:after {
  459. display: block;
  460. content: " ";
  461. float: right;
  462. width: 0;
  463. height: 0;
  464. border-color: transparent;
  465. border-style: solid;
  466. border-width: 5px 0 5px 5px;
  467. border-left-color: #ccc;
  468. margin-top: 5px;
  469. margin-right: -10px;
  470. }
  471. .dropdown-submenu.pull-left {
  472. float: none;
  473. }
  474. .dropdown-submenu.pull-left > .dropdown-menu {
  475. left: -100%;
  476. margin-left: 10px;
  477. -webkit-border-radius: 3px 0 3px 3px;
  478. -webkit-background-clip: padding-box;
  479. -moz-border-radius: 3px 0 3px 3px;
  480. -moz-background-clip: padding;
  481. border-radius: 3px 0 3px 3px;
  482. background-clip: padding-box;
  483. }
  484. .navbar-collapse.collapse.active .navbar-nav .dropdown-submenu .dropdown-menu > li > a {
  485. padding-left: 45px;
  486. }
  487. .navbar {
  488. border: none;
  489. }
  490. .navbar-nav li > a {
  491. font-size: 14px;
  492. }
  493. .navbar-nav li > a h5 {
  494. overflow: hidden;
  495. text-overflow: ellipsis;
  496. }
  497. .navbar-nav > li > a {
  498. font-size: 14px;
  499. }
  500. .navbar-nav ul.dropdown-menu {
  501. border: none;
  502. border-radius: 4px;
  503. }
  504. .navbar-nav ul.dropdown-menu > li.active > a {
  505. color: #007bff;
  506. background-color: #f5f5f5;
  507. }
  508. .navbar-nav ul.dropdown-menu > li > a {
  509. padding: 8px 20px;
  510. }
  511. .navbar-brand {
  512. padding: 5px 15px;
  513. }
  514. .toast-top-center {
  515. top: 50px;
  516. }
  517. .toast-top-center > div {
  518. -webkit-box-shadow: none;
  519. -moz-box-shadow: none;
  520. box-shadow: none;
  521. }
  522. /*修复nice-validator新版下的一处BUG*/
  523. .nice-validator input,
  524. .nice-validator select,
  525. .nice-validator textarea,
  526. .nice-validator [contenteditable] {
  527. display: inline-block;
  528. *display: inline;
  529. *zoom: 1;
  530. }
  531. /*修复nice-validator和summernote的编辑框冲突*/
  532. .nice-validator .note-editor .note-editing-area .note-editable {
  533. display: inherit;
  534. }
  535. /*预览区域*/
  536. .plupload-preview,
  537. .faupload-preview {
  538. padding: 0 10px;
  539. margin-bottom: 0;
  540. }
  541. .plupload-preview li,
  542. .faupload-preview li {
  543. margin-top: 5px;
  544. margin-bottom: 10px;
  545. }
  546. .plupload-preview .thumbnail,
  547. .faupload-preview .thumbnail {
  548. margin-bottom: 10px;
  549. }
  550. .plupload-preview a,
  551. .faupload-preview a {
  552. display: block;
  553. }
  554. .plupload-preview a:first-child,
  555. .faupload-preview a:first-child {
  556. height: 90px;
  557. }
  558. .plupload-preview a img,
  559. .faupload-preview a img {
  560. height: 80px;
  561. object-fit: cover;
  562. }
  563. #floatbtn {
  564. width: 50px;
  565. height: auto;
  566. position: fixed;
  567. top: auto;
  568. right: 50%;
  569. bottom: 10px;
  570. left: auto;
  571. z-index: 80;
  572. margin-right: -640px;
  573. }
  574. #floatbtn.fixed {
  575. position: absolute;
  576. bottom: 279px;
  577. right: 50%;
  578. }
  579. #floatbtn > a,
  580. #floatbtn .floatbtn-item {
  581. cursor: pointer;
  582. position: relative;
  583. z-index: 90;
  584. display: block;
  585. margin-top: 4px;
  586. width: 50px;
  587. height: 50px;
  588. line-height: 50px;
  589. text-align: center;
  590. font-size: 20px;
  591. color: #d5d5d5;
  592. background-color: #fff;
  593. -webkit-user-select: none;
  594. -moz-user-select: none;
  595. -ms-user-select: none;
  596. user-select: none;
  597. }
  598. #floatbtn > a.hover:hover,
  599. #floatbtn .floatbtn-item.hover:hover {
  600. -webkit-transition: background-color 400ms ease-out;
  601. -moz-transition: background-color 400ms ease-out;
  602. -o-transition: background-color 400ms ease-out;
  603. transition: background-color 400ms ease-out;
  604. background: #007bff;
  605. text-decoration: none;
  606. text-align: center;
  607. line-height: 20px;
  608. padding: 5px;
  609. }
  610. #floatbtn > a.hover:hover i,
  611. #floatbtn .floatbtn-item.hover:hover i {
  612. display: none;
  613. }
  614. #floatbtn > a.hover:hover em,
  615. #floatbtn .floatbtn-item.hover:hover em {
  616. display: block;
  617. color: #fff;
  618. font-size: 14px;
  619. font-style: normal;
  620. text-decoration: none;
  621. }
  622. #floatbtn > a em,
  623. #floatbtn .floatbtn-item em {
  624. display: none;
  625. }
  626. #floatbtn > a:hover,
  627. #floatbtn .floatbtn-item:hover {
  628. background: #007bff;
  629. }
  630. #floatbtn > a:hover i,
  631. #floatbtn .floatbtn-item:hover i {
  632. color: #fff;
  633. }
  634. #floatbtn > a:hover .floatbtn-wrapper,
  635. #floatbtn .floatbtn-item:hover .floatbtn-wrapper {
  636. display: block;
  637. }
  638. #floatbtn .iconfont {
  639. display: inline-block;
  640. font: normal normal normal 14px/1 iconfont;
  641. font-size: inherit;
  642. }
  643. .floatbtn-wrapper {
  644. position: absolute;
  645. right: 59px;
  646. top: -55px;
  647. z-index: 120;
  648. display: none;
  649. width: 190px;
  650. height: 212px;
  651. background-color: #fff;
  652. border: 1px solid #eee;
  653. }
  654. .floatbtn-wrapper:before {
  655. content: "";
  656. position: absolute;
  657. right: -12px;
  658. top: 0;
  659. height: 200px;
  660. width: 12px;
  661. background: transparent;
  662. }
  663. .floatbtn-wrapper:after {
  664. content: "";
  665. position: absolute;
  666. right: -6px;
  667. top: 73px;
  668. display: block;
  669. width: 0;
  670. height: 0;
  671. border-left: 6px solid #d5d5d5;
  672. border-top: 6px solid transparent;
  673. border-bottom: 6px solid transparent;
  674. }
  675. .floatbtn-wrapper > .qrcode {
  676. margin-top: 20px;
  677. line-height: 1;
  678. }
  679. .floatbtn-wrapper > .qrcode > img {
  680. width: 128px;
  681. height: 128px;
  682. }
  683. .floatbtn-wrapper p {
  684. font-size: 14px;
  685. line-height: 20px;
  686. color: #999;
  687. }
  688. .floatbtn-wrapper p em {
  689. color: #dd3067;
  690. }
  691. .floatbtn-share .floatbtn-wrapper:after {
  692. top: 18px;
  693. }
  694. .floatbtn-share .floatbtn-wrapper .social-share .icon-wechat .wechat-qrcode p {
  695. font-size: 12px;
  696. }
  697. .text-primary,
  698. .text-primary:hover {
  699. color: #444c69;
  700. }
  701. .text-success,
  702. .text-success:hover {
  703. color: #18bc9c;
  704. }
  705. .text-danger,
  706. .text-danger:hover {
  707. color: #f75444;
  708. }
  709. .text-warning,
  710. .text-warning:hover {
  711. color: #f39c12;
  712. }
  713. .text-info,
  714. .text-info:hover {
  715. color: #1688f1;
  716. }
  717. .well {
  718. -webkit-box-shadow: none;
  719. -moz-box-shadow: none;
  720. box-shadow: none;
  721. }
  722. .responsive-container {
  723. position: relative;
  724. width: 100%;
  725. border: 1px solid #f8f8f8;
  726. }
  727. footer {
  728. padding: 0;
  729. background: #1f2730;
  730. color: #fff;
  731. }
  732. footer a {
  733. color: #fff;
  734. }
  735. footer a:hover {
  736. color: #007bff;
  737. }
  738. .nav-sidebar li.active a {
  739. text-decoration: none;
  740. background-color: #ecf0f1;
  741. }
  742. .navbar-toggle .icon-bar {
  743. width: 18px;
  744. }
  745. .footer-inner {
  746. padding: 2em 0;
  747. }
  748. .footer-inner .copyright {
  749. margin-bottom: 20px !important;
  750. line-height: 1.5;
  751. }
  752. .footer-inner .footer-logo a {
  753. padding: 15px 15px;
  754. background: rgba(0, 0, 0, 0.1);
  755. font-size: 40px;
  756. font-weight: 700;
  757. }
  758. .footer-inner .footer-logo a:hover,
  759. .footer-inner .footer-logo a:focus {
  760. text-decoration: none;
  761. }
  762. .footer-inner h3 {
  763. font-weight: 400;
  764. margin-bottom: 20px;
  765. }
  766. .footer-inner p {
  767. font-weight: 400;
  768. }
  769. .footer-inner p:last-child {
  770. margin-bottom: 0;
  771. }
  772. .footer-inner .links {
  773. padding: 0;
  774. margin: 0 0 20px 0;
  775. }
  776. .footer-inner .links li {
  777. list-style: none;
  778. padding: 5px 0;
  779. }
  780. .footer-inner .links li a:hover {
  781. text-decoration: underline;
  782. }
  783. .footer-inner .footer-social {
  784. text-align: right;
  785. margin-top: 0;
  786. }
  787. .footer-inner .footer-social a {
  788. margin-right: 15px;
  789. margin-bottom: 10px;
  790. font-size: 20px;
  791. }
  792. .footer-inner .footer-social a:hover {
  793. text-decoration: none;
  794. }
  795. .article-list {
  796. padding: 0;
  797. background: #fff;
  798. }
  799. .article-list .embed-responsive-4by3,
  800. .article-list .embed-responsive-square {
  801. border-radius: 5px;
  802. }
  803. .article-list .article-item {
  804. padding: 20px 0;
  805. border-bottom: 1px solid #efefef;
  806. }
  807. .article-list .article-item .content {
  808. margin-top: 15px;
  809. color: #919191;
  810. }
  811. .article-list .gallery-article {
  812. margin-top: 0;
  813. }
  814. .article-list .gallery-article .row {
  815. margin: 0 -10px;
  816. }
  817. .article-list .gallery-article .article-title {
  818. margin-bottom: 10px;
  819. }
  820. .article-list .gallery-article .article-title span.highlight {
  821. color: red;
  822. }
  823. .article-list .gallery-article .media .media-body {
  824. padding-left: 0;
  825. }
  826. .article-list .gallery-article .media .media-body .article-tag {
  827. position: relative;
  828. margin-top: 10px;
  829. }
  830. .article-list .article-title {
  831. margin: 0;
  832. font-size: 1.25em;
  833. line-height: 1.45;
  834. color: #000;
  835. }
  836. .article-list .article-title a {
  837. color: #444;
  838. -webkit-transition: all 0.3s ease;
  839. -moz-transition: all 0.3s ease;
  840. -o-transition: all 0.3s ease;
  841. transition: all 0.3s ease;
  842. }
  843. .article-list .article-title a span.highlight {
  844. color: red;
  845. }
  846. .article-list .article-title a:hover {
  847. color: #007bff;
  848. -webkit-transition: all 0.3s ease;
  849. -moz-transition: all 0.3s ease;
  850. -o-transition: all 0.3s ease;
  851. transition: all 0.3s ease;
  852. }
  853. .article-list .article-title a .img-new {
  854. margin-left: 2px;
  855. margin-bottom: 2px;
  856. height: 16px;
  857. }
  858. .article-list .article-intro {
  859. height: 44px;
  860. line-height: 22px;
  861. color: #828a92;
  862. overflow: hidden;
  863. text-overflow: ellipsis;
  864. -webkit-box-orient: vertical;
  865. display: -webkit-box;
  866. -webkit-line-clamp: 2;
  867. }
  868. .article-list .media {
  869. color: #919191;
  870. }
  871. .article-list .media .media-body {
  872. padding-left: 20px;
  873. line-height: 25px;
  874. }
  875. .article-list .media .media-left {
  876. overflow: hidden;
  877. padding: 0;
  878. }
  879. .article-list .media .media-left a {
  880. display: block;
  881. width: 160px;
  882. }
  883. .article-list .media-body {
  884. position: relative;
  885. }
  886. .article-list .media-body .article-tag {
  887. display: block;
  888. clear: both;
  889. position: absolute;
  890. bottom: 0;
  891. color: #aaa;
  892. font-size: 13px;
  893. }
  894. .article-list .media-body .article-tag span {
  895. margin: 0 8px;
  896. }
  897. .article-list .media-body .article-tag span a {
  898. color: #aaa;
  899. }
  900. .article-list .media-body .article-tag .pull-left {
  901. height: 34px;
  902. line-height: 34px;
  903. color: #919191;
  904. }
  905. .article-list .media-body .article-tag .pull-left a {
  906. color: #919191;
  907. }
  908. .article-list .pager {
  909. margin: 40px 0 20px 0;
  910. }
  911. .article-metas {
  912. overflow: hidden;
  913. }
  914. .article-metas .metas-title {
  915. margin: 0;
  916. font-size: 1.65em;
  917. line-height: 1.45;
  918. margin-bottom: 5px;
  919. color: #444;
  920. }
  921. .article-metas .metas-title a {
  922. color: #444;
  923. -webkit-transition: all 0.3s ease;
  924. -moz-transition: all 0.3s ease;
  925. -o-transition: all 0.3s ease;
  926. transition: all 0.3s ease;
  927. }
  928. .article-metas .metas-title a:hover {
  929. color: #007bff;
  930. -webkit-transition: all 0.3s ease;
  931. -moz-transition: all 0.3s ease;
  932. -o-transition: all 0.3s ease;
  933. transition: all 0.3s ease;
  934. }
  935. .article-metas .metas-body {
  936. color: #999;
  937. margin: 0px auto;
  938. }
  939. .article-metas .metas-body span {
  940. margin-right: 10px;
  941. }
  942. .article-metas .metas-body span i {
  943. margin-right: 5px;
  944. }
  945. .article-metas .metas-body p {
  946. margin-bottom: 0;
  947. margin-top: 0px;
  948. font-size: 12px;
  949. }
  950. .article-text {
  951. line-height: 30px;
  952. margin-bottom: 15px;
  953. }
  954. .article-text img {
  955. margin: 10px auto;
  956. display: block;
  957. max-width: 100%;
  958. height: auto;
  959. cursor: zoom-in;
  960. -webkit-border-radius: 2px;
  961. -webkit-background-clip: padding-box;
  962. -moz-border-radius: 2px;
  963. -moz-background-clip: padding;
  964. border-radius: 2px;
  965. background-clip: padding-box;
  966. }
  967. .article-text ul li {
  968. line-height: 30px;
  969. }
  970. .article-text a {
  971. text-decoration: none;
  972. color: #007bff;
  973. border-bottom: 1px solid #b3d7ff;
  974. }
  975. .article-text a img {
  976. cursor: pointer;
  977. }
  978. .article-action-btn {
  979. color: #999;
  980. }
  981. .article-action-btn a {
  982. color: #999;
  983. }
  984. .article-action-btn .bdshare-button-style0-16 .bds_more {
  985. float: none;
  986. padding: 0;
  987. height: inherit;
  988. line-height: inherit;
  989. font-size: inherit;
  990. background: none;
  991. color: #999;
  992. }
  993. .article-prevnext {
  994. color: #666;
  995. }
  996. .entry-meta ul {
  997. overflow: hidden;
  998. margin: 0 0 10px 0;
  999. padding: 0 0 10px 0;
  1000. border-bottom: 1px solid #eeeeee;
  1001. }
  1002. .entry-meta ul li {
  1003. line-height: 26px;
  1004. }
  1005. .related-article,
  1006. .gallery-article {
  1007. margin-top: 10px;
  1008. }
  1009. .related-article .row,
  1010. .gallery-article .row {
  1011. margin: 0 -5px;
  1012. }
  1013. .related-article .col-sm-3,
  1014. .gallery-article .col-sm-3 {
  1015. padding: 0 10px;
  1016. }
  1017. .related-article .col-sm-3 a,
  1018. .gallery-article .col-sm-3 a {
  1019. display: block;
  1020. }
  1021. .related-article .embed-responsive-4by3,
  1022. .gallery-article .embed-responsive-4by3 {
  1023. border-radius: 5px;
  1024. }
  1025. @media (max-width: 480px) {
  1026. .related-article .row,
  1027. .gallery-article .row {
  1028. margin: 0 -5px !important;
  1029. }
  1030. .related-article .col-sm-3,
  1031. .gallery-article .col-sm-3 {
  1032. padding: 0 5px 10px 5px;
  1033. }
  1034. }
  1035. @media (max-width: 767px) {
  1036. .article-list .row,
  1037. .gallery-article .row {
  1038. margin: 0 -5px !important;
  1039. }
  1040. .article-list .col-sm-3,
  1041. .gallery-article .col-sm-3 {
  1042. padding: 0 5px 10px 5px;
  1043. }
  1044. }
  1045. @media (max-width: 1200px) {
  1046. .article-list .media-body .article-tag {
  1047. position: relative;
  1048. bottom: inherit;
  1049. margin-top: 5px;
  1050. }
  1051. }
  1052. .related-page ul li.active a {
  1053. color: #007bff;
  1054. }
  1055. .author-card {
  1056. background: #fff none repeat scroll 0 0;
  1057. /*border: 1px solid #e1e8ed;*/
  1058. border-radius: 4px;
  1059. padding-bottom: 15px;
  1060. }
  1061. .author-card .author-head {
  1062. background-image: url("../img/author-head.jpeg");
  1063. background-position: 0 50%;
  1064. background-size: 100% auto;
  1065. border-bottom: 1px solid #e1e8ed;
  1066. border-radius: 4px 4px 0 0;
  1067. height: 100px;
  1068. width: 100%;
  1069. }
  1070. .author-card .author-avatar {
  1071. text-align: center;
  1072. }
  1073. .author-card .author-avatar > a {
  1074. background-color: #fff;
  1075. border-radius: 50%;
  1076. display: inline-block;
  1077. margin: -40px 5px 0 0;
  1078. max-width: 100%;
  1079. padding: 1px;
  1080. vertical-align: bottom;
  1081. }
  1082. .author-card .author-avatar > a > img {
  1083. border: 2px solid #fff;
  1084. border-radius: 50%;
  1085. color: #fff;
  1086. height: 80px;
  1087. width: 80px;
  1088. }
  1089. .author-card .author-basic {
  1090. clear: both;
  1091. text-align: center;
  1092. width: 100%;
  1093. margin: 10px 0 10px 0;
  1094. }
  1095. .author-card .author-basic .author-nickname {
  1096. margin-bottom: 5px;
  1097. }
  1098. .author-card .author-basic .author-nickname > a {
  1099. font-size: 18px;
  1100. font-weight: 700;
  1101. line-height: 21px;
  1102. }
  1103. .author-card .author-statistics {
  1104. padding: 5px 0;
  1105. text-align: center;
  1106. margin: 0;
  1107. }
  1108. .author-card .author-statistics .statistics-text {
  1109. color: #777;
  1110. margin-bottom: 5px;
  1111. }
  1112. .author-card .author-statistics .statistics-nums {
  1113. font-size: 16px;
  1114. font-weight: 600;
  1115. }
  1116. .panel-default {
  1117. border: none;
  1118. padding: 0 15px;
  1119. -webkit-box-shadow: none;
  1120. -moz-box-shadow: none;
  1121. box-shadow: none;
  1122. -webkit-border-radius: 2px;
  1123. -webkit-background-clip: padding-box;
  1124. -moz-border-radius: 2px;
  1125. -moz-background-clip: padding;
  1126. border-radius: 2px;
  1127. background-clip: padding-box;
  1128. }
  1129. .panel-default > .panel-heading {
  1130. position: relative;
  1131. padding: 15px 0;
  1132. background: #fff;
  1133. border-bottom: 1px solid #f5f5f5;
  1134. }
  1135. .panel-default > .panel-heading .panel-title {
  1136. font-size: 16px;
  1137. /*color: @gray-dark;*/
  1138. }
  1139. .panel-default > .panel-heading .panel-title > i {
  1140. display: none;
  1141. }
  1142. .panel-default > .panel-heading small {
  1143. font-weight: normal;
  1144. color: #999;
  1145. font-size: 13px;
  1146. }
  1147. .panel-default > .panel-heading .more {
  1148. position: absolute;
  1149. top: 13px;
  1150. right: 0;
  1151. display: block;
  1152. color: #919191;
  1153. -webkit-transition: all 0.3s ease;
  1154. -moz-transition: all 0.3s ease;
  1155. -o-transition: all 0.3s ease;
  1156. transition: all 0.3s ease;
  1157. font-weight: 400;
  1158. font-size: 13px;
  1159. }
  1160. .panel-default > .panel-heading .more:hover {
  1161. color: #616161;
  1162. -webkit-transition: all 0.3s ease;
  1163. -moz-transition: all 0.3s ease;
  1164. -o-transition: all 0.3s ease;
  1165. transition: all 0.3s ease;
  1166. }
  1167. .panel-default > .panel-heading div.more {
  1168. top: 17px;
  1169. }
  1170. .panel-default > .panel-heading .panel-bar {
  1171. position: absolute;
  1172. top: 7px;
  1173. right: 0;
  1174. display: block;
  1175. }
  1176. .panel-default > .panel-footer {
  1177. padding: 15px 0;
  1178. background: none;
  1179. }
  1180. .panel-default > .panel-body {
  1181. position: relative;
  1182. padding: 15px 0;
  1183. }
  1184. .panel-primary > .panel-heading {
  1185. background-color: #46c37b;
  1186. color: #fff;
  1187. }
  1188. .panel-primary > .panel-body {
  1189. background: #fafafa;
  1190. border-bottom-left-radius: 2px;
  1191. border-bottom-right-radius: 2px;
  1192. }
  1193. .panel-gray {
  1194. -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  1195. -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  1196. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  1197. }
  1198. .panel-gray > .panel-heading {
  1199. background-color: #f5f5f5;
  1200. color: #919191;
  1201. }
  1202. .panel-gray > .panel-body {
  1203. color: #919191;
  1204. background: #fff;
  1205. border-bottom-left-radius: 4px;
  1206. border-bottom-right-radius: 4px;
  1207. }
  1208. .panel-page {
  1209. padding: 45px 50px 50px;
  1210. min-height: 500px;
  1211. }
  1212. .panel-page .panel-heading {
  1213. background: transparent;
  1214. border-bottom: none;
  1215. margin: 0 0 30px 0;
  1216. padding: 0;
  1217. }
  1218. .panel-page .panel-heading h2 {
  1219. font-size: 25px;
  1220. margin-top: 0;
  1221. }
  1222. .tabs-wrapper {
  1223. -webkit-border-radius: 4px;
  1224. -webkit-background-clip: padding-box;
  1225. -moz-border-radius: 4px;
  1226. -moz-background-clip: padding;
  1227. border-radius: 4px;
  1228. background-clip: padding-box;
  1229. background-color: #fff;
  1230. }
  1231. .tabs-wrapper .tabs-mark-group .title {
  1232. width: 90px;
  1233. margin-top: 3px;
  1234. float: left;
  1235. }
  1236. .tabs-wrapper .tabs-mark-group .classify {
  1237. margin-top: 3px;
  1238. }
  1239. .tabs-wrapper .tabs-mark-group .classify a,
  1240. .tabs-wrapper .tabs-mark-group .classify i {
  1241. color: #919191;
  1242. }
  1243. .tabs-wrapper .tabs-mark-group .classify a:focus,
  1244. .tabs-wrapper .tabs-mark-group .classify a:hover {
  1245. color: #43bc60;
  1246. }
  1247. .tabs-wrapper .tabs-mark-group .content {
  1248. margin-left: 100px;
  1249. }
  1250. .tabs-wrapper .tabs-mark {
  1251. margin: 0 4px;
  1252. }
  1253. .tabs-wrapper .tabs-mark a {
  1254. border: 1px solid #e4ecf3;
  1255. padding: 2px 5px;
  1256. color: #919191;
  1257. }
  1258. .tabs-wrapper .tabs-mark i {
  1259. font-size: 10px;
  1260. margin-left: 5px;
  1261. }
  1262. .tabs-wrapper .tabs-mark.active a,
  1263. .tabs-wrapper .tabs-mark:focus a,
  1264. .tabs-wrapper .tabs-mark:hover a {
  1265. color: #43bc60;
  1266. border: 1px solid #43bc60;
  1267. }
  1268. .tabs-wrapper .tabs-group {
  1269. position: relative;
  1270. overflow-y: hidden;
  1271. }
  1272. .tabs-wrapper .tabs-group .title {
  1273. float: left;
  1274. padding: 10px 0;
  1275. width: 80px;
  1276. display: block;
  1277. overflow: hidden;
  1278. text-overflow: ellipsis;
  1279. white-space: nowrap;
  1280. word-wrap: normal;
  1281. }
  1282. .tabs-wrapper .tabs-group .content {
  1283. list-style: none;
  1284. padding: 0;
  1285. margin: 0 0 0 60px;
  1286. }
  1287. .tabs-wrapper .tabs-group .content > li {
  1288. float: left;
  1289. padding: 5px 12px;
  1290. }
  1291. .tabs-wrapper .tabs-group .content > li > a {
  1292. display: block;
  1293. padding: 5px 10px;
  1294. border: none;
  1295. -webkit-border-radius: 4px;
  1296. -webkit-background-clip: padding-box;
  1297. -moz-border-radius: 4px;
  1298. -moz-background-clip: padding;
  1299. border-radius: 4px;
  1300. background-clip: padding-box;
  1301. color: #828a92;
  1302. -webkit-transition: all 0.3s ease;
  1303. -moz-transition: all 0.3s ease;
  1304. -o-transition: all 0.3s ease;
  1305. transition: all 0.3s ease;
  1306. }
  1307. .tabs-wrapper .tabs-group .content > li.active > a,
  1308. .tabs-wrapper .tabs-group .content > li:focus > a,
  1309. .tabs-wrapper .tabs-group .content > li:hover > a {
  1310. color: #007bff;
  1311. }
  1312. .tabs-wrapper .tabs-group .tabs-toggle {
  1313. position: absolute;
  1314. right: 20px;
  1315. top: 18px;
  1316. font-size: 12px;
  1317. line-height: 1;
  1318. cursor: pointer;
  1319. }
  1320. .tabs-multiple .tabs-group .content > li > a {
  1321. margin: 2px 0;
  1322. display: block;
  1323. padding: 3px 10px;
  1324. -webkit-border-radius: 3px;
  1325. -webkit-background-clip: padding-box;
  1326. -moz-border-radius: 3px;
  1327. -moz-background-clip: padding;
  1328. border-radius: 3px;
  1329. background-clip: padding-box;
  1330. }
  1331. .tabs-multiple .tabs-group .content > li.active > a {
  1332. color: #007bff;
  1333. background: #b3d7ff;
  1334. }
  1335. @media (max-width: 767px) {
  1336. .tabs-wrapper .tabs-group .title {
  1337. width: 100%;
  1338. float: none;
  1339. }
  1340. .tabs-wrapper .tabs-group .content {
  1341. margin: 0;
  1342. }
  1343. .tabs-wrapper .tabs-group .content > li {
  1344. padding: 5px;
  1345. }
  1346. .tabs-wrapper .tabs-group + .tabs-group {
  1347. border-top: none;
  1348. }
  1349. }
  1350. h1 .breadcrumb {
  1351. padding: 0 5px;
  1352. margin-bottom: 5px;
  1353. background: none;
  1354. }
  1355. h1 .breadcrumb li {
  1356. font-size: 12px;
  1357. font-weight: 400;
  1358. }
  1359. .carousel-focus .item .carousel-img {
  1360. background-size: cover;
  1361. width: 100%;
  1362. height: 180px;
  1363. background-position: center center;
  1364. -webkit-transition: all 0.3s;
  1365. -moz-transition: all 0.3s;
  1366. -o-transition: all 0.3s;
  1367. transition: all 0.3s;
  1368. }
  1369. .carousel-focus:hover .carousel-img {
  1370. -webkit-transform: scale(1.02);
  1371. -moz-transform: scale(1.02);
  1372. -o-transform: scale(1.02);
  1373. -ms-transform: scale(1.02);
  1374. transform: scale(1.02);
  1375. }
  1376. .carousel-focus .carousel-control.left,
  1377. .carousel-focus .carousel-control.right {
  1378. background-image: none;
  1379. }
  1380. .carousel-focus .carousel-control.left span,
  1381. .carousel-focus .carousel-control.right span {
  1382. display: none;
  1383. }
  1384. .carousel-focus .carousel-control.left:hover,
  1385. .carousel-focus .carousel-control.right:hover {
  1386. -webkit-transition: all 1s ease;
  1387. -moz-transition: all 1s ease;
  1388. -o-transition: all 1s ease;
  1389. transition: all 1s ease;
  1390. }
  1391. .carousel-focus .carousel-control.left:hover span,
  1392. .carousel-focus .carousel-control.right:hover span {
  1393. display: block;
  1394. }
  1395. .panel-blockimg {
  1396. border: none;
  1397. -webkit-box-shadow: none;
  1398. -moz-box-shadow: none;
  1399. box-shadow: none;
  1400. }
  1401. .panel-blockimg img {
  1402. width: 100%;
  1403. }
  1404. .hot-tags .panel-body a span {
  1405. margin-bottom: 10px;
  1406. }
  1407. .tags {
  1408. margin: 0;
  1409. display: inline-block;
  1410. }
  1411. .tags .tag {
  1412. margin-bottom: 8px;
  1413. }
  1414. .tag {
  1415. display: inline-block;
  1416. padding: 0 8px;
  1417. height: 24px;
  1418. line-height: 24px;
  1419. font-weight: 400;
  1420. font-size: 13px;
  1421. text-align: center;
  1422. color: #007bff;
  1423. background: #e5f2ff;
  1424. margin-right: 3px;
  1425. border-radius: 2px;
  1426. }
  1427. .tag img {
  1428. width: 16px;
  1429. height: 16px;
  1430. margin-top: -1px;
  1431. margin-right: 3px;
  1432. }
  1433. .tag[href]:focus,
  1434. .tag[href]:hover {
  1435. background-color: #007bff;
  1436. color: #fff;
  1437. text-decoration: none;
  1438. }
  1439. .tag-xs {
  1440. padding: 0 6px;
  1441. height: 20px;
  1442. line-height: 20px;
  1443. font-size: 12px;
  1444. }
  1445. .tag-sm {
  1446. padding: 0 6px;
  1447. height: 22px;
  1448. line-height: 22px;
  1449. font-size: 13px;
  1450. }
  1451. .tag-lg {
  1452. font-size: 16px;
  1453. font-weight: 700;
  1454. height: 30px;
  1455. line-height: 28px;
  1456. }
  1457. .tag-link {
  1458. background-color: transparent;
  1459. }
  1460. .tag-logo {
  1461. padding-left: 25px;
  1462. background-repeat: no-repeat;
  1463. background-position: 4px 2px;
  1464. background-size: 16px 16px;
  1465. }
  1466. .tag-success {
  1467. background-color: #dff0d8;
  1468. color: #18bc9c;
  1469. }
  1470. .tag-info {
  1471. background-color: #d9edf7;
  1472. color: #3498db;
  1473. }
  1474. .tag-warning {
  1475. background-color: #fcf8e3;
  1476. color: #f39c12;
  1477. }
  1478. .tag-danger {
  1479. background-color: #f2dede;
  1480. color: #e74c3c;
  1481. }
  1482. .product-item .card {
  1483. border-radius: 3px;
  1484. position: relative;
  1485. padding: 12px;
  1486. margin: 0 auto 20px;
  1487. -webkit-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  1488. -moz-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  1489. -o-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  1490. transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  1491. border: 1px solid #eee;
  1492. min-height: 250px;
  1493. overflow: hidden;
  1494. background-color: #fff;
  1495. }
  1496. .product-item .card .thumb {
  1497. position: relative;
  1498. -webkit-transition: all 0.5s ease-out 0s;
  1499. -moz-transition: all 0.5s ease-out 0s;
  1500. -o-transition: all 0.5s ease-out 0s;
  1501. transition: all 0.5s ease-out 0s;
  1502. margin: -12px;
  1503. }
  1504. .product-item .card .thumb > .preview-link::before {
  1505. background: rgba(0, 0, 0, 0.2);
  1506. opacity: 0;
  1507. z-index: 1;
  1508. position: absolute;
  1509. top: 0;
  1510. left: 0;
  1511. bottom: 0;
  1512. right: 0;
  1513. content: "";
  1514. -webkit-transition: all 0.5s ease-out 0s;
  1515. -moz-transition: all 0.5s ease-out 0s;
  1516. -o-transition: all 0.5s ease-out 0s;
  1517. transition: all 0.5s ease-out 0s;
  1518. }
  1519. .product-item .card .thumb > .quickview-link {
  1520. display: block;
  1521. width: 40px;
  1522. height: 40px;
  1523. position: absolute;
  1524. top: 0;
  1525. right: 0;
  1526. left: 0;
  1527. bottom: 0;
  1528. margin: auto;
  1529. line-height: 40px;
  1530. text-align: center;
  1531. z-index: 10;
  1532. background: #000;
  1533. border-radius: 50%;
  1534. opacity: 0;
  1535. visibility: hidden;
  1536. color: #fff;
  1537. transform: scale(0);
  1538. -webkit-transform: scale(0);
  1539. transition: all 0.3s ease-out 0s;
  1540. -webkit-transition: all 0.3s ease-out 0s;
  1541. }
  1542. .product-item .card .thumb:hover .preview-link::before {
  1543. opacity: 1;
  1544. }
  1545. .product-item .card .thumb:hover .quickview-link {
  1546. opacity: 1;
  1547. visibility: visible;
  1548. transform: scale(1);
  1549. -webkit-transform: scale(1);
  1550. }
  1551. .product-item .card:hover {
  1552. -webkit-transform: translateY(-6px);
  1553. -moz-transform: translateY(-6px);
  1554. -o-transform: translateY(-6px);
  1555. -ms-transform: translateY(-6px);
  1556. transform: translateY(-6px);
  1557. -webkit-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  1558. -moz-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  1559. box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  1560. -webkit-transition: all 0.3s ease;
  1561. -moz-transition: all 0.3s ease;
  1562. -o-transition: all 0.3s ease;
  1563. transition: all 0.3s ease;
  1564. }
  1565. .product-item .card:hover .operate .pull-right {
  1566. display: block;
  1567. }
  1568. .product-item .card .image {
  1569. position: relative;
  1570. width: 100%;
  1571. height: 1px;
  1572. overflow: hidden;
  1573. padding-bottom: 75%;
  1574. background-repeat: no-repeat;
  1575. background-size: cover;
  1576. background-position: center center;
  1577. }
  1578. .product-item .card .title {
  1579. padding-top: 10px;
  1580. }
  1581. .product-item .card h2 {
  1582. color: #000;
  1583. padding: 0;
  1584. margin-bottom: 5px;
  1585. height: 24px;
  1586. margin-top: 15px;
  1587. font-size: 14px;
  1588. font-weight: 400;
  1589. line-height: 24px;
  1590. text-align: left;
  1591. overflow: hidden;
  1592. text-overflow: ellipsis;
  1593. -webkit-box-orient: vertical;
  1594. display: -webkit-box;
  1595. -webkit-line-clamp: 1;
  1596. }
  1597. .product-item .card .operate {
  1598. height: 31px;
  1599. overflow: hidden;
  1600. }
  1601. .product-item .card .operate .pull-right {
  1602. display: none;
  1603. }
  1604. #content-container > h1 {
  1605. margin-top: 0;
  1606. }
  1607. body {
  1608. display: flex;
  1609. flex-direction: column;
  1610. }
  1611. .main-content {
  1612. padding-bottom: 15px;
  1613. flex-grow: 1;
  1614. }
  1615. footer {
  1616. flex-grow: 0;
  1617. flex-shrink: 0;
  1618. }
  1619. @media (max-width: 768px) {
  1620. .main-content > .container {
  1621. padding-left: 0;
  1622. padding-right: 0;
  1623. overflow-x: hidden;
  1624. }
  1625. .main-content > .container > .category-title {
  1626. padding: 0 15px;
  1627. font-size: 20px;
  1628. }
  1629. .navbar-inverse {
  1630. height: 100vh;
  1631. max-height: 100vh;
  1632. padding-bottom: 50px;
  1633. }
  1634. .navbar-inverse ul.dropdown-menu {
  1635. background: #333333;
  1636. }
  1637. .navbar-inverse ul.navbar-nav > li {
  1638. margin-bottom: 1px;
  1639. }
  1640. .navbar-inverse ul.navbar-nav > li.open > a {
  1641. background-color: #080808;
  1642. }
  1643. .navbar-white .navbar-nav .open .dropdown-menu {
  1644. background: #eee;
  1645. }
  1646. .footer-logo {
  1647. margin-bottom: 20px;
  1648. }
  1649. .product-item .card .operate .pull-right {
  1650. display: inherit;
  1651. }
  1652. }
  1653. .lasest-update .panel-body {
  1654. padding: 8px 0;
  1655. }
  1656. .lasest-update .panel-body ul {
  1657. margin-bottom: 0;
  1658. }
  1659. .lasest-update .panel-body ul li {
  1660. white-space: nowrap;
  1661. overflow: hidden;
  1662. text-overflow: ellipsis;
  1663. position: relative;
  1664. height: 35px;
  1665. line-height: 35px;
  1666. }
  1667. .channel-list .row .col-xs-12 {
  1668. min-height: 315px;
  1669. }
  1670. .channel-list .row .col-xs-12 h3 {
  1671. border-bottom: 1px solid #eee;
  1672. padding-bottom: 10px;
  1673. position: relative;
  1674. }
  1675. .channel-list .row .col-xs-12 h3 > a {
  1676. font-size: 16px;
  1677. position: relative;
  1678. padding-left: 6px;
  1679. }
  1680. .channel-list .row .col-xs-12 h3 > a:before {
  1681. position: absolute;
  1682. top: 2px;
  1683. left: 0px;
  1684. content: ' ';
  1685. width: 2px;
  1686. height: 15px;
  1687. background: #007bff;
  1688. display: inline-block;
  1689. }
  1690. .channel-list .row .col-xs-12 h3 em {
  1691. position: absolute;
  1692. right: 5px;
  1693. top: 2px;
  1694. font-style: normal;
  1695. font-weight: 400;
  1696. }
  1697. .channel-list .row .col-xs-12 h3 em a {
  1698. font-size: 12px;
  1699. }
  1700. .channel-list .row .media {
  1701. margin-bottom: 10px;
  1702. }
  1703. .channel-list .row .media .media-left a {
  1704. width: 120px;
  1705. display: block;
  1706. }
  1707. .channel-list .row .media .media-left a .embed-responsive-4by3 {
  1708. border-radius: 5px;
  1709. }
  1710. .channel-list .row .media .media-body {
  1711. font-size: 12px;
  1712. }
  1713. .channel-list .row .media .media-body p {
  1714. overflow: hidden;
  1715. text-overflow: ellipsis;
  1716. -webkit-box-orient: vertical;
  1717. display: -webkit-box;
  1718. -webkit-line-clamp: 2;
  1719. font-size: 14px;
  1720. padding-right: 15px;
  1721. }
  1722. .channel-list .row ul.inner-list li {
  1723. margin-bottom: 5px;
  1724. white-space: nowrap;
  1725. overflow: hidden;
  1726. text-overflow: ellipsis;
  1727. position: relative;
  1728. padding-right: 40px;
  1729. height: 30px;
  1730. line-height: 30px;
  1731. }
  1732. .channel-list .row ul.inner-list li a {
  1733. color: #616161;
  1734. }
  1735. .channel-list .row ul.inner-list li span {
  1736. position: absolute;
  1737. right: 0;
  1738. }
  1739. #comment-container #commentlist dl {
  1740. position: relative;
  1741. border-bottom: 1px solid #eee;
  1742. clear: both;
  1743. padding: 10px 0;
  1744. margin-bottom: 5px;
  1745. }
  1746. #comment-container #commentlist dl dt {
  1747. float: left;
  1748. margin-right: 10px;
  1749. width: 44px;
  1750. height: 44px;
  1751. display: block;
  1752. position: absolute;
  1753. }
  1754. #comment-container #commentlist dl dt img {
  1755. width: 40px;
  1756. height: 40px;
  1757. border-radius: 50%;
  1758. }
  1759. #comment-container #commentlist dl dd {
  1760. padding-left: 55px;
  1761. float: left;
  1762. width: 100%;
  1763. }
  1764. #comment-container #commentlist dl dd cite a {
  1765. color: #007bff;
  1766. }
  1767. #comment-container #commentlist dl dd small {
  1768. color: #999;
  1769. margin: 0 0 0 3px;
  1770. height: 20px;
  1771. line-height: 20px;
  1772. font-size: 10px;
  1773. }
  1774. #comment-container #commentlist dl dd small a {
  1775. display: none;
  1776. }
  1777. #comment-container #commentlist dl dd dl {
  1778. margin: 0px;
  1779. border-top: 1px solid #eee;
  1780. border-bottom: none;
  1781. padding-top: 15px;
  1782. padding-bottom: 0;
  1783. }
  1784. #comment-container #commentlist dl dd dl dd {
  1785. width: 550px;
  1786. }
  1787. #comment-container #commentlist dl dd p {
  1788. margin-top: 5px;
  1789. margin-bottom: 10px;
  1790. line-height: 24px;
  1791. }
  1792. #comment-container #commentlist dl dd p em {
  1793. font-style: normal;
  1794. display: inline-block;
  1795. padding: 0 5px;
  1796. height: 22px;
  1797. line-height: 22px;
  1798. font-weight: 400;
  1799. font-size: 13px;
  1800. text-align: center;
  1801. color: #007bff;
  1802. background: #e5f2ff;
  1803. border-radius: 2px;
  1804. }
  1805. #comment-container #commentlist cite {
  1806. font-style: normal;
  1807. }
  1808. #comment-container h3 {
  1809. position: relative;
  1810. font-size: 16px;
  1811. padding: 15px 0;
  1812. background: #fff;
  1813. }
  1814. #comment-container h3 a {
  1815. display: none;
  1816. }
  1817. #comment-container #postcomment .form-group {
  1818. margin-bottom: 10px;
  1819. }
  1820. #comment-container #postcomment label {
  1821. font-weight: normal;
  1822. }
  1823. #comment-container #postcomment a small {
  1824. display: inline !important;
  1825. }
  1826. #comment-container #postcomment textarea.form-control {
  1827. border-radius: 2px;
  1828. box-shadow: none;
  1829. border-color: #eeeeee;
  1830. }
  1831. .fieldlist dd {
  1832. display: block;
  1833. margin: 5px 0;
  1834. }
  1835. .fieldlist dd input {
  1836. display: inline-block;
  1837. width: 300px;
  1838. }
  1839. .fieldlist dd input:first-child {
  1840. width: 110px;
  1841. }
  1842. .fieldlist dd ins {
  1843. width: 110px;
  1844. display: inline-block;
  1845. text-decoration: none;
  1846. font-weight: bold;
  1847. }
  1848. .text-gray {
  1849. color: #d2d6de !important;
  1850. }
  1851. .no-padding {
  1852. padding: 0 !important;
  1853. }
  1854. .no-border {
  1855. border: none !important;
  1856. }
  1857. .pager .pagination {
  1858. margin: 0;
  1859. }
  1860. .pager .pager {
  1861. margin: 0;
  1862. }
  1863. .pager li {
  1864. margin: 0 0.4em;
  1865. display: inline-block;
  1866. }
  1867. .pager li:first-child > a,
  1868. .pager li:last-child > a,
  1869. .pager li:first-child > span,
  1870. .pager li:last-child > span {
  1871. padding: 0.5em 1.2em;
  1872. }
  1873. .pager li > a,
  1874. .pager li > span {
  1875. background: none;
  1876. border: 1px solid #e6e6e6;
  1877. border-radius: 0.25em;
  1878. padding: 0.5em 0.93em;
  1879. font-size: 14px;
  1880. }
  1881. .list-partner li {
  1882. display: inline-block;
  1883. margin: 0 12px 12px 0;
  1884. width: 140px;
  1885. text-align: center;
  1886. border: 1px solid #efefef;
  1887. }
  1888. .list-partner li img {
  1889. height: 50px;
  1890. }
  1891. .index-gallary h5,
  1892. .related-article h5 {
  1893. font-size: 14px;
  1894. overflow: hidden;
  1895. text-overflow: ellipsis;
  1896. -webkit-box-orient: vertical;
  1897. display: -webkit-box;
  1898. -webkit-line-clamp: 1;
  1899. font-weight: normal;
  1900. height: 15px;
  1901. }
  1902. .index-focus {
  1903. margin-bottom: 19px;
  1904. }
  1905. .article-content > .panel-heading {
  1906. padding: 0;
  1907. margin: 0 -15px;
  1908. }
  1909. .article-content > .panel-heading > .breadcrumb {
  1910. background: #fff;
  1911. font-size: 13px;
  1912. margin-bottom: 0;
  1913. padding: 15px;
  1914. }
  1915. .article-donate {
  1916. padding: 10px 0;
  1917. text-align: center;
  1918. }
  1919. .article-donate a {
  1920. min-width: 120px;
  1921. -webkit-border-radius: 3px;
  1922. -webkit-background-clip: padding-box;
  1923. -moz-border-radius: 3px;
  1924. -moz-background-clip: padding;
  1925. border-radius: 3px;
  1926. background-clip: padding-box;
  1927. }
  1928. .category-title {
  1929. margin-bottom: 20px;
  1930. font-size: 24px;
  1931. color: #444;
  1932. }
  1933. .category-title .breadcrumb li {
  1934. font-size: 14px;
  1935. }
  1936. .category-order li > a.active {
  1937. color: #007bff;
  1938. }
  1939. .img-zoom {
  1940. overflow: hidden;
  1941. display: inline-block;
  1942. }
  1943. .img-zoom img {
  1944. -webkit-transition: all 0.3s;
  1945. -moz-transition: all 0.3s;
  1946. -o-transition: all 0.3s;
  1947. transition: all 0.3s;
  1948. }
  1949. .img-zoom:hover img {
  1950. -webkit-transform: scale(1.1);
  1951. -moz-transform: scale(1.1);
  1952. -o-transform: scale(1.1);
  1953. -ms-transform: scale(1.1);
  1954. transform: scale(1.1);
  1955. }
  1956. .embed-responsive {
  1957. position: relative;
  1958. display: block;
  1959. height: 0;
  1960. padding: 0;
  1961. overflow: hidden;
  1962. }
  1963. .embed-responsive img {
  1964. position: absolute;
  1965. object-fit: cover;
  1966. width: 100%;
  1967. height: 100%;
  1968. border: 0;
  1969. }
  1970. .embed-responsive-16by9 {
  1971. padding-bottom: 56.25%;
  1972. }
  1973. .embed-responsive-4by3 {
  1974. padding-bottom: 75%;
  1975. }
  1976. .embed-responsive-square {
  1977. padding-bottom: 100%;
  1978. }
  1979. .list-links a {
  1980. margin-right: 5px;
  1981. }
  1982. .navbar-form {
  1983. padding-top: 5px;
  1984. }
  1985. @media (min-width: 768px) and (max-width: 991px) {
  1986. .navbar-header {
  1987. width: 44px;
  1988. overflow: hidden;
  1989. }
  1990. }
  1991. @media (max-width: 767px) {
  1992. .skin-white {
  1993. padding-top: 70px;
  1994. }
  1995. ul.dropdown-menu {
  1996. position: relative;
  1997. width: 100%;
  1998. background: #222;
  1999. }
  2000. ul.dropdown-menu .open > a,
  2001. ul.dropdown-menu .open > a:hover,
  2002. ul.dropdown-menu .open > a:focus {
  2003. background: none;
  2004. color: #9d9d9d;
  2005. }
  2006. ul.dropdown-menu > .dropdown-menu {
  2007. position: relative;
  2008. width: 100%;
  2009. margin: 0;
  2010. }
  2011. .navbar-nav .open .dropdown-menu > li > a {
  2012. line-height: 22px;
  2013. }
  2014. .navbar-nav .open .dropdown-menu {
  2015. position: relative;
  2016. width: 100%;
  2017. margin: 0;
  2018. left: 0;
  2019. background: #404950;
  2020. }
  2021. .dropdown-submenu > a:after {
  2022. display: none;
  2023. }
  2024. .panel-page {
  2025. padding: 15px;
  2026. min-height: 300px;
  2027. }
  2028. .article-list .media .media-left a {
  2029. width: 110px;
  2030. }
  2031. .article-list .media .media-body .article-title {
  2032. font-size: 1em;
  2033. }
  2034. .article-list .media-body .article-tag {
  2035. overflow: hidden;
  2036. text-overflow: ellipsis;
  2037. -webkit-box-orient: vertical;
  2038. display: -webkit-box;
  2039. -webkit-line-clamp: 1;
  2040. }
  2041. .navbar-nav {
  2042. margin: 8.25px 0;
  2043. }
  2044. .dropdown:not(.open):hover > .dropdown-menu {
  2045. display: none;
  2046. }
  2047. .article-list .media-body .article-tag span {
  2048. margin: 0 2px;
  2049. }
  2050. .article-pay a.btn {
  2051. display: block;
  2052. margin-top: 5px;
  2053. }
  2054. .navbar-form {
  2055. margin: 0;
  2056. border-top: none;
  2057. border-bottom: none;
  2058. }
  2059. .navbar-userinfo {
  2060. padding: 0;
  2061. }
  2062. .navbar-userinfo > a {
  2063. height: 50px;
  2064. }
  2065. .focus-img {
  2066. margin-top: 15px;
  2067. padding: 0 15px;
  2068. }
  2069. .focus-img > .row {
  2070. margin-left: 0;
  2071. }
  2072. }
  2073. @media (min-width: 768px) {
  2074. #index-focus .item .carousel-img {
  2075. height: 340px;
  2076. width: 100%;
  2077. }
  2078. #channel-focus .item .carousel-img {
  2079. height: 272px;
  2080. width: 100%;
  2081. }
  2082. }
  2083. @media (min-width: 979px) {
  2084. ul.nav li.dropdown:hover > ul.dropdown-menu {
  2085. display: block;
  2086. }
  2087. }
  2088. @media screen and (min-width: 768px) {
  2089. .carousel-caption {
  2090. left: 0;
  2091. right: 0;
  2092. background: rgba(0, 0, 0, 0.3);
  2093. padding: 0;
  2094. bottom: 0;
  2095. text-shadow: none;
  2096. }
  2097. .carousel-caption h3 {
  2098. margin: 0;
  2099. font-size: 14px;
  2100. padding: 15px;
  2101. text-align: left;
  2102. }
  2103. .carousel-caption p {
  2104. display: none;
  2105. }
  2106. .carousel-indicators {
  2107. bottom: 3px;
  2108. right: 15px;
  2109. width: auto;
  2110. left: inherit;
  2111. opacity: 0.6;
  2112. }
  2113. }
  2114. .carousel-control {
  2115. text-shadow: none;
  2116. }
  2117. .carousel-control .fa {
  2118. font: normal normal normal 30px/1 FontAwesome;
  2119. }
  2120. .carousel-control .icon-prev {
  2121. left: 20px;
  2122. }
  2123. .carousel-control .icon-next {
  2124. right: 20px;
  2125. }
  2126. .carousel-control .fa-chevron-left:before {
  2127. content: "\f053";
  2128. }
  2129. .carousel-control .fa-chevron-right:before {
  2130. content: "\f054";
  2131. }
  2132. .loadmore {
  2133. width: 80%;
  2134. margin: 1.5em auto;
  2135. line-height: 1.6em;
  2136. font-size: 14px;
  2137. text-align: center;
  2138. clear: both;
  2139. }
  2140. .loadmore-tips {
  2141. display: inline-block;
  2142. vertical-align: middle;
  2143. }
  2144. .loadmore-line {
  2145. border-top: 1px solid #eeeeee;
  2146. margin-top: 2.4em;
  2147. }
  2148. .loadmore-line .loadmore-tips {
  2149. position: relative;
  2150. top: -0.9em;
  2151. padding: 0 0.55em;
  2152. background-color: #FFFFFF;
  2153. color: #808080;
  2154. }
  2155. .btn-loadmore {
  2156. clear: both;
  2157. }
  2158. .download-list {
  2159. margin: 0 -15px;
  2160. }
  2161. .download-list li {
  2162. width: 95px;
  2163. float: left;
  2164. display: inline-block;
  2165. margin: 0 15px;
  2166. padding: 15px 0;
  2167. text-align: center;
  2168. position: relative;
  2169. height: 170px;
  2170. }
  2171. .download-list li a {
  2172. display: block;
  2173. }
  2174. .download-list li a p {
  2175. word-break: keep-all;
  2176. text-overflow: ellipsis;
  2177. line-height: 25px;
  2178. height: 25px;
  2179. overflow: hidden;
  2180. }
  2181. .download-list li a img + span {
  2182. display: block;
  2183. overflow: hidden;
  2184. height: 20px;
  2185. }
  2186. .download-list li:hover em {
  2187. display: none;
  2188. }
  2189. .download-list li:hover a.btn {
  2190. display: block;
  2191. width: 80px;
  2192. margin: 0 auto;
  2193. }
  2194. .download-list li a:hover {
  2195. text-decoration: none;
  2196. }
  2197. .download-list img {
  2198. width: 90px;
  2199. height: 90px;
  2200. margin-bottom: 8px;
  2201. }
  2202. .download-list em {
  2203. display: block;
  2204. color: #999;
  2205. font-style: normal;
  2206. }
  2207. .download-list li > a.link {
  2208. display: block;
  2209. height: 120px;
  2210. overflow: hidden;
  2211. border-radius: 5px;
  2212. }
  2213. .download-list li > a.link img {
  2214. border-radius: 5px;
  2215. }
  2216. .download-list a.btn {
  2217. display: none;
  2218. }
  2219. .screenshots-box > h2,
  2220. .download-box > h2,
  2221. .intro-box > h2,
  2222. .history-box > h2 {
  2223. font-size: 18px;
  2224. color: #444;
  2225. }
  2226. @media (max-width: 991px) {
  2227. .download-list li {
  2228. margin: 0 10px;
  2229. }
  2230. }
  2231. .focus-img > .row > div {
  2232. padding: 0;
  2233. padding-right: 15px;
  2234. margin-bottom: 15px;
  2235. height: 100%;
  2236. display: block;
  2237. }
  2238. .focus-img > .row > div a > span {
  2239. border-radius: 3px;
  2240. overflow: hidden;
  2241. }
  2242. .focus-img .intro {
  2243. position: absolute;
  2244. bottom: 0;
  2245. background: #000;
  2246. padding: 0 5px 0 5px;
  2247. width: 100%;
  2248. opacity: 0.5;
  2249. color: #fff;
  2250. height: 30px;
  2251. line-height: 30px;
  2252. overflow: hidden;
  2253. white-space: nowrap;
  2254. text-overflow: ellipsis;
  2255. text-align: center;
  2256. }
  2257. .focus-img a {
  2258. display: block;
  2259. }
  2260. .focus-img img {
  2261. width: 100%;
  2262. }
  2263. @media (min-width: 768px) and (max-width: 992px) {
  2264. .focus-img {
  2265. margin-top: 15px;
  2266. }
  2267. .focus-img > .row {
  2268. margin: 0 -10px;
  2269. }
  2270. .focus-img > .row > div {
  2271. padding: 0 10px;
  2272. }
  2273. }
  2274. @media (min-width: 992px) and (max-width: 1200px) {
  2275. .focus-img > .row > div .embed-responsive-16by9 {
  2276. padding-bottom: 68.25%;
  2277. }
  2278. }
  2279. .navbar .form-search input[type=search] {
  2280. -webkit-appearance: textfield;
  2281. font-family: inherit;
  2282. font-size: 100%;
  2283. }
  2284. .navbar .form-search input::-webkit-search-decoration,
  2285. .navbar .form-search input::-webkit-search-cancel-button {
  2286. display: none;
  2287. }
  2288. .navbar .form-search input[type=search] {
  2289. background: url('../img/search.svg') no-repeat 10px center;
  2290. background-size: 18px 18px;
  2291. border-color: transparent;
  2292. padding: 6px 10px;
  2293. width: 35px;
  2294. -webkit-border-radius: 10em;
  2295. -webkit-background-clip: padding-box;
  2296. -moz-border-radius: 10em;
  2297. -moz-background-clip: padding;
  2298. border-radius: 10em;
  2299. background-clip: padding-box;
  2300. -webkit-transition: all 0.5s;
  2301. -moz-transition: all 0.5s;
  2302. -o-transition: all 0.5s;
  2303. transition: all 0.5s;
  2304. height: inherit;
  2305. cursor: pointer;
  2306. box-shadow: none;
  2307. color: transparent;
  2308. }
  2309. .navbar .form-search input[type=search]:hover {
  2310. background-color: #fff;
  2311. }
  2312. .navbar .form-search input[type=search]:focus {
  2313. border-color: #007bff;
  2314. width: 200px;
  2315. padding-left: 32px;
  2316. color: #000;
  2317. background-color: #fff;
  2318. cursor: auto;
  2319. -webkit-box-shadow: 0 0 5px #99caff;
  2320. -moz-box-shadow: 0 0 5px #99caff;
  2321. box-shadow: 0 0 5px #99caff;
  2322. }
  2323. .navbar .form-search input[type=search]:focus::-moz-placeholder {
  2324. color: #999;
  2325. }
  2326. .navbar .form-search input[type=search]:focus::-webkit-input-placeholder {
  2327. color: #999;
  2328. }
  2329. .navbar .form-search input::-moz-placeholder {
  2330. color: transparent;
  2331. }
  2332. .navbar .form-search input::-webkit-input-placeholder {
  2333. color: transparent;
  2334. }
  2335. @media (min-width: 768px) {
  2336. .navbar .navbar-header {
  2337. position: relative;
  2338. z-index: 9999;
  2339. }
  2340. .navbar .navbar-collapse {
  2341. position: relative;
  2342. z-index: 9998;
  2343. }
  2344. .navbar .navbar-collapse .navbar-nav {
  2345. display: flex;
  2346. justify-content: space-around;
  2347. flex-direction: row;
  2348. white-space: nowrap;
  2349. }
  2350. .navbar .navbar-collapse .navbar-right {
  2351. position: absolute;
  2352. right: 0;
  2353. background: #fff;
  2354. }
  2355. }
  2356. @media (max-width: 767px) {
  2357. .navbar .form-search input[type=search] {
  2358. position: relative;
  2359. width: 100%;
  2360. border: 1px solid #ddd;
  2361. }
  2362. .navbar .form-search input[type=search]:focus {
  2363. width: 100%;
  2364. }
  2365. .navbar .navbar-collapse {
  2366. position: fixed;
  2367. top: 0;
  2368. overflow: auto;
  2369. z-index: 9999;
  2370. background: #fff;
  2371. box-shadow: 10px 0 10px rgba(0, 0, 0, 0.06);
  2372. max-height: inherit;
  2373. height: 100vh;
  2374. transition: 0.5s;
  2375. width: 250px;
  2376. margin-left: -280px;
  2377. margin-right: 0;
  2378. display: flex;
  2379. }
  2380. .navbar .navbar-collapse > ul.navbar-nav {
  2381. margin: 15px 0;
  2382. }
  2383. .navbar .navbar-collapse > ul.navbar-nav > li {
  2384. margin-bottom: 5px;
  2385. border-radius: 3px;
  2386. overflow: hidden;
  2387. background: #fbfbfb;
  2388. }
  2389. .navbar .navbar-collapse > ul.navbar-nav li > a b.caret {
  2390. position: absolute;
  2391. right: 15px;
  2392. top: 50%;
  2393. margin-top: -2px;
  2394. }
  2395. .navbar .navbar-collapse > ul.navbar-nav li ul.dropdown-menu {
  2396. border-radius: 0;
  2397. }
  2398. .navbar .navbar-collapse > ul.navbar-nav:first-child {
  2399. width: 100%;
  2400. }
  2401. .navbar .navbar-collapse > ul.navbar-nav.navbar-right {
  2402. width: 100%;
  2403. margin-bottom: 0;
  2404. }
  2405. .navbar .navbar-collapse.active {
  2406. margin-left: -15px;
  2407. flex-direction: column;
  2408. flex: auto;
  2409. }
  2410. .navbar .navbar-collapse.active > ul {
  2411. width: 100%;
  2412. }
  2413. .navbar .navbar-collapse.active .dropdown-submenu ul.dropdown-menu {
  2414. display: block;
  2415. }
  2416. .navbar .navbar-collapse-bg {
  2417. position: fixed;
  2418. top: 0;
  2419. overflow: hidden;
  2420. z-index: 9998;
  2421. background: transparent;
  2422. height: 100vh;
  2423. width: 100%;
  2424. display: block;
  2425. }
  2426. }
  2427. /* 搜索建议 */
  2428. .autocomplete-suggestions {
  2429. text-align: left;
  2430. cursor: default;
  2431. background: #fff;
  2432. border-radius: 2px;
  2433. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  2434. -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  2435. box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  2436. background-clip: padding-box;
  2437. position: absolute;
  2438. display: none;
  2439. z-index: 1036;
  2440. max-height: 254px;
  2441. overflow: hidden;
  2442. overflow-y: auto;
  2443. box-sizing: border-box;
  2444. }
  2445. .autocomplete-suggestions .autocomplete-suggestion {
  2446. padding: 6px 12px;
  2447. }
  2448. .autocomplete-suggestions .autocomplete-suggestion b {
  2449. color: red;
  2450. }
  2451. .autocomplete-suggestions .autocomplete-suggestion:hover {
  2452. background: #f0f0f0;
  2453. }
  2454. .layui-layer .layui-layer-confirm {
  2455. width: 100%;
  2456. height: 100%;
  2457. }
  2458. .layui-layer .layui-layer-confirm:focus {
  2459. border: 1px solid #444c69;
  2460. -webkit-border-radius: 2px;
  2461. -webkit-background-clip: padding-box;
  2462. -moz-border-radius: 2px;
  2463. -moz-background-clip: padding;
  2464. border-radius: 2px;
  2465. background-clip: padding-box;
  2466. }
  2467. .layui-layer .layui-layer-confirm:focus-visible {
  2468. outline: 0;
  2469. }