style.scss 37 KB

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