main.scss 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299
  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-match {
  871. display: none;
  872. z-index: 109;
  873. position: absolute;
  874. top: 0;
  875. left: 0;
  876. right: 0;
  877. font-size: 14px;
  878. &-block {
  879. padding-top: 61px;
  880. margin:0;
  881. position: fixed;
  882. top: 0;
  883. left: 0;
  884. right: 0;
  885. width: 100;
  886. height: 100%;
  887. overflow-y: hidden;
  888. background-color: white;
  889. }
  890. &-list {
  891. background-color: white;
  892. padding: 1rem;
  893. padding-bottom: 1.4rem;
  894. }
  895. &-btns {
  896. padding: 1rem;
  897. background-color: white;
  898. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  899. }
  900. p {
  901. color: #707070;
  902. }
  903. &__imgfr {
  904. width: 100%;
  905. height: 14rem;
  906. // background-image: url(https://images.hhh.com.tw/uploads/_hcolumn_orig/point05_244_01.jpg);
  907. background-position: center;
  908. background-size: cover;
  909. }
  910. &__designer {
  911. // background-image: url(https://cloud.hhh.com.tw/upload/_hdesigner/img_path_611_20190318172644.jpg);
  912. width: 80%;
  913. height: 12rem;
  914. background-position: center;
  915. background-size: cover;
  916. border-radius: 50%;
  917. }
  918. .btn-match {
  919. outline: none;
  920. border: none;
  921. color: #EE7800;
  922. border: 1px solid #EE7800;
  923. background-color: transparent;
  924. border-radius: 10px;
  925. padding: .3rem .6rem;
  926. transition: all .3s;
  927. &:hover {
  928. background-color: #EE7800;
  929. color: white;
  930. }
  931. }
  932. .container__row {
  933. border-bottom: 1px solid #B2B2B2;
  934. &:last-of-type {
  935. border-bottom: none;
  936. }
  937. }
  938. }
  939. .sec-result {
  940. padding: .5rem;
  941. p {
  942. color: #707070;
  943. }
  944. &__imgfr {
  945. width: 90%;
  946. height: 18rem;
  947. background-image: url(https://images.hhh.com.tw/uploads/_hcolumn_orig/point05_244_01.jpg);
  948. background-position: center;
  949. background-size: cover;
  950. }
  951. &__designer {
  952. background-image: url(https://cloud.hhh.com.tw/upload/_hdesigner/img_path_611_20190318172644.jpg);
  953. width: 6rem;
  954. height: 6rem;
  955. background-position: center;
  956. background-size: cover;
  957. border-radius: 50%;
  958. }
  959. .btn-match {
  960. outline: none;
  961. border: none;
  962. color: #EE7800;
  963. border: 1px solid #EE7800;
  964. background-color: transparent;
  965. padding: .4rem .8rem;
  966. transition: all .3s;
  967. &:hover {
  968. background-color: #EE7800;
  969. color: white;
  970. }
  971. }
  972. .container__row {
  973. border: 1px solid #B2B2B2;
  974. margin-bottom: 1rem;
  975. }
  976. &__consulting {
  977. color: #707070;
  978. }
  979. &__num {
  980. color: #EE7800;
  981. }
  982. }
  983. .sec-favor {
  984. display: block;
  985. z-index: 111;
  986. position: absolute;
  987. top: 0;
  988. left: 0;
  989. right: 0;
  990. font-size: 14px;
  991. &-title {
  992. color: #4C4C4C;
  993. font-size: 18px;
  994. }
  995. &-block {
  996. padding-top: 61px;
  997. margin:0;
  998. position: fixed;
  999. top: 0;
  1000. left: 0;
  1001. right: 0;
  1002. width: 100;
  1003. height: 100%;
  1004. overflow-y: auto;
  1005. background-color: #F3F3F3;
  1006. }
  1007. &-list {
  1008. background-color: #F3F3F3;
  1009. padding: 1rem;
  1010. padding-bottom: 1.4rem;
  1011. hr {
  1012. background-color: #aaaaaa;
  1013. }
  1014. }
  1015. &-form, &-checklist {
  1016. .form-user {
  1017. width: 50%;
  1018. color: #707070;
  1019. font-size: 16px;
  1020. }
  1021. .form-progressbar {
  1022. width: 50%;
  1023. display: flex;
  1024. justify-content: space-between;
  1025. li {
  1026. width: 1.6rem;
  1027. height: 1.6rem;
  1028. border-radius: 50%;
  1029. border: 2px solid #D3D3D3;
  1030. line-height: 1.4rem;
  1031. display: flex;
  1032. justify-content: center;
  1033. position: relative;
  1034. color: #D3D3D3;
  1035. background-color: #F3F3F3;
  1036. z-index: 2;
  1037. &.active {
  1038. border: 2px solid #EE7800;
  1039. color: #EE7800;
  1040. &::before {
  1041. border-top: 2px solid #EE7800;
  1042. }
  1043. }
  1044. &::before {
  1045. position: absolute;
  1046. content: " ";
  1047. width: 4rem;
  1048. height: 0;
  1049. border-top: 2px dashed #D3D3D3;
  1050. right: 100%;
  1051. top: 50%;
  1052. z-index: 1;
  1053. }
  1054. &:nth-of-type(1)::before {
  1055. display: none;
  1056. }
  1057. }
  1058. }
  1059. .form-step {
  1060. background-color: white;
  1061. border-radius: 3px;
  1062. padding: 1.5rem 1rem;
  1063. padding-bottom: 1.5rem;
  1064. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  1065. overflow: visible;
  1066. .next {
  1067. padding: .6rem 5rem;
  1068. background-color: #EE7800;
  1069. border-radius: 3px;
  1070. color: white;
  1071. border: none;
  1072. outline: none;
  1073. }
  1074. }
  1075. .form-step1 {
  1076. display: block;
  1077. }
  1078. .form-step2 {
  1079. display: none;
  1080. }
  1081. .form-step3 {
  1082. display: none;
  1083. position: relative;
  1084. padding-bottom: 1.5rem;
  1085. }
  1086. input[type="checkbox"], input[type="radio"] {
  1087. display: none;
  1088. }
  1089. .imgfr {
  1090. background-image: url('../images/2_2.webp');
  1091. background-position: center center;
  1092. background-size: cover;
  1093. background-repeat: no-repeat;
  1094. width: 100%;
  1095. height: 4.5rem;
  1096. border-radius: 8px;
  1097. border: 2px solid transparent;
  1098. }
  1099. h4 {
  1100. color: #AAAAAA;
  1101. font-size: 15px;
  1102. font-weight: 400;
  1103. }
  1104. input[type="checkbox"]:checked + .fs-label-info .imgfr {
  1105. border: 2px solid #EE7800;
  1106. }
  1107. input[type="checkbox"]:checked + .fs-label-chbox {
  1108. border: 1px solid #EE7800;
  1109. color: #EE7800;
  1110. }
  1111. input[type="radio"]:checked + .fs-label-chbox {
  1112. border: 1px solid #EE7800;
  1113. color: #EE7800;
  1114. }
  1115. .step3-block {
  1116. margin-bottom: 1rem;
  1117. &:nth-of-type(3) {
  1118. margin-bottom: 0;
  1119. }
  1120. &-title {
  1121. color: #AAAAAA;
  1122. display: block;
  1123. margin-bottom: .5rem;
  1124. font-size: 1rem;
  1125. }
  1126. .radio {
  1127. display: inline-block;
  1128. padding: .25rem .7rem;
  1129. margin-right: .4rem;
  1130. border: 1px solid #707070;
  1131. border-radius: 2rem;
  1132. color: #797979;
  1133. margin-bottom: .5rem;
  1134. }
  1135. }
  1136. .skip {
  1137. padding: .3rem 1rem;
  1138. color: #AAAAAA;
  1139. border: none;
  1140. outline: none;
  1141. background-color: transparent;
  1142. }
  1143. .btngrp {
  1144. /* position: absolute;
  1145. left: 50%;
  1146. transform: translateX(-50%);
  1147. bottom: -6rem; */
  1148. display: flex;
  1149. flex-direction: column;
  1150. align-items: center;
  1151. .next {
  1152. transform: translateY(0rem);
  1153. }
  1154. }
  1155. }
  1156. &-checklist .form-user {
  1157. margin: 0 auto;
  1158. text-align: center;
  1159. margin-bottom: 1rem;
  1160. }
  1161. &-btns {
  1162. padding: 1rem;
  1163. background-color: white;
  1164. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  1165. }
  1166. }
  1167. .text-main {
  1168. color: #EE7800;
  1169. }
  1170. .text-phone {
  1171. color: #EA068C;
  1172. text-decoration: none;
  1173. }
  1174. #videoModal .modal-content {
  1175. background-color: transparent;
  1176. border: none;
  1177. height: 30vh;
  1178. }
  1179. #videoModal .modal-content .modal-body {
  1180. width:100%;
  1181. height:100%;
  1182. }
  1183. #videoModal .modal-content iframe {
  1184. width:100%;
  1185. height:100%;
  1186. }
  1187. .fixed-btn {
  1188. position: fixed;
  1189. right: 15px;
  1190. bottom: 8rem;
  1191. @media (min-width: $horizontal) {
  1192. bottom: 5rem;
  1193. }
  1194. .btn-gotop, .btn-match {
  1195. padding: 1.2rem .8rem;
  1196. background-color: rgba(255, 255, 255, 0.897);
  1197. display: flex;
  1198. align-items: center;
  1199. 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);
  1200. -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);
  1201. -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);
  1202. }
  1203. .btn-match {
  1204. padding: .4rem .2rem;
  1205. background-color: white;
  1206. font-size: 1em;
  1207. word-spacing: 5px;
  1208. width: 57px;
  1209. text-align: center;
  1210. position: relative;
  1211. background-color: #EE7800;
  1212. color: white;
  1213. }
  1214. }
  1215. .match__next {
  1216. outline: none;
  1217. border: none;
  1218. background-color: #EE7800;
  1219. border-radius: .3rem;
  1220. padding-top: .5rem;
  1221. padding-bottom: .5rem;
  1222. color: white;
  1223. }
  1224. .match__next2, .last-step {
  1225. outline: none;
  1226. border: none;
  1227. background-color: #EE7800;
  1228. border-radius: .3rem;
  1229. padding-top: .5rem;
  1230. padding-bottom: .5rem;
  1231. color: white;
  1232. }
  1233. .btn-call {
  1234. color: #EA068C;
  1235. padding: .6rem 1.5rem;
  1236. border: 1px solid #EA068C;
  1237. border-radius: 2rem;
  1238. background-color: transparent;
  1239. text-decoration: none;
  1240. &:hover {
  1241. color: #EA068C;
  1242. }
  1243. }
  1244. .small {
  1245. font-size: .7rem;
  1246. }