main.scss 24 KB

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