style.scss 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043
  1. @import "pretendard/dist/web/static/pretendard.css";
  2. body{
  3. &:has(.mobile--header--wrap.active){
  4. overflow: hidden;
  5. }
  6. }
  7. br{
  8. &.mobile{
  9. display: none!important
  10. }
  11. }
  12. // SCSS watching test
  13. * {
  14. 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;
  15. word-break: keep-all;
  16. &::after, &::before{
  17. display: inline-block;
  18. }
  19. }
  20. .ico{
  21. display: inline-block;
  22. background-repeat: no-repeat;
  23. background-position: center;
  24. }
  25. #top--visual {
  26. &.company {
  27. background: url(/img/top_ban_company.jpg) no-repeat center;
  28. background-size: cover;
  29. }
  30. &.products{
  31. background: url(/img/top_ban_products.jpg) no-repeat center;
  32. background-size: cover;
  33. }
  34. &.technology{
  35. background: url(/img/top_ban_technology.jpg) no-repeat center;
  36. background-size: cover;
  37. }
  38. &.media{
  39. background: url(/img/top_ban_media.jpg) no-repeat bottom;
  40. background-size: cover;
  41. }
  42. }
  43. .header--wrap{
  44. position: fixed;
  45. top: 0;
  46. left: 0;
  47. width: 100%;
  48. z-index: 1000;
  49. transition: all 0.3s;
  50. &:hover, &.white{
  51. background-color: #fff;
  52. .header--container{
  53. .logo--wrap{
  54. background-image: url(/img/header--logo--green.svg);
  55. }
  56. .menu--wrap{
  57. .menu--item{
  58. >a{
  59. color: #515973;
  60. }
  61. }
  62. }
  63. .lang--wrap{
  64. .ico{
  65. background-image: url(/img/ico--lang--black.svg);
  66. }
  67. p{
  68. color: #1f2128;
  69. }
  70. }
  71. .ham--wrap{
  72. >button{
  73. background-image: url(/img/ico--ham--black.svg);
  74. }
  75. }
  76. }
  77. }
  78. .header--container{
  79. width: 100%;
  80. max-width: 1280px;
  81. margin: 0 auto;
  82. background-color: transparent;
  83. justify-content: space-between;
  84. display: flex;
  85. align-items: center;
  86. height: 80px;
  87. .logo--wrap{
  88. width: 138px;
  89. background-image: url(/img/header--logo.svg);
  90. font-size: 0;
  91. background-repeat: no-repeat;
  92. background-size: 100%;
  93. background-position: center;
  94. height: 36px;
  95. }
  96. .menu--wrap{
  97. display: flex;
  98. .menu--item{
  99. position: relative;
  100. &:hover {
  101. >a{
  102. color: #00A654;
  103. &::before {
  104. width: calc(100% - 50px);
  105. }
  106. }
  107. }
  108. > a{
  109. color: #fff;
  110. font-weight: normal;
  111. padding: 0 30px;
  112. display: inline-block;
  113. height: 80px;
  114. font-weight: 700;
  115. transition: color 0.3s;
  116. font-size: 16px;
  117. line-height: 80px;
  118. position: relative;
  119. &::before{
  120. position: absolute;
  121. content: '';
  122. bottom: 20px;
  123. left: 50%;
  124. transition: width 0.3s;
  125. transform: translateX(-50%);
  126. height: 2px;
  127. width: 0;
  128. background-color: #00A654;
  129. }
  130. }
  131. .gnb--wrap{
  132. position: fixed;
  133. top: 80px;
  134. left: 0;
  135. background-color: #fff;
  136. width: 100%;
  137. opacity: 0;
  138. height: 60px;
  139. visibility: hidden;
  140. display: flex;
  141. justify-content: center;
  142. align-items: center;
  143. transition: all 0.3s ease;
  144. z-index: 101;
  145. border-top: 1px solid var(--05, #E0E4F2);
  146. gap: 60px;
  147. li{
  148. a{
  149. color: #1f2128;
  150. font-size: 16px;
  151. height: 60px;
  152. line-height: 60px;
  153. display: inline-block;
  154. font-weight: 500;
  155. transition: all 0.3s ease;
  156. &:hover{
  157. color: #00A654;
  158. }
  159. }
  160. }
  161. }
  162. &:hover .gnb--wrap{
  163. opacity: 1;
  164. visibility: visible;
  165. }
  166. }
  167. }
  168. .lang--wrap{
  169. display: flex;
  170. align-items: center;
  171. gap: 4px;
  172. position: relative;
  173. cursor: pointer;
  174. .ico{
  175. transition: all 0.3s;
  176. width: 24px;
  177. height: 24px;
  178. background-image: url(/img/ico--lang.svg);
  179. }
  180. >p{
  181. transition: all 0.3s;
  182. color: #fff;
  183. line-height: 1;
  184. font-size: 16px;
  185. font-weight: 700;
  186. }
  187. .select--wrap{
  188. opacity: 0;
  189. pointer-events: none;
  190. position: absolute;
  191. top: calc(100% + 13px);
  192. right: -12px;
  193. width: 180px;
  194. height: 180px;
  195. padding: 16px;
  196. overflow-y: scroll;
  197. background-color: #fff;
  198. box-shadow: 0 8px 16px 0 rgba(31, 33, 40, 0.12);
  199. display: flex;
  200. flex-direction: column;
  201. gap: 12px;
  202. li{
  203. color: #515973;
  204. font-size: 14px;
  205. font-weight: 700;
  206. &:hover{
  207. color: #00a654;
  208. }
  209. &.active{
  210. color: #00a654;
  211. }
  212. }
  213. // 스크롤바 커스터마이징
  214. &::-webkit-scrollbar {
  215. width: 4px;
  216. }
  217. &::-webkit-scrollbar-track {
  218. background: transparent;
  219. }
  220. &::-webkit-scrollbar-thumb {
  221. background-color: #b6bbcc;
  222. border-radius: 4px;
  223. }
  224. &::-webkit-scrollbar-thumb:hover {
  225. background-color: #a0a4b8;
  226. }
  227. }
  228. &.active{
  229. >p{
  230. color: #00A654;
  231. }
  232. .ico{
  233. background-image: url(/img/ico--lang--green.svg);
  234. }
  235. .select--wrap{
  236. opacity: 1;
  237. pointer-events: all;
  238. }
  239. }
  240. }
  241. .ham--wrap{
  242. display: none;
  243. >button{
  244. transition: all 0.3s;
  245. background-color: transparent;
  246. background-image: url(/img/ico--ham.svg);
  247. width: 28px;
  248. height: 28px;
  249. cursor: pointer;
  250. }
  251. }
  252. }
  253. }
  254. .mobile--header--wrap{
  255. position: fixed;
  256. left: 100%;
  257. transition: all 0.3s;
  258. top: 60px;
  259. width: 100%;
  260. height: calc(100vh - 60px);
  261. background-color: #fff;
  262. z-index: 1000;
  263. display: flex;
  264. flex-direction: column;
  265. &.active{
  266. left: 0;
  267. }
  268. .mobile--menu--wrap{
  269. width: 100%;
  270. height: calc(100% - 72px);
  271. padding-top: 14px;
  272. overflow-y: auto;
  273. >ul{
  274. >li{
  275. >div{
  276. color: #1f2128;
  277. font-size: 18px;
  278. cursor: pointer;
  279. font-weight: 700;
  280. display: flex;
  281. justify-content: space-between;
  282. padding: 14px 20px;
  283. .ico{
  284. width: 24px;
  285. height: 24px;
  286. transition: all 0.3s;
  287. background-image: url(/img/ico--ham--arrow.svg);
  288. }
  289. &.active{
  290. .ico{
  291. transform: rotate(180deg);
  292. }
  293. }
  294. }
  295. >ul{
  296. background-color: #f6f8ff;
  297. display: flex;
  298. flex-direction: column;
  299. max-height: 0;
  300. overflow: hidden;
  301. transition: max-height 0.3s ease;
  302. &.active{
  303. max-height: 400px;
  304. }
  305. >li{
  306. >a{
  307. width: 100%;
  308. padding: 10px 28px;
  309. display: inline-block;
  310. color: #1f2128;
  311. font-size: 16px;
  312. font-weight: 500;
  313. }
  314. &:first-child{
  315. >a{
  316. padding-top: 20px;
  317. }
  318. }
  319. &:last-child{
  320. >a{
  321. padding-bottom: 20px;
  322. }
  323. }
  324. }
  325. }
  326. }
  327. }
  328. }
  329. .mobile--lang--wrap{
  330. height: 72px;
  331. border-top: 1px solid #e0e4f2;
  332. padding: 16px 20px;
  333. .lang--wrap {
  334. display: flex;
  335. align-items: center;
  336. gap: 4px;
  337. position: relative;
  338. cursor: pointer;
  339. .ico {
  340. transition: all 0.3s;
  341. width: 24px;
  342. height: 24px;
  343. background-image: url(/img/ico--lang--black.svg);
  344. }
  345. >p {
  346. transition: all 0.3s;
  347. color: #1f2128;
  348. line-height: 1;
  349. font-size: 16px;
  350. font-weight: 700;
  351. }
  352. .select--wrap {
  353. opacity: 0;
  354. pointer-events: none;
  355. position: absolute;
  356. bottom: 36px;
  357. left: 0;
  358. width: 180px;
  359. height: 240px;
  360. padding: 16px;
  361. overflow-y: scroll;
  362. background-color: #fff;
  363. box-shadow: 0 8px 16px 0 rgba(31, 33, 40, 0.12);
  364. display: flex;
  365. flex-direction: column;
  366. gap: 12px;
  367. li {
  368. color: #515973;
  369. font-size: 14px;
  370. font-weight: 700;
  371. &:hover {
  372. color: #00a654;
  373. }
  374. &.active {
  375. color: #00a654;
  376. }
  377. }
  378. // 스크롤바 커스터마이징
  379. &::-webkit-scrollbar {
  380. width: 4px;
  381. }
  382. &::-webkit-scrollbar-track {
  383. background: transparent;
  384. }
  385. &::-webkit-scrollbar-thumb {
  386. background-color: #b6bbcc;
  387. border-radius: 4px;
  388. }
  389. &::-webkit-scrollbar-thumb:hover {
  390. background-color: #a0a4b8;
  391. }
  392. }
  393. &.active {
  394. >p {
  395. color: #00A654;
  396. }
  397. .ico {
  398. background-image: url(/img/ico--lang--green.svg);
  399. }
  400. .select--wrap {
  401. opacity: 1;
  402. pointer-events: all;
  403. }
  404. }
  405. }
  406. }
  407. }
  408. main{
  409. .main--visual--wrap{
  410. .main--swiper--wrap{
  411. width: 100%;
  412. position: relative;
  413. .main--swiper{
  414. .visual--img{
  415. position: relative;
  416. .txt--wrap{
  417. width: 100%;
  418. padding: 20px;
  419. text-align: center;
  420. height: 100%;
  421. display: flex;
  422. align-items: center;
  423. justify-content: center;
  424. position: absolute;
  425. h2{
  426. color: #fff;
  427. font-size: 48px;
  428. font-weight: 800;
  429. line-height: 1.4;
  430. }
  431. }
  432. .img--wrap{
  433. img{
  434. width: 100%;
  435. height: 100vh;
  436. object-fit: cover;
  437. }
  438. }
  439. }
  440. }
  441. .swiper--control--wrap{
  442. position: absolute;
  443. bottom: 0;
  444. left: 0;
  445. height: 84px;
  446. display: flex;
  447. justify-content: center;
  448. gap: 16px;
  449. align-items: center;
  450. z-index: 10;
  451. width: 100%;
  452. .pagination--wrap{
  453. display: flex;
  454. gap: 12px;
  455. align-items: center;
  456. .current{
  457. color: #fff;
  458. font-size: 14px;
  459. font-weight: 700;
  460. }
  461. .bar{
  462. opacity: 0.5;
  463. background-color: #fff;
  464. width: 1px;
  465. height: 12px;
  466. }
  467. .total{
  468. font-size: 14px;
  469. font-weight: 700;
  470. color: #fff;
  471. opacity: 0.5;
  472. }
  473. }
  474. .swiper--pagination{
  475. width: 150px;
  476. position: relative;
  477. height: 2px;
  478. background-color: rgba(255,255,255,0.5);
  479. .swiper-pagination-progressbar-fill{
  480. background-color: #fff;
  481. }
  482. }
  483. .swiper--btn--wrap{
  484. display: flex;
  485. gap:4px;
  486. align-items: center;
  487. justify-content: center;
  488. .swiper--btn--prev{
  489. width: 20px;
  490. height: 20px;
  491. background-image: url(/img/ico--swiper--prev.svg);
  492. }
  493. .swiper--btn--next{
  494. width: 20px;
  495. height: 20px;
  496. background-image: url(/img/ico--swiper--next.svg);
  497. }
  498. .play--btn{
  499. width: 20px;
  500. height: 20px;
  501. background-image: url(/img/ico--pause.svg);
  502. &.pause{
  503. background-image: url(/img/ico--play.svg);
  504. }
  505. }
  506. }
  507. }
  508. }
  509. }
  510. .main--content--wrap{
  511. &.bg--type{
  512. background-image: url(/img/main--bg.png);
  513. background-position: center;
  514. background-size: cover;
  515. background-repeat: no-repeat;
  516. background-attachment: fixed;
  517. }
  518. &.black--type{
  519. background-color: #1F2128;
  520. }
  521. &.gray--type{
  522. background-color: #F6F8FF;
  523. }
  524. &.white--txt{
  525. color: #fff !important;
  526. *{
  527. color: #fff!important;
  528. }
  529. }
  530. .main--container{
  531. margin: 0 auto;
  532. width: 100%;
  533. max-width: 1280px;
  534. padding: 100px 0;
  535. .title--wrap{
  536. text-align: center;
  537. .green--title{
  538. margin-bottom: 16px;
  539. color: #00a654!important;
  540. font-size: 18px;
  541. font-weight: 700;
  542. }
  543. .sub--title{
  544. color: #1f2128;
  545. font-size: 20px;
  546. font-weight: 400;
  547. margin-bottom: 12px;
  548. }
  549. >h2{
  550. color: #1f2128;
  551. font-size: 40px;
  552. font-weight: 700;
  553. }
  554. }
  555. .content--wrap{
  556. .img--card--wrap{
  557. display: flex;
  558. margin-bottom: 40px;
  559. justify-content: space-between;
  560. .card{
  561. img{
  562. width: 100%;
  563. }
  564. }
  565. }
  566. .square--card--wrap{
  567. width: 100%;
  568. margin-bottom: 40px;
  569. display: flex;
  570. flex-wrap: wrap;
  571. justify-content: center;
  572. gap: 20px;
  573. align-items: center;
  574. .card{
  575. width: calc((100% - 40px) / 3);
  576. padding: 20px 24px 60px 24px;
  577. display: flex;
  578. align-self: stretch;
  579. flex-direction: column;
  580. gap: 8px;
  581. border: 1px solid rgba(255, 255, 255, 0.30);
  582. background-color: rgba(0, 0, 0, 0.30);
  583. backdrop-filter: blur(6px);
  584. dt{
  585. font-size: 24px;
  586. font-weight: 700;
  587. }
  588. dd{
  589. font-size: 16px;
  590. font-weight: 400;
  591. }
  592. }
  593. }
  594. .number--card--wrap{
  595. display: flex;
  596. gap: 20px;
  597. width: 100%;
  598. .card{
  599. width: calc((100% - 40px) / 3);
  600. padding: 0 40px;
  601. display: flex;
  602. flex-direction: column;
  603. gap: 24px;
  604. align-items: center;
  605. text-align: center;
  606. .ico{
  607. width: 48px;
  608. height: 48px;
  609. background-image: url(/img/ico--main1.svg);
  610. }
  611. .card--title{
  612. display: flex;
  613. flex-direction: column;
  614. gap: 8px;
  615. align-items: center;
  616. .circle{
  617. border-radius: 24px;
  618. background-color: #2f3342;
  619. width: fit-content;
  620. font-size: 16px;
  621. padding: 3px 12px;
  622. font-weight: 700;
  623. }
  624. .number--wrap{
  625. .number{
  626. font-size: 60px;
  627. font-weight: 900;
  628. }
  629. .percent{
  630. font-size: 48px;
  631. font-weight: 900;
  632. }
  633. }
  634. .sub--txt{
  635. font-size: 18px;
  636. font-weight: 700;
  637. }
  638. }
  639. .card--desc{
  640. display: flex;
  641. flex-direction: column;
  642. gap: 4px;
  643. li{
  644. display: flex;
  645. gap: 12px;
  646. text-align: left;
  647. .nation{
  648. color: #00a654!important;
  649. font-size: 14px;
  650. font-weight: 400;
  651. line-height: 1.8;
  652. width: 18px;
  653. }
  654. .txt{
  655. width: calc(100% - 30px);
  656. strong{
  657. font-size: 14px;
  658. font-weight: 700;
  659. }
  660. span{
  661. color: #78809b!important;
  662. font-size: 14px;
  663. font-weight: 400;
  664. }
  665. }
  666. }
  667. }
  668. &:nth-of-type(2){
  669. .ico{
  670. background-image: url(/img/ico--main2.svg);
  671. }
  672. }
  673. &:nth-of-type(3) {
  674. .ico {
  675. background-image: url(/img/ico--main3.svg);
  676. }
  677. }
  678. }
  679. }
  680. .news--card--wrap{
  681. margin-bottom: 40px;
  682. display: flex;
  683. gap: 30px;
  684. .news{
  685. width: calc((100% - 60px) / 3);
  686. display: flex;
  687. flex-direction: column;
  688. gap: 24px;
  689. border-top: 1px solid #1f2128;
  690. padding-top: 24px;
  691. .news--title{
  692. overflow: hidden;
  693. text-overflow: ellipsis;
  694. display: -webkit-box;
  695. -webkit-line-clamp: 2;
  696. -webkit-box-orient: vertical;
  697. color: #1f2128;
  698. font-size: 20px;
  699. font-weight: 700;
  700. }
  701. .news--cont{
  702. overflow: hidden;
  703. text-overflow: ellipsis;
  704. display: -webkit-box;
  705. -webkit-line-clamp: 3;
  706. -webkit-box-orient: vertical;
  707. color: #515973;
  708. font-size: 16px;
  709. font-weight: 400;
  710. }
  711. .news--date{
  712. color: #515973;
  713. font-size: 16px;
  714. font-weight: 400;
  715. }
  716. }
  717. }
  718. }
  719. }
  720. .black--btn--wrap{
  721. display: flex;
  722. justify-content: center;
  723. align-items: center;
  724. .black--btn{
  725. border-radius: 24px;
  726. background-color: #1f2128;
  727. width: 128px;
  728. height: 44px;
  729. line-height: 44px;
  730. display: flex;
  731. align-items: center;
  732. justify-content: center;
  733. color: #fff;
  734. gap: 8px;
  735. font-size: 16px;
  736. font-weight: 700;
  737. .ico{
  738. background-image: url(/img/ico--more--arrow.svg);
  739. width: 24px;
  740. height: 24px;
  741. }
  742. &.blur--type{
  743. backdrop-filter: blur(6px);
  744. }
  745. }
  746. }
  747. .swiper--container{
  748. padding: 100px 0;
  749. .title--wrap {
  750. text-align: center;
  751. .green--title {
  752. margin-bottom: 16px;
  753. color: #00a654 !important;
  754. font-size: 18px;
  755. font-weight: 700;
  756. }
  757. .sub--title {
  758. color: #1f2128;
  759. font-size: 20px;
  760. font-weight: 400;
  761. margin-bottom: 12px;
  762. }
  763. >h2 {
  764. color: #1f2128;
  765. font-size: 40px;
  766. font-weight: 700;
  767. }
  768. }
  769. .item--swiper--wrap{
  770. .item--swiper{
  771. .item--img{
  772. display: flex;
  773. flex-direction: column;
  774. gap: 16px;
  775. .img--wrap{
  776. img{
  777. width: 100%;
  778. }
  779. }
  780. .txt--wrap{
  781. color: #1f2128;
  782. font-size: 14px;
  783. font-weight: 500;
  784. }
  785. }
  786. }
  787. }
  788. .marquee--wrap{
  789. overflow: hidden;
  790. .vue3-marquee{
  791. overflow: hidden;
  792. }
  793. .marquee{
  794. display: flex;
  795. gap: 40px;
  796. width: fit-content;
  797. .logo--wrap{
  798. display: flex;
  799. align-items: center;
  800. justify-content: center;
  801. width: 180px;
  802. height: 108px;
  803. }
  804. }
  805. }
  806. }
  807. }
  808. section{
  809. &.vision--section {
  810. background-image: url(/img/bg--vision.png);
  811. background-repeat: no-repeat;
  812. background-size: cover;
  813. background-position: center;
  814. background-attachment: fixed;
  815. .sub--container{
  816. padding: 145px 0;
  817. }
  818. }
  819. &.mission--section{
  820. padding-top: 100px;
  821. display: flex;
  822. flex-direction: column;
  823. gap: 60px;
  824. overflow: hidden;
  825. .title--wrap{
  826. display: flex;
  827. gap: 48px;
  828. justify-content: center;
  829. .mission--title{
  830. color: #1f2128;
  831. font-size: 40px;
  832. font-weight: 800;
  833. }
  834. .mission--desc{
  835. color: #1f2128;
  836. font-size: 24px;
  837. font-weight: 700;
  838. strong{
  839. color: #00a654;
  840. font-weight: 700;
  841. }
  842. }
  843. }
  844. .mission--img--wrap{
  845. display: flex;
  846. gap: 20px;
  847. width: 107%;
  848. margin-left: -3.5%;
  849. .img--wrap{
  850. width: calc((100% - 60px) / 4);
  851. img{
  852. width: 100%;
  853. }
  854. }
  855. }
  856. }
  857. &.values--section{
  858. background-image: url(/img/bg--values.png);
  859. background-repeat: no-repeat;
  860. background-size: cover;
  861. background-attachment: fixed;
  862. background-position: bottom center;
  863. .sub--container {
  864. padding: 100px 0 120px;
  865. }
  866. }
  867. &.notice--section{
  868. .sub--container{
  869. .title--wrap{
  870. .title{
  871. font-size: 48px;
  872. }
  873. }
  874. }
  875. }
  876. &.map--section{
  877. background: linear-gradient(102deg, #000 0%, #0C2984 100%);
  878. padding: 30px 20px;
  879. .map--wrap{
  880. margin: 0 auto;
  881. max-width: 775px;
  882. width: 100%;
  883. img{
  884. width: 100%;
  885. }
  886. }
  887. }
  888. .sub--container{
  889. margin: 0 auto;
  890. max-width: 1060px;
  891. width: 100%;
  892. padding: 100px 0;
  893. &.type2{
  894. padding: 100px 0 120px;
  895. }
  896. &.type3{
  897. max-width: 1280px;
  898. padding: 100px 0 120px;
  899. }
  900. &.type4{
  901. padding: 160px 0 120px;
  902. }
  903. .title--wrap{
  904. text-align: center;
  905. &.color--white{
  906. *{
  907. color: white!important;
  908. }
  909. }
  910. .logo--wrap{
  911. display: flex;
  912. justify-content: center;
  913. align-items: center;
  914. margin-bottom: 60px;
  915. }
  916. .title{
  917. color: #1f2128;
  918. font-size: 40px;
  919. font-weight: 700;
  920. strong{
  921. color: #00a654;
  922. font-weight: 700;
  923. }
  924. }
  925. .sub--title{
  926. margin-top: 24px;
  927. color: #1f2128;
  928. font-size: 24px;
  929. font-weight: 700;
  930. }
  931. .sub--title2{
  932. margin-top: 12px;
  933. font-size: 18px;
  934. font-weight: 400;
  935. color: #1f2128;
  936. }
  937. }
  938. .product--img--wrap{
  939. &.mobile{
  940. display: none;
  941. }
  942. display: flex;
  943. flex-direction: column;
  944. align-items: center;
  945. gap: 20px;
  946. margin-top: 40px;
  947. .img--top{
  948. display: flex;
  949. gap: 20px;
  950. }
  951. .img--bot{
  952. display: flex;
  953. gap: 20px;
  954. }
  955. }
  956. .vision--wrap{
  957. display: flex;
  958. flex-direction: column;
  959. gap: 20px;
  960. text-align: center;
  961. >span{
  962. color: #fff;
  963. font-size: 20px;
  964. font-weight: 700;
  965. }
  966. >p{
  967. color: #fff;
  968. font-size: 40px;
  969. font-weight: 700;
  970. }
  971. }
  972. .values--card--wrap{
  973. display: flex;
  974. gap: 20px;
  975. margin-top: 40px;
  976. .card{
  977. display: flex;
  978. flex-direction: column;
  979. background-color: rgba(0, 0, 0, 0.30);
  980. backdrop-filter: blur(6px);
  981. padding: 24px;
  982. width: calc((100% - 40px) / 3);
  983. .ico{
  984. width: 48px;
  985. height: 48px;
  986. margin-bottom: 16px;
  987. background-image: url(/img/ico--values1.svg);
  988. }
  989. dt{
  990. margin-bottom: 8px;
  991. color: #fff;
  992. font-size: 24px;
  993. font-weight: 700;
  994. }
  995. dd{
  996. color: #fff;
  997. font-size: 16px;
  998. font-weight: 400;
  999. }
  1000. &:nth-of-type(2){
  1001. .ico{
  1002. background-image: url(/img/ico--values2.svg);
  1003. }
  1004. }
  1005. &:nth-of-type(3) {
  1006. .ico {
  1007. background-image: url(/img/ico--values3.svg);
  1008. }
  1009. }
  1010. }
  1011. }
  1012. .history--desc--wrap{
  1013. margin-top: 100px;
  1014. display: flex;
  1015. flex-direction: column;
  1016. .history--desc{
  1017. gap: 60px;
  1018. display: flex;
  1019. margin-bottom: 100px;
  1020. &.left--type{
  1021. padding-right: 100px;
  1022. .img--wrap{
  1023. min-width: 412px;
  1024. }
  1025. .desc--wrap{
  1026. >p{
  1027. font-size: 20px;
  1028. }
  1029. }
  1030. }
  1031. &.left--type2{
  1032. padding-right: 100px;
  1033. .img--wrap{
  1034. min-width: 324px;
  1035. }
  1036. }
  1037. &.right--type{
  1038. padding-left: 100px;
  1039. .img--wrap{
  1040. min-width: 412px;
  1041. }
  1042. }
  1043. &.top--type{
  1044. flex-direction: column;
  1045. }
  1046. .desc--box--wrap{
  1047. display: flex;
  1048. justify-content: space-between;
  1049. gap: 60px;
  1050. .desc--wrap{
  1051. width: 50%;
  1052. >div{
  1053. color: #1f2128;
  1054. font-size: 24px;
  1055. font-weight: 700;
  1056. strong{
  1057. font-weight: 700;
  1058. color: #00A654;
  1059. }
  1060. }
  1061. }
  1062. }
  1063. .desc--wrap{
  1064. display: flex;
  1065. flex-direction: column;
  1066. gap: 20px;
  1067. >p{
  1068. color: #1f2128;
  1069. font-size: 18px;
  1070. font-weight: 400;
  1071. strong{
  1072. font-weight: 800;
  1073. }
  1074. }
  1075. }
  1076. }
  1077. }
  1078. .history--graph--wrap{
  1079. overflow: hidden;
  1080. display: flex;
  1081. .txt--wrap{
  1082. text-align: center;
  1083. color: #1f2128;
  1084. font-size: 40px;
  1085. font-weight: 800;
  1086. width: 50%;
  1087. }
  1088. .graph--wrap{
  1089. width: 50%;
  1090. display: flex;
  1091. flex-direction: column;
  1092. .graph--box{
  1093. display: flex;
  1094. gap: 30px;
  1095. margin-top: -15px;
  1096. &:first-child{
  1097. margin-top: 0;
  1098. }
  1099. .deco--box{
  1100. position: relative;
  1101. padding-left: 5px;
  1102. padding-top: 15px;
  1103. .dot{
  1104. display: inline-block;
  1105. width: 12px;
  1106. height: 12px;
  1107. border-radius: 50%;
  1108. background-color: #00a654;
  1109. position: absolute;
  1110. top: 15px;
  1111. left: 0;
  1112. }
  1113. .line{
  1114. display: inline-block;
  1115. background-color: #e0e4f2;
  1116. height: 100%;
  1117. width: 2px;
  1118. }
  1119. }
  1120. .history--box{
  1121. display: flex;
  1122. flex-direction: column;
  1123. gap: 16px;
  1124. padding-bottom: 95px;
  1125. .year{
  1126. line-height: 1.4;
  1127. color: #1f2128;
  1128. font-size: 32px;
  1129. font-weight: 800;
  1130. }
  1131. >ul{
  1132. display: flex;
  1133. flex-direction: column;
  1134. gap: 16px;
  1135. >li{
  1136. >div{
  1137. display: flex;
  1138. gap: 28px;
  1139. >span{
  1140. width: 80px;
  1141. color: #78809b;
  1142. font-size: 16px;
  1143. font-weight: 700;
  1144. }
  1145. >p{
  1146. color: #1f2128;
  1147. font-size: 16px;
  1148. font-weight: 700;
  1149. width: calc(100% - 108px);
  1150. }
  1151. }
  1152. }
  1153. }
  1154. }
  1155. }
  1156. }
  1157. }
  1158. .partners--wrap{
  1159. display: flex;
  1160. gap: 20px;
  1161. flex-wrap: wrap;
  1162. margin-top: 80px;
  1163. .partners{
  1164. background-color: #f6f8ff;
  1165. width: calc((100% - 60px) / 4);
  1166. }
  1167. }
  1168. .catalog--wrap{
  1169. display: flex;
  1170. flex-direction: column;
  1171. gap: 80px;
  1172. margin-top: 80px;
  1173. .catalog{
  1174. display: flex;
  1175. gap: 80px;
  1176. .img--wrap{
  1177. min-width: 412px;
  1178. }
  1179. .download--wrap{
  1180. display: flex;
  1181. flex-direction: column;
  1182. gap: 20px;
  1183. justify-content: center;
  1184. width: calc(100% - 492px);
  1185. >p{
  1186. color: #1f2128;
  1187. font-size: 28px;
  1188. font-weight: 800;
  1189. }
  1190. .btn--wrap{
  1191. display: flex;
  1192. gap: 8px;
  1193. .download--btn{
  1194. cursor: pointer;
  1195. display: flex;
  1196. gap: 8px;
  1197. font-size: 16px;
  1198. font-weight: 700;
  1199. padding: 8px 12px 8px 16px;
  1200. border-radius: 24px;
  1201. color: #fff;
  1202. background-color: #1f2128;
  1203. .ico{
  1204. width: 24px;
  1205. height: 24px;
  1206. background-image: url(/img/ico--download.svg);
  1207. }
  1208. }
  1209. }
  1210. }
  1211. }
  1212. }
  1213. .tab--wrap{
  1214. margin: 60px 0 80px;
  1215. display: flex;
  1216. width: 100%;
  1217. justify-content: center;
  1218. gap: 12px;
  1219. a{
  1220. line-height: 1;
  1221. padding: 14px 32px;
  1222. color: #78809b;
  1223. font-size: 16px;
  1224. font-weight: 700;
  1225. border-radius: 24px;
  1226. background-color: #eff1fb;
  1227. &.active{
  1228. color: #00a654;
  1229. background-color: #fff;
  1230. border: 1px solid #00A654;
  1231. }
  1232. }
  1233. }
  1234. .search--wrap{
  1235. margin: 60px 0 40px;
  1236. display: flex;
  1237. justify-content: end;
  1238. position: relative;
  1239. gap: 8px;
  1240. z-index: 1;
  1241. >button{
  1242. width: 120px;
  1243. box-shadow: none;
  1244. height: 48px;
  1245. padding-left: 16px;
  1246. border: 1px solid #b6bbcc;
  1247. padding-right: 40px;
  1248. color: #1f2128;
  1249. font-size: 16px;
  1250. font-weight: 500;
  1251. .iconify{
  1252. --svg: none;
  1253. background-color: transparent;
  1254. width: 24px;
  1255. height: 24px;
  1256. background-image: url(/img/ico--select.svg);
  1257. }
  1258. }
  1259. input{
  1260. padding: 0 40px 0 16px;
  1261. height: 48px;
  1262. width: 320px;
  1263. box-shadow: none;
  1264. border: 1px solid #b6bbcc;
  1265. color: #1f2128;
  1266. font-size: 16px;
  1267. font-weight: 500;
  1268. &::placeholder{
  1269. color: #78809b;
  1270. font-size: 16px;
  1271. font-weight: 500;
  1272. }
  1273. }
  1274. .search--btn{
  1275. background-color: transparent;
  1276. border: none;
  1277. position: absolute;
  1278. top: 50%;
  1279. transform: translateY(-50%);
  1280. background-repeat: no-repeat;
  1281. width: 24px;
  1282. padding: 0;
  1283. right: 12px;
  1284. height: 24px;
  1285. background-image: url(/img/ico--search.svg);
  1286. }
  1287. }
  1288. .materials--wrap{
  1289. display: flex;
  1290. flex-direction: column;
  1291. gap: 80px;
  1292. .materials--box{
  1293. display: flex;
  1294. gap: 80px;
  1295. .img--wrap{
  1296. min-width: 490px;
  1297. }
  1298. .desc--wrap{
  1299. display: flex;
  1300. flex-direction: column;
  1301. gap: 16px;
  1302. justify-content: center;
  1303. >h4{
  1304. color: #1f2128;
  1305. font-size: 28px;
  1306. font-weight: 800;
  1307. }
  1308. >h5{
  1309. color: #00a654;
  1310. font-size: 20px;
  1311. font-weight: 700;
  1312. }
  1313. >ul{
  1314. display: flex;
  1315. flex-direction: column;
  1316. gap: 8px;
  1317. >li{
  1318. color: #1f2128;
  1319. font-size: 16px;
  1320. font-weight: 400;
  1321. }
  1322. }
  1323. .tag--wrap{
  1324. display: flex;
  1325. gap: 4px;
  1326. span{
  1327. background-color: #EFF1FB;
  1328. color: #515973;
  1329. padding: 3px 8px;
  1330. font-weight: 500;
  1331. font-size: 14px;
  1332. }
  1333. }
  1334. .btn--wrap{
  1335. margin-top: 16px;
  1336. a{
  1337. padding: 11px 12px 11px 16px;
  1338. color: #1f2128;
  1339. font-size: 14px;
  1340. font-weight: 700;
  1341. display: flex;
  1342. gap: 8px;
  1343. border-radius: 24px;
  1344. width: fit-content;
  1345. border: 1px solid #515973;
  1346. .ico{
  1347. width: 20px;
  1348. height: 20px;
  1349. background-image: url(/img/ico--arrow.svg);
  1350. }
  1351. }
  1352. }
  1353. }
  1354. }
  1355. }
  1356. .life--cycle--wrap{
  1357. .mobile--cycle{
  1358. display: none;
  1359. }
  1360. display: flex;
  1361. flex-direction: column;
  1362. gap: 20px;
  1363. margin-top: 80px;
  1364. .cycle{
  1365. display: flex;
  1366. gap: 20px;
  1367. .img--wrap{
  1368. position: relative;
  1369. .txt{
  1370. position: absolute;
  1371. bottom: 0;
  1372. width: 100%;
  1373. padding: 20px;
  1374. display: flex;
  1375. gap: 4px;
  1376. flex-direction: column;
  1377. left: 0;
  1378. span{
  1379. color: #fff;
  1380. font-weight: 800;
  1381. font-size: 20px;
  1382. }
  1383. p{
  1384. color: #fff;
  1385. font-size: 20px;
  1386. font-weight: 700;
  1387. }
  1388. }
  1389. }
  1390. }
  1391. }
  1392. .patents--wrap{
  1393. .patents--list{
  1394. display: flex;
  1395. flex-wrap: wrap;
  1396. column-gap: 20px;
  1397. row-gap: 40px;
  1398. .patents{
  1399. background-color: transparent;
  1400. cursor: pointer;
  1401. padding: 0;
  1402. display: flex;
  1403. flex-direction: column;
  1404. gap: 16px;
  1405. width: calc((100% - 60px) / 4);
  1406. .img--wrap{
  1407. width: 100%;
  1408. height: 353px;
  1409. overflow: hidden;
  1410. border: 1px solid #E0E4F2;
  1411. img{
  1412. width: 100%;
  1413. height: 100%;
  1414. object-fit: cover;
  1415. }
  1416. }
  1417. h4{
  1418. color: #1f2128;
  1419. font-size: 16px;
  1420. width: 100%;
  1421. font-weight: 500;
  1422. overflow: hidden;
  1423. text-align: left;
  1424. text-overflow: ellipsis;
  1425. display: -webkit-box;
  1426. -webkit-line-clamp: 3;
  1427. -webkit-box-orient: vertical;
  1428. }
  1429. }
  1430. }
  1431. }
  1432. .news--wrap{
  1433. margin-top: 80px;
  1434. >h3{
  1435. margin-bottom: 24px;
  1436. color: #1f2128;
  1437. font-size: 32px;
  1438. font-weight: 700;
  1439. }
  1440. .news--list{
  1441. display: flex;
  1442. flex-direction: column;
  1443. border-top: 1px solid #1f2128;
  1444. .news{
  1445. display: flex;
  1446. gap: 40px;
  1447. justify-content: space-between;
  1448. border-bottom: 1px solid #e0e4f2;
  1449. transition: all 0.3s;
  1450. padding: 20px 0;
  1451. &:hover{
  1452. background-color: #F6F8FF;
  1453. }
  1454. .news--title--wrap{
  1455. display: flex;
  1456. flex-direction: column;
  1457. gap: 12px;
  1458. h4{
  1459. color: #1f2128;
  1460. font-size: 20px;
  1461. font-weight: 500;
  1462. overflow: hidden;
  1463. text-overflow: ellipsis;
  1464. display: -webkit-box;
  1465. -webkit-line-clamp: 2;
  1466. -webkit-box-orient: vertical;
  1467. }
  1468. span{
  1469. color: #515973;
  1470. font-size: 16px;
  1471. font-weight: 400;
  1472. }
  1473. }
  1474. .news--thumb--wrap{
  1475. width: 160px;
  1476. height: 100px;
  1477. min-width: 160px;
  1478. img{
  1479. width: 100%;
  1480. height: 100%;
  1481. object-fit: cover;
  1482. }
  1483. }
  1484. }
  1485. }
  1486. }
  1487. .notice--wrap {
  1488. .notice--list {
  1489. display: flex;
  1490. flex-direction: column;
  1491. border-top: 1px solid #1f2128;
  1492. .notice {
  1493. display: flex;
  1494. justify-content: space-between;
  1495. border-bottom: 1px solid #b6bbcc;
  1496. transition: all 0.3s;
  1497. align-items: center;
  1498. padding: 28px 20px;
  1499. gap: 80px;
  1500. &:hover {
  1501. background-color: #F6F8FF;
  1502. }
  1503. .news--index{
  1504. width: 20px;
  1505. color: #515973;
  1506. font-size: 16px;
  1507. font-weight: 400;
  1508. }
  1509. h4 {
  1510. color: #1f2128;
  1511. font-size: 20px;
  1512. width: calc(100% - 260px);
  1513. font-weight: 500;
  1514. overflow: hidden;
  1515. text-overflow: ellipsis;
  1516. display: -webkit-box;
  1517. -webkit-line-clamp: 1;
  1518. -webkit-box-orient: vertical;
  1519. }
  1520. .news--date {
  1521. color: #515973;
  1522. font-size: 16px;
  1523. white-space: nowrap;
  1524. font-weight: 400;
  1525. }
  1526. }
  1527. }
  1528. }
  1529. .faq--wrap{
  1530. margin-top: 60px;
  1531. border-top: 1px solid #1f2128;
  1532. .border-default{
  1533. border-bottom: 1px solid #b6bbcc;
  1534. .flex{
  1535. >button{
  1536. cursor: pointer;
  1537. gap: 20px;
  1538. padding: 28px 20px;
  1539. .text-start{
  1540. color: #00a654;
  1541. font-size: 20px;
  1542. font-weight: 700;
  1543. padding-left: 44px;
  1544. position: relative;
  1545. &::before{
  1546. content: 'Q';
  1547. position: absolute;
  1548. width: 24px;
  1549. left: 0;
  1550. text-align: center;
  1551. margin-right: 20px;
  1552. font-size: 24px;
  1553. line-height: 1.1;
  1554. }
  1555. }
  1556. .iconify{
  1557. width: 28px;
  1558. height: 28px;
  1559. --svg: none;
  1560. background-color: transparent;
  1561. background-image: url(/img/ico--faq--arrow.svg);
  1562. }
  1563. }
  1564. }
  1565. .overflow-hidden{
  1566. padding: 28px 60px 28px 20px;
  1567. background-color: #f6f8ff;
  1568. .text-sm{
  1569. padding-bottom: 0;
  1570. color: #1f2128;
  1571. font-size: 18px;
  1572. position: relative;
  1573. padding-left: 44px;
  1574. &::before{
  1575. content: 'A';
  1576. position: absolute;
  1577. width: 24px;
  1578. left: 0;
  1579. text-align: center;
  1580. color: #515973;
  1581. font-weight: 700;
  1582. margin-right: 20px;
  1583. font-size: 24px;
  1584. line-height: 1.1;
  1585. }
  1586. }
  1587. }
  1588. }
  1589. }
  1590. .view--wrap{
  1591. .view--title{
  1592. padding-bottom: 40px;
  1593. border-bottom: 1px solid #78809b;
  1594. >h3{
  1595. margin-bottom: 16px;
  1596. color: #1f2128;
  1597. font-size: 32px;
  1598. font-weight: 700;
  1599. }
  1600. .view--info{
  1601. display: flex;
  1602. align-items: center;
  1603. >p{
  1604. color: #515973;
  1605. font-size: 16px;
  1606. font-weight: 400;
  1607. }
  1608. .bar{
  1609. margin: 0 12px;
  1610. display: inline-block;
  1611. width: 1px;
  1612. height: 12px;
  1613. background-color: #b6bbcc;
  1614. }
  1615. }
  1616. }
  1617. .view--cont{
  1618. padding: 40px 0;
  1619. border-bottom: 1px solid #78809b;
  1620. margin-bottom: 40px;
  1621. img{
  1622. max-width: 100%;
  1623. }
  1624. p{
  1625. color: #1f2128;
  1626. font-size: 18px;
  1627. font-weight: 400;
  1628. }
  1629. }
  1630. .btn--wrap{
  1631. display: flex;
  1632. align-items: center;
  1633. justify-content: center;
  1634. >a{
  1635. width: 128px;
  1636. height: 44px;
  1637. background-color: #1f2128;
  1638. color: #fff;
  1639. border-radius: 24px;
  1640. display: flex;
  1641. justify-content: center;
  1642. align-items: center;
  1643. font-size: 16px;
  1644. font-weight: 700;
  1645. }
  1646. }
  1647. .link--wrap{
  1648. margin-top: 80px;
  1649. display: flex;
  1650. flex-direction: column;
  1651. .link{
  1652. &:first-child{
  1653. border-top: 1px solid #B6BBCC;
  1654. }
  1655. align-items: center;
  1656. display: flex;
  1657. justify-content: space-between;
  1658. transition: all 0.3s;
  1659. padding: 28px 20px;
  1660. border-bottom: 1px solid #B6BBCC;
  1661. &:hover{
  1662. background-color: #eff1fb;
  1663. }
  1664. >p{
  1665. width: 60px;
  1666. color: #515973;
  1667. font-weight: 400;
  1668. font-size: 16px;
  1669. }
  1670. >h5{
  1671. color: #1f2128;
  1672. overflow: hidden;
  1673. text-overflow: ellipsis;
  1674. display: -webkit-box;
  1675. -webkit-line-clamp: 1;
  1676. -webkit-box-orient: vertical;
  1677. font-size: 18px;
  1678. width: calc(100% - 300px);
  1679. font-weight: 500;
  1680. }
  1681. >span{
  1682. width: 80px;
  1683. color: #515973;
  1684. font-size: 16px;
  1685. font-weight: 400;
  1686. }
  1687. }
  1688. }
  1689. }
  1690. .sns--wrap{
  1691. margin-top: 80px;
  1692. >h3 {
  1693. margin-bottom: 24px;
  1694. color: #1f2128;
  1695. font-size: 32px;
  1696. font-weight: 700;
  1697. }
  1698. .sns--list{
  1699. display: flex;
  1700. gap: 20px;
  1701. .sns{
  1702. width: calc((100% - 60px) / 4);
  1703. overflow: hidden;
  1704. position: relative;
  1705. .img--wrap{
  1706. background-repeat: no-repeat;
  1707. background-size: cover;
  1708. background-position: center;
  1709. width: 100%;
  1710. padding-bottom: 100%;
  1711. transition: all 0.3s;
  1712. }
  1713. .txt--wrap{
  1714. position: absolute;
  1715. color: #fff;
  1716. height: 50%;
  1717. width: 100%;
  1718. background-color: #00a654;
  1719. bottom: -100%;
  1720. transition: all 0.3s;
  1721. left: 0;
  1722. padding: 16px;
  1723. display: flex;
  1724. flex-direction: column;
  1725. justify-content: space-between;
  1726. z-index: 3;
  1727. >h4{
  1728. overflow: hidden;
  1729. text-overflow: ellipsis;
  1730. display: -webkit-box;
  1731. -webkit-line-clamp: 2;
  1732. -webkit-box-orient: vertical;
  1733. font-size: 18px;
  1734. font-weight: 700;
  1735. }
  1736. >span{
  1737. display: flex;
  1738. font-size: 14px;
  1739. font-weight: 700;
  1740. .ico{
  1741. width: 20px;
  1742. height: 20px;
  1743. background-image: url(/img/ico--more--arrow2.svg);
  1744. }
  1745. }
  1746. }
  1747. &::before{
  1748. z-index: 2;
  1749. transition: all 0.3s;
  1750. position: absolute;
  1751. top: 0;
  1752. left: 0;
  1753. width: 100%;
  1754. background: rgba(0, 0, 0, 0.50);
  1755. content: '';
  1756. display: inline-block;
  1757. height: 100%;
  1758. opacity: 0;
  1759. }
  1760. &:hover{
  1761. &::before{
  1762. opacity: 1;
  1763. }
  1764. .txt--wrap{
  1765. bottom: 0;
  1766. }
  1767. }
  1768. }
  1769. }
  1770. }
  1771. .location--wrap{
  1772. margin-bottom: 80px;
  1773. &:last-child{
  1774. margin-bottom: 0;
  1775. }
  1776. h4{
  1777. color: #1f2128;
  1778. font-size: 28px;
  1779. font-weight: 700;
  1780. margin-bottom: 12px;
  1781. }
  1782. .map{
  1783. font-size: 16px;
  1784. color: #515973;
  1785. display: flex;
  1786. font-weight: 400;
  1787. .ico{
  1788. width: 20px;
  1789. height: 20px;
  1790. background-image: url(/img/ico--map.svg);
  1791. margin-right: 4px;
  1792. margin-top: 2px;
  1793. }
  1794. }
  1795. .call{
  1796. font-size: 16px;
  1797. display: flex;
  1798. margin-top: 12px;
  1799. color: #515973;
  1800. font-weight: 400;
  1801. .ico{
  1802. margin-top: 2px;
  1803. margin-right: 4px;
  1804. width: 20px;
  1805. height: 20px;
  1806. background-image: url(/img/ico--call.svg);
  1807. }
  1808. }
  1809. .location--map{
  1810. width: 100%;
  1811. margin-top: 28px;
  1812. height: 360px;
  1813. }
  1814. }
  1815. .pagination--wrap{
  1816. margin-top: 48px;
  1817. display: flex;
  1818. justify-content: center;
  1819. align-items: center;
  1820. gap: 8px;
  1821. >button{
  1822. width: 28px;
  1823. height: 28px;
  1824. background-image: url(/img/ico--paging--arrow.svg);
  1825. background-color: transparent;
  1826. cursor: pointer;
  1827. &.prev--btn{
  1828. transform: rotate(180deg);
  1829. }
  1830. }
  1831. .numbs{
  1832. display: flex;
  1833. align-items: center;
  1834. justify-content: center;
  1835. gap: 8px;
  1836. button{
  1837. cursor: pointer;
  1838. color: #515973;
  1839. font-size: 16px;
  1840. font-weight: 500;
  1841. background-color: transparent;
  1842. border-radius: 50%;
  1843. width: 28px;
  1844. height: 28px;
  1845. transition: all 0.3s;
  1846. &:hover{
  1847. background-color: #EFF1FB;
  1848. }
  1849. &.active{
  1850. color: #fff;
  1851. background-color: #00a654;
  1852. }
  1853. }
  1854. }
  1855. }
  1856. }
  1857. }
  1858. }
  1859. .footer--wrap{
  1860. background-color: #000;
  1861. .footer--container{
  1862. max-width: 1280px;
  1863. width: 100%;
  1864. margin: 0 auto;
  1865. padding: 40px 0 60px;
  1866. .footer--top{
  1867. display: flex;
  1868. justify-content: space-between;
  1869. .logo--wrap{
  1870. }
  1871. .menu--wrap{
  1872. display: flex;
  1873. gap: 20px;
  1874. >li{
  1875. width: 140px;
  1876. display: flex;
  1877. flex-direction: column;
  1878. gap: 20px;
  1879. >a{
  1880. color: #b6bbcc;
  1881. font-size: 15px;
  1882. font-weight: 400;
  1883. }
  1884. >ul{
  1885. display: flex;
  1886. flex-direction: column;
  1887. width: 100%;
  1888. gap: 20px;
  1889. >li{
  1890. width: 100%;
  1891. >a{
  1892. display: inline-block;
  1893. width: 100%;
  1894. font-size: 16px;
  1895. font-weight: 500;
  1896. color: #fff;
  1897. }
  1898. }
  1899. }
  1900. }
  1901. }
  1902. }
  1903. .footer--bot{
  1904. display: flex;
  1905. flex-direction: column;
  1906. margin-top: 40px;
  1907. padding-top: 20px;
  1908. border-top: 1px solid rgba(255, 255, 255, 0.2);
  1909. .sns--list{
  1910. display: flex;
  1911. gap: 20px;
  1912. margin-bottom: 20px;
  1913. li{
  1914. height: 24px;
  1915. width: 24px;
  1916. a{
  1917. display: inline-block;
  1918. width: 24px;
  1919. height: 24px;
  1920. &.blog{
  1921. background-image: url(/img/ico--blog.svg);
  1922. }
  1923. &.ytb{
  1924. background-image: url(/img/ico--ytb.svg);
  1925. }
  1926. &.fb {
  1927. background-image: url(/img/ico--fb.svg);
  1928. }
  1929. &.insta{
  1930. background-image: url(/img/ico--insta.svg);
  1931. }
  1932. }
  1933. }
  1934. }
  1935. .bar{
  1936. width: 1px;
  1937. height: 12px;
  1938. background-color: #fff;
  1939. opacity: 0.2;
  1940. }
  1941. .info--list{
  1942. align-items: center;
  1943. display: flex;
  1944. flex-wrap: wrap;
  1945. gap: 8px;
  1946. li{
  1947. color: #B6BBCC;
  1948. font-size: 14px;
  1949. font-weight: 400;
  1950. }
  1951. }
  1952. .copyright{
  1953. margin-top: 20px;
  1954. display: flex;
  1955. align-items: center;
  1956. gap: 8px;
  1957. span{
  1958. color: #B6BBCC;
  1959. font-size: 14px;
  1960. font-weight: 400;
  1961. }
  1962. a{
  1963. color: #b6bbcc;
  1964. font-size: 14px;
  1965. font-weight: 400;
  1966. }
  1967. }
  1968. }
  1969. }
  1970. }
  1971. // 모달
  1972. .bg-elevated\/75{
  1973. background-color: rgba(0,0,0,0.5);
  1974. backdrop-filter: blur(6px);
  1975. }
  1976. .bg-default{
  1977. border-radius: 0;
  1978. overflow: visible;
  1979. .modal--close--btn{
  1980. top: -36px;
  1981. right: 0;
  1982. position: absolute;
  1983. background-color: transparent;
  1984. width: 28px;
  1985. height: 28px;
  1986. background-image: url(/img/ico--close.svg);
  1987. border: none;
  1988. padding: 0;
  1989. }
  1990. .modal--img--container {
  1991. width: 100%;
  1992. max-height: calc(100vh - 80px); //close버튼 공간 남김
  1993. overflow-y: auto;
  1994. display: flex;
  1995. justify-content: center;
  1996. align-items: flex-start;
  1997. img{
  1998. width: 100%;
  1999. height: auto;
  2000. display: block;
  2001. }
  2002. }
  2003. }