list-style.css 23 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273
  1. body {
  2. font-family: 'Helvetica Neue';
  3. }
  4. .sec-00 {
  5. background-color: #cacaca;
  6. -webkit-transition-property: height;
  7. transition-property: height;
  8. -webkit-transition-duration: 300ms;
  9. transition-duration: 300ms;
  10. }
  11. .sec-00__close {
  12. position: absolute;
  13. top: 0;
  14. right: 20px;
  15. width: 50px;
  16. height: 30px;
  17. background-color: rgba(255, 255, 255, 0.66);
  18. border-radius: 0 0 50px 50px;
  19. color: #888;
  20. border: none;
  21. outline: none;
  22. font-size: 11px;
  23. -webkit-box-shadow: 0 0 10px rgba(32, 32, 32, 0.25);
  24. box-shadow: 0 0 10px rgba(32, 32, 32, 0.25);
  25. line-height: 12px;
  26. z-index: 3;
  27. }
  28. .sec-00.bannerClose {
  29. height: 0;
  30. overflow: hidden;
  31. -webkit-transition-property: height;
  32. transition-property: height;
  33. -webkit-transition-duration: 300ms;
  34. transition-duration: 300ms;
  35. }
  36. .sec-00 .container-fluid {
  37. background-color: #cacaca;
  38. }
  39. .sec-00__slider {
  40. margin: 0 auto;
  41. width: 100%;
  42. height: 100%;
  43. max-width: 1310px;
  44. padding-top: 20px;
  45. padding-bottom: 24px;
  46. }
  47. @media (max-width: 1850px) {
  48. .sec-00__slider {
  49. max-width: 1310px;
  50. }
  51. }
  52. @media (max-width: 1550px) {
  53. .sec-00__slider {
  54. max-width: 1310px;
  55. }
  56. }
  57. @media screen and (max-width: 576px) {
  58. .sec-00__slider {
  59. max-width: 100%;
  60. height: auto;
  61. }
  62. }
  63. .sec-00__slider .slide-item {
  64. width: 100%;
  65. height: 100%;
  66. max-width: 1310px;
  67. max-height: 300px;
  68. -o-object-fit: contain;
  69. object-fit: contain;
  70. height: 300px;
  71. cursor: pointer;
  72. }
  73. @media screen and (max-width: 576px) {
  74. .sec-00__slider .slide-item {
  75. max-width: 100%;
  76. height: auto;
  77. }
  78. }
  79. @media screen and (max-width: 576px) {
  80. .sec-00 .slick-next {
  81. right: 25px;
  82. }
  83. }
  84. .sec-00 .slick-prev {
  85. z-index: 100;
  86. }
  87. @media screen and (max-width: 576px) {
  88. .sec-00 .slick-prev {
  89. left: 25px;
  90. }
  91. }
  92. .sec-00 .slick-prev:before, .sec-00 .slick-next:before {
  93. display: none;
  94. }
  95. .sec-00__bulletList {
  96. position: absolute;
  97. bottom: 21px;
  98. left: calc(50% - 655px);
  99. width: 1310px;
  100. -webkit-box-sizing: border-box;
  101. box-sizing: border-box;
  102. display: -webkit-box;
  103. display: -ms-flexbox;
  104. display: flex;
  105. z-index: 10;
  106. background-color: rgba(0, 0, 0, 0.1);
  107. }
  108. @media screen and (max-width: 576px) {
  109. .sec-00__bulletList {
  110. width: 100%;
  111. left: 0px;
  112. }
  113. }
  114. .sec-00__bullet {
  115. position: relative;
  116. width: 100%;
  117. height: 3px;
  118. background-color: rgba(0, 0, 0, 0.1);
  119. -webkit-box-flex: 1;
  120. -ms-flex: 1 1 auto;
  121. flex: 1 1 auto;
  122. opacity: 1;
  123. }
  124. .sec-00__bullet::after {
  125. content: "";
  126. background: #ee7800;
  127. position: absolute;
  128. width: 0;
  129. height: 100%;
  130. left: 0;
  131. top: 0;
  132. border-radius: 2px;
  133. }
  134. .sec-00 .bullet-active::after {
  135. width: 0;
  136. -webkit-animation-name: progress;
  137. animation-name: progress;
  138. -webkit-animation-duration: 4s;
  139. animation-duration: 4s;
  140. -webkit-animation-timing-function: linear;
  141. animation-timing-function: linear;
  142. }
  143. @keyframes progress {
  144. 0% {
  145. width: 0%;
  146. }
  147. 25% {
  148. width: 25%;
  149. }
  150. 50% {
  151. width: 50%;
  152. }
  153. 75% {
  154. width: 75%;
  155. }
  156. 100% {
  157. width: 100%;
  158. }
  159. }
  160. @-webkit-keyframes progress {
  161. 0% {
  162. width: 0%;
  163. }
  164. 25% {
  165. width: 25%;
  166. }
  167. 50% {
  168. width: 50%;
  169. }
  170. 75% {
  171. width: 75%;
  172. }
  173. 100% {
  174. width: 100%;
  175. }
  176. }
  177. @-webkit-keyframes slidein {
  178. 100% {
  179. height: 0px;
  180. }
  181. }
  182. @keyframes slidein {
  183. 100% {
  184. height: 0px;
  185. }
  186. }
  187. .navbar {
  188. box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  189. -webkit-box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  190. -moz-box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  191. padding-top: 5px;
  192. padding-bottom: 5px;
  193. background-color: white !important;
  194. z-index: 99;
  195. }
  196. .navbar .container-fluid {
  197. padding: 0 2.5rem;
  198. }
  199. @media (max-width: 1100px) {
  200. .navbar .container-fluid {
  201. padding: 0 .6rem;
  202. }
  203. }
  204. .navbar-toggler {
  205. padding-left: 0;
  206. border-color: transparent !important;
  207. }
  208. .navbar-toggler:focus {
  209. -webkit-box-shadow: none;
  210. box-shadow: none;
  211. }
  212. .navbar-toggler-icon {
  213. display: -webkit-box;
  214. display: -ms-flexbox;
  215. display: flex;
  216. justify-items: center;
  217. }
  218. .navbar-toggler-icon i {
  219. font-size: 25px;
  220. line-height: 30px;
  221. display: inline-block;
  222. }
  223. .navbar-search, .navbar-login {
  224. padding-right: 2px;
  225. }
  226. .navbar-login {
  227. cursor: pointer;
  228. }
  229. .navbar-search-magnify {
  230. cursor: pointer;
  231. }
  232. .navbar-brand {
  233. font-size: 1.5rem;
  234. }
  235. .navbar-brand.navbar-logo {
  236. display: -webkit-box;
  237. display: -ms-flexbox;
  238. display: flex;
  239. -webkit-box-align: center;
  240. -ms-flex-align: center;
  241. align-items: center;
  242. }
  243. .navbar-brand .navbar-login {
  244. font-size: 1rem;
  245. color: #EE7800;
  246. text-decoration: none;
  247. }
  248. .navbar .nav-link {
  249. cursor: pointer;
  250. }
  251. @media (max-width: 1100px) {
  252. .navbar .nav-link {
  253. padding: .5rem .5rem;
  254. font-size: .9rem;
  255. }
  256. }
  257. .navbar .navbar-nav .nav-item {
  258. -webkit-appearance: none !important;
  259. margin: 0 .5rem;
  260. }
  261. @media (max-width: 1100px) {
  262. .navbar .navbar-nav .nav-item {
  263. margin: 0 0rem;
  264. }
  265. }
  266. .navbar .navbar-nav .nav-item .dropbox {
  267. visibility: hidden;
  268. opacity: 0;
  269. -webkit-transition: all .4s;
  270. transition: all .4s;
  271. position: absolute;
  272. width: 100vw;
  273. top: 100%;
  274. left: 0;
  275. background-color: rgba(255, 255, 255, 0.932);
  276. padding-top: 1.5rem;
  277. padding-bottom: 3rem;
  278. z-index: 1012;
  279. }
  280. .navbar .navbar-nav .nav-item .dropbox ul {
  281. padding-left: 0;
  282. }
  283. .navbar .navbar-nav .nav-item .dropbox-item {
  284. margin-bottom: .5rem;
  285. }
  286. .navbar .navbar-nav .nav-item .dropbox-item.first {
  287. font-size: 1.1rem;
  288. font-weight: 600;
  289. }
  290. .navbar .navbar-nav .nav-item .dropbox-item.first .dropbox-link {
  291. color: black;
  292. }
  293. .navbar .navbar-nav .nav-item .dropbox-link {
  294. text-decoration: none;
  295. color: #929292;
  296. font-size: .85rem;
  297. }
  298. .navbar .navbar-nav .nav-item .dropbox-link:hover {
  299. color: #EE7800;
  300. }
  301. .navbar .navbar-nav .nav-item .dropbox-link.dropbox-btn {
  302. border: 1px solid #929292;
  303. padding: .5rem 2rem;
  304. border-radius: 5px;
  305. width: 85%;
  306. min-width: 7rem;
  307. max-width: 11rem;
  308. }
  309. .navbar .navbar-nav .nav-item .dropbox-btn {
  310. display: -webkit-box;
  311. display: -ms-flexbox;
  312. display: flex;
  313. -webkit-box-align: center;
  314. -ms-flex-align: center;
  315. align-items: center;
  316. -webkit-box-pack: center;
  317. -ms-flex-pack: center;
  318. justify-content: center;
  319. }
  320. .navbar .navbar-nav .nav-item .dropbox .container {
  321. max-width: 900px;
  322. width: 70%;
  323. }
  324. .navbar .navbar-nav .nav-item .dropbox .container.stylebox {
  325. -webkit-transform: translateX(-30%);
  326. transform: translateX(-30%);
  327. }
  328. .navbar .navbar-nav .nav-item .dropbox .container.designerbox {
  329. -webkit-transform: translateX(-5%);
  330. transform: translateX(-5%);
  331. }
  332. .navbar .navbar-nav .nav-item .dropbox .container.newbox {
  333. -webkit-transform: translateX(15%);
  334. transform: translateX(15%);
  335. }
  336. .navbar .navbar-nav .nav-item .dropbox .container.forumbox {
  337. -webkit-transform: translateX(50%);
  338. transform: translateX(50%);
  339. }
  340. .navbar .navbar-nav .nav-item .nav-link {
  341. position: relative;
  342. -webkit-appearance: none !important;
  343. color: rgba(0, 0, 0, 0.87);
  344. font-size: 1.17rem;
  345. padding: 1.075rem 10px;
  346. }
  347. .navbar .navbar-nav .nav-item .nav-link:after {
  348. position: absolute;
  349. content: " ";
  350. width: 100%;
  351. height: 90%;
  352. top: 10px;
  353. right: 0;
  354. border-bottom: 4px solid #EE7800;
  355. opacity: 0;
  356. -webkit-transform: opacity 1s;
  357. transform: opacity 1s;
  358. }
  359. .navbar .navbar-nav .nav-item:hover .nav-link:after {
  360. opacity: 1;
  361. }
  362. .navbar .navbar-nav .nav-item:hover > .dropbox {
  363. visibility: visible;
  364. opacity: 1;
  365. }
  366. .navbar .navbar-nav .nav-item.lg .container {
  367. max-width: 1200px;
  368. width: 90%;
  369. }
  370. .navbar .navbar-nav .nav-item.lg .dropbox-link {
  371. text-decoration: none;
  372. color: #929292;
  373. font-size: .7rem;
  374. }
  375. .navbar .navbar-nav .nav-item.lg .dropbox-link:hover {
  376. color: #EE7800;
  377. }
  378. .navbar .navbar-nav .nav-item.lg .dropbox-item {
  379. margin-bottom: .1rem;
  380. }
  381. .navbar .navbar-nav .nav-item.lg .dropbox-item.first .dropbox-link {
  382. font-size: .85rem;
  383. }
  384. .navbar-search .container {
  385. max-width: 900px;
  386. width: 70%;
  387. }
  388. @media (max-width: 1100px) {
  389. .navbar-search .container {
  390. width: 90%;
  391. }
  392. }
  393. .navbar-search .dropbox {
  394. visibility: hidden;
  395. opacity: 0;
  396. -webkit-transition: all .2s;
  397. transition: all .2s;
  398. position: absolute;
  399. width: 100vw;
  400. top: 100%;
  401. left: 0;
  402. background-color: rgba(255, 255, 255, 0.932);
  403. padding-top: 1.5rem;
  404. padding-bottom: 3rem;
  405. }
  406. .navbar-search .dropbox.open {
  407. visibility: visible;
  408. opacity: 1;
  409. }
  410. .navbar-search .dropbox__searchtab {
  411. width: 100%;
  412. background-color: gray;
  413. border-radius: 3px;
  414. padding: .2rem 1rem;
  415. padding-bottom: 1rem;
  416. }
  417. .navbar-search .dropbox__hots__title {
  418. font-size: 1rem;
  419. color: #6b6b6b;
  420. }
  421. .navbar-search .dropbox__hots__link {
  422. font-size: .9rem;
  423. color: #929292;
  424. text-decoration: none;
  425. cursor: pointer;
  426. margin: 0 .2rem;
  427. }
  428. .navbar-search .dropbox__searchBar__input {
  429. width: 100%;
  430. outline: none;
  431. border: 2px solid #EE7800;
  432. border-radius: 5rem;
  433. padding: .3rem 1.2rem;
  434. font-size: .9rem;
  435. }
  436. .navbar-search .dropbox__searchBar__submit {
  437. outline: none;
  438. border: none;
  439. font-size: .9rem;
  440. background-color: transparent;
  441. color: #EE7800;
  442. margin-left: -1rem;
  443. -webkit-transform: translateX(-100%);
  444. transform: translateX(-100%);
  445. padding: 0 .6rem;
  446. }
  447. .navbar-search .dropbox__tab .nav-item {
  448. margin: 0 .6rem;
  449. -webkit-appearance: none;
  450. }
  451. .navbar-search .dropbox .nav-item-link {
  452. -webkit-appearance: none !important;
  453. background: none !important;
  454. border: none !important;
  455. outline: none !important;
  456. font-size: 1rem;
  457. color: white;
  458. padding: 3px;
  459. position: relative;
  460. }
  461. .navbar-search .dropbox .nav-item-link::after {
  462. position: absolute;
  463. content: "";
  464. top: 0;
  465. left: 0;
  466. width: 100%;
  467. height: 100%;
  468. border-bottom: 3px solid #EE7800;
  469. opacity: 0;
  470. }
  471. .navbar-search .dropbox .nav-item-link.active::after {
  472. opacity: 1;
  473. }
  474. .navbar-search .dropbox-tab-content .tabpar {
  475. display: -webkit-box;
  476. display: -ms-flexbox;
  477. display: flex;
  478. padding-top: .5rem;
  479. }
  480. .navbar-search .dropbox-tab-content .tabpar .col {
  481. margin: 0 .6rem;
  482. }
  483. .navbar-search .dropbox-tab-content .tabpar .select {
  484. font-size: 1rem;
  485. padding: .6rem;
  486. border-radius: 3px;
  487. color: #747474;
  488. }
  489. .navbar-search .dropbox-tab-content .tabpar button {
  490. border: none;
  491. outline: none;
  492. background-color: #EE7800;
  493. border-radius: 3px;
  494. color: white;
  495. font-size: 1rem;
  496. padding: .6rem;
  497. }
  498. .navbar-search .dropbox-tab-content .tabpar .image-search {
  499. border: none;
  500. outline: none;
  501. background-color: #EE7800;
  502. border-radius: 3px;
  503. color: white;
  504. font-size: 1rem;
  505. }
  506. .navbar-search .dropbox-tab-content .tabpar .article-btn {
  507. border: none;
  508. outline: none;
  509. background-color: #EE7800;
  510. border-radius: 3px;
  511. color: white;
  512. font-size: 1rem;
  513. padding: .6rem;
  514. }
  515. .navbar-search .dropbox-tab-content .tabpar .home-btn {
  516. border: none;
  517. outline: none;
  518. background-color: #EE7800;
  519. border-radius: 3px;
  520. color: white;
  521. font-size: 1rem;
  522. padding: .6rem;
  523. }
  524. .navbar-search .dropbox__tab .nav-item-link.active .nav-item-link::after {
  525. opacity: 1;
  526. }
  527. .navbar-main.sticky {
  528. position: fixed;
  529. top: 0;
  530. width: 100%;
  531. }
  532. .navbar-main.sticky + .sec-02 {
  533. padding-top: 53.5px;
  534. }
  535. .sec-02__slider {
  536. width: 100%;
  537. height: 100%;
  538. }
  539. .sec-02__slider .slide-item {
  540. width: 100%;
  541. height: 74vh;
  542. background-position: center center;
  543. background-size: cover;
  544. background-repeat: no-repeat;
  545. cursor: pointer;
  546. }
  547. .sec-02 .slick-prev:before, .sec-02 .slick-next:before {
  548. display: none;
  549. }
  550. .sec-02 .slick-prev {
  551. left: 15px;
  552. z-index: 3;
  553. }
  554. .sec-02 .slick-next {
  555. right: 15px;
  556. }
  557. a {
  558. text-decoration: none;
  559. }
  560. .text-hhh {
  561. color: #EE7800;
  562. }
  563. .content {
  564. background-color: #FCFCFC;
  565. padding: 1rem 30px 0.5rem;
  566. }
  567. .content .infoCard {
  568. color: #727679;
  569. text-align: center;
  570. padding: 1rem;
  571. background-color: rgba(244, 244, 244, 0.8);
  572. -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  573. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  574. -webkit-transform: translateY(-150px);
  575. transform: translateY(-150px);
  576. }
  577. .content .infoCard__seo {
  578. font-size: .9rem;
  579. text-align: center;
  580. padding: 1rem;
  581. display: block;
  582. line-height: 1.2;
  583. }
  584. .content .infoCard__approve {
  585. color: #FF0000;
  586. }
  587. .content .infoCard__avatar {
  588. width: 200px;
  589. height: 200px;
  590. border: 3px solid #FFF;
  591. border-radius: 50%;
  592. background-size: cover;
  593. background-repeat: no-repeat;
  594. }
  595. .content .infoCard__detail aside {
  596. line-height: 2;
  597. font-size: .9rem;
  598. }
  599. .content .infoCard__detail__l {
  600. -ms-flex-preferred-size: 30%;
  601. flex-basis: 30%;
  602. display: -webkit-box;
  603. display: -ms-flexbox;
  604. display: flex;
  605. -webkit-box-pack: end;
  606. -ms-flex-pack: end;
  607. justify-content: flex-end;
  608. -webkit-box-flex: 0;
  609. -ms-flex-positive: 0;
  610. flex-grow: 0;
  611. max-width: 30%;
  612. }
  613. .content .infoCard__detail__l.title {
  614. color: #AAAAAA;
  615. font-size: 1.125rem;
  616. font-weight: 400;
  617. -webkit-transform: translateX(-15px);
  618. transform: translateX(-15px);
  619. }
  620. .content .infoCard__detail__r {
  621. -ms-flex-preferred-size: 70%;
  622. flex-basis: 70%;
  623. text-align: start;
  624. -webkit-box-flex: 0;
  625. -ms-flex-positive: 0;
  626. flex-grow: 0;
  627. max-width: 70%;
  628. word-break: break-all;
  629. }
  630. .content .infoCard__detail__r a {
  631. color: #727679;
  632. }
  633. .content .infoCard__detail__r a:hover {
  634. color: #EE7800;
  635. }
  636. .content .infoCard .scMedia {
  637. display: -webkit-box;
  638. display: -ms-flexbox;
  639. display: flex;
  640. padding: 1rem 0;
  641. width: 100%;
  642. margin-left: auto;
  643. margin-right: auto;
  644. -ms-flex-pack: distribute;
  645. justify-content: space-around;
  646. }
  647. .content .infoCard .scMedia a {
  648. width: 16%;
  649. }
  650. .content .infoCard .scMedia a img {
  651. width: 100%;
  652. }
  653. .content .infoCard .scMedia span {
  654. width: 16%;
  655. cursor: pointer;
  656. }
  657. .content .infoCard .scMedia span img {
  658. width: 100%;
  659. }
  660. .infoContent a {
  661. color: #727679;
  662. text-decoration: none;
  663. font-size: .9rem;
  664. }
  665. .infoContent a.active {
  666. color: #EE7800;
  667. }
  668. .infoContent .nav-item {
  669. margin: 0 0.8rem;
  670. width: auto;
  671. }
  672. .infoContent .nav-item-link {
  673. display: block;
  674. padding: 0.5rem 2.5rem;
  675. text-decoration: none;
  676. background-color: transparent;
  677. font-size: 1rem;
  678. color: #727679;
  679. -webkit-transition: all .3s;
  680. transition: all .3s;
  681. -webkit-appearance: none !important;
  682. -moz-appearance: none;
  683. appearance: none;
  684. border-radius: 0;
  685. }
  686. @media screen and (max-width: 1200px) {
  687. .infoContent .nav-item-link {
  688. padding: 0.5rem .8rem;
  689. }
  690. }
  691. .infoContent .nav-item-link:hover {
  692. color: #EE7800;
  693. -webkit-appearance: none !important;
  694. -moz-appearance: none;
  695. appearance: none;
  696. }
  697. .infoContent .nav-item-link.active {
  698. color: #EE7800;
  699. border-bottom: 2px solid #EE7800;
  700. -webkit-appearance: none !important;
  701. -moz-appearance: none;
  702. appearance: none;
  703. }
  704. .infoContent .likeSee {
  705. margin-top: .8rem;
  706. }
  707. @media screen and (max-width: 1200px) {
  708. .infoContent .likeSee {
  709. width: 12%;
  710. position: absolute;
  711. right: -1.5rem;
  712. bottom: -1.5rem;
  713. }
  714. }
  715. .infoContent .likeSee span {
  716. color: #727679;
  717. font-size: .9rem;
  718. cursor: pointer;
  719. }
  720. .infoContent .likeSee span:hover {
  721. color: #EE7800;
  722. }
  723. .infoContent .likeSee__divider {
  724. height: 12px;
  725. display: inline-block;
  726. border: 0.5px solid #9d9d9d;
  727. }
  728. .infoContent .card {
  729. -webkit-box-shadow: 0 1px 10px #eee;
  730. box-shadow: 0 1px 10px #eee;
  731. margin: 0 0 1.5rem;
  732. border: none;
  733. overflow: hidden;
  734. }
  735. .infoContent .card:hover .card__bgImg {
  736. -webkit-transform: scale(1.1);
  737. transform: scale(1.1);
  738. }
  739. .infoContent .card__bgImg {
  740. height: 293px;
  741. background-repeat: no-repeat;
  742. background-size: cover;
  743. background-position: center;
  744. position: relative;
  745. display: -webkit-box;
  746. display: -ms-flexbox;
  747. display: flex;
  748. -ms-flex-pack: center;
  749. justify-content: center;
  750. -webkit-box-align: center;
  751. -ms-flex-align: center;
  752. align-items: center;
  753. -webkit-box-pack: center;
  754. -webkit-transition: all .4s;
  755. transition: all .4s;
  756. }
  757. .infoContent .card-body {
  758. padding: 0.5rem 1rem;
  759. }
  760. .infoContent .card__title {
  761. font-size: 1.125rem;
  762. -webkit-box-orient: vertical;
  763. box-orient: vertical;
  764. -webkit-line-clamp: 2;
  765. height: calc(18px * 2 * 1.5);
  766. overflow: hidden;
  767. text-overflow: ellipsis;
  768. display: -webkit-box;
  769. font-weight: bold;
  770. margin: 0.5rem 0;
  771. color: #727679;
  772. }
  773. .infoContent .card__tag {
  774. margin: 0 0.2rem 0 0;
  775. }
  776. .infoContent .card__tag:hover {
  777. color: #EE7800;
  778. }
  779. .infoContent .company__block {
  780. margin: 0 0 2rem;
  781. }
  782. .infoContent .company__title {
  783. color: #AAAAAA;
  784. font-size: 2rem;
  785. font-weight: bold;
  786. }
  787. .infoContent .company__text {
  788. color: #43484C;
  789. }
  790. .nav-collapse-fixed {
  791. position: fixed;
  792. top: 52px;
  793. z-index: -1;
  794. width: 100%;
  795. opacity: 0;
  796. -webkit-transition: opacity .5s;
  797. transition: opacity .5s;
  798. }
  799. @media screen and (max-width: 1200px) {
  800. .nav-collapse-fixed {
  801. width: auto;
  802. }
  803. }
  804. .nav-collapse-fixed.sticky {
  805. display: block;
  806. opacity: 1;
  807. z-index: 20;
  808. }
  809. .nav-collapse-fixed .nav-collpase {
  810. padding: 1rem 0;
  811. background-color: #FCFCFC;
  812. -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  813. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  814. }
  815. .navbar-main.sticky + .hero {
  816. padding-top: 53px;
  817. }
  818. .fixed-btn {
  819. position: fixed;
  820. right: 15px;
  821. bottom: 2rem;
  822. }
  823. .fixed-btn .btn-gotop, .fixed-btn .btn-login, .fixed-btn .btn-favor {
  824. cursor: pointer;
  825. padding: 1.2rem .8rem;
  826. background-color: rgba(255, 255, 255, 0.897);
  827. display: -webkit-box;
  828. display: -ms-flexbox;
  829. display: flex;
  830. -webkit-box-align: center;
  831. -ms-flex-align: center;
  832. align-items: center;
  833. box-shadow: 1px 1px 1px -3px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  834. -webkit-box-shadow: 1px 1px 1px -3px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  835. -moz-box-shadow: 1px 1px 1px -3px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  836. }
  837. .footer {
  838. background: #e9e9e9;
  839. padding: 2.5rem 0;
  840. }
  841. @media (max-width: 1100px) {
  842. .footer .container {
  843. width: 98%;
  844. max-width: 950px;
  845. }
  846. }
  847. .footer__block {
  848. padding: 1rem 3rem;
  849. border-left: 1px solid #8f8f8f;
  850. }
  851. @media (max-width: 1100px) {
  852. .footer__block {
  853. padding: 1rem 1rem;
  854. }
  855. }
  856. .footer__block-title {
  857. font-size: 1.3rem;
  858. margin-bottom: 1.5rem;
  859. }
  860. .footer__block-list {
  861. padding-left: 0;
  862. }
  863. .footer__block:nth-of-type(1) {
  864. border-left: none;
  865. }
  866. .footer__block:nth-of-type(2) {
  867. padding: 1rem 4rem;
  868. }
  869. @media (max-width: 1100px) {
  870. .footer__block:nth-of-type(2) {
  871. padding: 1rem 1rem;
  872. }
  873. }
  874. .footer__block-socials {
  875. padding-left: 0;
  876. display: -webkit-box;
  877. display: -ms-flexbox;
  878. display: flex;
  879. -webkit-box-align: center;
  880. -ms-flex-align: center;
  881. align-items: center;
  882. -webkit-box-pack: justify;
  883. -ms-flex-pack: justify;
  884. justify-content: space-between;
  885. }
  886. @media (max-width: 1100px) {
  887. .footer__block-socials img {
  888. width: 30px;
  889. }
  890. }
  891. .footer__block .follows-fp {
  892. text-decoration: none;
  893. color: #696969;
  894. font-size: .9rem;
  895. display: -webkit-box;
  896. display: -ms-flexbox;
  897. display: flex;
  898. -webkit-box-align: center;
  899. -ms-flex-align: center;
  900. align-items: center;
  901. }
  902. @media (max-width: 1100px) {
  903. .footer__block .follows-fp {
  904. font-size: .8rem;
  905. }
  906. }
  907. .footer__block-phone p {
  908. display: inline;
  909. }
  910. @media (max-width: 900px) {
  911. .footer__block-phone p {
  912. display: block;
  913. }
  914. }
  915. .footer__block-phone p, .footer__block-phone span {
  916. font-size: .9rem;
  917. }
  918. .footer__block-phone .text-phone {
  919. color: #EE7800;
  920. text-decoration: none;
  921. }
  922. .footer__block-links {
  923. display: -webkit-box;
  924. display: -ms-flexbox;
  925. display: flex;
  926. -webkit-box-align: center;
  927. -ms-flex-align: center;
  928. align-items: center;
  929. margin-top: 1rem;
  930. -webkit-box-pack: center;
  931. -ms-flex-pack: center;
  932. justify-content: center;
  933. }
  934. .footer__block-links-grp {
  935. padding: .3rem;
  936. border-left: 1px solid #b9b9b9;
  937. }
  938. .footer__block-links-grp:nth-of-type(1) {
  939. border-left: none;
  940. }
  941. .footer__block-links-grp a {
  942. display: block;
  943. text-decoration: none;
  944. color: #696969;
  945. font-size: .9rem;
  946. margin-bottom: .4rem;
  947. }
  948. @media (max-width: 1100px) {
  949. .footer__block-links-grp a {
  950. font-size: .8rem;
  951. }
  952. }
  953. .footer__block-subscribe {
  954. width: 100%;
  955. margin-top: 1rem;
  956. }
  957. .footer__block-subscribe .subscribeBar {
  958. font-size: .8rem;
  959. width: 70%;
  960. margin-left: 7%;
  961. }
  962. @media (max-width: 900px) {
  963. .footer__block-subscribe .subscribeBar {
  964. width: 75%;
  965. margin-left: 3%;
  966. font-size: .7rem;
  967. }
  968. }
  969. .footer__block-subscribe .subscribeBtn {
  970. width: 20%;
  971. padding: .4rem .6rem;
  972. padding-bottom: 9px;
  973. border: none;
  974. outline: none;
  975. background-color: #292929;
  976. color: white;
  977. border-radius: 0 3px 3px 0;
  978. margin-left: -.4rem;
  979. }
  980. @media (max-width: 900px) {
  981. .footer__block-subscribe .subscribeBtn {
  982. margin-left: -.3rem;
  983. font-size: .8rem;
  984. padding-top: 9px;
  985. padding-bottom: 10px;
  986. }
  987. }
  988. .footer__list-item {
  989. display: -webkit-box;
  990. display: -ms-flexbox;
  991. display: flex;
  992. -webkit-box-align: center;
  993. -ms-flex-align: center;
  994. align-items: center;
  995. text-decoration: none;
  996. margin-bottom: .5rem;
  997. }
  998. .footer__list-item p {
  999. color: #696969;
  1000. font-size: .9rem;
  1001. font-weight: 300;
  1002. }
  1003. .footer__list-icon {
  1004. width: 30px;
  1005. display: -webkit-box;
  1006. display: -ms-flexbox;
  1007. display: flex;
  1008. -webkit-box-pack: center;
  1009. -ms-flex-pack: center;
  1010. justify-content: center;
  1011. margin-right: .3rem;
  1012. }
  1013. .footer .bottom-box {
  1014. padding: 1rem 0;
  1015. border-top: 1px solid #b9b9b9;
  1016. margin-top: 2.5rem;
  1017. }
  1018. .like {
  1019. display: none;
  1020. }
  1021. .emodal-title {
  1022. color: #EE7800;
  1023. margin: 0 auto;
  1024. font-size: 18px;
  1025. }
  1026. .emodal .form-control:focus {
  1027. border-color: #ffb76f;
  1028. -webkit-box-shadow: none;
  1029. box-shadow: none;
  1030. }
  1031. .emodal .btn-plus {
  1032. color: #aaa;
  1033. border-color: #aaa;
  1034. }
  1035. .emodal .btn-send {
  1036. background-color: #ee7800;
  1037. color: white;
  1038. width: 30%;
  1039. border: none;
  1040. padding: 0.875rem 1rem;
  1041. border-radius: 2px;
  1042. }
  1043. .emodal .btn-dismiss {
  1044. width: 30%;
  1045. border: none;
  1046. padding: 0.875rem 1rem;
  1047. background-color: #d1d2d3;
  1048. border-radius: 2px;
  1049. color: #fff;
  1050. }
  1051. #putEmail_hidden {
  1052. border: 1px solid;
  1053. border-radius: 28px;
  1054. color: #EE7800 !important;
  1055. }
  1056. #putEmail_hidden .fm-email-btn {
  1057. padding: 2px 5px 2px 5px;
  1058. }
  1059. .loading-move {
  1060. -webkit-animation-name: move;
  1061. animation-name: move;
  1062. -webkit-animation-duration: 2s;
  1063. animation-duration: 2s;
  1064. -webkit-animation-delay: 0;
  1065. animation-delay: 0;
  1066. -webkit-animation-iteration-count: infinite;
  1067. animation-iteration-count: infinite;
  1068. -webkit-animation-direction: normal;
  1069. animation-direction: normal;
  1070. -webkit-animation-timing-function: linear;
  1071. animation-timing-function: linear;
  1072. }
  1073. @-webkit-keyframes move {
  1074. from {
  1075. -webkit-transform: rotate(0deg);
  1076. transform: rotate(0deg);
  1077. }
  1078. to {
  1079. -webkit-transform: rotate(360deg);
  1080. transform: rotate(360deg);
  1081. }
  1082. }
  1083. @keyframes move {
  1084. from {
  1085. -webkit-transform: rotate(0deg);
  1086. transform: rotate(0deg);
  1087. }
  1088. to {
  1089. -webkit-transform: rotate(360deg);
  1090. transform: rotate(360deg);
  1091. }
  1092. }
  1093. /*# sourceMappingURL=list-style.css.map */