style.scss 38 KB

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