style.scss 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893
  1. $horizontal: 480px;
  2. body {
  3. font-family: 'Helvetica Neue';
  4. }
  5. .sec-00 {
  6. background-color: rgb(202, 202, 202);
  7. transition-property: height;
  8. transition-duration: 300ms;
  9. &__close {
  10. position: absolute;
  11. top: 0;
  12. right: 20px;
  13. width: 50px;
  14. height: 30px;
  15. background-color: hsla(0,0%,100%,.66);
  16. border-radius: 0 0 50px 50px;
  17. color: #888;
  18. border: none;
  19. outline: none;
  20. font-size: 11px;
  21. box-shadow: 0 0 10px rgba(32, 32, 32, 0.25);
  22. line-height: 12px;
  23. z-index: 3;
  24. }
  25. &.bannerClose {
  26. height: 0;
  27. overflow: hidden;
  28. transition-property: height;
  29. transition-duration: 300ms;
  30. }
  31. .container-fluid {
  32. background-color: rgb(202, 202, 202);
  33. // height: 295px;
  34. // @media (max-width: 1850px) {
  35. // height: 260px;
  36. // }
  37. // @media (max-width: 1550px) {
  38. // height: 230px;
  39. // }
  40. // @media (max-width: 1100px) {
  41. // height: 200px;
  42. // }
  43. }
  44. &__slider {
  45. margin: 0 auto;
  46. width: 100%;
  47. height: 100%;
  48. max-width: 1310px;
  49. padding-top: 20px;
  50. padding-bottom: 24px;
  51. @media (max-width: 1850px) {
  52. max-width: 1310px;
  53. }
  54. @media (max-width: 1550px) {
  55. max-width: 1310px;
  56. }
  57. .slide-item {
  58. width: 100%;
  59. height: 100%;
  60. max-width: 1310px;
  61. max-height: 300px;
  62. -o-object-fit: contain;
  63. object-fit: contain;
  64. height: 300px;
  65. cursor: pointer;
  66. }
  67. }
  68. .slick-prev:before, .slick-next:before {
  69. display: none;
  70. }
  71. &__bulletList {
  72. position: absolute;
  73. bottom: 21px;
  74. left: calc(50% - 655px);
  75. width: 1310px;
  76. box-sizing: border-box;
  77. display: flex;
  78. z-index: 10;
  79. background-color: rgba(0,0,0,.1);
  80. }
  81. &__bullet {
  82. position: relative;
  83. width: 100%;
  84. height: 3px;
  85. background-color: rgba(0,0,0,.1);
  86. flex: 1 1 auto;
  87. opacity: 1;
  88. &::after {
  89. content: "";
  90. background: #ee7800;
  91. position: absolute;
  92. width: 0;
  93. height: 100%;
  94. left: 0;
  95. top: 0;
  96. border-radius: 2px;
  97. }
  98. }
  99. .bullet-active::after {
  100. width: 0;
  101. -webkit-animation-name: progress;
  102. animation-name: progress;
  103. -webkit-animation-duration: 4s;
  104. animation-duration: 4s;
  105. -webkit-animation-timing-function: linear;
  106. animation-timing-function: linear;
  107. }
  108. }
  109. @keyframes progress{
  110. 0%{
  111. width: 0%;
  112. }
  113. 25%{
  114. width: 25%;
  115. }
  116. 50%{
  117. width: 50%;
  118. }
  119. 75%{
  120. width: 75%;
  121. }
  122. 100%{
  123. width: 100%;
  124. }
  125. };
  126. @-webkit-keyframes progress{
  127. 0%{
  128. width: 0%;
  129. }
  130. 25%{
  131. width: 25%;
  132. }
  133. 50%{
  134. width: 50%;
  135. }
  136. 75%{
  137. width: 75%;
  138. }
  139. 100%{
  140. width: 100%;
  141. }
  142. };
  143. @-webkit-keyframes slidein {
  144. 100% {
  145. height: 0px;
  146. }
  147. }
  148. @keyframes slidein {
  149. 100% {
  150. height: 0px;
  151. }
  152. }
  153. .navbar {
  154. 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);
  155. -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);
  156. -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);
  157. padding-top: 5px;
  158. padding-bottom: 5px;
  159. background-color: white !important;
  160. z-index: 99;
  161. .container-fluid {
  162. padding:0 2.5rem;
  163. @media (max-width: 1100px) {
  164. padding:0 .6rem;
  165. }
  166. }
  167. &-toggler {
  168. padding-left: 0;
  169. border-color: transparent !important;
  170. &:focus {
  171. box-shadow: none;
  172. }
  173. }
  174. &-toggler-icon {
  175. display: flex;
  176. justify-items: center;
  177. i {
  178. font-size: 25px;
  179. line-height: 30px;
  180. display: inline-block;
  181. }
  182. }
  183. &-search, &-login {
  184. padding-right: 2px;
  185. }
  186. &-login {
  187. cursor: pointer;
  188. }
  189. &-search {
  190. &-magnify {
  191. cursor: pointer;
  192. }
  193. }
  194. &-brand {
  195. font-size: 1.5rem;
  196. &.navbar-logo {
  197. display: flex;
  198. align-items: center;
  199. }
  200. .navbar-login {
  201. font-size: 1rem;
  202. color: #EE7800;
  203. text-decoration: none;
  204. }
  205. }
  206. .nav-link {
  207. cursor: pointer;
  208. @media (max-width: 1100px) {
  209. padding: .5rem .5rem;
  210. font-size: .9rem;
  211. }
  212. }
  213. .navbar-nav {
  214. .nav-item {
  215. margin: 0 .5rem;
  216. @media (max-width: 1100px) {
  217. margin: 0 0rem;
  218. }
  219. .dropbox {
  220. visibility: hidden;
  221. opacity: 0;
  222. transition: all .4s;
  223. position: absolute;
  224. width: 100vw;
  225. top: 100%;
  226. left: 0;
  227. background-color: rgba(255, 255, 255, 0.932);
  228. padding-top: 1.5rem;
  229. padding-bottom: 3rem;
  230. ul {
  231. padding-left: 0;
  232. }
  233. &-item {
  234. margin-bottom: .5rem;
  235. &.first {
  236. font-size: 1.1rem;
  237. font-weight: 600;
  238. .dropbox-link {
  239. color: black;
  240. }
  241. }
  242. }
  243. &-link {
  244. text-decoration: none;
  245. color: rgb(146, 146, 146);
  246. font-size: .85rem;
  247. &:hover {
  248. color: #EE7800;
  249. }
  250. &.dropbox-btn {
  251. border: 1px solid rgb(146, 146, 146);
  252. padding: .5rem 2rem;
  253. border-radius: 5px;
  254. width: 85%;
  255. min-width: 7rem;
  256. max-width: 11rem;
  257. }
  258. }
  259. &-btn {
  260. display: flex;
  261. align-items: center;
  262. justify-content: center;
  263. }
  264. .container {
  265. max-width: 900px;
  266. width: 70%;
  267. &.stylebox {
  268. transform: translateX(-30%);
  269. }
  270. &.designerbox {
  271. transform: translateX(-5%);
  272. }
  273. &.newbox {
  274. transform: translateX(15%);
  275. }
  276. &.forumbox {
  277. transform: translateX(50%);
  278. }
  279. }
  280. }
  281. .nav-link {
  282. position: relative;
  283. }
  284. .nav-link:after {
  285. position: absolute;
  286. content: " ";
  287. width: 100%;
  288. height: 90%;
  289. top: 0;
  290. right: 0;
  291. border-bottom: 2px solid #EE7800;
  292. opacity: 0;
  293. transform: opacity 1s;
  294. }
  295. &:hover {
  296. .nav-link:after {
  297. opacity: 1;
  298. }
  299. >.dropbox {
  300. visibility: visible;
  301. opacity: 1;
  302. }
  303. }
  304. }
  305. .nav-item.lg {
  306. .container {
  307. max-width: 1200px;
  308. width: 90%;
  309. }
  310. .dropbox-link {
  311. text-decoration: none;
  312. color: rgb(146, 146, 146);
  313. font-size: .7rem;
  314. &:hover {
  315. color: #EE7800;
  316. }
  317. }
  318. .dropbox-item {
  319. margin-bottom: .1rem;
  320. &.first {
  321. .dropbox-link {
  322. font-size: .85rem;
  323. }
  324. }
  325. }
  326. }
  327. }
  328. &-search {
  329. .container {
  330. max-width: 900px;
  331. width: 70%;
  332. @media (max-width: 1100px) {
  333. width: 90%;
  334. }
  335. }
  336. .dropbox {
  337. visibility: hidden;
  338. opacity: 0;
  339. transition: all .2s;
  340. position: absolute;
  341. width: 100vw;
  342. top: 100%;
  343. left: 0;
  344. background-color: rgba(255, 255, 255, 0.932);
  345. padding-top: 1.5rem;
  346. padding-bottom: 3rem;
  347. &.open {
  348. visibility: visible;
  349. opacity: 1;
  350. }
  351. &__searchtab {
  352. width: 100%;
  353. background-color: gray;
  354. border-radius: 3px;
  355. padding: .2rem 1rem;
  356. padding-bottom: 1rem;
  357. }
  358. &__hots {
  359. &__title {
  360. font-size: 1rem;
  361. color: rgb(107, 107, 107);
  362. }
  363. &__link {
  364. font-size: .9rem;
  365. color: rgb(146, 146, 146);
  366. text-decoration: none;
  367. cursor: pointer;
  368. margin: 0 .2rem;
  369. }
  370. }
  371. &__searchBar {
  372. &__input {
  373. width: 100%;
  374. outline: none;
  375. border: 2px solid #EE7800;
  376. border-radius: 5rem;
  377. padding: .3rem 1.2rem;
  378. font-size: .9rem;
  379. }
  380. &__submit {
  381. outline: none;
  382. border: none;
  383. font-size: .9rem;
  384. background-color: transparent;
  385. color: #EE7800;
  386. margin-left: -1rem;
  387. transform: translateX(-100%);
  388. padding: 0 .6rem;
  389. }
  390. }
  391. &__tab {
  392. .nav-item {
  393. margin: 0 .6rem;
  394. }
  395. }
  396. .nav-item-link {
  397. border: none;
  398. outline: none;
  399. font-size: 1rem;
  400. color: white;
  401. padding: 3px;
  402. position: relative;
  403. &::after {
  404. position: absolute;
  405. content: "";
  406. top: 0;
  407. left: 0;
  408. width: 100%;
  409. height: 100%;
  410. border-bottom: 3px solid #EE7800;
  411. opacity: 0;
  412. }
  413. &.active::after {
  414. opacity: 1;
  415. }
  416. }
  417. }
  418. .dropbox-tab-content {
  419. .tabpar {
  420. display: flex;
  421. padding-top: .5rem;
  422. .col {
  423. margin: 0 .6rem;
  424. }
  425. .select {
  426. font-size: 1rem;
  427. padding: .6rem;
  428. border-radius: 3px;
  429. color: rgb(116, 116, 116);
  430. }
  431. button {
  432. border: none;
  433. outline: none;
  434. background-color: #EE7800;
  435. border-radius: 3px;
  436. color: white;
  437. font-size: 1rem;
  438. padding: .6rem;
  439. }
  440. .image-search {
  441. border: none;
  442. outline: none;
  443. background-color: #EE7800;
  444. border-radius: 3px;
  445. color: white;
  446. font-size: 1rem;
  447. }
  448. .article-btn {
  449. border: none;
  450. outline: none;
  451. background-color: #EE7800;
  452. border-radius: 3px;
  453. color: white;
  454. font-size: 1rem;
  455. padding: .6rem;
  456. }
  457. .home-btn {
  458. border: none;
  459. outline: none;
  460. background-color: #EE7800;
  461. border-radius: 3px;
  462. color: white;
  463. font-size: 1rem;
  464. padding: .6rem;
  465. }
  466. }
  467. }
  468. }
  469. }
  470. .navbar-search .dropbox__tab .nav-item-link.active .nav-item-link::after {
  471. opacity: 1;
  472. }
  473. .navbar-main.sticky {
  474. position: fixed;
  475. top: 0;
  476. width: 100%;
  477. }
  478. .navbar-main.sticky + .sec-02 {
  479. padding-top: 53.5px;
  480. }
  481. .sec-02 {
  482. &__slider {
  483. width: 100%;
  484. height: 100%;
  485. .slide-item {
  486. width: 100%;
  487. height: 500px;
  488. background-position: center center;
  489. background-size: cover;
  490. background-repeat: no-repeat;
  491. cursor: pointer;
  492. }
  493. }
  494. .slick-prev:before, .slick-next:before {
  495. display: none;
  496. }
  497. .slick-prev {
  498. left: 15px;
  499. z-index: 3;
  500. }
  501. .slick-next {
  502. right: 15px;
  503. }
  504. }
  505. .sec-04 {
  506. background-color: #F4F4F4;
  507. padding: 4rem 1rem;
  508. .container {
  509. max-width: 950px;
  510. width: 70%;
  511. @media (max-width: 1100px) {
  512. width: 90%;
  513. }
  514. }
  515. .card {
  516. box-shadow: 1px 2px 8px 1px rgb(214, 214, 214);
  517. text-decoration: none;
  518. cursor: pointer;
  519. transition: all .6s;
  520. &-title {
  521. font-size: 1.4rem;
  522. line-height: 1.8rem;
  523. color: #4C4C4C;
  524. font-weight: 500;
  525. transition: all 2s;
  526. }
  527. &__imgfr {
  528. width: 100%;
  529. img {
  530. width: 100%;
  531. height: 100%;
  532. }
  533. }
  534. &:hover {
  535. transform: scale(1.05);
  536. }
  537. }
  538. }
  539. .sec-guessLike {
  540. .container {
  541. margin:0 auto;
  542. padding: 2rem 2rem;
  543. max-width: 1050px;
  544. width: 70%;
  545. @media (max-width: 1100px) {
  546. width: 90%;
  547. padding: 0 1rem;
  548. }
  549. }
  550. &__titlebox {
  551. &-h2 {
  552. margin: 0 auto;
  553. font-size: 1.8rem;
  554. font-weight: 600;
  555. color: rgb(83, 83, 83);
  556. padding: .8rem 0;
  557. border-bottom: 6px solid #EE7800;
  558. display: inline-block;
  559. }
  560. }
  561. &__title {
  562. display: block;
  563. text-align: center;
  564. position: relative;
  565. font-size: 1.2rem;
  566. margin-bottom: .8rem;
  567. &::before, &::after {
  568. position: absolute;
  569. content: " ";
  570. width: 40%;
  571. height: 0rem;
  572. border-top: 1px solid black;
  573. top: 50%;
  574. }
  575. &::before {
  576. left: 0;
  577. }
  578. &::after {
  579. left: 60%;
  580. }
  581. }
  582. &__article {
  583. h5 {
  584. font-size: 1.1rem;
  585. }
  586. p {
  587. font-size: 14px;
  588. }
  589. }
  590. &__case {
  591. p {
  592. font-size: 1.1rem;
  593. font-weight: 500;
  594. }
  595. }
  596. &__card {
  597. width: 100%;
  598. overflow: hidden;
  599. height: 26vh;
  600. position: relative;
  601. background-position: center center;
  602. background-size: cover;
  603. background-repeat: no-repeat;
  604. &.special {
  605. height: 45vh;
  606. }
  607. &__img {
  608. width: 100%;
  609. transition: all .8s;
  610. }
  611. &__txt {
  612. position: absolute;
  613. bottom: 1rem;
  614. left: 3rem;
  615. color: white;
  616. z-index: 2;
  617. font-size: 600;
  618. text-shadow: 1px 1px 2px gray;
  619. }
  620. }
  621. &__video__play {
  622. position: absolute;
  623. width: 2.5rem;
  624. left: 50%;
  625. top: 50%;
  626. transform: translate(-50%, -50%);
  627. }
  628. }
  629. .sec-05 {
  630. border-top: 1px solid rgb(187, 187, 187);
  631. padding-bottom: 2rem;
  632. .container {
  633. margin:0 auto;
  634. padding: 0 2rem;
  635. max-width: 1050px;
  636. width: 70%;
  637. @media (max-width: 1100px) {
  638. width: 90%;
  639. padding: 0 1rem;
  640. }
  641. }
  642. &__tabdiv {
  643. box-sizing: content-box;
  644. align-items: center;
  645. justify-content: space-between;
  646. .more {
  647. padding-bottom: .4rem;
  648. }
  649. .nav {
  650. &-item {
  651. position: relative;
  652. padding-right: 18px;
  653. padding-left: 18px;
  654. &::after {
  655. position: absolute;
  656. content: " ";
  657. width: 100%;
  658. height: 30%;
  659. left: 0;
  660. top: 35%;
  661. background-color: transparent;
  662. border-right: 1px solid rgb(179, 179, 179);
  663. z-index: -1;
  664. }
  665. &:nth-of-type(3)::after {
  666. display: none;
  667. }
  668. }
  669. &-item-link {
  670. color: black;
  671. font-weight: 500;
  672. font-size: 1.6rem;
  673. border: none;
  674. position: relative;
  675. padding: 1.5rem 0;
  676. outline: none;
  677. @media screen and(max-width: 385px) {
  678. font-size: 1.1rem;
  679. }
  680. &:focus {
  681. outline: none !important;
  682. }
  683. &.active {
  684. color: #EE7800;
  685. }
  686. &::before {
  687. position: absolute;
  688. content: " ";
  689. width: 101%;
  690. height: 100%;
  691. left: -2px;
  692. top: 0px;
  693. background-color: transparent;
  694. border-top: 3px solid #EE7800;
  695. opacity: 0;
  696. }
  697. }
  698. }
  699. .nav-item-link.active::before {
  700. opacity: 1;
  701. }
  702. }
  703. .tab-pane {
  704. height: 100%;
  705. }
  706. &tab-content {
  707. height: 35vh;
  708. }
  709. .tabpar {
  710. &__card {
  711. margin: 3px;
  712. position: relative;
  713. font-size: 14px;
  714. cursor: pointer;
  715. &__imgfr {
  716. width: 100%;
  717. height: 25vh;
  718. position: relative;
  719. background-position: center center;
  720. background-size: cover;
  721. background-repeat: no-repeat;
  722. @media (max-width: 1100px) {
  723. height: 20vh;
  724. }
  725. }
  726. h5 {
  727. font-size: 1rem;
  728. }
  729. p {
  730. font-size: .95rem;
  731. font-weight: 300;
  732. color: gray;
  733. }
  734. &__play {
  735. position: absolute;
  736. left: 50%;
  737. top: 50%;
  738. transform: translate(-50%, -50%);
  739. width: 2.5rem;
  740. }
  741. }
  742. }
  743. .slick-prev {
  744. top: 40%;
  745. left: -2rem;
  746. z-index: 2;
  747. }
  748. .slick-next {
  749. top: 40%;
  750. right: -2rem;
  751. z-index: 2;
  752. }
  753. .slick-prev:before, .slick-next:before {
  754. display: none;
  755. }
  756. }
  757. .sec-06 {
  758. padding: 2rem 0;
  759. .container {
  760. margin:0 auto;
  761. padding: 1rem 2rem;
  762. max-width: 1050px;
  763. width: 70%;
  764. @media (max-width: 1100px) {
  765. width: 90%;
  766. padding: 0 1rem;
  767. }
  768. }
  769. &__title {
  770. h3 {
  771. display: inline-block;
  772. font-size: 1.6rem;
  773. padding-bottom: .5rem;
  774. border-bottom: 6px solid #EE7800;
  775. color: #535353;
  776. margin-bottom: 0;
  777. }
  778. }
  779. &__video {
  780. width: 100%;;
  781. position: relative;
  782. &__imgfr {
  783. width: 100%;
  784. height: 34vh;
  785. background-position: center center;
  786. background-size: cover;
  787. background-repeat: no-repeat;
  788. @media (max-width: 1100px) {
  789. height: 25vh;
  790. }
  791. }
  792. &__play {
  793. position: absolute;
  794. left: 50%;
  795. top: 50%;
  796. width: 2.5rem;
  797. height: 2.5rem;
  798. z-index: 2;
  799. transform: translate(-50%, -50%);
  800. }
  801. }
  802. &__videotxt {
  803. width: 90%;
  804. margin: 0 auto;
  805. background-color: rgba(255, 255, 255, 0.842);
  806. box-shadow: 1px 1px 3px 1px rgba(196, 196, 196, 0.795);
  807. padding: .4rem .8rem;
  808. transform: translateY(-20%);
  809. font-weight: 600;
  810. font-size: 1.1rem;
  811. }
  812. &__btns {
  813. display: block;
  814. outline: none;
  815. border: none;
  816. padding: .4rem 1.2rem;
  817. width: 88%;
  818. margin: 0 auto;
  819. background-color: #ea068c;
  820. color: white;
  821. border-radius: 3px;
  822. box-shadow: 1px 1px 3px 1px rgba(196, 196, 196, 0.795);
  823. transition: all .4s;
  824. text-decoration: none;
  825. &:hover {
  826. transform: translate(2px , 2px);
  827. color: white;
  828. }
  829. &__txt {
  830. font-weight: 600;
  831. }
  832. &:nth-of-type(2), &:nth-of-type(3) {
  833. padding: 1rem 1.2rem;
  834. // #10506d;
  835. }
  836. }
  837. &__card {
  838. width: 100%;
  839. &:hover .sec-06__card__imgfr {
  840. transform: scale(1.1);
  841. }
  842. h5 {
  843. font-size: 1.1rem;
  844. margin-bottom: .3rem;
  845. }
  846. p {
  847. font-size: .9rem;
  848. }
  849. &__outer {
  850. width: 100%;
  851. height: 48vh;
  852. overflow: hidden;
  853. }
  854. &__play {
  855. position: absolute;
  856. left: 50%;
  857. top: 50%;
  858. transform: translate(-50%, -50%);
  859. width: 2.5rem;
  860. }
  861. &__imgfr {
  862. width: 100%;
  863. height: 48vh;
  864. background-position: center center;
  865. background-size: cover;
  866. background-repeat: no-repeat;
  867. transition: all .5s;
  868. position: relative;
  869. }
  870. }
  871. .slick-prev {
  872. top: 40%;
  873. left: .5rem;
  874. z-index: 2;
  875. }
  876. .slick-next {
  877. top: 40%;
  878. right: .5rem;
  879. z-index: 2;
  880. }
  881. .slick-prev:before, .slick-next:before {
  882. display: none;
  883. }
  884. }
  885. .sec-07 {
  886. padding: 2rem 0;
  887. .container {
  888. margin:0 auto;
  889. padding: .8rem 1.2rem;
  890. max-width: 1050px;
  891. width: 70%;
  892. background-color: #F4F4F4;
  893. @media (max-width: 1100px) {
  894. width: 90%;
  895. padding: 0 1rem;
  896. }
  897. }
  898. &__slider {
  899. height: 100%;
  900. .slide-item {
  901. height: 23vh;
  902. background-position: center center;
  903. background-size: contain;
  904. background-repeat: no-repeat;
  905. width: 100%;
  906. margin: 0 5px;
  907. cursor: pointer;
  908. @media (max-width: 1100px) {
  909. height: 18vh;
  910. }
  911. }
  912. }
  913. }
  914. .sec-08 {
  915. padding-bottom: 2.5rem;
  916. .container {
  917. margin:0 auto;
  918. padding: 1rem 0rem;
  919. max-width: 1050px;
  920. width: 70%;
  921. @media (max-width: 1100px) {
  922. width: 90%;
  923. padding: 0 1rem;
  924. }
  925. }
  926. &__title {
  927. border-bottom: 6px solid #EE7800;
  928. color: #535353;
  929. h3 {
  930. font-size: 1.6rem;
  931. }
  932. }
  933. &__slider {
  934. width: 100%;
  935. cursor: pointer;
  936. }
  937. &__imgfr {
  938. width: 100%;
  939. height: 28vh;
  940. background-position: center center;
  941. background-size: cover;
  942. background-repeat: no-repeat;
  943. position: relative;
  944. @media (max-width: 1100px) {
  945. height: 20vh;
  946. }
  947. }
  948. &__card {
  949. h5 {
  950. font-size: 1rem;
  951. }
  952. p {
  953. font-size: .9rem;
  954. }
  955. }
  956. &__card__play {
  957. position: absolute;
  958. left: 50%;
  959. top: 50%;
  960. transform: translate(-50%, -50%);
  961. width: 2.5rem;
  962. }
  963. &__cardtxt {
  964. font-size: 14px;
  965. padding-right: .6rem;
  966. }
  967. .slick-prev {
  968. top: 40%;
  969. left: -2rem;
  970. z-index: 2;
  971. }
  972. .slick-next {
  973. top: 40%;
  974. right: -2rem;
  975. z-index: 2;
  976. }
  977. .slick-prev:before, .slick-next:before {
  978. display: none;
  979. }
  980. }
  981. .sec-09 {
  982. background-color: #F4F4F4;
  983. .container {
  984. margin:0 auto;
  985. padding: 2rem 0rem;
  986. max-width: 1050px;
  987. width: 70%;
  988. @media (max-width: 1100px) {
  989. width: 90%;
  990. padding: 0 1rem;
  991. }
  992. }
  993. &__imgfr {
  994. width: 100%;
  995. height: 25vh;
  996. background-position: center center;
  997. background-size: cover;
  998. background-repeat: no-repeat;
  999. position: relative;
  1000. @media (max-width: 1100px) {
  1001. height: 20vh;
  1002. }
  1003. }
  1004. &__card {
  1005. margin: 5px;
  1006. text-align: center;
  1007. cursor: pointer;
  1008. p {
  1009. font-size: 14px;
  1010. margin-top: .5rem;
  1011. }
  1012. &__play {
  1013. position: absolute;
  1014. right: .6rem;
  1015. bottom: .6rem;
  1016. width: 2.5rem;
  1017. }
  1018. }
  1019. &__title {
  1020. border-bottom: 6px solid #EE7800;
  1021. color: #535353;
  1022. h3 {
  1023. font-size: 1.6rem;
  1024. }
  1025. }
  1026. .slick-prev {
  1027. top: 40%;
  1028. left: -2rem;
  1029. z-index: 2;
  1030. }
  1031. .slick-next {
  1032. top: 40%;
  1033. right: -2rem;
  1034. z-index: 2;
  1035. }
  1036. .slick-prev:before, .slick-next:before {
  1037. display: none;
  1038. }
  1039. }
  1040. .sec-10 {
  1041. padding: 2.5rem 0;
  1042. .container {
  1043. max-width: 1000px;
  1044. width: 70%;
  1045. @media (max-width: 1100px) {
  1046. width: 90%;
  1047. padding: 0 1rem;
  1048. }
  1049. }
  1050. &__titlebox {
  1051. border-bottom: 1px solid rgb(75, 75, 75);
  1052. display: flex;
  1053. justify-content: center;
  1054. &-h2 {
  1055. margin: 0 auto;
  1056. font-size: 1.8rem;
  1057. font-weight: 600;
  1058. color: rgb(83, 83, 83);
  1059. padding: .8rem 0;
  1060. border-bottom: 6px solid #EE7800;
  1061. display: inline-block;
  1062. }
  1063. }
  1064. &__card {
  1065. cursor: pointer;
  1066. h5 {
  1067. font-size: 1rem;
  1068. margin-bottom: .3rem;
  1069. }
  1070. p {
  1071. font-size: .95rem;
  1072. font-weight: 300;
  1073. color: gray;
  1074. }
  1075. &-img {
  1076. width: 100%;
  1077. height: 25vh;
  1078. background-position: center center;
  1079. background-size: cover;
  1080. background-repeat: no-repeat;
  1081. position: relative;
  1082. @media (max-width: 1100px) {
  1083. height: 20vh;
  1084. }
  1085. }
  1086. &__play {
  1087. position: absolute;
  1088. right: 1rem;
  1089. bottom: 1rem;
  1090. width: 2.5rem;
  1091. height: 2.5rem;
  1092. }
  1093. }
  1094. }
  1095. .sec-11 {
  1096. padding: 2.5rem 0;
  1097. padding-top: 1rem;
  1098. .container {
  1099. max-width: 1000px;
  1100. width: 70%;
  1101. @media (max-width: 1100px) {
  1102. width: 90%;
  1103. padding: 0 1rem;
  1104. }
  1105. }
  1106. &__titlebox {
  1107. border-bottom: 1px solid rgb(75, 75, 75);
  1108. display: flex;
  1109. justify-content: center;
  1110. &-h2 {
  1111. margin: 0 auto;
  1112. font-size: 1.8rem;
  1113. font-weight: 600;
  1114. color: rgb(83, 83, 83);
  1115. padding: .8rem 0;
  1116. border-bottom: 6px solid #EE7800;
  1117. display: inline-block;
  1118. }
  1119. }
  1120. &__card {
  1121. cursor: pointer;
  1122. h5 {
  1123. font-size: 1rem;
  1124. margin-bottom: .3rem;
  1125. }
  1126. p {
  1127. font-size: .95rem;
  1128. font-weight: 300;
  1129. color: gray;
  1130. }
  1131. &-img {
  1132. width: 100%;
  1133. height: 25vh;
  1134. background-position: center center;
  1135. background-size: cover;
  1136. background-repeat: no-repeat;
  1137. position: relative;
  1138. @media (max-width: 1100px) {
  1139. height: 20vh;
  1140. }
  1141. }
  1142. &__play {
  1143. position: absolute;
  1144. right: 1rem;
  1145. bottom: 1rem;
  1146. width: 2.5rem;
  1147. height: 2.5rem;
  1148. }
  1149. }
  1150. }
  1151. .footer {
  1152. background: #e9e9e9;
  1153. padding: 2.5rem 0;
  1154. .container {
  1155. @media (max-width: 1100px) {
  1156. width: 98%;
  1157. max-width: 950px;
  1158. }
  1159. }
  1160. &__block {
  1161. padding: 1rem 3rem;
  1162. border-left: 1px solid rgb(143, 143, 143);
  1163. @media (max-width: 1100px) {
  1164. padding: 1rem 1rem;
  1165. }
  1166. &-title {
  1167. font-size: 1.3rem;
  1168. margin-bottom: 1.5rem;
  1169. }
  1170. &-list {
  1171. padding-left: 0;
  1172. }
  1173. &:nth-of-type(1) {
  1174. border-left: none;
  1175. }
  1176. &:nth-of-type(2) {
  1177. padding: 1rem 4rem;
  1178. @media (max-width: 1100px) {
  1179. padding: 1rem 1rem;
  1180. }
  1181. }
  1182. &-socials {
  1183. padding-left: 0;
  1184. display: flex;
  1185. align-items: center;
  1186. justify-content: space-between;
  1187. img {
  1188. @media (max-width: 1100px) {
  1189. width: 30px;
  1190. }
  1191. }
  1192. }
  1193. .follows-fp {
  1194. text-decoration: none;
  1195. color: #696969;
  1196. font-size: .9rem;
  1197. display: flex;
  1198. align-items: center;
  1199. @media (max-width: 1100px) {
  1200. font-size: .8rem;
  1201. }
  1202. }
  1203. &-phone {
  1204. p {
  1205. display: inline;
  1206. @media (max-width: 900px) {
  1207. display: block;
  1208. }
  1209. }
  1210. p, span {
  1211. font-size: .9rem;
  1212. }
  1213. .text-phone {
  1214. color: #EE7800;
  1215. text-decoration: none;
  1216. }
  1217. }
  1218. &-links {
  1219. display: flex;
  1220. align-items: center;
  1221. margin-top: 1rem;
  1222. justify-content: center;
  1223. &-grp {
  1224. padding: .3rem;
  1225. border-left: 1px solid rgb(185, 185, 185);
  1226. &:nth-of-type(1) {
  1227. border-left: none;
  1228. }
  1229. a {
  1230. display: block;
  1231. text-decoration: none;
  1232. color: #696969;
  1233. font-size: .9rem;
  1234. margin-bottom: .4rem;
  1235. @media (max-width: 1100px) {
  1236. font-size: .8rem;
  1237. }
  1238. }
  1239. }
  1240. }
  1241. &-subscribe {
  1242. width: 100%;
  1243. margin-top: 1rem;
  1244. .subscribeBar {
  1245. font-size: .8rem;
  1246. width: 70%;
  1247. margin-left: 7%;
  1248. @media (max-width: 900px) {
  1249. width: 75%;
  1250. margin-left: 3%;
  1251. font-size: .7rem;
  1252. }
  1253. }
  1254. .subscribeBtn {
  1255. width: 20%;
  1256. padding: .4rem .6rem;
  1257. padding-bottom: 9px;
  1258. border: none;
  1259. outline: none;
  1260. background-color: rgb(41, 41, 41);
  1261. color: white;
  1262. border-radius: 0 3px 3px 0;
  1263. margin-left: -.4rem;
  1264. @media (max-width: 900px) {
  1265. margin-left: -.3rem;
  1266. font-size: .8rem;
  1267. padding-top: 9px;
  1268. padding-bottom: 10px;
  1269. }
  1270. }
  1271. }
  1272. }
  1273. &__list-item {
  1274. display: flex;
  1275. align-items: center;
  1276. text-decoration: none;
  1277. margin-bottom: .5rem;
  1278. p {
  1279. color: #696969;
  1280. font-size: .9rem;
  1281. font-weight: 300;
  1282. }
  1283. }
  1284. &__list-icon {
  1285. width: 30px;
  1286. display: flex;
  1287. justify-content: center;
  1288. margin-right: .3rem;
  1289. }
  1290. .bottom-box {
  1291. padding: 1rem 0;
  1292. border-top: 1px solid rgb(185, 185, 185);
  1293. margin-top: 2.5rem;
  1294. }
  1295. }
  1296. #videoModal .modal-content {
  1297. background-color: transparent;
  1298. border: none;
  1299. width: fit-content;
  1300. }
  1301. #videoModal .modal-dialog {
  1302. max-width: 700px;
  1303. }
  1304. .more {
  1305. &link {
  1306. text-decoration: none;
  1307. color: #EE7800;
  1308. font-weight: 700;
  1309. &:hover {
  1310. color: #EE7800;
  1311. }
  1312. }
  1313. }
  1314. .fixed-btn {
  1315. position: fixed;
  1316. right: 15px;
  1317. bottom: 2rem;
  1318. @media screen and (max-width: 576px) {
  1319. bottom: 8rem;
  1320. }
  1321. .btn-gotop, .btn-login, .btn-favor,
  1322. .btn-match {
  1323. cursor: pointer;
  1324. padding: 1.2rem .8rem;
  1325. background-color: rgba(255, 255, 255, 0.897);
  1326. display: flex;
  1327. align-items: center;
  1328. justify-content: center;
  1329. 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);
  1330. -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);
  1331. -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);
  1332. }
  1333. .btn-match {
  1334. height: 57px;
  1335. padding: .2rem;
  1336. background-color: white;
  1337. font-size: 1em;
  1338. word-spacing: 5px;
  1339. width: 57px;
  1340. text-align: center;
  1341. position: relative;
  1342. &::after {
  1343. content: "快速媒合設計師";
  1344. background-color: #EE7800;
  1345. color: white;
  1346. width: 180%;
  1347. right: -5px;
  1348. top: -15px;
  1349. position: absolute;
  1350. font-size: .8rem;
  1351. padding: 1.5px 3px;
  1352. opacity: 0;
  1353. transition: all .4s;
  1354. }
  1355. &__back {
  1356. width: 35px;
  1357. height: 35px;
  1358. background-image: url('../images/match_icon_uncover.png');
  1359. background-position: center;
  1360. background-size: contain;
  1361. transition: all .4s;
  1362. }
  1363. &:hover .btn-match__back {
  1364. background-image: url('../images/match_icon.png');
  1365. }
  1366. &:hover::after {
  1367. opacity: 1;
  1368. top: -25px;
  1369. }
  1370. }
  1371. }
  1372. #matchModal .modal-content {
  1373. position: relative;
  1374. .btn-close {
  1375. position: absolute;
  1376. right: 1rem;
  1377. top: 1rem;
  1378. }
  1379. }
  1380. .match__next {
  1381. outline: none;
  1382. border: none;
  1383. background-color: #EE7800;
  1384. border-radius: .3rem;
  1385. padding-top: .5rem;
  1386. padding-bottom: .5rem;
  1387. color: white;
  1388. }
  1389. .match__next2 {
  1390. outline: none;
  1391. border: none;
  1392. background-color: #EE7800;
  1393. border-radius: .3rem;
  1394. padding-top: .5rem;
  1395. padding-bottom: .5rem;
  1396. color: white;
  1397. }
  1398. .sec-match {
  1399. position: relative;
  1400. .container__match {
  1401. @media screen and (min-width: 576px) {
  1402. max-width: 700px;
  1403. }
  1404. @media screen and (min-width: 768px) {
  1405. max-width: 880px;
  1406. }
  1407. @media screen and (min-width: 992px) {
  1408. max-width: 1100px;
  1409. }
  1410. @media screen and (min-width: 1100px) {
  1411. max-width: 1300px;
  1412. }
  1413. }
  1414. p {
  1415. color: #707070;
  1416. }
  1417. &__imgfr {
  1418. width: 100%;
  1419. height: 14rem;
  1420. // background-image: url(https://images.hhh.com.tw/uploads/_hcolumn_orig/point05_244_01.jpg);
  1421. background-position: center;
  1422. background-size: cover;
  1423. cursor: pointer;
  1424. transition: all .4s;
  1425. @media screen and (max-width: 1025px) {
  1426. height: 10rem;
  1427. }
  1428. &:hover {
  1429. transform: scale(1.1);
  1430. }
  1431. }
  1432. &__designer {
  1433. // background-image: url(https://cloud.hhh.com.tw/upload/_hdesigner/img_path_611_20190318172644.jpg);
  1434. width: 12rem;
  1435. height: 12rem;
  1436. background-position: center;
  1437. background-size: cover;
  1438. border-radius: 50%;
  1439. @media screen and (max-width: 1025px) {
  1440. width: 10rem;
  1441. height: 10rem;
  1442. }
  1443. }
  1444. &__like {
  1445. @media screen and (max-width: 1025px) {
  1446. max-width: 9rem;
  1447. }
  1448. }
  1449. &__consult {
  1450. @media screen and (max-width: 1025px) {
  1451. max-width: 9rem;
  1452. }
  1453. }
  1454. .btn-match {
  1455. outline: none;
  1456. border: none;
  1457. color: #EE7800;
  1458. border: 1px solid #EE7800;
  1459. background-color: transparent;
  1460. border-radius: 10px;
  1461. padding: .3rem .6rem;
  1462. transition: all .3s;
  1463. &.clicked {
  1464. color: #B2B2B2;
  1465. border: 1px solid #B2B2B2;
  1466. &:hover {
  1467. color: #B2B2B2;
  1468. border: 1px solid #B2B2B2;
  1469. background-color: transparent;
  1470. }
  1471. }
  1472. &:hover {
  1473. background-color: #EE7800;
  1474. color: white;
  1475. }
  1476. }
  1477. .container__row {
  1478. border-bottom: 1px solid #B2B2B2;
  1479. &:last-of-type {
  1480. border-bottom: none;
  1481. }
  1482. }
  1483. .close {
  1484. position: absolute;
  1485. right: 3%;
  1486. top: 0%;
  1487. cursor: pointer;
  1488. }
  1489. }
  1490. .sec-result {
  1491. padding: .5rem;
  1492. p {
  1493. color: #707070;
  1494. }
  1495. &__imgfr {
  1496. width: 90%;
  1497. height: 18rem;
  1498. background-image: url(https://images.hhh.com.tw/uploads/_hcolumn_orig/point05_244_01.jpg);
  1499. background-position: center;
  1500. background-size: cover;
  1501. }
  1502. &__designer {
  1503. background-image: url(https://cloud.hhh.com.tw/upload/_hdesigner/img_path_611_20190318172644.jpg);
  1504. width: 6rem;
  1505. height: 6rem;
  1506. background-position: center;
  1507. background-size: cover;
  1508. border-radius: 50%;
  1509. }
  1510. .btn-match {
  1511. outline: none;
  1512. border: none;
  1513. color: #EE7800;
  1514. border: 1px solid #EE7800;
  1515. background-color: transparent;
  1516. padding: .4rem .8rem;
  1517. transition: all .3s;
  1518. &:hover {
  1519. background-color: #EE7800;
  1520. color: white;
  1521. }
  1522. }
  1523. .container__row {
  1524. border: 1px solid #B2B2B2;
  1525. margin-bottom: 1rem;
  1526. }
  1527. &__consulting {
  1528. color: #707070;
  1529. }
  1530. &__num {
  1531. color: #EE7800;
  1532. }
  1533. }
  1534. .fixed_menu {
  1535. height: 78px;
  1536. position: fixed;
  1537. z-index: 4;
  1538. bottom: 0;
  1539. left: 0;
  1540. width: 100%;
  1541. background-color: #fff;
  1542. box-shadow: 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  1543. -webkit-box-shadow: 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  1544. -moz-box-shadow: 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  1545. //padding-bottom: 16px;
  1546. @media (min-width: $horizontal) {
  1547. height: 50px;
  1548. }
  1549. .row {
  1550. @media (min-width: $horizontal) {
  1551. height: 50px;
  1552. }
  1553. }
  1554. &__box {
  1555. @media (min-width: $horizontal) {
  1556. width: 100%;
  1557. height: 100%;
  1558. }
  1559. img {
  1560. &:focus-visible {
  1561. outline: none;
  1562. }
  1563. @media (min-width: $horizontal) {
  1564. width: 100%;
  1565. height: 100%;
  1566. }
  1567. }
  1568. }
  1569. }
  1570. .sec-login {
  1571. &-list {
  1572. background-color: #F3F3F3;
  1573. padding: 1rem;
  1574. padding-bottom: 1.4rem;
  1575. hr {
  1576. background-color: #aaaaaa;
  1577. }
  1578. }
  1579. &-btns {
  1580. padding: 1rem;
  1581. background-color: white;
  1582. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  1583. }
  1584. }
  1585. #loginModal {
  1586. .btn-close {
  1587. position: absolute;
  1588. right: -2rem;
  1589. top: -2rem;
  1590. }
  1591. }
  1592. #favorModal {
  1593. .btn-close {
  1594. position: absolute;
  1595. right: -2rem;
  1596. top: -2rem;
  1597. }
  1598. .sec-favor {
  1599. &-title {
  1600. color: #4C4C4C;
  1601. font-size: 18px;
  1602. }
  1603. &-list {
  1604. background-color: #F3F3F3;
  1605. padding: 1rem;
  1606. padding-bottom: 1.4rem;
  1607. hr {
  1608. background-color: #aaaaaa;
  1609. }
  1610. }
  1611. &-form, &-checklist {
  1612. .form-user {
  1613. width: 50%;
  1614. color: #707070;
  1615. font-size: 16px;
  1616. }
  1617. .form-progressbar {
  1618. width: 50%;
  1619. display: flex;
  1620. justify-content: space-between;
  1621. li {
  1622. width: 1.6rem;
  1623. height: 1.6rem;
  1624. border-radius: 50%;
  1625. border: 2px solid #D3D3D3;
  1626. line-height: 1.4rem;
  1627. display: flex;
  1628. justify-content: center;
  1629. position: relative;
  1630. color: #D3D3D3;
  1631. background-color: #F3F3F3;
  1632. z-index: 2;
  1633. &.active {
  1634. border: 2px solid #EE7800;
  1635. color: #EE7800;
  1636. &::before {
  1637. border-top: 2px solid #EE7800;
  1638. }
  1639. }
  1640. &::before {
  1641. position: absolute;
  1642. content: " ";
  1643. width: 4rem;
  1644. height: 0;
  1645. border-top: 2px dashed #D3D3D3;
  1646. right: 100%;
  1647. top: 50%;
  1648. z-index: 1;
  1649. }
  1650. &:nth-of-type(1)::before {
  1651. display: none;
  1652. }
  1653. }
  1654. }
  1655. .form-step {
  1656. background-color: white;
  1657. border-radius: 3px;
  1658. padding: 1.5rem 1rem;
  1659. padding-bottom: 1.5rem;
  1660. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  1661. overflow: visible;
  1662. .next {
  1663. padding: .6rem 5rem;
  1664. background-color: #EE7800;
  1665. border-radius: 3px;
  1666. color: white;
  1667. border: none;
  1668. outline: none;
  1669. }
  1670. }
  1671. .form-step1 {
  1672. display: block;
  1673. }
  1674. .form-step2 {
  1675. display: none;
  1676. }
  1677. .form-step3 {
  1678. display: none;
  1679. position: relative;
  1680. padding-bottom: 1.5rem;
  1681. }
  1682. input[type="checkbox"], input[type="radio"] {
  1683. display: none;
  1684. }
  1685. .imgfr {
  1686. background-position: center center;
  1687. background-size: cover;
  1688. background-repeat: no-repeat;
  1689. width: 100%;
  1690. height: 4.5rem;
  1691. border-radius: 8px;
  1692. border: 2px solid transparent;
  1693. }
  1694. h4 {
  1695. color: #AAAAAA;
  1696. font-size: 15px;
  1697. font-weight: 400;
  1698. }
  1699. input[type="checkbox"]:checked + .fs-label-info .imgfr {
  1700. border: 2px solid #EE7800;
  1701. }
  1702. input[type="checkbox"]:checked + .fs-label-chbox {
  1703. border: 1px solid #EE7800;
  1704. color: #EE7800;
  1705. }
  1706. input[type="radio"]:checked + .fs-label-chbox {
  1707. border: 1px solid #EE7800;
  1708. color: #EE7800;
  1709. }
  1710. .step3-block {
  1711. margin-bottom: 1rem;
  1712. &:nth-of-type(3) {
  1713. margin-bottom: 0;
  1714. }
  1715. &-title {
  1716. color: #AAAAAA;
  1717. display: block;
  1718. margin-bottom: .5rem;
  1719. font-size: 1rem;
  1720. }
  1721. .radio {
  1722. display: inline-block;
  1723. padding: .25rem .7rem;
  1724. margin-right: .4rem;
  1725. border: 1px solid #707070;
  1726. border-radius: 2rem;
  1727. color: #797979;
  1728. margin-bottom: .5rem;
  1729. }
  1730. }
  1731. .skip {
  1732. padding: .3rem 1rem;
  1733. color: #AAAAAA;
  1734. border: none;
  1735. outline: none;
  1736. background-color: transparent;
  1737. }
  1738. .btngrp {
  1739. /* position: absolute;
  1740. left: 50%;
  1741. transform: translateX(-50%);
  1742. bottom: -6rem; */
  1743. display: flex;
  1744. flex-direction: column;
  1745. align-items: center;
  1746. .next {
  1747. transform: translateY(0rem);
  1748. }
  1749. }
  1750. }
  1751. &-checklist .form-user {
  1752. margin: 0 auto;
  1753. text-align: center;
  1754. margin-bottom: 1rem;
  1755. }
  1756. &-btns {
  1757. padding: 1rem;
  1758. background-color: white;
  1759. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  1760. }
  1761. }
  1762. }
  1763. .test {
  1764. position: relative;
  1765. .cover {
  1766. width: 100%;
  1767. position: absolute;
  1768. left: 0;
  1769. bottom: 0;
  1770. display: block;
  1771. background-color: white;
  1772. height: 100%;
  1773. &.slidein {
  1774. //transform: translateX(0px);
  1775. -webkit-animation: slidein 2s forwards;
  1776. animation: slidein 2s forwards;
  1777. }
  1778. }
  1779. }
  1780. .title_back {
  1781. display: block;
  1782. position: relative;
  1783. width: 10em;
  1784. height: 1.75em;
  1785. overflow: hidden;
  1786. .title {
  1787. position: absolute;
  1788. left: 0;
  1789. bottom: -1.75em;
  1790. display: block;
  1791. transition: all 1s;
  1792. }
  1793. }
  1794. .test_content {
  1795. opacity: 0;
  1796. &.fadein {
  1797. //transform: translateX(0px);
  1798. -webkit-animation: fadein 2s forwards;
  1799. animation: fadein 2s forwards;
  1800. }
  1801. }
  1802. @-webkit-keyframes slidein {
  1803. 100% { height: 0px; }
  1804. }
  1805. @keyframes slidein {
  1806. 100% { height: 0px; }
  1807. }
  1808. @-webkit-keyframes fadein {
  1809. 100% { opacity: 1; }
  1810. }
  1811. @keyframes fadein {
  1812. 100% { opacity: 1; }
  1813. }
  1814. .last-step {
  1815. cursor: pointer;
  1816. }
  1817. .btn-call {
  1818. color: #EA068C;
  1819. padding: .6rem 1.5rem;
  1820. border: 1px solid #EA068C;
  1821. border-radius: 2rem;
  1822. background-color: transparent;
  1823. text-decoration: none;
  1824. &:hover {
  1825. color: #EA068C;
  1826. }
  1827. }
  1828. .small {
  1829. font-size: .7rem;
  1830. }
  1831. .container_match, .container_match2 {
  1832. label {
  1833. margin-top: .4rem;
  1834. }
  1835. }