style.scss 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730
  1. @import "pretendard/dist/web/static/pretendard.css";
  2. * {
  3. font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  4. &::after, &::before{
  5. display: inline-block;
  6. }
  7. }
  8. .ico{
  9. display: inline-block;
  10. background-repeat: no-repeat;
  11. background-position: center;
  12. }
  13. .header--wrap{
  14. position: fixed;
  15. top: 0;
  16. left: 0;
  17. width: 100%;
  18. z-index: 1000;
  19. transition: all 0.3s;
  20. &:hover, &.white{
  21. background-color: #fff;
  22. .header--container{
  23. .logo--wrap{
  24. background-image: url(/img/header--logo--green.svg);
  25. }
  26. .menu--wrap{
  27. .menu--item{
  28. >a{
  29. color: #515973;
  30. }
  31. }
  32. }
  33. .lang--wrap{
  34. .ico{
  35. background-image: url(/img/ico--lang--black.svg);
  36. }
  37. p{
  38. color: #1f2128;
  39. }
  40. }
  41. }
  42. }
  43. .header--container{
  44. width: 100%;
  45. max-width: 1280px;
  46. margin: 0 auto;
  47. background-color: transparent;
  48. justify-content: space-between;
  49. display: flex;
  50. align-items: center;
  51. height: 80px;
  52. .logo--wrap{
  53. width: 138px;
  54. background-image: url(/img/header--logo.svg);
  55. font-size: 0;
  56. height: 36px;
  57. }
  58. .menu--wrap{
  59. display: flex;
  60. .menu--item{
  61. position: relative;
  62. &:hover {
  63. >a{
  64. color: #00A654;
  65. &::before {
  66. width: calc(100% - 50px);
  67. }
  68. }
  69. }
  70. > a{
  71. color: #fff;
  72. font-weight: normal;
  73. padding: 0 30px;
  74. display: inline-block;
  75. height: 80px;
  76. font-weight: 700;
  77. transition: color 0.3s;
  78. font-size: 16px;
  79. line-height: 80px;
  80. position: relative;
  81. &::before{
  82. position: absolute;
  83. content: '';
  84. bottom: 20px;
  85. left: 50%;
  86. transition: width 0.3s;
  87. transform: translateX(-50%);
  88. height: 2px;
  89. width: 0;
  90. background-color: #00A654;
  91. }
  92. }
  93. .gnb--wrap{
  94. position: fixed;
  95. top: 80px;
  96. left: 0;
  97. background-color: #fff;
  98. width: 100%;
  99. opacity: 0;
  100. height: 60px;
  101. visibility: hidden;
  102. display: flex;
  103. justify-content: center;
  104. align-items: center;
  105. transition: all 0.3s ease;
  106. z-index: 101;
  107. border-top: 1px solid var(--05, #E0E4F2);
  108. gap: 60px;
  109. li{
  110. a{
  111. color: #1f2128;
  112. font-size: 16px;
  113. height: 60px;
  114. line-height: 60px;
  115. display: inline-block;
  116. font-weight: 500;
  117. transition: all 0.3s ease;
  118. &:hover{
  119. color: #00A654;
  120. }
  121. }
  122. }
  123. }
  124. &:hover .gnb--wrap{
  125. opacity: 1;
  126. visibility: visible;
  127. }
  128. }
  129. }
  130. .lang--wrap{
  131. display: flex;
  132. align-items: center;
  133. gap: 4px;
  134. position: relative;
  135. cursor: pointer;
  136. .ico{
  137. transition: all 0.3s;
  138. width: 24px;
  139. height: 24px;
  140. background-image: url(/img/ico--lang.svg);
  141. }
  142. >p{
  143. transition: all 0.3s;
  144. color: #fff;
  145. line-height: 1;
  146. font-size: 16px;
  147. font-weight: 700;
  148. }
  149. .select--wrap{
  150. opacity: 0;
  151. pointer-events: none;
  152. position: absolute;
  153. top: calc(100% + 13px);
  154. right: -12px;
  155. width: 180px;
  156. height: 180px;
  157. padding: 16px;
  158. overflow-y: scroll;
  159. background-color: #fff;
  160. box-shadow: 0 8px 16px 0 rgba(31, 33, 40, 0.12);
  161. display: flex;
  162. flex-direction: column;
  163. gap: 12px;
  164. li{
  165. color: #515973;
  166. font-size: 14px;
  167. font-weight: 700;
  168. &:hover{
  169. color: #00a654;
  170. }
  171. &.active{
  172. color: #00a654;
  173. }
  174. }
  175. // 스크롤바 커스터마이징
  176. &::-webkit-scrollbar {
  177. width: 4px;
  178. }
  179. &::-webkit-scrollbar-track {
  180. background: transparent;
  181. }
  182. &::-webkit-scrollbar-thumb {
  183. background-color: #b6bbcc;
  184. border-radius: 4px;
  185. }
  186. &::-webkit-scrollbar-thumb:hover {
  187. background-color: #a0a4b8;
  188. }
  189. }
  190. &.active{
  191. >p{
  192. color: #00A654;
  193. }
  194. .ico{
  195. background-image: url(/img/ico--lang--green.svg);
  196. }
  197. .select--wrap{
  198. opacity: 1;
  199. pointer-events: all;
  200. }
  201. }
  202. }
  203. }
  204. }
  205. main{
  206. .main--visual--wrap{
  207. .main--swiper--wrap{
  208. width: 100%;
  209. position: relative;
  210. .main--swiper{
  211. .visual--img{
  212. position: relative;
  213. .txt--wrap{
  214. width: 100%;
  215. text-align: center;
  216. height: 100%;
  217. display: flex;
  218. align-items: center;
  219. justify-content: center;
  220. position: absolute;
  221. h2{
  222. color: #fff;
  223. font-size: 48px;
  224. font-weight: 800;
  225. line-height: 1.4;
  226. }
  227. }
  228. .img--wrap{
  229. img{
  230. width: 100%;
  231. height: 100vh;
  232. object-fit: cover;
  233. }
  234. }
  235. }
  236. }
  237. .swiper--control--wrap{
  238. position: absolute;
  239. bottom: 0;
  240. left: 0;
  241. height: 84px;
  242. display: flex;
  243. justify-content: center;
  244. gap: 16px;
  245. align-items: center;
  246. z-index: 10;
  247. width: 100%;
  248. .pagination--wrap{
  249. display: flex;
  250. gap: 12px;
  251. align-items: center;
  252. .current{
  253. color: #fff;
  254. font-size: 14px;
  255. font-weight: 700;
  256. }
  257. .bar{
  258. opacity: 0.5;
  259. background-color: #fff;
  260. width: 1px;
  261. height: 12px;
  262. }
  263. .total{
  264. font-size: 14px;
  265. font-weight: 700;
  266. color: #fff;
  267. opacity: 0.5;
  268. }
  269. }
  270. .swiper--pagination{
  271. width: 150px;
  272. position: relative;
  273. height: 2px;
  274. background-color: rgba(255,255,255,0.5);
  275. .swiper-pagination-progressbar-fill{
  276. background-color: #fff;
  277. }
  278. }
  279. .swiper--btn--wrap{
  280. display: flex;
  281. gap:4px;
  282. align-items: center;
  283. justify-content: center;
  284. .swiper--btn--prev{
  285. width: 20px;
  286. height: 20px;
  287. background-image: url(/img/ico--swiper--prev.svg);
  288. }
  289. .swiper--btn--next{
  290. width: 20px;
  291. height: 20px;
  292. background-image: url(/img/ico--swiper--next.svg);
  293. }
  294. .play--btn{
  295. width: 20px;
  296. height: 20px;
  297. background-image: url(/img/ico--pause.svg);
  298. &.pause{
  299. background-image: url(/img/ico--play.svg);
  300. }
  301. }
  302. }
  303. }
  304. }
  305. }
  306. .main--content--wrap{
  307. &.bg--type{
  308. background-image: url(/img/main--bg.png);
  309. background-position: center;
  310. background-size: cover;
  311. background-repeat: no-repeat;
  312. }
  313. &.black--type{
  314. background-color: #1F2128;
  315. }
  316. &.gray--type{
  317. background-color: #F6F8FF;
  318. }
  319. &.white--txt{
  320. color: #fff !important;
  321. *{
  322. color: #fff!important;
  323. }
  324. }
  325. .main--container{
  326. margin: 0 auto;
  327. width: 100%;
  328. max-width: 1280px;
  329. padding: 100px 0;
  330. .title--wrap{
  331. text-align: center;
  332. .green--title{
  333. margin-bottom: 16px;
  334. color: #00a654!important;
  335. font-size: 18px;
  336. font-weight: 700;
  337. }
  338. .sub--title{
  339. color: #1f2128;
  340. font-size: 20px;
  341. font-weight: 400;
  342. margin-bottom: 12px;
  343. }
  344. >h2{
  345. color: #1f2128;
  346. font-size: 40px;
  347. font-weight: 700;
  348. }
  349. }
  350. .content--wrap{
  351. .img--card--wrap{
  352. display: flex;
  353. margin-bottom: 40px;
  354. justify-content: space-between;
  355. .card{
  356. img{
  357. width: 100%;
  358. }
  359. }
  360. }
  361. .square--card--wrap{
  362. width: 100%;
  363. margin-bottom: 40px;
  364. display: flex;
  365. flex-wrap: wrap;
  366. justify-content: center;
  367. gap: 20px;
  368. align-items: center;
  369. .card{
  370. width: calc((100% - 40px) / 3);
  371. padding: 20px 24px 60px 24px;
  372. display: flex;
  373. flex-direction: column;
  374. gap: 8px;
  375. border: 1px solid rgba(255, 255, 255, 0.30);
  376. background-color: rgba(0, 0, 0, 0.30);
  377. backdrop-filter: blur(6px);
  378. dt{
  379. font-size: 24px;
  380. font-weight: 700;
  381. }
  382. dd{
  383. font-size: 16px;
  384. font-weight: 400;
  385. }
  386. }
  387. }
  388. .number--card--wrap{
  389. display: flex;
  390. gap: 20px;
  391. width: 100%;
  392. .card{
  393. width: calc((100% - 40px) / 3);
  394. padding: 0 40px;
  395. display: flex;
  396. flex-direction: column;
  397. gap: 24px;
  398. align-items: center;
  399. text-align: center;
  400. .ico{
  401. width: 48px;
  402. height: 48px;
  403. background-image: url(/img/ico--main1.svg);
  404. }
  405. .card--title{
  406. display: flex;
  407. flex-direction: column;
  408. gap: 8px;
  409. align-items: center;
  410. .circle{
  411. border-radius: 24px;
  412. background-color: #2f3342;
  413. width: fit-content;
  414. font-size: 16px;
  415. padding: 3px 12px;
  416. font-weight: 700;
  417. }
  418. .number--wrap{
  419. .number{
  420. font-size: 60px;
  421. font-weight: 900;
  422. }
  423. .percent{
  424. font-size: 48px;
  425. font-weight: 900;
  426. }
  427. }
  428. .sub--txt{
  429. font-size: 18px;
  430. font-weight: 700;
  431. }
  432. }
  433. .card--desc{
  434. display: flex;
  435. flex-direction: column;
  436. gap: 4px;
  437. li{
  438. display: flex;
  439. gap: 12px;
  440. text-align: left;
  441. .nation{
  442. color: #00a654!important;
  443. font-size: 14px;
  444. font-weight: 400;
  445. line-height: 1.8;
  446. width: 18px;
  447. }
  448. .txt{
  449. width: calc(100% - 30px);
  450. strong{
  451. font-size: 14px;
  452. font-weight: 700;
  453. }
  454. span{
  455. color: #78809b!important;
  456. font-size: 14px;
  457. font-weight: 400;
  458. }
  459. }
  460. }
  461. }
  462. &:nth-of-type(2){
  463. .ico{
  464. background-image: url(/img/ico--main2.svg);
  465. }
  466. }
  467. &:nth-of-type(3) {
  468. .ico {
  469. background-image: url(/img/ico--main3.svg);
  470. }
  471. }
  472. }
  473. }
  474. .news--card--wrap{
  475. margin-bottom: 40px;
  476. display: flex;
  477. gap: 30px;
  478. .news{
  479. width: calc((100% - 60px) / 3);
  480. display: flex;
  481. flex-direction: column;
  482. gap: 24px;
  483. border-top: 1px solid #1f2128;
  484. padding-top: 24px;
  485. .news--title{
  486. overflow: hidden;
  487. text-overflow: ellipsis;
  488. display: -webkit-box;
  489. -webkit-line-clamp: 2;
  490. -webkit-box-orient: vertical;
  491. color: #1f2128;
  492. font-size: 20px;
  493. font-weight: 700;
  494. }
  495. .news--cont{
  496. overflow: hidden;
  497. text-overflow: ellipsis;
  498. display: -webkit-box;
  499. -webkit-line-clamp: 3;
  500. -webkit-box-orient: vertical;
  501. color: #515973;
  502. font-size: 16px;
  503. font-weight: 400;
  504. }
  505. .news--date{
  506. color: #515973;
  507. font-size: 16px;
  508. font-weight: 400;
  509. }
  510. }
  511. }
  512. }
  513. }
  514. .black--btn--wrap{
  515. display: flex;
  516. justify-content: center;
  517. align-items: center;
  518. .black--btn{
  519. border-radius: 24px;
  520. background-color: #1f2128;
  521. width: 128px;
  522. height: 44px;
  523. line-height: 44px;
  524. display: flex;
  525. align-items: center;
  526. justify-content: center;
  527. color: #fff;
  528. gap: 8px;
  529. font-size: 16px;
  530. font-weight: 700;
  531. .ico{
  532. background-image: url(/img/ico--more--arrow.svg);
  533. width: 24px;
  534. height: 24px;
  535. }
  536. &.blur--type{
  537. backdrop-filter: blur(6px);
  538. }
  539. }
  540. }
  541. .swiper--container{
  542. padding: 100px 0;
  543. .title--wrap {
  544. text-align: center;
  545. .green--title {
  546. margin-bottom: 16px;
  547. color: #00a654 !important;
  548. font-size: 18px;
  549. font-weight: 700;
  550. }
  551. .sub--title {
  552. color: #1f2128;
  553. font-size: 20px;
  554. font-weight: 400;
  555. margin-bottom: 12px;
  556. }
  557. >h2 {
  558. color: #1f2128;
  559. font-size: 40px;
  560. font-weight: 700;
  561. }
  562. }
  563. .item--swiper--wrap{
  564. .item--swiper{
  565. .item--img{
  566. display: flex;
  567. flex-direction: column;
  568. gap: 16px;
  569. .img--wrap{
  570. img{
  571. width: 100%;
  572. }
  573. }
  574. .txt--wrap{
  575. color: #1f2128;
  576. font-size: 14px;
  577. font-weight: 500;
  578. }
  579. }
  580. }
  581. }
  582. .marquee--wrap{
  583. overflow: hidden;
  584. .vue3-marquee{
  585. overflow: hidden;
  586. }
  587. .marquee{
  588. display: flex;
  589. gap: 40px;
  590. width: fit-content;
  591. .logo--wrap{
  592. display: flex;
  593. align-items: center;
  594. justify-content: center;
  595. width: 180px;
  596. height: 108px;
  597. }
  598. }
  599. }
  600. }
  601. }
  602. }
  603. .footer--wrap{
  604. background-color: #000;
  605. .footer--container{
  606. max-width: 1280px;
  607. width: 100%;
  608. margin: 0 auto;
  609. padding: 40px 0 60px;
  610. .footer--top{
  611. display: flex;
  612. justify-content: space-between;
  613. .logo--wrap{
  614. }
  615. .menu--wrap{
  616. display: flex;
  617. gap: 20px;
  618. >li{
  619. width: 140px;
  620. display: flex;
  621. flex-direction: column;
  622. gap: 20px;
  623. >a{
  624. color: #b6bbcc;
  625. font-size: 15px;
  626. font-weight: 400;
  627. }
  628. >ul{
  629. display: flex;
  630. flex-direction: column;
  631. width: 100%;
  632. gap: 20px;
  633. >li{
  634. width: 100%;
  635. >a{
  636. display: inline-block;
  637. width: 100%;
  638. font-size: 16px;
  639. font-weight: 500;
  640. color: #fff;
  641. }
  642. }
  643. }
  644. }
  645. }
  646. }
  647. .footer--bot{
  648. display: flex;
  649. flex-direction: column;
  650. margin-top: 40px;
  651. padding-top: 20px;
  652. border-top: 1px solid rgba(255, 255, 255, 0.2);
  653. .sns--list{
  654. display: flex;
  655. gap: 20px;
  656. margin-bottom: 20px;
  657. li{
  658. height: 24px;
  659. width: 24px;
  660. a{
  661. display: inline-block;
  662. width: 24px;
  663. height: 24px;
  664. &.blog{
  665. background-image: url(/img/ico--blog.svg);
  666. }
  667. &.ytb{
  668. background-image: url(/img/ico--ytb.svg);
  669. }
  670. &.fb {
  671. background-image: url(/img/ico--fb.svg);
  672. }
  673. &.insta{
  674. background-image: url(/img/ico--insta.svg);
  675. }
  676. }
  677. }
  678. }
  679. .bar{
  680. width: 1px;
  681. height: 12px;
  682. background-color: #fff;
  683. opacity: 0.2;
  684. }
  685. .info--list{
  686. align-items: center;
  687. display: flex;
  688. flex-wrap: wrap;
  689. gap: 8px;
  690. li{
  691. color: #B6BBCC;
  692. font-size: 14px;
  693. font-weight: 400;
  694. }
  695. }
  696. .copyright{
  697. margin-top: 20px;
  698. display: flex;
  699. align-items: center;
  700. gap: 8px;
  701. span{
  702. color: #B6BBCC;
  703. font-size: 14px;
  704. font-weight: 400;
  705. }
  706. a{
  707. color: #b6bbcc;
  708. font-size: 14px;
  709. font-weight: 400;
  710. }
  711. }
  712. }
  713. }
  714. }