common.css 42 KB

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