list-style.scss 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002
  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 .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. position: absolute;
  654. right: -1.5rem;
  655. bottom: -1.5rem;
  656. }
  657. span {
  658. color: #727679;
  659. font-size: .9rem;
  660. cursor: pointer;
  661. &:hover {
  662. color: #EE7800;
  663. }
  664. }
  665. &__divider {
  666. height: 12px;
  667. display: inline-block;
  668. border: 0.5px solid #9d9d9d;
  669. }
  670. }
  671. .card {
  672. box-shadow: 0 1px 10px #eee;
  673. margin: 0 0 1.5rem;
  674. border: none;
  675. overflow: hidden;
  676. &:hover .card__bgImg {
  677. transform: scale(1.1);
  678. }
  679. &__bgImg {
  680. height: 293px;
  681. background-repeat: no-repeat;
  682. background-size: cover;
  683. background-position: center;
  684. position: relative;
  685. display: flex;
  686. justify-content: center;
  687. -webkit-box-align: center;
  688. align-items: center;
  689. -webkit-box-pack: center;
  690. transition: all .4s;
  691. }
  692. &-body {
  693. padding: 0.5rem 1rem;
  694. }
  695. &__title {
  696. font-size: 1.125rem;
  697. -webkit-box-orient: vertical;
  698. box-orient: vertical;
  699. -webkit-line-clamp: 2;
  700. height: calc(18px * 2 * 1.5);
  701. overflow: hidden;
  702. text-overflow: ellipsis;
  703. display: -webkit-box;
  704. font-weight: bold;
  705. margin: 0.5rem 0;
  706. color: #727679;
  707. }
  708. &__tag {
  709. margin: 0 0.2rem 0 0;
  710. &:hover {
  711. color: #EE7800;
  712. }
  713. }
  714. }
  715. .company {
  716. &__block {
  717. margin: 0 0 2rem;
  718. }
  719. &__title {
  720. color: #AAAAAA;
  721. font-size: 2rem;
  722. font-weight: bold;
  723. }
  724. &__text {
  725. color: #43484C;
  726. }
  727. }
  728. }
  729. .nav-collapse-fixed {
  730. position: fixed;
  731. top: 52px;
  732. z-index: -1;
  733. width: 100%;
  734. @media screen and (max-width: 1200px) {
  735. width: auto;
  736. }
  737. opacity: 0;
  738. transition: opacity .5s;
  739. &.sticky {
  740. display: block;
  741. opacity: 1;
  742. z-index: 20;
  743. }
  744. .nav-collpase {
  745. padding: 1rem 0;
  746. background-color: #FCFCFC;
  747. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15)
  748. }
  749. }
  750. .navbar-main.sticky + .hero {
  751. padding-top: 53px;
  752. }
  753. .fixed-btn {
  754. position: fixed;
  755. right: 15px;
  756. bottom: 2rem;
  757. .btn-gotop, .btn-login, .btn-favor {
  758. cursor: pointer;
  759. padding: 1.2rem .8rem;
  760. background-color: rgba(255, 255, 255, 0.897);
  761. display: flex;
  762. align-items: center;
  763. 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);
  764. -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);
  765. -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);
  766. }
  767. }
  768. .footer {
  769. background: #e9e9e9;
  770. padding: 2.5rem 0;
  771. .container {
  772. @media (max-width: 1100px) {
  773. width: 98%;
  774. max-width: 950px;
  775. }
  776. }
  777. &__block {
  778. padding: 1rem 3rem;
  779. border-left: 1px solid rgb(143, 143, 143);
  780. @media (max-width: 1100px) {
  781. padding: 1rem 1rem;
  782. }
  783. &-title {
  784. font-size: 1.3rem;
  785. margin-bottom: 1.5rem;
  786. }
  787. &-list {
  788. padding-left: 0;
  789. }
  790. &:nth-of-type(1) {
  791. border-left: none;
  792. }
  793. &:nth-of-type(2) {
  794. padding: 1rem 4rem;
  795. @media (max-width: 1100px) {
  796. padding: 1rem 1rem;
  797. }
  798. }
  799. &-socials {
  800. padding-left: 0;
  801. display: flex;
  802. align-items: center;
  803. justify-content: space-between;
  804. img {
  805. @media (max-width: 1100px) {
  806. width: 30px;
  807. }
  808. }
  809. }
  810. .follows-fp {
  811. text-decoration: none;
  812. color: #696969;
  813. font-size: .9rem;
  814. display: flex;
  815. align-items: center;
  816. @media (max-width: 1100px) {
  817. font-size: .8rem;
  818. }
  819. }
  820. &-phone {
  821. p {
  822. display: inline;
  823. @media (max-width: 900px) {
  824. display: block;
  825. }
  826. }
  827. p, span {
  828. font-size: .9rem;
  829. }
  830. .text-phone {
  831. color: #EE7800;
  832. text-decoration: none;
  833. }
  834. }
  835. &-links {
  836. display: flex;
  837. align-items: center;
  838. margin-top: 1rem;
  839. justify-content: center;
  840. &-grp {
  841. padding: .3rem;
  842. border-left: 1px solid rgb(185, 185, 185);
  843. &:nth-of-type(1) {
  844. border-left: none;
  845. }
  846. a {
  847. display: block;
  848. text-decoration: none;
  849. color: #696969;
  850. font-size: .9rem;
  851. margin-bottom: .4rem;
  852. @media (max-width: 1100px) {
  853. font-size: .8rem;
  854. }
  855. }
  856. }
  857. }
  858. &-subscribe {
  859. width: 100%;
  860. margin-top: 1rem;
  861. .subscribeBar {
  862. font-size: .8rem;
  863. width: 70%;
  864. margin-left: 7%;
  865. @media (max-width: 900px) {
  866. width: 75%;
  867. margin-left: 3%;
  868. font-size: .7rem;
  869. }
  870. }
  871. .subscribeBtn {
  872. width: 20%;
  873. padding: .4rem .6rem;
  874. padding-bottom: 9px;
  875. border: none;
  876. outline: none;
  877. background-color: rgb(41, 41, 41);
  878. color: white;
  879. border-radius: 0 3px 3px 0;
  880. margin-left: -.4rem;
  881. @media (max-width: 900px) {
  882. margin-left: -.3rem;
  883. font-size: .8rem;
  884. padding-top: 9px;
  885. padding-bottom: 10px;
  886. }
  887. }
  888. }
  889. }
  890. &__list-item {
  891. display: flex;
  892. align-items: center;
  893. text-decoration: none;
  894. margin-bottom: .5rem;
  895. p {
  896. color: #696969;
  897. font-size: .9rem;
  898. font-weight: 300;
  899. }
  900. }
  901. &__list-icon {
  902. width: 30px;
  903. display: flex;
  904. justify-content: center;
  905. margin-right: .3rem;
  906. }
  907. .bottom-box {
  908. padding: 1rem 0;
  909. border-top: 1px solid rgb(185, 185, 185);
  910. margin-top: 2.5rem;
  911. }
  912. }
  913. .like {
  914. display: none;
  915. }
  916. // #pills-intro {
  917. // .work__row {
  918. // .col-md-4:nth-of-type(3n-1) {
  919. // margin-top: .5rem;
  920. // }
  921. // .col-md-4:nth-of-type(3n) {
  922. // margin-top: -1rem;
  923. // }
  924. // .col-md-4:nth-of-type(3n+1) {
  925. // margin-top: -1rem;
  926. // }
  927. // .col-md-4:nth-of-type(2) {
  928. // margin-top: .5rem;
  929. // }
  930. // }
  931. // }
  932. .emodal {
  933. &-title {
  934. color: #EE7800;
  935. margin: 0 auto;
  936. font-size: 18px;;
  937. }
  938. .form-control:focus {
  939. border-color: #ffb76f;
  940. box-shadow: none;
  941. }
  942. .btn-plus {
  943. color: #aaa;
  944. border-color: #aaa;
  945. }
  946. .btn-send {
  947. background-color: #ee7800;
  948. color: white;
  949. width: 30%;
  950. border: none;
  951. padding: 0.875rem 1rem;
  952. border-radius: 2px;
  953. }
  954. .btn-dismiss {
  955. width: 30%;
  956. border: none;
  957. padding: 0.875rem 1rem;
  958. background-color: #d1d2d3;
  959. border-radius: 2px;
  960. color: #fff;
  961. }
  962. }
  963. #putEmail_hidden {
  964. border: 1px solid;
  965. border-radius: 28px;
  966. color: #EE7800 !important;
  967. .fm-email-btn {
  968. padding: 2px 5px 2px 5px;
  969. }
  970. }