main.scss 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948
  1. body {
  2. font-family: 'Helvetica Neue';
  3. }
  4. .sec-00 {
  5. &__slider {
  6. width: 100%;
  7. height: 100%;
  8. &-1, &-2, &-3, &-4, &-5 {
  9. height: 110px;
  10. background-position: center center;
  11. background-size: cover;
  12. background-repeat: no-repeat;
  13. }
  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: 68px;
  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. &-1, &-2, &-3, &-4, &-5, &-6{
  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: 340px;
  208. position: relative;
  209. font-size: 14px;
  210. &__imgfr {
  211. width: 100%;
  212. height: 28vh;
  213. overflow: hidden;
  214. }
  215. &__img {
  216. width: 100%;
  217. height: 100%;
  218. }
  219. &__play {
  220. position: absolute;
  221. right: 1rem;
  222. bottom: 5rem;
  223. width: 2.5rem;
  224. }
  225. }
  226. }
  227. }
  228. .sec-04 {
  229. background-color: #F4F4F4;
  230. padding: 1.5rem 1rem;
  231. .card {
  232. box-shadow: 1px 2px 8px 1px rgb(214, 214, 214);
  233. text-decoration: none;
  234. &-title {
  235. font-size: 1.1rem;
  236. line-height: 1.6rem;
  237. color: #4C4C4C;
  238. font-weight: 500;
  239. }
  240. &__imgfr {
  241. width: 100%;
  242. img {
  243. width: 100%;
  244. height: 100%;
  245. }
  246. }
  247. }
  248. }
  249. .sec-05 {
  250. &__video {
  251. width: 100%;
  252. height: 32vh;
  253. position: relative;
  254. &__play {
  255. position: absolute;
  256. left: 50%;
  257. top: 50%;
  258. transform: translate(-50%, -50%);
  259. width: 3.5rem;
  260. height: 3.5rem;
  261. }
  262. &__img {
  263. width: 100%;
  264. height: 100%;
  265. }
  266. }
  267. p {
  268. font-size: 14px;
  269. text-align: center;
  270. }
  271. }
  272. .sec-06 {
  273. .carousel {
  274. height: 32vh;
  275. &-inner {
  276. height: 100%;
  277. overflow: hidden;
  278. }
  279. &-item {
  280. height: 100%;
  281. width: 100%;
  282. background-size: cover;
  283. background-repeat: no-repeat;
  284. background-position: center;
  285. }
  286. &-control-next-icon, &-control-prev-icon {
  287. width: 2.5rem;
  288. height: 2.5rem;
  289. }
  290. }
  291. }
  292. .sec-07 {
  293. &__slider {
  294. width: 100%;
  295. }
  296. &__imgfr {
  297. width: 100%;
  298. height: 28vh;
  299. overflow: hidden;
  300. img{
  301. width: 100%;
  302. }
  303. }
  304. &__cardtxt {
  305. font-size: 14px;
  306. padding-right: .6rem;
  307. }
  308. .slick-dots {
  309. width: 15%;
  310. margin: 0 auto;
  311. margin-top: 1.5rem;
  312. height: 5px;
  313. background-color: rgb(214, 214, 214);
  314. border-radius: 1rem;
  315. display: flex;
  316. position: static;
  317. li {
  318. &.slick-active {
  319. button {
  320. background-color: #EE7800;
  321. }
  322. }
  323. margin: 0px;
  324. width: 33.33%;
  325. button {
  326. padding: 0;
  327. width: 100%;
  328. height: 5px;
  329. border-radius: 1rem;
  330. &::before {
  331. opacity: 0;
  332. }
  333. }
  334. }
  335. }
  336. .slick-dotted.slick-slider {
  337. margin-bottom: 0;
  338. }
  339. }
  340. .sec-08 {
  341. &__slider {
  342. height: 100%;
  343. &-1, &-2, &-3{
  344. height: 28vh;
  345. background-position: center center;
  346. background-size: contain;
  347. background-repeat: no-repeat;
  348. }
  349. }
  350. }
  351. .sec-09 {
  352. margin-bottom: 1rem;
  353. &__cardgrp {
  354. min-width: 100%;
  355. height: 20vh;
  356. overflow-x: auto;
  357. display: flex;
  358. box-shadow: 0 4px 2px -2px rgb(216, 216, 216);
  359. -webkit-box-shadow: 0 4px 2px -2px rgb(216, 216, 216);
  360. -moz-box-shadow: 0 4px 2px -2px rgb(216, 216, 216);
  361. &::-webkit-scrollbar {
  362. display: none;
  363. }
  364. -ms-overflow-style: none; /* IE and Edge */
  365. scrollbar-width: none;
  366. }
  367. &__card {
  368. margin: 5px;
  369. display: inline-block;
  370. min-width: 35vw;
  371. &__imgfr {
  372. width: 100%;
  373. img {
  374. width: 100%;
  375. height: 100%;
  376. }
  377. }
  378. p {
  379. font-size: 12.5px;
  380. margin-top: .5rem;
  381. }
  382. }
  383. }
  384. .sec-10 {
  385. margin-bottom: 1.5rem;
  386. &__slider {
  387. width: 100%;
  388. &-1, &-2, &-3, &-4, &-5, &-6 {
  389. height: 28vh;
  390. background-position: center center;
  391. background-size: cover;
  392. background-repeat: no-repeat;
  393. }
  394. }
  395. /* &__imgfr {
  396. width: 100%;
  397. height: 100%;
  398. img{
  399. width: 100%;
  400. }
  401. } */
  402. &__cardtxt {
  403. font-size: 14px;
  404. }
  405. }
  406. .sec-11 {
  407. &__slider {
  408. width: 100%;
  409. &-1, &-2, &-3, &-4, &-5, &-6 {
  410. height: 28vh;
  411. background-position: center center;
  412. background-size: cover;
  413. background-repeat: no-repeat;
  414. }
  415. }
  416. &__imgfr {
  417. width: 100%;
  418. height: 100%;
  419. img{
  420. width: 100%;
  421. }
  422. }
  423. &__cardtxt {
  424. font-size: 14px;
  425. }
  426. }
  427. .more {
  428. &link {
  429. text-decoration: none;
  430. color: #EE7800;
  431. &:hover {
  432. color: #EE7800;
  433. }
  434. }
  435. }
  436. .fixed_menu {
  437. height: 82px;
  438. position: fixed;
  439. z-index: 4;
  440. bottom: 0;
  441. left: 0;
  442. width: 100%;
  443. background-color: #fff;
  444. box-shadow: 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  445. -webkit-box-shadow: 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  446. -moz-box-shadow: 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  447. //padding-bottom: 16px;
  448. }
  449. .sec-menu {
  450. display: none;
  451. z-index: 105;
  452. position: absolute;
  453. top: 0;
  454. left: 0;
  455. right: 0;
  456. font-size: 14px;
  457. &-block {
  458. padding-top: 61px;
  459. margin:0;
  460. // transform: translateX(-500px);
  461. //transition: transform 1s;
  462. position: fixed;
  463. top: 0;
  464. left: 0;
  465. right: 0;
  466. height: 100%;
  467. overflow-y: scroll;
  468. max-width: 100%;
  469. background-color: white;
  470. &.active {
  471. //transform: translateX(0px);
  472. }
  473. }
  474. &-list {
  475. background: white;
  476. margin-bottom: 0;
  477. .navbar-nav {
  478. padding: 0 2rem;
  479. width: 100%;
  480. .dropdown-menu {
  481. border: none;
  482. padding: 0;
  483. height: 0;
  484. opacity: 0;
  485. transition: all 1s;
  486. &.show {
  487. height: fit-content;
  488. opacity: 1;
  489. }
  490. .dropdown-item {
  491. padding-left: 3rem;
  492. &:active, &.active, &:focus {
  493. background-color: white;
  494. }
  495. &:hover {
  496. background-color: white;
  497. }
  498. }
  499. .sub-menu {
  500. .dropdown-item {
  501. padding-left: 6rem;
  502. }
  503. }
  504. }
  505. }
  506. .nav-item {
  507. font-size: 17px;
  508. display: block;
  509. width: 100%;
  510. }
  511. .nav-link {
  512. padding-top: 11px;
  513. padding-bottom: 8px;
  514. color: #707070;
  515. position: relative;
  516. .link_div {
  517. width: 25px;
  518. }
  519. a {
  520. color: #707070;
  521. text-decoration: none;
  522. }
  523. &.show {
  524. i {
  525. transform: rotate(-180deg);
  526. }
  527. }
  528. .expand {
  529. position: absolute;
  530. right: 10px;
  531. i {
  532. font-size: 11px;
  533. color: #D3D3D3;
  534. transition: all .5s;
  535. }
  536. }
  537. &.text-main {
  538. color: #EE7800;
  539. }
  540. }
  541. .sub-link {
  542. .expand {
  543. position: absolute;
  544. right: 20px;
  545. top: 8px;
  546. width: 1.5rem;
  547. text-align: center;
  548. }
  549. }
  550. .sub-menu {
  551. display: none;
  552. }
  553. .sub-menu.show {
  554. display: block;
  555. }
  556. hr {
  557. margin: 3px 0;
  558. background-color: rgb(187, 187, 187);
  559. }
  560. }
  561. &-follows {
  562. padding: 2rem 2.5rem;
  563. background-color: #e6e6e6ef;
  564. margin-top: -9px;
  565. &-title {
  566. color: #797979;
  567. font-size: 14px;
  568. }
  569. }
  570. &-links {
  571. margin-bottom: 2.5rem;
  572. a {
  573. color: #797979;
  574. text-decoration: none;
  575. display: inline-block;
  576. padding: 1px 0;
  577. border-bottom: 1px solid #acacac;
  578. margin: 0 .6rem;
  579. flex-wrap: nowrap;
  580. @media screen and(max-width: 385px) {
  581. margin: 0 .4rem;
  582. }
  583. }
  584. }
  585. .follows-fp {
  586. color: #797979;
  587. text-decoration: none;
  588. font-weight: 400;
  589. display: block;
  590. padding-left: .5rem;
  591. &:nth-of-type(1) {
  592. margin-bottom: .6rem;
  593. }
  594. }
  595. .copyright {
  596. color: #797979;
  597. font-size: 13px;
  598. }
  599. }
  600. .sec-search {
  601. display: none;
  602. z-index: 107;
  603. position: absolute;
  604. top: 0;
  605. left: 0;
  606. right: 0;
  607. font-size: 14px;
  608. &-block {
  609. padding-top: 61px;
  610. margin:0;
  611. position: fixed;
  612. top: 0;
  613. left: 0;
  614. right: 0;
  615. width: 100;
  616. height: 100%;
  617. overflow-y: scroll;
  618. background-color: rgba(0, 0, 0, 0.774);
  619. }
  620. &-list {
  621. background-color: #F3F3F3;
  622. padding: 1rem;
  623. padding-bottom: 1.4rem;
  624. hr {
  625. background-color: #aaaaaa;
  626. }
  627. }
  628. &-form {
  629. width: 100%;
  630. }
  631. .searchBar {
  632. font-size: 17px;
  633. padding: .5rem .3rem;
  634. display: inline-block;
  635. width: 88%;
  636. outline: none;
  637. border: 2px solid #EE7800;
  638. border-radius: 5px;
  639. }
  640. .searchBtn {
  641. outline: none;
  642. border: none;
  643. background-color: transparent;
  644. display: inline-block;
  645. width: 10%;
  646. }
  647. &-hots {
  648. padding: 1rem;
  649. background-color: white;
  650. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  651. &__title {
  652. color: #AAAAAA;
  653. font-size: 18px;
  654. font-weight: 400;
  655. padding-top: .5rem;
  656. }
  657. &__link {
  658. display: inline-block;
  659. text-decoration: none;
  660. color: #797979;
  661. border: 1px solid #797979;
  662. border-radius: 3rem;
  663. padding: .3rem .5rem;
  664. margin-right: .8rem;
  665. margin-bottom: .8rem;
  666. &:hover {
  667. color: #797979;
  668. }
  669. }
  670. }
  671. }
  672. .sec-login {
  673. display: none;
  674. z-index: 109;
  675. position: absolute;
  676. top: 0;
  677. left: 0;
  678. right: 0;
  679. font-size: 14px;
  680. &-block {
  681. padding-top: 61px;
  682. margin:0;
  683. position: fixed;
  684. top: 0;
  685. left: 0;
  686. right: 0;
  687. width: 100;
  688. height: 100%;
  689. overflow-y: hidden;
  690. background-color: #F3F3F3;
  691. }
  692. &-list {
  693. background-color: #F3F3F3;
  694. padding: 1rem;
  695. padding-bottom: 1.4rem;
  696. hr {
  697. background-color: #aaaaaa;
  698. }
  699. }
  700. &-btns {
  701. padding: 1rem;
  702. background-color: white;
  703. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  704. }
  705. }
  706. .sec-favor {
  707. display: block;
  708. z-index: 111;
  709. position: absolute;
  710. top: 0;
  711. left: 0;
  712. right: 0;
  713. font-size: 14px;
  714. &-title {
  715. color: #4C4C4C;
  716. font-size: 18px;
  717. }
  718. &-block {
  719. padding-top: 61px;
  720. margin:0;
  721. position: fixed;
  722. top: 0;
  723. left: 0;
  724. right: 0;
  725. width: 100;
  726. height: 100%;
  727. overflow-y: auto;
  728. background-color: #F3F3F3;
  729. }
  730. &-list {
  731. background-color: #F3F3F3;
  732. padding: 1rem;
  733. padding-bottom: 1.4rem;
  734. hr {
  735. background-color: #aaaaaa;
  736. }
  737. }
  738. &-form, &-checklist {
  739. .form-user {
  740. width: 50%;
  741. color: #707070;
  742. font-size: 16px;
  743. }
  744. .form-progressbar {
  745. width: 50%;
  746. display: flex;
  747. justify-content: space-between;
  748. li {
  749. width: 1.6rem;
  750. height: 1.6rem;
  751. border-radius: 50%;
  752. border: 2px solid #D3D3D3;
  753. line-height: 1.4rem;
  754. display: flex;
  755. justify-content: center;
  756. position: relative;
  757. color: #D3D3D3;
  758. background-color: #F3F3F3;
  759. z-index: 2;
  760. &.active {
  761. border: 2px solid #EE7800;
  762. color: #EE7800;
  763. &::before {
  764. border-top: 2px solid #EE7800;
  765. }
  766. }
  767. &::before {
  768. position: absolute;
  769. content: " ";
  770. width: 4rem;
  771. height: 0;
  772. border-top: 2px dashed #D3D3D3;
  773. right: 100%;
  774. top: 50%;
  775. z-index: 1;
  776. }
  777. &:nth-of-type(1)::before {
  778. display: none;
  779. }
  780. }
  781. }
  782. .form-step {
  783. background-color: white;
  784. border-radius: 3px;
  785. padding: 1.5rem 1rem;
  786. padding-bottom: 1.5rem;
  787. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  788. overflow: visible;
  789. .next {
  790. padding: .6rem 5rem;
  791. background-color: #EE7800;
  792. border-radius: 3px;
  793. color: white;
  794. border: none;
  795. outline: none;
  796. }
  797. }
  798. .form-step1 {
  799. display: block;
  800. }
  801. .form-step2 {
  802. display: none;
  803. }
  804. .form-step3 {
  805. display: none;
  806. position: relative;
  807. padding-bottom: 1.5rem;
  808. }
  809. input[type="checkbox"], input[type="radio"] {
  810. display: none;
  811. }
  812. .imgfr {
  813. background-image: url('../images/2_2.webp');
  814. background-position: center center;
  815. background-size: cover;
  816. background-repeat: no-repeat;
  817. width: 100%;
  818. height: 4.5rem;
  819. border-radius: 8px;
  820. border: 2px solid transparent;
  821. }
  822. h4 {
  823. color: #AAAAAA;
  824. font-size: 15px;
  825. font-weight: 400;
  826. }
  827. input[type="checkbox"]:checked + .fs-label-info .imgfr {
  828. border: 2px solid #EE7800;
  829. }
  830. input[type="checkbox"]:checked + .fs-label-chbox {
  831. border: 1px solid #EE7800;
  832. color: #EE7800;
  833. }
  834. input[type="radio"]:checked + .fs-label-chbox {
  835. border: 1px solid #EE7800;
  836. color: #EE7800;
  837. }
  838. .step3-block {
  839. margin-bottom: 1rem;
  840. &:nth-of-type(3) {
  841. margin-bottom: 0;
  842. }
  843. &-title {
  844. color: #AAAAAA;
  845. display: block;
  846. margin-bottom: .5rem;
  847. font-size: 1rem;
  848. }
  849. .radio {
  850. display: inline-block;
  851. padding: .25rem .7rem;
  852. margin-right: .4rem;
  853. border: 1px solid #707070;
  854. border-radius: 2rem;
  855. color: #797979;
  856. margin-bottom: .5rem;
  857. }
  858. }
  859. .skip {
  860. padding: .3rem 1rem;
  861. color: #AAAAAA;
  862. border: none;
  863. outline: none;
  864. background-color: transparent;
  865. }
  866. .btngrp {
  867. /* position: absolute;
  868. left: 50%;
  869. transform: translateX(-50%);
  870. bottom: -6rem; */
  871. display: flex;
  872. flex-direction: column;
  873. align-items: center;
  874. .next {
  875. transform: translateY(0rem);
  876. }
  877. }
  878. }
  879. &-checklist .form-user {
  880. margin: 0 auto;
  881. text-align: center;
  882. margin-bottom: 1rem;
  883. }
  884. &-btns {
  885. padding: 1rem;
  886. background-color: white;
  887. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  888. }
  889. }
  890. .text-main {
  891. color: #EE7800;
  892. }
  893. .text-phone {
  894. color: #EA068C;
  895. text-decoration: none;
  896. }
  897. #videoModal .modal-content {
  898. background-color: transparent;
  899. border: none;
  900. }
  901. .fixed-btn {
  902. position: fixed;
  903. right: 15px;
  904. bottom: 8rem;
  905. .btn-gotop {
  906. padding: 1.2rem .8rem;
  907. background-color: rgba(255, 255, 255, 0.897);
  908. display: flex;
  909. align-items: center;
  910. 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);
  911. -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);
  912. -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);
  913. }
  914. }