main.scss 22 KB

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