list-style.scss 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827
  1. body {
  2. font-family: 'Helvetica Neue';
  3. }
  4. .sec-00 {
  5. height: 295px;
  6. transition-property: height;
  7. transition-duration: 300ms;
  8. @media (max-width: 1850px) {
  9. height: 260px;
  10. }
  11. @media (max-width: 1550px) {
  12. height: 230px;
  13. }
  14. @media (max-width: 1100px) {
  15. height: 200px;
  16. }
  17. &__close {
  18. position: absolute;
  19. top: 0;
  20. right: 20px;
  21. width: 50px;
  22. height: 30px;
  23. background-color: hsla(0,0%,100%,.66);
  24. border-radius: 0 0 50px 50px;
  25. color: #888;
  26. border: none;
  27. outline: none;
  28. font-size: 11px;
  29. box-shadow: 0 0 10px rgba(32, 32, 32, 0.25);
  30. line-height: 12px;
  31. }
  32. &.bannerClose {
  33. height: 0;
  34. overflow: hidden;
  35. transition-property: height;
  36. transition-duration: 300ms;
  37. }
  38. .container-fluid {
  39. background-color: rgb(202, 202, 202);
  40. height: 295px;
  41. @media (max-width: 1850px) {
  42. height: 260px;
  43. }
  44. @media (max-width: 1550px) {
  45. height: 230px;
  46. }
  47. @media (max-width: 1100px) {
  48. height: 200px;
  49. }
  50. }
  51. &__slider {
  52. margin: 0 auto;
  53. width: 70%;
  54. height: 100%;
  55. max-width: 1344px;
  56. @media (max-width: 1850px) {
  57. max-width: 1176px;
  58. }
  59. @media (max-width: 1550px) {
  60. max-width: 1010px;
  61. }
  62. .slide-item {
  63. width: 100%;
  64. height: 295px;
  65. background-position: center center;
  66. background-size: cover;
  67. background-repeat: no-repeat;
  68. cursor: pointer;
  69. @media (max-width: 1850px) {
  70. height: 260px;
  71. }
  72. @media (max-width: 1550px) {
  73. height: 230px;
  74. }
  75. @media (max-width: 1100px) {
  76. height: 200px;
  77. }
  78. }
  79. }
  80. .slick-prev:before, .slick-next:before {
  81. display: none;
  82. }
  83. }
  84. @-webkit-keyframes slidein {
  85. 100% {
  86. height: 0px;
  87. }
  88. }
  89. @keyframes slidein {
  90. 100% {
  91. height: 0px;
  92. }
  93. }
  94. .navbar {
  95. 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);
  96. -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);
  97. -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);
  98. padding-top: 5px;
  99. padding-bottom: 5px;
  100. background-color: white !important;
  101. z-index: 99;
  102. .container-fluid {
  103. padding:0 2.5rem;
  104. @media (max-width: 1100px) {
  105. padding:0 .6rem;
  106. }
  107. }
  108. &-toggler {
  109. padding-left: 0;
  110. border-color: transparent !important;
  111. &:focus {
  112. box-shadow: none;
  113. }
  114. }
  115. &-toggler-icon {
  116. display: flex;
  117. justify-items: center;
  118. i {
  119. font-size: 25px;
  120. line-height: 30px;
  121. display: inline-block;
  122. }
  123. }
  124. &-search, &-login {
  125. padding-right: 2px;
  126. }
  127. &-login {
  128. cursor: pointer;
  129. }
  130. &-search {
  131. &-magnify {
  132. cursor: pointer;
  133. }
  134. }
  135. &-brand {
  136. font-size: 1.5rem;
  137. &.navbar-logo {
  138. display: flex;
  139. align-items: center;
  140. }
  141. .navbar-login {
  142. font-size: 1rem;
  143. color: #EE7800;
  144. text-decoration: none;
  145. }
  146. }
  147. .nav-link {
  148. cursor: pointer;
  149. @media (max-width: 1100px) {
  150. padding: .5rem .5rem;
  151. font-size: .9rem;
  152. }
  153. }
  154. .navbar-nav {
  155. .nav-item {
  156. margin: 0 .5rem;
  157. @media (max-width: 1100px) {
  158. margin: 0 0rem;
  159. }
  160. .dropbox {
  161. visibility: hidden;
  162. opacity: 0;
  163. transition: all .4s;
  164. position: absolute;
  165. width: 100vw;
  166. top: 100%;
  167. left: 0;
  168. background-color: rgba(255, 255, 255, 0.932);
  169. padding-top: 1.5rem;
  170. padding-bottom: 3rem;
  171. z-index: 1012;
  172. ul {
  173. padding-left: 0;
  174. }
  175. &-item {
  176. margin-bottom: .5rem;
  177. &.first {
  178. font-size: 1.1rem;
  179. font-weight: 600;
  180. .dropbox-link {
  181. color: black;
  182. }
  183. }
  184. }
  185. &-link {
  186. text-decoration: none;
  187. color: rgb(146, 146, 146);
  188. font-size: .85rem;
  189. &:hover {
  190. color: #EE7800;
  191. }
  192. &.dropbox-btn {
  193. border: 1px solid rgb(146, 146, 146);
  194. padding: .5rem 2rem;
  195. border-radius: 5px;
  196. width: 85%;
  197. min-width: 7rem;
  198. max-width: 11rem;
  199. }
  200. }
  201. &-btn {
  202. display: flex;
  203. align-items: center;
  204. justify-content: center;
  205. }
  206. .container {
  207. max-width: 900px;
  208. width: 70%;
  209. &.stylebox {
  210. transform: translateX(-30%);
  211. }
  212. &.designerbox {
  213. transform: translateX(-5%);
  214. }
  215. &.newbox {
  216. transform: translateX(15%);
  217. }
  218. &.forumbox {
  219. transform: translateX(50%);
  220. }
  221. }
  222. }
  223. .nav-link {
  224. position: relative;
  225. }
  226. .nav-link:after {
  227. position: absolute;
  228. content: " ";
  229. width: 100%;
  230. height: 90%;
  231. top: 0;
  232. right: 0;
  233. border-bottom: 2px solid #EE7800;
  234. opacity: 0;
  235. transform: opacity 1s;
  236. }
  237. &:hover {
  238. .nav-link:after {
  239. opacity: 1;
  240. }
  241. >.dropbox {
  242. visibility: visible;
  243. opacity: 1;
  244. }
  245. }
  246. }
  247. .nav-item.lg {
  248. .container {
  249. max-width: 1200px;
  250. width: 90%;
  251. }
  252. .dropbox-link {
  253. text-decoration: none;
  254. color: rgb(146, 146, 146);
  255. font-size: .7rem;
  256. &:hover {
  257. color: #EE7800;
  258. }
  259. }
  260. .dropbox-item {
  261. margin-bottom: .1rem;
  262. &.first {
  263. .dropbox-link {
  264. font-size: .85rem;
  265. }
  266. }
  267. }
  268. }
  269. }
  270. &-search {
  271. .container {
  272. max-width: 900px;
  273. width: 70%;
  274. @media (max-width: 1100px) {
  275. width: 90%;
  276. }
  277. }
  278. .dropbox {
  279. visibility: hidden;
  280. opacity: 0;
  281. transition: all .2s;
  282. position: absolute;
  283. width: 100vw;
  284. top: 100%;
  285. left: 0;
  286. background-color: rgba(255, 255, 255, 0.932);
  287. padding-top: 1.5rem;
  288. padding-bottom: 3rem;
  289. &.open {
  290. visibility: visible;
  291. opacity: 1;
  292. }
  293. &__searchtab {
  294. width: 100%;
  295. background-color: gray;
  296. border-radius: 3px;
  297. padding: .2rem 1rem;
  298. padding-bottom: 1rem;
  299. }
  300. &__hots {
  301. &__title {
  302. font-size: 1rem;
  303. color: rgb(107, 107, 107);
  304. }
  305. &__link {
  306. font-size: .9rem;
  307. color: rgb(146, 146, 146);
  308. text-decoration: none;
  309. cursor: pointer;
  310. margin: 0 .2rem;
  311. }
  312. }
  313. &__searchBar {
  314. &__input {
  315. width: 100%;
  316. outline: none;
  317. border: 2px solid #EE7800;
  318. border-radius: 5rem;
  319. padding: .3rem 1.2rem;
  320. font-size: .9rem;
  321. }
  322. &__submit {
  323. outline: none;
  324. border: none;
  325. font-size: .9rem;
  326. background-color: transparent;
  327. color: #EE7800;
  328. margin-left: -1rem;
  329. transform: translateX(-100%);
  330. padding: 0 .6rem;
  331. }
  332. }
  333. &__tab {
  334. .nav-item {
  335. margin: 0 .6rem;
  336. }
  337. }
  338. .nav-item-link {
  339. border: none;
  340. outline: none;
  341. font-size: 1rem;
  342. color: white;
  343. padding: 3px;
  344. position: relative;
  345. &::after {
  346. position: absolute;
  347. content: "";
  348. top: 0;
  349. left: 0;
  350. width: 100%;
  351. height: 100%;
  352. border-bottom: 3px solid #EE7800;
  353. opacity: 0;
  354. }
  355. &.active::after {
  356. opacity: 1;
  357. }
  358. }
  359. }
  360. .dropbox-tab-content {
  361. .tabpar {
  362. display: flex;
  363. padding-top: .5rem;
  364. .col {
  365. margin: 0 .6rem;
  366. }
  367. .select {
  368. font-size: 1rem;
  369. padding: .6rem;
  370. border-radius: 3px;
  371. color: rgb(116, 116, 116);
  372. }
  373. button {
  374. border: none;
  375. outline: none;
  376. background-color: #EE7800;
  377. border-radius: 3px;
  378. color: white;
  379. font-size: 1rem;
  380. padding: .6rem;
  381. }
  382. .image-search {
  383. border: none;
  384. outline: none;
  385. background-color: #EE7800;
  386. border-radius: 3px;
  387. color: white;
  388. font-size: 1rem;
  389. }
  390. .article-btn {
  391. border: none;
  392. outline: none;
  393. background-color: #EE7800;
  394. border-radius: 3px;
  395. color: white;
  396. font-size: 1rem;
  397. padding: .6rem;
  398. }
  399. .home-btn {
  400. border: none;
  401. outline: none;
  402. background-color: #EE7800;
  403. border-radius: 3px;
  404. color: white;
  405. font-size: 1rem;
  406. padding: .6rem;
  407. }
  408. }
  409. }
  410. }
  411. }
  412. .navbar-search .dropbox__tab .nav-item-link.active .nav-item-link::after {
  413. opacity: 1;
  414. }
  415. .navbar-main.sticky {
  416. position: fixed;
  417. top: 0;
  418. width: 100%;
  419. }
  420. .navbar-main.sticky + .sec-02 {
  421. padding-top: 53.5px;
  422. }
  423. .sec-02 {
  424. &__slider {
  425. width: 100%;
  426. height: 100%;
  427. .slide-item {
  428. width: 100%;
  429. height: 74vh;
  430. background-position: center center;
  431. background-size: cover;
  432. background-repeat: no-repeat;
  433. cursor: pointer;
  434. }
  435. }
  436. .slick-prev:before, .slick-next:before {
  437. display: none;
  438. }
  439. .slick-prev {
  440. left: 15px;
  441. z-index: 3;
  442. }
  443. .slick-next {
  444. right: 15px;
  445. }
  446. }
  447. a {
  448. text-decoration: none;
  449. }
  450. .text-hhh {
  451. color: #EE7800;
  452. }
  453. .content {
  454. background-color: #FCFCFC;
  455. padding: 1rem 30px 0.5rem;
  456. .infoCard {
  457. color: #727679;
  458. text-align: center;
  459. padding: 1rem;
  460. background-color: rgba(244, 244, 244, 0.8);
  461. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
  462. transform: translateY(-150px);
  463. &__seo {
  464. font-size: .9rem;
  465. text-align: center;
  466. padding: 1rem;
  467. display: block;
  468. line-height: 1.2;
  469. }
  470. &__approve {
  471. color: #FF0000;
  472. }
  473. &__avatar {
  474. width: 200px;
  475. height: 200px;
  476. border: 3px solid #FFF;
  477. border-radius: 50%;
  478. background-size: cover;
  479. background-repeat: no-repeat;
  480. }
  481. &__detail {
  482. aside {
  483. line-height: 2;
  484. font-size: .9rem;
  485. }
  486. &__l {
  487. flex-basis: 30%;
  488. display: flex;
  489. justify-content: flex-end;
  490. flex-grow: 0;
  491. max-width: 30%;
  492. &.title {
  493. color: #AAAAAA;
  494. font-size: 1.125rem;
  495. font-weight: bold;
  496. transform: translateX(-15px);
  497. }
  498. }
  499. &__r {
  500. flex-basis: 70%;
  501. text-align: start;
  502. flex-grow: 0;
  503. max-width: 70%;
  504. word-break: break-all;
  505. a {
  506. color: #727679;
  507. &:hover {
  508. color: #EE7800;
  509. }
  510. }
  511. }
  512. }
  513. .scMedia {
  514. display: flex;
  515. padding: 1rem 0;
  516. width: 100%;
  517. margin-left: auto;
  518. margin-right: auto;
  519. justify-content: space-around;
  520. a {
  521. width: 16%;
  522. img {
  523. width: 100%;
  524. }
  525. }
  526. span {
  527. width: 16%;
  528. img {
  529. width: 100%;
  530. }
  531. }
  532. }
  533. }
  534. }
  535. .infoContent {
  536. a {
  537. color: #727679;
  538. text-decoration: none;
  539. font-size: .9rem;
  540. &.active {
  541. color: #EE7800;
  542. }
  543. }
  544. .nav-item {
  545. margin: 0 0.8rem;
  546. width: auto;
  547. &-link {
  548. display: block;
  549. padding: 0.5rem 2.5rem;
  550. text-decoration: none;
  551. background-color: transparent;
  552. font-size: .9rem;
  553. color: #727679;
  554. &.active {
  555. color: #EE7800;
  556. border-bottom: 2px solid #EE7800;
  557. }
  558. }
  559. }
  560. .likeSee {
  561. span {
  562. color: #727679;
  563. font-size: .9rem;
  564. }
  565. &__divider {
  566. height: 12px;
  567. display: inline-block;
  568. border: 0.5px solid #9d9d9d;
  569. }
  570. }
  571. .card {
  572. box-shadow: 0 1px 10px #eee;
  573. margin: 0 0 1.5rem;
  574. border: none;
  575. &__bgImg {
  576. height: 293px;
  577. background-repeat: no-repeat;
  578. background-size: cover;
  579. background-position: center;
  580. position: relative;
  581. display: flex;
  582. justify-content: center;
  583. -webkit-box-align: center;
  584. align-items: center;
  585. -webkit-box-pack: center;
  586. }
  587. &-body {
  588. padding: 0.5rem 1rem;
  589. }
  590. &__title {
  591. font-size: 1.125rem;
  592. -webkit-box-orient: vertical;
  593. box-orient: vertical;
  594. -webkit-line-clamp: 2;
  595. height: calc(18px * 2 * 1.5);
  596. overflow: hidden;
  597. text-overflow: ellipsis;
  598. display: -webkit-box;
  599. font-weight: bold;
  600. margin: 0.5rem 0;
  601. color: #727679;
  602. }
  603. &__tag {
  604. margin: 0 0.2rem 0 0;
  605. }
  606. }
  607. .company {
  608. &__block {
  609. margin: 0 0 2rem;
  610. }
  611. &__title {
  612. color: #AAAAAA;
  613. font-size: 2rem;
  614. font-weight: bold;
  615. }
  616. &__text {
  617. color: #43484C;
  618. }
  619. }
  620. }
  621. .nav-collapse-fixed {
  622. position: fixed;
  623. top: 52px;
  624. z-index: -1;
  625. width: 100%;
  626. opacity: 0;
  627. transition: opacity .5s;
  628. &.sticky {
  629. display: block;
  630. opacity: 1;
  631. z-index: 1010;
  632. }
  633. .nav-collpase {
  634. padding: 1rem 0;
  635. background-color: #FCFCFC;
  636. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15)
  637. }
  638. }
  639. .navbar-main.sticky + .hero {
  640. padding-top: 53px;
  641. }
  642. .fixed-btn {
  643. position: fixed;
  644. right: 15px;
  645. bottom: 2rem;
  646. .btn-gotop, .btn-login, .btn-favor {
  647. cursor: pointer;
  648. padding: 1.2rem .8rem;
  649. background-color: rgba(255, 255, 255, 0.897);
  650. display: flex;
  651. align-items: center;
  652. box-shadow: 1px 1px 1px -3px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
  653. -webkit-box-shadow: 1px 1px 1px -3px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
  654. -moz-box-shadow: 1px 1px 1px -3px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
  655. }
  656. }
  657. .footer {
  658. background: #e9e9e9;
  659. padding: 2.5rem 0;
  660. .container {
  661. @media (max-width: 1100px) {
  662. width: 98%;
  663. max-width: 950px;
  664. }
  665. }
  666. &__block {
  667. padding: 1rem 3rem;
  668. border-left: 1px solid rgb(143, 143, 143);
  669. @media (max-width: 1100px) {
  670. padding: 1rem 1rem;
  671. }
  672. &-title {
  673. font-size: 1.3rem;
  674. margin-bottom: 1.5rem;
  675. }
  676. &-list {
  677. padding-left: 0;
  678. }
  679. &:nth-of-type(1) {
  680. border-left: none;
  681. }
  682. &:nth-of-type(2) {
  683. padding: 1rem 4rem;
  684. @media (max-width: 1100px) {
  685. padding: 1rem 1rem;
  686. }
  687. }
  688. &-socials {
  689. padding-left: 0;
  690. display: flex;
  691. align-items: center;
  692. justify-content: space-between;
  693. img {
  694. @media (max-width: 1100px) {
  695. width: 30px;
  696. }
  697. }
  698. }
  699. .follows-fp {
  700. text-decoration: none;
  701. color: #696969;
  702. font-size: .9rem;
  703. display: flex;
  704. align-items: center;
  705. @media (max-width: 1100px) {
  706. font-size: .8rem;
  707. }
  708. }
  709. &-phone {
  710. p {
  711. display: inline;
  712. @media (max-width: 900px) {
  713. display: block;
  714. }
  715. }
  716. p, span {
  717. font-size: .9rem;
  718. }
  719. .text-phone {
  720. color: #EE7800;
  721. text-decoration: none;
  722. }
  723. }
  724. &-links {
  725. display: flex;
  726. align-items: center;
  727. margin-top: 1rem;
  728. justify-content: center;
  729. &-grp {
  730. padding: .3rem;
  731. border-left: 1px solid rgb(185, 185, 185);
  732. &:nth-of-type(1) {
  733. border-left: none;
  734. }
  735. a {
  736. display: block;
  737. text-decoration: none;
  738. color: #696969;
  739. font-size: .9rem;
  740. margin-bottom: .4rem;
  741. @media (max-width: 1100px) {
  742. font-size: .8rem;
  743. }
  744. }
  745. }
  746. }
  747. &-subscribe {
  748. width: 100%;
  749. margin-top: 1rem;
  750. .subscribeBar {
  751. font-size: .8rem;
  752. width: 70%;
  753. margin-left: 7%;
  754. @media (max-width: 900px) {
  755. width: 75%;
  756. margin-left: 3%;
  757. font-size: .7rem;
  758. }
  759. }
  760. .subscribeBtn {
  761. width: 20%;
  762. padding: .4rem .6rem;
  763. padding-bottom: 9px;
  764. border: none;
  765. outline: none;
  766. background-color: rgb(41, 41, 41);
  767. color: white;
  768. border-radius: 0 3px 3px 0;
  769. margin-left: -.4rem;
  770. @media (max-width: 900px) {
  771. margin-left: -.3rem;
  772. font-size: .8rem;
  773. padding-top: 9px;
  774. padding-bottom: 10px;
  775. }
  776. }
  777. }
  778. }
  779. &__list-item {
  780. display: flex;
  781. align-items: center;
  782. text-decoration: none;
  783. margin-bottom: .5rem;
  784. p {
  785. color: #696969;
  786. font-size: .9rem;
  787. font-weight: 300;
  788. }
  789. }
  790. &__list-icon {
  791. width: 30px;
  792. display: flex;
  793. justify-content: center;
  794. margin-right: .3rem;
  795. }
  796. .bottom-box {
  797. padding: 1rem 0;
  798. border-top: 1px solid rgb(185, 185, 185);
  799. margin-top: 2.5rem;
  800. }
  801. }
  802. .like {
  803. display: none;
  804. }