list-style.scss 23 KB

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