style.scss 21 KB

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