list-style.scss 24 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012
  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. -webkit-appearance : none !important;
  238. margin: 0 .5rem;
  239. @media (max-width: 1100px) {
  240. margin: 0 0rem;
  241. }
  242. .dropbox {
  243. visibility: hidden;
  244. opacity: 0;
  245. transition: all .4s;
  246. position: absolute;
  247. width: 100vw;
  248. top: 100%;
  249. left: 0;
  250. background-color: rgba(255, 255, 255, 0.932);
  251. padding-top: 1.5rem;
  252. padding-bottom: 3rem;
  253. z-index: 1012;
  254. ul {
  255. padding-left: 0;
  256. }
  257. &-item {
  258. margin-bottom: .5rem;
  259. &.first {
  260. font-size: 1.1rem;
  261. font-weight: 600;
  262. .dropbox-link {
  263. color: black;
  264. }
  265. }
  266. }
  267. &-link {
  268. text-decoration: none;
  269. color: rgb(146, 146, 146);
  270. font-size: .85rem;
  271. &:hover {
  272. color: #EE7800;
  273. }
  274. &.dropbox-btn {
  275. border: 1px solid rgb(146, 146, 146);
  276. padding: .5rem 2rem;
  277. border-radius: 5px;
  278. width: 85%;
  279. min-width: 7rem;
  280. max-width: 11rem;
  281. }
  282. }
  283. &-btn {
  284. display: flex;
  285. align-items: center;
  286. justify-content: center;
  287. }
  288. .container {
  289. max-width: 900px;
  290. width: 70%;
  291. &.stylebox {
  292. transform: translateX(-30%);
  293. }
  294. &.designerbox {
  295. transform: translateX(-5%);
  296. }
  297. &.newbox {
  298. transform: translateX(15%);
  299. }
  300. &.forumbox {
  301. transform: translateX(50%);
  302. }
  303. }
  304. }
  305. .nav-link {
  306. position: relative;
  307. -webkit-appearance : none !important;
  308. }
  309. .nav-link:after {
  310. position: absolute;
  311. content: " ";
  312. width: 100%;
  313. height: 90%;
  314. top: 0;
  315. right: 0;
  316. border-bottom: 2px solid #EE7800;
  317. opacity: 0;
  318. transform: opacity 1s;
  319. }
  320. &:hover {
  321. .nav-link:after {
  322. opacity: 1;
  323. }
  324. >.dropbox {
  325. visibility: visible;
  326. opacity: 1;
  327. }
  328. }
  329. }
  330. .nav-item.lg {
  331. .container {
  332. max-width: 1200px;
  333. width: 90%;
  334. }
  335. .dropbox-link {
  336. text-decoration: none;
  337. color: rgb(146, 146, 146);
  338. font-size: .7rem;
  339. &:hover {
  340. color: #EE7800;
  341. }
  342. }
  343. .dropbox-item {
  344. margin-bottom: .1rem;
  345. &.first {
  346. .dropbox-link {
  347. font-size: .85rem;
  348. }
  349. }
  350. }
  351. }
  352. }
  353. &-search {
  354. .container {
  355. max-width: 900px;
  356. width: 70%;
  357. @media (max-width: 1100px) {
  358. width: 90%;
  359. }
  360. }
  361. .dropbox {
  362. visibility: hidden;
  363. opacity: 0;
  364. transition: all .2s;
  365. position: absolute;
  366. width: 100vw;
  367. top: 100%;
  368. left: 0;
  369. background-color: rgba(255, 255, 255, 0.932);
  370. padding-top: 1.5rem;
  371. padding-bottom: 3rem;
  372. &.open {
  373. visibility: visible;
  374. opacity: 1;
  375. }
  376. &__searchtab {
  377. width: 100%;
  378. background-color: gray;
  379. border-radius: 3px;
  380. padding: .2rem 1rem;
  381. padding-bottom: 1rem;
  382. }
  383. &__hots {
  384. &__title {
  385. font-size: 1rem;
  386. color: rgb(107, 107, 107);
  387. }
  388. &__link {
  389. font-size: .9rem;
  390. color: rgb(146, 146, 146);
  391. text-decoration: none;
  392. cursor: pointer;
  393. margin: 0 .2rem;
  394. }
  395. }
  396. &__searchBar {
  397. &__input {
  398. width: 100%;
  399. outline: none;
  400. border: 2px solid #EE7800;
  401. border-radius: 5rem;
  402. padding: .3rem 1.2rem;
  403. font-size: .9rem;
  404. }
  405. &__submit {
  406. outline: none;
  407. border: none;
  408. font-size: .9rem;
  409. background-color: transparent;
  410. color: #EE7800;
  411. margin-left: -1rem;
  412. transform: translateX(-100%);
  413. padding: 0 .6rem;
  414. }
  415. }
  416. &__tab {
  417. .nav-item {
  418. margin: 0 .6rem;
  419. -webkit-appearance : none ;
  420. }
  421. }
  422. .nav-item-link {
  423. -webkit-appearance : none !important;
  424. background: none !important;
  425. border: none !important;
  426. outline: none !important;
  427. font-size: 1rem;
  428. color: white;
  429. padding: 3px;
  430. position: relative;
  431. &::after {
  432. position: absolute;
  433. content: "";
  434. top: 0;
  435. left: 0;
  436. width: 100%;
  437. height: 100%;
  438. border-bottom: 3px solid #EE7800;
  439. opacity: 0;
  440. }
  441. &.active::after {
  442. opacity: 1;
  443. }
  444. }
  445. }
  446. .dropbox-tab-content {
  447. .tabpar {
  448. display: flex;
  449. padding-top: .5rem;
  450. .col {
  451. margin: 0 .6rem;
  452. }
  453. .select {
  454. font-size: 1rem;
  455. padding: .6rem;
  456. border-radius: 3px;
  457. color: rgb(116, 116, 116);
  458. }
  459. button {
  460. border: none;
  461. outline: none;
  462. background-color: #EE7800;
  463. border-radius: 3px;
  464. color: white;
  465. font-size: 1rem;
  466. padding: .6rem;
  467. }
  468. .image-search {
  469. border: none;
  470. outline: none;
  471. background-color: #EE7800;
  472. border-radius: 3px;
  473. color: white;
  474. font-size: 1rem;
  475. }
  476. .article-btn {
  477. border: none;
  478. outline: none;
  479. background-color: #EE7800;
  480. border-radius: 3px;
  481. color: white;
  482. font-size: 1rem;
  483. padding: .6rem;
  484. }
  485. .home-btn {
  486. border: none;
  487. outline: none;
  488. background-color: #EE7800;
  489. border-radius: 3px;
  490. color: white;
  491. font-size: 1rem;
  492. padding: .6rem;
  493. }
  494. }
  495. }
  496. }
  497. }
  498. .navbar-search .dropbox__tab .nav-item-link.active .nav-item-link::after {
  499. opacity: 1;
  500. }
  501. .navbar-main.sticky {
  502. position: fixed;
  503. top: 0;
  504. width: 100%;
  505. }
  506. .navbar-main.sticky + .sec-02 {
  507. padding-top: 53.5px;
  508. }
  509. .sec-02 {
  510. &__slider {
  511. width: 100%;
  512. height: 100%;
  513. .slide-item {
  514. width: 100%;
  515. height: 74vh;
  516. background-position: center center;
  517. background-size: cover;
  518. background-repeat: no-repeat;
  519. cursor: pointer;
  520. }
  521. }
  522. .slick-prev:before, .slick-next:before {
  523. display: none;
  524. }
  525. .slick-prev {
  526. left: 15px;
  527. z-index: 3;
  528. }
  529. .slick-next {
  530. right: 15px;
  531. }
  532. }
  533. a {
  534. text-decoration: none;
  535. }
  536. .text-hhh {
  537. color: #EE7800;
  538. }
  539. .content {
  540. background-color: #FCFCFC;
  541. padding: 1rem 30px 0.5rem;
  542. .infoCard {
  543. color: #727679;
  544. text-align: center;
  545. padding: 1rem;
  546. background-color: rgba(244, 244, 244, 0.8);
  547. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
  548. transform: translateY(-150px);
  549. &__seo {
  550. font-size: .9rem;
  551. text-align: center;
  552. padding: 1rem;
  553. display: block;
  554. line-height: 1.2;
  555. }
  556. &__approve {
  557. color: #FF0000;
  558. }
  559. &__avatar {
  560. width: 200px;
  561. height: 200px;
  562. border: 3px solid #FFF;
  563. border-radius: 50%;
  564. background-size: cover;
  565. background-repeat: no-repeat;
  566. }
  567. &__detail {
  568. aside {
  569. line-height: 2;
  570. font-size: .9rem;
  571. }
  572. &__l {
  573. flex-basis: 30%;
  574. display: flex;
  575. justify-content: flex-end;
  576. flex-grow: 0;
  577. max-width: 30%;
  578. &.title {
  579. color: #AAAAAA;
  580. font-size: 1.125rem;
  581. font-weight: 400;
  582. transform: translateX(-15px);
  583. }
  584. }
  585. &__r {
  586. flex-basis: 70%;
  587. text-align: start;
  588. flex-grow: 0;
  589. max-width: 70%;
  590. word-break: break-all;
  591. a {
  592. color: #727679;
  593. &:hover {
  594. color: #EE7800;
  595. }
  596. }
  597. }
  598. }
  599. .scMedia {
  600. display: flex;
  601. padding: 1rem 0;
  602. width: 100%;
  603. margin-left: auto;
  604. margin-right: auto;
  605. justify-content: space-around;
  606. a {
  607. width: 16%;
  608. img {
  609. width: 100%;
  610. }
  611. }
  612. span {
  613. width: 16%;
  614. cursor: pointer;
  615. img {
  616. width: 100%;
  617. }
  618. }
  619. }
  620. }
  621. }
  622. .infoContent {
  623. a {
  624. color: #727679;
  625. text-decoration: none;
  626. font-size: .9rem;
  627. &.active {
  628. color: #EE7800;
  629. }
  630. }
  631. .nav-item {
  632. margin: 0 0.8rem;
  633. width: auto;
  634. &-link {
  635. display: block;
  636. padding: 0.5rem 2.5rem;
  637. text-decoration: none;
  638. background-color: transparent;
  639. font-size: .9rem;
  640. color: #727679;
  641. transition: all .3s;
  642. -webkit-appearance : none !important;
  643. @media screen and (max-width: 1200px) {
  644. padding: 0.5rem .8rem;
  645. }
  646. &:hover {
  647. color: #EE7800;
  648. }
  649. &.active {
  650. color: #EE7800;
  651. border-bottom: 2px solid #EE7800;
  652. }
  653. }
  654. }
  655. .likeSee {
  656. margin-top: .8rem;
  657. @media screen and (max-width: 1200px) {
  658. width: 12%;
  659. position: absolute;
  660. right: -1.5rem;
  661. bottom: -1.5rem;
  662. }
  663. span {
  664. color: #727679;
  665. font-size: .9rem;
  666. cursor: pointer;
  667. &:hover {
  668. color: #EE7800;
  669. }
  670. }
  671. &__divider {
  672. height: 12px;
  673. display: inline-block;
  674. border: 0.5px solid #9d9d9d;
  675. }
  676. }
  677. .card {
  678. box-shadow: 0 1px 10px #eee;
  679. margin: 0 0 1.5rem;
  680. border: none;
  681. overflow: hidden;
  682. &:hover .card__bgImg {
  683. transform: scale(1.1);
  684. }
  685. &__bgImg {
  686. height: 293px;
  687. background-repeat: no-repeat;
  688. background-size: cover;
  689. background-position: center;
  690. position: relative;
  691. display: flex;
  692. justify-content: center;
  693. -webkit-box-align: center;
  694. align-items: center;
  695. -webkit-box-pack: center;
  696. transition: all .4s;
  697. }
  698. &-body {
  699. padding: 0.5rem 1rem;
  700. }
  701. &__title {
  702. font-size: 1.125rem;
  703. -webkit-box-orient: vertical;
  704. box-orient: vertical;
  705. -webkit-line-clamp: 2;
  706. height: calc(18px * 2 * 1.5);
  707. overflow: hidden;
  708. text-overflow: ellipsis;
  709. display: -webkit-box;
  710. font-weight: bold;
  711. margin: 0.5rem 0;
  712. color: #727679;
  713. }
  714. &__tag {
  715. margin: 0 0.2rem 0 0;
  716. &:hover {
  717. color: #EE7800;
  718. }
  719. }
  720. }
  721. .company {
  722. &__block {
  723. margin: 0 0 2rem;
  724. }
  725. &__title {
  726. color: #AAAAAA;
  727. font-size: 2rem;
  728. font-weight: bold;
  729. }
  730. &__text {
  731. color: #43484C;
  732. }
  733. }
  734. }
  735. .nav-collapse-fixed {
  736. position: fixed;
  737. top: 52px;
  738. z-index: -1;
  739. width: 100%;
  740. @media screen and (max-width: 1200px) {
  741. width: auto;
  742. }
  743. opacity: 0;
  744. transition: opacity .5s;
  745. &.sticky {
  746. display: block;
  747. opacity: 1;
  748. z-index: 20;
  749. }
  750. .nav-collpase {
  751. padding: 1rem 0;
  752. background-color: #FCFCFC;
  753. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15)
  754. }
  755. }
  756. .navbar-main.sticky + .hero {
  757. padding-top: 53px;
  758. }
  759. .fixed-btn {
  760. position: fixed;
  761. right: 15px;
  762. bottom: 2rem;
  763. .btn-gotop, .btn-login, .btn-favor {
  764. cursor: pointer;
  765. padding: 1.2rem .8rem;
  766. background-color: rgba(255, 255, 255, 0.897);
  767. display: flex;
  768. align-items: center;
  769. 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);
  770. -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);
  771. -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);
  772. }
  773. }
  774. .footer {
  775. background: #e9e9e9;
  776. padding: 2.5rem 0;
  777. .container {
  778. @media (max-width: 1100px) {
  779. width: 98%;
  780. max-width: 950px;
  781. }
  782. }
  783. &__block {
  784. padding: 1rem 3rem;
  785. border-left: 1px solid rgb(143, 143, 143);
  786. @media (max-width: 1100px) {
  787. padding: 1rem 1rem;
  788. }
  789. &-title {
  790. font-size: 1.3rem;
  791. margin-bottom: 1.5rem;
  792. }
  793. &-list {
  794. padding-left: 0;
  795. }
  796. &:nth-of-type(1) {
  797. border-left: none;
  798. }
  799. &:nth-of-type(2) {
  800. padding: 1rem 4rem;
  801. @media (max-width: 1100px) {
  802. padding: 1rem 1rem;
  803. }
  804. }
  805. &-socials {
  806. padding-left: 0;
  807. display: flex;
  808. align-items: center;
  809. justify-content: space-between;
  810. img {
  811. @media (max-width: 1100px) {
  812. width: 30px;
  813. }
  814. }
  815. }
  816. .follows-fp {
  817. text-decoration: none;
  818. color: #696969;
  819. font-size: .9rem;
  820. display: flex;
  821. align-items: center;
  822. @media (max-width: 1100px) {
  823. font-size: .8rem;
  824. }
  825. }
  826. &-phone {
  827. p {
  828. display: inline;
  829. @media (max-width: 900px) {
  830. display: block;
  831. }
  832. }
  833. p, span {
  834. font-size: .9rem;
  835. }
  836. .text-phone {
  837. color: #EE7800;
  838. text-decoration: none;
  839. }
  840. }
  841. &-links {
  842. display: flex;
  843. align-items: center;
  844. margin-top: 1rem;
  845. justify-content: center;
  846. &-grp {
  847. padding: .3rem;
  848. border-left: 1px solid rgb(185, 185, 185);
  849. &:nth-of-type(1) {
  850. border-left: none;
  851. }
  852. a {
  853. display: block;
  854. text-decoration: none;
  855. color: #696969;
  856. font-size: .9rem;
  857. margin-bottom: .4rem;
  858. @media (max-width: 1100px) {
  859. font-size: .8rem;
  860. }
  861. }
  862. }
  863. }
  864. &-subscribe {
  865. width: 100%;
  866. margin-top: 1rem;
  867. .subscribeBar {
  868. font-size: .8rem;
  869. width: 70%;
  870. margin-left: 7%;
  871. @media (max-width: 900px) {
  872. width: 75%;
  873. margin-left: 3%;
  874. font-size: .7rem;
  875. }
  876. }
  877. .subscribeBtn {
  878. width: 20%;
  879. padding: .4rem .6rem;
  880. padding-bottom: 9px;
  881. border: none;
  882. outline: none;
  883. background-color: rgb(41, 41, 41);
  884. color: white;
  885. border-radius: 0 3px 3px 0;
  886. margin-left: -.4rem;
  887. @media (max-width: 900px) {
  888. margin-left: -.3rem;
  889. font-size: .8rem;
  890. padding-top: 9px;
  891. padding-bottom: 10px;
  892. }
  893. }
  894. }
  895. }
  896. &__list-item {
  897. display: flex;
  898. align-items: center;
  899. text-decoration: none;
  900. margin-bottom: .5rem;
  901. p {
  902. color: #696969;
  903. font-size: .9rem;
  904. font-weight: 300;
  905. }
  906. }
  907. &__list-icon {
  908. width: 30px;
  909. display: flex;
  910. justify-content: center;
  911. margin-right: .3rem;
  912. }
  913. .bottom-box {
  914. padding: 1rem 0;
  915. border-top: 1px solid rgb(185, 185, 185);
  916. margin-top: 2.5rem;
  917. }
  918. }
  919. .like {
  920. display: none;
  921. }
  922. // #pills-intro {
  923. // .work__row {
  924. // .col-md-4:nth-of-type(3n-1) {
  925. // margin-top: .5rem;
  926. // }
  927. // .col-md-4:nth-of-type(3n) {
  928. // margin-top: -1rem;
  929. // }
  930. // .col-md-4:nth-of-type(3n+1) {
  931. // margin-top: -1rem;
  932. // }
  933. // .col-md-4:nth-of-type(2) {
  934. // margin-top: .5rem;
  935. // }
  936. // }
  937. // }
  938. .emodal {
  939. &-title {
  940. color: #EE7800;
  941. margin: 0 auto;
  942. font-size: 18px;;
  943. }
  944. .form-control:focus {
  945. border-color: #ffb76f;
  946. box-shadow: none;
  947. }
  948. .btn-plus {
  949. color: #aaa;
  950. border-color: #aaa;
  951. }
  952. .btn-send {
  953. background-color: #ee7800;
  954. color: white;
  955. width: 30%;
  956. border: none;
  957. padding: 0.875rem 1rem;
  958. border-radius: 2px;
  959. }
  960. .btn-dismiss {
  961. width: 30%;
  962. border: none;
  963. padding: 0.875rem 1rem;
  964. background-color: #d1d2d3;
  965. border-radius: 2px;
  966. color: #fff;
  967. }
  968. }
  969. #putEmail_hidden {
  970. border: 1px solid;
  971. border-radius: 28px;
  972. color: #EE7800 !important;
  973. .fm-email-btn {
  974. padding: 2px 5px 2px 5px;
  975. }
  976. }