main.scss 26 KB

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