style.scss 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533
  1. body {
  2. font-family: 'Helvetica Neue';
  3. }
  4. .sec-00 {
  5. height: 230px;
  6. transition-property: height;
  7. transition-duration: 300ms;
  8. @media (max-width: 1100px) {
  9. height: 200px;
  10. }
  11. &__close {
  12. position: absolute;
  13. top: 0;
  14. right: 20px;
  15. width: 50px;
  16. height: 30px;
  17. background-color: hsla(0,0%,100%,.66);
  18. border-radius: 0 0 50px 50px;
  19. color: #888;
  20. border: none;
  21. outline: none;
  22. font-size: 11px;
  23. box-shadow: 0 0 10px rgba(32, 32, 32, 0.25);
  24. line-height: 12px;
  25. }
  26. &.bannerClose {
  27. height: 0;
  28. overflow: hidden;
  29. transition-property: height;
  30. transition-duration: 300ms;
  31. }
  32. .container-fluid {
  33. background-color: rgb(202, 202, 202);
  34. height: 230px;
  35. @media (max-width: 1100px) {
  36. height: 200px;
  37. }
  38. }
  39. &__slider {
  40. margin: 0 auto;
  41. width: 70%;
  42. height: 100%;
  43. .slide-item {
  44. width: 100%;
  45. height: 230px;
  46. background-position: center center;
  47. background-size: cover;
  48. background-repeat: no-repeat;
  49. cursor: pointer;
  50. @media (max-width: 1100px) {
  51. height: 200px;
  52. }
  53. }
  54. }
  55. .slick-prev:before, .slick-next:before {
  56. display: none;
  57. }
  58. }
  59. @-webkit-keyframes slidein {
  60. 100% {
  61. height: 0px;
  62. }
  63. }
  64. @keyframes slidein {
  65. 100% {
  66. height: 0px;
  67. }
  68. }
  69. .navbar {
  70. 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);
  71. -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);
  72. -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);
  73. padding-top: 5px;
  74. padding-bottom: 5px;
  75. background-color: white !important;
  76. z-index: 99;
  77. .container-fluid {
  78. padding:0 2.5rem;
  79. @media (max-width: 1100px) {
  80. padding:0 .6rem;
  81. }
  82. }
  83. &-toggler {
  84. padding-left: 0;
  85. border-color: transparent !important;
  86. &:focus {
  87. box-shadow: none;
  88. }
  89. }
  90. &-toggler-icon {
  91. display: flex;
  92. justify-items: center;
  93. i {
  94. font-size: 25px;
  95. line-height: 30px;
  96. display: inline-block;
  97. }
  98. }
  99. &-search, &-login {
  100. padding-right: 2px;
  101. }
  102. &-login {
  103. cursor: pointer;
  104. }
  105. &-search {
  106. &-magnify {
  107. cursor: pointer;
  108. }
  109. }
  110. &-brand {
  111. font-size: 1.5rem;
  112. &.navbar-logo {
  113. display: flex;
  114. align-items: center;
  115. }
  116. .navbar-login {
  117. font-size: 1rem;
  118. color: #EE7800;
  119. text-decoration: none;
  120. }
  121. }
  122. .nav-link {
  123. cursor: pointer;
  124. @media (max-width: 1100px) {
  125. padding: .5rem .5rem;
  126. font-size: .9rem;
  127. }
  128. }
  129. .navbar-nav {
  130. .nav-item {
  131. margin: 0 .5rem;
  132. @media (max-width: 1100px) {
  133. margin: 0 0rem;
  134. }
  135. .dropbox {
  136. visibility: hidden;
  137. opacity: 0;
  138. transition: all .4s;
  139. position: absolute;
  140. width: 100vw;
  141. top: 100%;
  142. left: 0;
  143. background-color: rgba(255, 255, 255, 0.932);
  144. padding-top: 1.5rem;
  145. padding-bottom: 3rem;
  146. ul {
  147. padding-left: 0;
  148. }
  149. &-item {
  150. margin-bottom: .5rem;
  151. &.first {
  152. font-size: 1.1rem;
  153. font-weight: 600;
  154. .dropbox-link {
  155. color: black;
  156. }
  157. }
  158. }
  159. &-link {
  160. text-decoration: none;
  161. color: rgb(146, 146, 146);
  162. font-size: .85rem;
  163. &:hover {
  164. color: #EE7800;
  165. }
  166. &.dropbox-btn {
  167. border: 1px solid rgb(146, 146, 146);
  168. padding: .5rem 2rem;
  169. border-radius: 5px;
  170. width: 85%;
  171. min-width: 7rem;
  172. max-width: 11rem;
  173. }
  174. }
  175. &-btn {
  176. display: flex;
  177. align-items: center;
  178. justify-content: center;
  179. }
  180. .container {
  181. max-width: 900px;
  182. width: 70%;
  183. &.stylebox {
  184. transform: translateX(-30%);
  185. }
  186. &.designerbox {
  187. transform: translateX(-5%);
  188. }
  189. &.newbox {
  190. transform: translateX(15%);
  191. }
  192. &.forumbox {
  193. transform: translateX(50%);
  194. }
  195. }
  196. }
  197. .nav-link {
  198. position: relative;
  199. }
  200. .nav-link:after {
  201. position: absolute;
  202. content: " ";
  203. width: 100%;
  204. height: 90%;
  205. top: 0;
  206. right: 0;
  207. border-bottom: 2px solid #EE7800;
  208. opacity: 0;
  209. transform: opacity 1s;
  210. }
  211. &:hover {
  212. .nav-link:after {
  213. opacity: 1;
  214. }
  215. >.dropbox {
  216. visibility: visible;
  217. opacity: 1;
  218. }
  219. }
  220. }
  221. .nav-item.lg {
  222. .container {
  223. max-width: 1200px;
  224. width: 90%;
  225. }
  226. .dropbox-link {
  227. text-decoration: none;
  228. color: rgb(146, 146, 146);
  229. font-size: .7rem;
  230. &:hover {
  231. color: #EE7800;
  232. }
  233. }
  234. .dropbox-item {
  235. margin-bottom: .1rem;
  236. &.first {
  237. .dropbox-link {
  238. font-size: .85rem;
  239. }
  240. }
  241. }
  242. }
  243. }
  244. &-search {
  245. .container {
  246. max-width: 900px;
  247. width: 70%;
  248. @media (max-width: 1100px) {
  249. width: 90%;
  250. }
  251. }
  252. .dropbox {
  253. visibility: hidden;
  254. opacity: 0;
  255. transition: all .2s;
  256. position: absolute;
  257. width: 100vw;
  258. top: 100%;
  259. left: 0;
  260. background-color: rgba(255, 255, 255, 0.932);
  261. padding-top: 1.5rem;
  262. padding-bottom: 3rem;
  263. &.open {
  264. visibility: visible;
  265. opacity: 1;
  266. }
  267. &__searchtab {
  268. width: 100%;
  269. background-color: gray;
  270. border-radius: 3px;
  271. padding: .2rem 1rem;
  272. padding-bottom: 1rem;
  273. }
  274. &__hots {
  275. &__title {
  276. font-size: 1rem;
  277. color: rgb(107, 107, 107);
  278. }
  279. &__link {
  280. font-size: .9rem;
  281. color: rgb(146, 146, 146);
  282. text-decoration: none;
  283. cursor: pointer;
  284. margin: 0 .2rem;
  285. }
  286. }
  287. &__searchBar {
  288. &__input {
  289. width: 100%;
  290. outline: none;
  291. border: 2px solid #EE7800;
  292. border-radius: 5rem;
  293. padding: .3rem 1.2rem;
  294. font-size: .9rem;
  295. }
  296. &__submit {
  297. outline: none;
  298. border: none;
  299. font-size: .9rem;
  300. background-color: transparent;
  301. color: #EE7800;
  302. margin-left: -1rem;
  303. transform: translateX(-100%);
  304. padding: 0 .6rem;
  305. }
  306. }
  307. &__tab {
  308. .nav-item {
  309. margin: 0 .6rem;
  310. }
  311. }
  312. .nav-item-link {
  313. border: none;
  314. outline: none;
  315. font-size: 1rem;
  316. color: white;
  317. padding: 3px;
  318. position: relative;
  319. &::after {
  320. position: absolute;
  321. content: "";
  322. top: 0;
  323. left: 0;
  324. width: 100%;
  325. height: 100%;
  326. border-bottom: 3px solid #EE7800;
  327. opacity: 0;
  328. }
  329. &.active::after {
  330. opacity: 1;
  331. }
  332. }
  333. }
  334. .dropbox-tab-content {
  335. .tabpar {
  336. display: flex;
  337. padding-top: .5rem;
  338. .col {
  339. margin: 0 .6rem;
  340. }
  341. .select {
  342. font-size: 1rem;
  343. padding: .6rem;
  344. border-radius: 3px;
  345. color: rgb(116, 116, 116);
  346. }
  347. button {
  348. border: none;
  349. outline: none;
  350. background-color: #EE7800;
  351. border-radius: 3px;
  352. color: white;
  353. font-size: 1rem;
  354. padding: .6rem;
  355. }
  356. .image-search {
  357. border: none;
  358. outline: none;
  359. background-color: #EE7800;
  360. border-radius: 3px;
  361. color: white;
  362. font-size: 1rem;
  363. }
  364. .article-btn {
  365. border: none;
  366. outline: none;
  367. background-color: #EE7800;
  368. border-radius: 3px;
  369. color: white;
  370. font-size: 1rem;
  371. padding: .6rem;
  372. }
  373. .home-btn {
  374. border: none;
  375. outline: none;
  376. background-color: #EE7800;
  377. border-radius: 3px;
  378. color: white;
  379. font-size: 1rem;
  380. padding: .6rem;
  381. }
  382. }
  383. }
  384. }
  385. }
  386. .navbar-search .dropbox__tab .nav-item-link.active .nav-item-link::after {
  387. opacity: 1;
  388. }
  389. .navbar-main.sticky {
  390. position: fixed;
  391. top: 0;
  392. width: 100%;
  393. }
  394. .navbar-main.sticky + .sec-02 {
  395. padding-top: 53.5px;
  396. }
  397. .sec-02 {
  398. &__slider {
  399. width: 100%;
  400. height: 100%;
  401. .slide-item {
  402. width: 100%;
  403. height: 62vh;
  404. background-position: center center;
  405. background-size: cover;
  406. background-repeat: no-repeat;
  407. cursor: pointer;
  408. }
  409. }
  410. .slick-prev:before, .slick-next:before {
  411. display: none;
  412. }
  413. .slick-prev {
  414. left: 15px;
  415. z-index: 3;
  416. }
  417. .slick-next {
  418. right: 15px;
  419. }
  420. }
  421. .sec-04 {
  422. background-color: #F4F4F4;
  423. padding: 4rem 1rem;
  424. .container {
  425. max-width: 950px;
  426. width: 70%;
  427. @media (max-width: 1100px) {
  428. width: 90%;
  429. }
  430. }
  431. .card {
  432. box-shadow: 1px 2px 8px 1px rgb(214, 214, 214);
  433. text-decoration: none;
  434. cursor: pointer;
  435. transition: all .6s;
  436. &-title {
  437. font-size: 1.4rem;
  438. line-height: 1.8rem;
  439. color: #4C4C4C;
  440. font-weight: 500;
  441. transition: all 2s;
  442. }
  443. &__imgfr {
  444. width: 100%;
  445. img {
  446. width: 100%;
  447. height: 100%;
  448. }
  449. }
  450. &:hover {
  451. transform: scale(1.05);
  452. }
  453. }
  454. }
  455. .sec-guessLike {
  456. .container {
  457. margin:0 auto;
  458. padding: 2rem 2rem;
  459. max-width: 1050px;
  460. width: 70%;
  461. @media (max-width: 1100px) {
  462. width: 90%;
  463. padding: 0 1rem;
  464. }
  465. }
  466. &__titlebox {
  467. &-h2 {
  468. margin: 0 auto;
  469. font-size: 1.8rem;
  470. font-weight: 600;
  471. color: rgb(83, 83, 83);
  472. padding: .8rem 0;
  473. border-bottom: 6px solid #EE7800;
  474. display: inline-block;
  475. }
  476. }
  477. &__title {
  478. display: block;
  479. text-align: center;
  480. position: relative;
  481. font-size: 1.2rem;
  482. margin-bottom: .8rem;
  483. &::before, &::after {
  484. position: absolute;
  485. content: " ";
  486. width: 40%;
  487. height: 0rem;
  488. border-top: 1px solid black;
  489. top: 50%;
  490. }
  491. &::before {
  492. left: 0;
  493. }
  494. &::after {
  495. left: 60%;
  496. }
  497. }
  498. &__article {
  499. h5 {
  500. font-size: 1.1rem;
  501. }
  502. p {
  503. font-size: 14px;
  504. }
  505. }
  506. &__case {
  507. p {
  508. font-size: 1.1rem;
  509. font-weight: 500;
  510. }
  511. }
  512. &__card {
  513. width: 100%;
  514. overflow: hidden;
  515. height: 26vh;
  516. position: relative;
  517. background-position: center center;
  518. background-size: cover;
  519. background-repeat: no-repeat;
  520. &.special {
  521. height: 45vh;
  522. }
  523. &__img {
  524. width: 100%;
  525. transition: all .8s;
  526. }
  527. &__txt {
  528. position: absolute;
  529. bottom: 1rem;
  530. left: 3rem;
  531. color: white;
  532. z-index: 2;
  533. font-size: 600;
  534. text-shadow: 1px 1px 2px gray;
  535. }
  536. }
  537. &__video__play {
  538. position: absolute;
  539. width: 2.5rem;
  540. left: 50%;
  541. top: 50%;
  542. transform: translate(-50%, -50%);
  543. }
  544. }
  545. .sec-05 {
  546. border-top: 1px solid rgb(187, 187, 187);
  547. padding-bottom: 2rem;
  548. .container {
  549. margin:0 auto;
  550. padding: 0 2rem;
  551. max-width: 1050px;
  552. width: 70%;
  553. @media (max-width: 1100px) {
  554. width: 90%;
  555. padding: 0 1rem;
  556. }
  557. }
  558. &__tabdiv {
  559. box-sizing: content-box;
  560. align-items: center;
  561. justify-content: space-between;
  562. .more {
  563. padding-bottom: .4rem;
  564. }
  565. .nav {
  566. &-item {
  567. position: relative;
  568. padding-right: 18px;
  569. padding-left: 18px;
  570. &::after {
  571. position: absolute;
  572. content: " ";
  573. width: 100%;
  574. height: 30%;
  575. left: 0;
  576. top: 35%;
  577. background-color: transparent;
  578. border-right: 1px solid rgb(179, 179, 179);
  579. z-index: -1;
  580. }
  581. &:nth-of-type(3)::after {
  582. display: none;
  583. }
  584. }
  585. &-item-link {
  586. color: black;
  587. font-weight: 500;
  588. font-size: 1.6rem;
  589. border: none;
  590. position: relative;
  591. padding: 1.5rem 0;
  592. outline: none;
  593. @media screen and(max-width: 385px) {
  594. font-size: 1.1rem;
  595. }
  596. &:focus {
  597. outline: none !important;
  598. }
  599. &.active {
  600. color: #EE7800;
  601. }
  602. &::before {
  603. position: absolute;
  604. content: " ";
  605. width: 101%;
  606. height: 100%;
  607. left: -2px;
  608. top: 0px;
  609. background-color: transparent;
  610. border-top: 3px solid #EE7800;
  611. opacity: 0;
  612. }
  613. }
  614. }
  615. .nav-item-link.active::before {
  616. opacity: 1;
  617. }
  618. }
  619. .tab-pane {
  620. height: 100%;
  621. }
  622. &tab-content {
  623. height: 35vh;
  624. }
  625. .tabpar {
  626. &__card {
  627. margin: 3px;
  628. position: relative;
  629. font-size: 14px;
  630. cursor: pointer;
  631. &__imgfr {
  632. width: 100%;
  633. height: 25vh;
  634. position: relative;
  635. background-position: center center;
  636. background-size: cover;
  637. background-repeat: no-repeat;
  638. @media (max-width: 1100px) {
  639. height: 20vh;
  640. }
  641. }
  642. h5 {
  643. font-size: 1rem;
  644. }
  645. p {
  646. font-size: .95rem;
  647. font-weight: 300;
  648. color: gray;
  649. }
  650. &__play {
  651. position: absolute;
  652. left: 50%;
  653. top: 50%;
  654. transform: translate(-50%, -50%);
  655. width: 2.5rem;
  656. }
  657. }
  658. }
  659. .slick-prev {
  660. top: 40%;
  661. left: -2rem;
  662. z-index: 2;
  663. }
  664. .slick-next {
  665. top: 40%;
  666. right: -2rem;
  667. z-index: 2;
  668. }
  669. .slick-prev:before, .slick-next:before {
  670. display: none;
  671. }
  672. }
  673. .sec-06 {
  674. padding: 2rem 0;
  675. .container {
  676. margin:0 auto;
  677. padding: 1rem 2rem;
  678. max-width: 1050px;
  679. width: 70%;
  680. @media (max-width: 1100px) {
  681. width: 90%;
  682. padding: 0 1rem;
  683. }
  684. }
  685. &__title {
  686. h3 {
  687. display: inline-block;
  688. font-size: 1.6rem;
  689. padding-bottom: .5rem;
  690. border-bottom: 6px solid #EE7800;
  691. color: #535353;
  692. margin-bottom: 0;
  693. }
  694. }
  695. &__video {
  696. width: 100%;;
  697. position: relative;
  698. &__imgfr {
  699. width: 100%;
  700. height: 34vh;
  701. background-position: center center;
  702. background-size: cover;
  703. background-repeat: no-repeat;
  704. @media (max-width: 1100px) {
  705. height: 25vh;
  706. }
  707. }
  708. &__play {
  709. position: absolute;
  710. left: 50%;
  711. top: 50%;
  712. width: 2.5rem;
  713. height: 2.5rem;
  714. z-index: 2;
  715. transform: translate(-50%, -50%);
  716. }
  717. }
  718. &__videotxt {
  719. width: 90%;
  720. margin: 0 auto;
  721. background-color: rgba(255, 255, 255, 0.842);
  722. box-shadow: 1px 1px 3px 1px rgba(196, 196, 196, 0.795);
  723. padding: .4rem .8rem;
  724. transform: translateY(-20%);
  725. font-weight: 600;
  726. font-size: 1.1rem;
  727. }
  728. &__btns {
  729. display: block;
  730. outline: none;
  731. border: none;
  732. padding: .4rem 1.2rem;
  733. width: 88%;
  734. margin: 0 auto;
  735. background-color: #ea068c;
  736. color: white;
  737. border-radius: 3px;
  738. box-shadow: 1px 1px 3px 1px rgba(196, 196, 196, 0.795);
  739. transition: all .4s;
  740. text-decoration: none;
  741. &:hover {
  742. transform: translate(2px , 2px);
  743. color: white;
  744. }
  745. &__txt {
  746. font-weight: 600;
  747. }
  748. &:nth-of-type(2), &:nth-of-type(3) {
  749. padding: 1rem 1.2rem;
  750. // #10506d;
  751. }
  752. }
  753. &__card {
  754. width: 100%;
  755. &:hover .sec-06__card__imgfr {
  756. transform: scale(1.1);
  757. }
  758. h5 {
  759. font-size: 1.1rem;
  760. margin-bottom: .3rem;
  761. }
  762. p {
  763. font-size: .9rem;
  764. }
  765. &__outer {
  766. width: 100%;
  767. height: 48vh;
  768. overflow: hidden;
  769. }
  770. &__play {
  771. position: absolute;
  772. left: 50%;
  773. top: 50%;
  774. transform: translate(-50%, -50%);
  775. width: 2.5rem;
  776. }
  777. &__imgfr {
  778. width: 100%;
  779. height: 48vh;
  780. background-position: center center;
  781. background-size: cover;
  782. background-repeat: no-repeat;
  783. transition: all .5s;
  784. position: relative;
  785. }
  786. }
  787. .slick-prev {
  788. top: 40%;
  789. left: .5rem;
  790. z-index: 2;
  791. }
  792. .slick-next {
  793. top: 40%;
  794. right: .5rem;
  795. z-index: 2;
  796. }
  797. .slick-prev:before, .slick-next:before {
  798. display: none;
  799. }
  800. }
  801. .sec-07 {
  802. padding: 2rem 0;
  803. .container {
  804. margin:0 auto;
  805. padding: .8rem 1.2rem;
  806. max-width: 1050px;
  807. width: 70%;
  808. background-color: #F4F4F4;
  809. @media (max-width: 1100px) {
  810. width: 90%;
  811. padding: 0 1rem;
  812. }
  813. }
  814. &__slider {
  815. height: 100%;
  816. .slide-item {
  817. height: 23vh;
  818. background-position: center center;
  819. background-size: contain;
  820. background-repeat: no-repeat;
  821. width: 100%;
  822. margin: 0 5px;
  823. cursor: pointer;
  824. @media (max-width: 1100px) {
  825. height: 18vh;
  826. }
  827. }
  828. }
  829. }
  830. .sec-08 {
  831. padding-bottom: 2.5rem;
  832. .container {
  833. margin:0 auto;
  834. padding: 1rem 0rem;
  835. max-width: 1050px;
  836. width: 70%;
  837. @media (max-width: 1100px) {
  838. width: 90%;
  839. padding: 0 1rem;
  840. }
  841. }
  842. &__title {
  843. border-bottom: 6px solid #EE7800;
  844. color: #535353;
  845. h3 {
  846. font-size: 1.6rem;
  847. }
  848. }
  849. &__slider {
  850. width: 100%;
  851. cursor: pointer;
  852. }
  853. &__imgfr {
  854. width: 100%;
  855. height: 28vh;
  856. background-position: center center;
  857. background-size: cover;
  858. background-repeat: no-repeat;
  859. position: relative;
  860. @media (max-width: 1100px) {
  861. height: 20vh;
  862. }
  863. }
  864. &__card {
  865. h5 {
  866. font-size: 1rem;
  867. }
  868. p {
  869. font-size: .9rem;
  870. }
  871. }
  872. &__card__play {
  873. position: absolute;
  874. left: 50%;
  875. top: 50%;
  876. transform: translate(-50%, -50%);
  877. width: 2.5rem;
  878. }
  879. &__cardtxt {
  880. font-size: 14px;
  881. padding-right: .6rem;
  882. }
  883. .slick-prev {
  884. top: 40%;
  885. left: -2rem;
  886. z-index: 2;
  887. }
  888. .slick-next {
  889. top: 40%;
  890. right: -2rem;
  891. z-index: 2;
  892. }
  893. .slick-prev:before, .slick-next:before {
  894. display: none;
  895. }
  896. }
  897. .sec-09 {
  898. background-color: #F4F4F4;
  899. .container {
  900. margin:0 auto;
  901. padding: 2rem 0rem;
  902. max-width: 1050px;
  903. width: 70%;
  904. @media (max-width: 1100px) {
  905. width: 90%;
  906. padding: 0 1rem;
  907. }
  908. }
  909. &__imgfr {
  910. width: 100%;
  911. height: 25vh;
  912. background-position: center center;
  913. background-size: cover;
  914. background-repeat: no-repeat;
  915. position: relative;
  916. @media (max-width: 1100px) {
  917. height: 20vh;
  918. }
  919. }
  920. &__card {
  921. margin: 5px;
  922. text-align: center;
  923. cursor: pointer;
  924. p {
  925. font-size: 14px;
  926. margin-top: .5rem;
  927. }
  928. &__play {
  929. position: absolute;
  930. right: .6rem;
  931. bottom: .6rem;
  932. width: 2.5rem;
  933. }
  934. }
  935. &__title {
  936. border-bottom: 6px solid #EE7800;
  937. color: #535353;
  938. h3 {
  939. font-size: 1.6rem;
  940. }
  941. }
  942. .slick-prev {
  943. top: 40%;
  944. left: -2rem;
  945. z-index: 2;
  946. }
  947. .slick-next {
  948. top: 40%;
  949. right: -2rem;
  950. z-index: 2;
  951. }
  952. .slick-prev:before, .slick-next:before {
  953. display: none;
  954. }
  955. }
  956. .sec-10 {
  957. padding: 2.5rem 0;
  958. .container {
  959. max-width: 1000px;
  960. width: 70%;
  961. @media (max-width: 1100px) {
  962. width: 90%;
  963. padding: 0 1rem;
  964. }
  965. }
  966. &__titlebox {
  967. border-bottom: 1px solid rgb(75, 75, 75);
  968. display: flex;
  969. justify-content: center;
  970. &-h2 {
  971. margin: 0 auto;
  972. font-size: 1.8rem;
  973. font-weight: 600;
  974. color: rgb(83, 83, 83);
  975. padding: .8rem 0;
  976. border-bottom: 6px solid #EE7800;
  977. display: inline-block;
  978. }
  979. }
  980. &__card {
  981. cursor: pointer;
  982. h5 {
  983. font-size: 1rem;
  984. margin-bottom: .3rem;
  985. }
  986. p {
  987. font-size: .95rem;
  988. font-weight: 300;
  989. color: gray;
  990. }
  991. &-img {
  992. width: 100%;
  993. height: 25vh;
  994. background-position: center center;
  995. background-size: cover;
  996. background-repeat: no-repeat;
  997. position: relative;
  998. @media (max-width: 1100px) {
  999. height: 20vh;
  1000. }
  1001. }
  1002. &__play {
  1003. position: absolute;
  1004. right: 1rem;
  1005. bottom: 1rem;
  1006. width: 2.5rem;
  1007. height: 2.5rem;
  1008. }
  1009. }
  1010. }
  1011. .sec-11 {
  1012. padding: 2.5rem 0;
  1013. padding-top: 1rem;
  1014. .container {
  1015. max-width: 1000px;
  1016. width: 70%;
  1017. @media (max-width: 1100px) {
  1018. width: 90%;
  1019. padding: 0 1rem;
  1020. }
  1021. }
  1022. &__titlebox {
  1023. border-bottom: 1px solid rgb(75, 75, 75);
  1024. display: flex;
  1025. justify-content: center;
  1026. &-h2 {
  1027. margin: 0 auto;
  1028. font-size: 1.8rem;
  1029. font-weight: 600;
  1030. color: rgb(83, 83, 83);
  1031. padding: .8rem 0;
  1032. border-bottom: 6px solid #EE7800;
  1033. display: inline-block;
  1034. }
  1035. }
  1036. &__card {
  1037. cursor: pointer;
  1038. h5 {
  1039. font-size: 1rem;
  1040. margin-bottom: .3rem;
  1041. }
  1042. p {
  1043. font-size: .95rem;
  1044. font-weight: 300;
  1045. color: gray;
  1046. }
  1047. &-img {
  1048. width: 100%;
  1049. height: 25vh;
  1050. background-position: center center;
  1051. background-size: cover;
  1052. background-repeat: no-repeat;
  1053. position: relative;
  1054. @media (max-width: 1100px) {
  1055. height: 20vh;
  1056. }
  1057. }
  1058. &__play {
  1059. position: absolute;
  1060. right: 1rem;
  1061. bottom: 1rem;
  1062. width: 2.5rem;
  1063. height: 2.5rem;
  1064. }
  1065. }
  1066. }
  1067. .footer {
  1068. background: #e9e9e9;
  1069. padding: 2.5rem 0;
  1070. .container {
  1071. @media (max-width: 1100px) {
  1072. width: 98%;
  1073. max-width: 950px;
  1074. }
  1075. }
  1076. &__block {
  1077. padding: 1rem 3rem;
  1078. border-left: 1px solid rgb(143, 143, 143);
  1079. @media (max-width: 1100px) {
  1080. padding: 1rem 1rem;
  1081. }
  1082. &-title {
  1083. font-size: 1.3rem;
  1084. margin-bottom: 1.5rem;
  1085. }
  1086. &-list {
  1087. padding-left: 0;
  1088. }
  1089. &:nth-of-type(1) {
  1090. border-left: none;
  1091. }
  1092. &:nth-of-type(2) {
  1093. padding: 1rem 4rem;
  1094. @media (max-width: 1100px) {
  1095. padding: 1rem 1rem;
  1096. }
  1097. }
  1098. &-socials {
  1099. padding-left: 0;
  1100. display: flex;
  1101. align-items: center;
  1102. justify-content: space-between;
  1103. img {
  1104. @media (max-width: 1100px) {
  1105. width: 30px;
  1106. }
  1107. }
  1108. }
  1109. .follows-fp {
  1110. text-decoration: none;
  1111. color: #696969;
  1112. font-size: .9rem;
  1113. display: flex;
  1114. align-items: center;
  1115. @media (max-width: 1100px) {
  1116. font-size: .8rem;
  1117. }
  1118. }
  1119. &-phone {
  1120. p {
  1121. display: inline;
  1122. @media (max-width: 900px) {
  1123. display: block;
  1124. }
  1125. }
  1126. p, span {
  1127. font-size: .9rem;
  1128. }
  1129. .text-phone {
  1130. color: #EE7800;
  1131. text-decoration: none;
  1132. }
  1133. }
  1134. &-links {
  1135. display: flex;
  1136. align-items: center;
  1137. margin-top: 1rem;
  1138. justify-content: center;
  1139. &-grp {
  1140. padding: .3rem;
  1141. border-left: 1px solid rgb(185, 185, 185);
  1142. &:nth-of-type(1) {
  1143. border-left: none;
  1144. }
  1145. a {
  1146. display: block;
  1147. text-decoration: none;
  1148. color: #696969;
  1149. font-size: .9rem;
  1150. margin-bottom: .4rem;
  1151. @media (max-width: 1100px) {
  1152. font-size: .8rem;
  1153. }
  1154. }
  1155. }
  1156. }
  1157. &-subscribe {
  1158. width: 100%;
  1159. margin-top: 1rem;
  1160. .subscribeBar {
  1161. font-size: .8rem;
  1162. width: 70%;
  1163. margin-left: 7%;
  1164. @media (max-width: 900px) {
  1165. width: 75%;
  1166. margin-left: 3%;
  1167. font-size: .7rem;
  1168. }
  1169. }
  1170. .subscribeBtn {
  1171. width: 20%;
  1172. padding: .4rem .6rem;
  1173. padding-bottom: 9px;
  1174. border: none;
  1175. outline: none;
  1176. background-color: rgb(41, 41, 41);
  1177. color: white;
  1178. border-radius: 0 3px 3px 0;
  1179. margin-left: -.4rem;
  1180. @media (max-width: 900px) {
  1181. margin-left: -.3rem;
  1182. font-size: .8rem;
  1183. padding-top: 9px;
  1184. padding-bottom: 10px;
  1185. }
  1186. }
  1187. }
  1188. }
  1189. &__list-item {
  1190. display: flex;
  1191. align-items: center;
  1192. text-decoration: none;
  1193. margin-bottom: .5rem;
  1194. p {
  1195. color: #696969;
  1196. font-size: .9rem;
  1197. font-weight: 300;
  1198. }
  1199. }
  1200. &__list-icon {
  1201. width: 30px;
  1202. display: flex;
  1203. justify-content: center;
  1204. margin-right: .3rem;
  1205. }
  1206. .bottom-box {
  1207. padding: 1rem 0;
  1208. border-top: 1px solid rgb(185, 185, 185);
  1209. margin-top: 2.5rem;
  1210. }
  1211. }
  1212. #videoModal .modal-content {
  1213. background-color: transparent;
  1214. border: none;
  1215. width: fit-content;
  1216. }
  1217. #videoModal .modal-dialog {
  1218. max-width: 700px;
  1219. }
  1220. .more {
  1221. &link {
  1222. text-decoration: none;
  1223. color: #EE7800;
  1224. font-weight: 700;
  1225. &:hover {
  1226. color: #EE7800;
  1227. }
  1228. }
  1229. }
  1230. .fixed-btn {
  1231. position: fixed;
  1232. right: 15px;
  1233. bottom: 2rem;
  1234. .btn-gotop, .btn-login, .btn-favor {
  1235. cursor: pointer;
  1236. padding: 1.2rem .8rem;
  1237. background-color: rgba(255, 255, 255, 0.897);
  1238. display: flex;
  1239. align-items: center;
  1240. 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);
  1241. -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);
  1242. -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);
  1243. }
  1244. }
  1245. .sec-login {
  1246. &-list {
  1247. background-color: #F3F3F3;
  1248. padding: 1rem;
  1249. padding-bottom: 1.4rem;
  1250. hr {
  1251. background-color: #aaaaaa;
  1252. }
  1253. }
  1254. &-btns {
  1255. padding: 1rem;
  1256. background-color: white;
  1257. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  1258. }
  1259. }
  1260. #loginModal {
  1261. .btn-close {
  1262. position: absolute;
  1263. right: -2rem;
  1264. top: -2rem;
  1265. }
  1266. }
  1267. #favorModal {
  1268. .btn-close {
  1269. position: absolute;
  1270. right: -2rem;
  1271. top: -2rem;
  1272. }
  1273. .sec-favor {
  1274. &-title {
  1275. color: #4C4C4C;
  1276. font-size: 18px;
  1277. }
  1278. &-list {
  1279. background-color: #F3F3F3;
  1280. padding: 1rem;
  1281. padding-bottom: 1.4rem;
  1282. hr {
  1283. background-color: #aaaaaa;
  1284. }
  1285. }
  1286. &-form, &-checklist {
  1287. .form-user {
  1288. width: 50%;
  1289. color: #707070;
  1290. font-size: 16px;
  1291. }
  1292. .form-progressbar {
  1293. width: 50%;
  1294. display: flex;
  1295. justify-content: space-between;
  1296. li {
  1297. width: 1.6rem;
  1298. height: 1.6rem;
  1299. border-radius: 50%;
  1300. border: 2px solid #D3D3D3;
  1301. line-height: 1.4rem;
  1302. display: flex;
  1303. justify-content: center;
  1304. position: relative;
  1305. color: #D3D3D3;
  1306. background-color: #F3F3F3;
  1307. z-index: 2;
  1308. &.active {
  1309. border: 2px solid #EE7800;
  1310. color: #EE7800;
  1311. &::before {
  1312. border-top: 2px solid #EE7800;
  1313. }
  1314. }
  1315. &::before {
  1316. position: absolute;
  1317. content: " ";
  1318. width: 4rem;
  1319. height: 0;
  1320. border-top: 2px dashed #D3D3D3;
  1321. right: 100%;
  1322. top: 50%;
  1323. z-index: 1;
  1324. }
  1325. &:nth-of-type(1)::before {
  1326. display: none;
  1327. }
  1328. }
  1329. }
  1330. .form-step {
  1331. background-color: white;
  1332. border-radius: 3px;
  1333. padding: 1.5rem 1rem;
  1334. padding-bottom: 1.5rem;
  1335. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  1336. overflow: visible;
  1337. .next {
  1338. padding: .6rem 5rem;
  1339. background-color: #EE7800;
  1340. border-radius: 3px;
  1341. color: white;
  1342. border: none;
  1343. outline: none;
  1344. }
  1345. }
  1346. .form-step1 {
  1347. display: block;
  1348. }
  1349. .form-step2 {
  1350. display: none;
  1351. }
  1352. .form-step3 {
  1353. display: none;
  1354. position: relative;
  1355. padding-bottom: 1.5rem;
  1356. }
  1357. input[type="checkbox"], input[type="radio"] {
  1358. display: none;
  1359. }
  1360. .imgfr {
  1361. background-position: center center;
  1362. background-size: cover;
  1363. background-repeat: no-repeat;
  1364. width: 100%;
  1365. height: 4.5rem;
  1366. border-radius: 8px;
  1367. border: 2px solid transparent;
  1368. }
  1369. h4 {
  1370. color: #AAAAAA;
  1371. font-size: 15px;
  1372. font-weight: 400;
  1373. }
  1374. input[type="checkbox"]:checked + .fs-label-info .imgfr {
  1375. border: 2px solid #EE7800;
  1376. }
  1377. input[type="checkbox"]:checked + .fs-label-chbox {
  1378. border: 1px solid #EE7800;
  1379. color: #EE7800;
  1380. }
  1381. input[type="radio"]:checked + .fs-label-chbox {
  1382. border: 1px solid #EE7800;
  1383. color: #EE7800;
  1384. }
  1385. .step3-block {
  1386. margin-bottom: 1rem;
  1387. &:nth-of-type(3) {
  1388. margin-bottom: 0;
  1389. }
  1390. &-title {
  1391. color: #AAAAAA;
  1392. display: block;
  1393. margin-bottom: .5rem;
  1394. font-size: 1rem;
  1395. }
  1396. .radio {
  1397. display: inline-block;
  1398. padding: .25rem .7rem;
  1399. margin-right: .4rem;
  1400. border: 1px solid #707070;
  1401. border-radius: 2rem;
  1402. color: #797979;
  1403. margin-bottom: .5rem;
  1404. }
  1405. }
  1406. .skip {
  1407. padding: .3rem 1rem;
  1408. color: #AAAAAA;
  1409. border: none;
  1410. outline: none;
  1411. background-color: transparent;
  1412. }
  1413. .btngrp {
  1414. /* position: absolute;
  1415. left: 50%;
  1416. transform: translateX(-50%);
  1417. bottom: -6rem; */
  1418. display: flex;
  1419. flex-direction: column;
  1420. align-items: center;
  1421. .next {
  1422. transform: translateY(0rem);
  1423. }
  1424. }
  1425. }
  1426. &-checklist .form-user {
  1427. margin: 0 auto;
  1428. text-align: center;
  1429. margin-bottom: 1rem;
  1430. }
  1431. &-btns {
  1432. padding: 1rem;
  1433. background-color: white;
  1434. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  1435. }
  1436. }
  1437. }
  1438. .test {
  1439. position: relative;
  1440. .cover {
  1441. width: 100%;
  1442. position: absolute;
  1443. left: 0;
  1444. bottom: 0;
  1445. display: block;
  1446. background-color: white;
  1447. height: 100%;
  1448. &.slidein {
  1449. //transform: translateX(0px);
  1450. -webkit-animation: slidein 2s forwards;
  1451. animation: slidein 2s forwards;
  1452. }
  1453. }
  1454. }
  1455. .title_back {
  1456. display: block;
  1457. position: relative;
  1458. width: 10em;
  1459. height: 1.75em;
  1460. overflow: hidden;
  1461. .title {
  1462. position: absolute;
  1463. left: 0;
  1464. bottom: -1.75em;
  1465. display: block;
  1466. transition: all 1s;
  1467. }
  1468. }
  1469. .test_content {
  1470. opacity: 0;
  1471. &.fadein {
  1472. //transform: translateX(0px);
  1473. -webkit-animation: fadein 2s forwards;
  1474. animation: fadein 2s forwards;
  1475. }
  1476. }
  1477. @-webkit-keyframes slidein {
  1478. 100% { height: 0px; }
  1479. }
  1480. @keyframes slidein {
  1481. 100% { height: 0px; }
  1482. }
  1483. @-webkit-keyframes fadein {
  1484. 100% { opacity: 1; }
  1485. }
  1486. @keyframes fadein {
  1487. 100% { opacity: 1; }
  1488. }