main.scss 26 KB

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