style.scss 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046
  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. display: flex;
  1137. flex-direction: column;
  1138. gap: 16px;
  1139. >div{
  1140. display: flex;
  1141. gap: 28px;
  1142. >span{
  1143. width: 80px;
  1144. color: #78809b;
  1145. font-size: 16px;
  1146. font-weight: 700;
  1147. }
  1148. >p{
  1149. color: #1f2128;
  1150. font-size: 16px;
  1151. font-weight: 700;
  1152. width: calc(100% - 108px);
  1153. }
  1154. }
  1155. }
  1156. }
  1157. }
  1158. }
  1159. }
  1160. }
  1161. .partners--wrap{
  1162. display: flex;
  1163. gap: 20px;
  1164. flex-wrap: wrap;
  1165. margin-top: 80px;
  1166. .partners{
  1167. background-color: #f6f8ff;
  1168. width: calc((100% - 60px) / 4);
  1169. }
  1170. }
  1171. .catalog--wrap{
  1172. display: flex;
  1173. flex-direction: column;
  1174. gap: 80px;
  1175. margin-top: 80px;
  1176. .catalog{
  1177. display: flex;
  1178. gap: 80px;
  1179. .img--wrap{
  1180. min-width: 412px;
  1181. }
  1182. .download--wrap{
  1183. display: flex;
  1184. flex-direction: column;
  1185. gap: 20px;
  1186. justify-content: center;
  1187. width: calc(100% - 492px);
  1188. >p{
  1189. color: #1f2128;
  1190. font-size: 28px;
  1191. font-weight: 800;
  1192. }
  1193. .btn--wrap{
  1194. display: flex;
  1195. gap: 8px;
  1196. .download--btn{
  1197. cursor: pointer;
  1198. display: flex;
  1199. gap: 8px;
  1200. font-size: 16px;
  1201. font-weight: 700;
  1202. padding: 8px 12px 8px 16px;
  1203. border-radius: 24px;
  1204. color: #fff;
  1205. background-color: #1f2128;
  1206. .ico{
  1207. width: 24px;
  1208. height: 24px;
  1209. background-image: url(/img/ico--download.svg);
  1210. }
  1211. }
  1212. }
  1213. }
  1214. }
  1215. }
  1216. .tab--wrap{
  1217. margin: 60px 0 80px;
  1218. display: flex;
  1219. width: 100%;
  1220. justify-content: center;
  1221. gap: 12px;
  1222. a{
  1223. line-height: 1;
  1224. padding: 14px 32px;
  1225. color: #78809b;
  1226. font-size: 16px;
  1227. font-weight: 700;
  1228. border-radius: 24px;
  1229. background-color: #eff1fb;
  1230. &.active{
  1231. color: #00a654;
  1232. background-color: #fff;
  1233. border: 1px solid #00A654;
  1234. }
  1235. }
  1236. }
  1237. .search--wrap{
  1238. margin: 60px 0 40px;
  1239. display: flex;
  1240. justify-content: end;
  1241. position: relative;
  1242. gap: 8px;
  1243. z-index: 1;
  1244. >button{
  1245. width: 120px;
  1246. box-shadow: none;
  1247. height: 48px;
  1248. padding-left: 16px;
  1249. border: 1px solid #b6bbcc;
  1250. padding-right: 40px;
  1251. color: #1f2128;
  1252. font-size: 16px;
  1253. font-weight: 500;
  1254. .iconify{
  1255. --svg: none;
  1256. background-color: transparent;
  1257. width: 24px;
  1258. height: 24px;
  1259. background-image: url(/img/ico--select.svg);
  1260. }
  1261. }
  1262. input{
  1263. padding: 0 40px 0 16px;
  1264. height: 48px;
  1265. width: 320px;
  1266. box-shadow: none;
  1267. border: 1px solid #b6bbcc;
  1268. color: #1f2128;
  1269. font-size: 16px;
  1270. font-weight: 500;
  1271. &::placeholder{
  1272. color: #78809b;
  1273. font-size: 16px;
  1274. font-weight: 500;
  1275. }
  1276. }
  1277. .search--btn{
  1278. background-color: transparent;
  1279. border: none;
  1280. position: absolute;
  1281. top: 50%;
  1282. transform: translateY(-50%);
  1283. background-repeat: no-repeat;
  1284. width: 24px;
  1285. padding: 0;
  1286. right: 12px;
  1287. height: 24px;
  1288. background-image: url(/img/ico--search.svg);
  1289. }
  1290. }
  1291. .materials--wrap{
  1292. display: flex;
  1293. flex-direction: column;
  1294. gap: 80px;
  1295. .materials--box{
  1296. display: flex;
  1297. gap: 80px;
  1298. .img--wrap{
  1299. min-width: 490px;
  1300. }
  1301. .desc--wrap{
  1302. display: flex;
  1303. flex-direction: column;
  1304. gap: 16px;
  1305. justify-content: center;
  1306. >h4{
  1307. color: #1f2128;
  1308. font-size: 28px;
  1309. font-weight: 800;
  1310. }
  1311. >h5{
  1312. color: #00a654;
  1313. font-size: 20px;
  1314. font-weight: 700;
  1315. }
  1316. >ul{
  1317. display: flex;
  1318. flex-direction: column;
  1319. gap: 8px;
  1320. >li{
  1321. color: #1f2128;
  1322. font-size: 16px;
  1323. font-weight: 400;
  1324. }
  1325. }
  1326. .tag--wrap{
  1327. display: flex;
  1328. gap: 4px;
  1329. span{
  1330. background-color: #EFF1FB;
  1331. color: #515973;
  1332. padding: 3px 8px;
  1333. font-weight: 500;
  1334. font-size: 14px;
  1335. }
  1336. }
  1337. .btn--wrap{
  1338. margin-top: 16px;
  1339. a{
  1340. padding: 11px 12px 11px 16px;
  1341. color: #1f2128;
  1342. font-size: 14px;
  1343. font-weight: 700;
  1344. display: flex;
  1345. gap: 8px;
  1346. border-radius: 24px;
  1347. width: fit-content;
  1348. border: 1px solid #515973;
  1349. .ico{
  1350. width: 20px;
  1351. height: 20px;
  1352. background-image: url(/img/ico--arrow.svg);
  1353. }
  1354. }
  1355. }
  1356. }
  1357. }
  1358. }
  1359. .life--cycle--wrap{
  1360. .mobile--cycle{
  1361. display: none;
  1362. }
  1363. display: flex;
  1364. flex-direction: column;
  1365. gap: 20px;
  1366. margin-top: 80px;
  1367. .cycle{
  1368. display: flex;
  1369. gap: 20px;
  1370. .img--wrap{
  1371. position: relative;
  1372. .txt{
  1373. position: absolute;
  1374. bottom: 0;
  1375. width: 100%;
  1376. padding: 20px;
  1377. display: flex;
  1378. gap: 4px;
  1379. flex-direction: column;
  1380. left: 0;
  1381. span{
  1382. color: #fff;
  1383. font-weight: 800;
  1384. font-size: 20px;
  1385. }
  1386. p{
  1387. color: #fff;
  1388. font-size: 20px;
  1389. font-weight: 700;
  1390. }
  1391. }
  1392. }
  1393. }
  1394. }
  1395. .patents--wrap{
  1396. .patents--list{
  1397. display: flex;
  1398. flex-wrap: wrap;
  1399. column-gap: 20px;
  1400. row-gap: 40px;
  1401. .patents{
  1402. background-color: transparent;
  1403. cursor: pointer;
  1404. padding: 0;
  1405. display: flex;
  1406. flex-direction: column;
  1407. gap: 16px;
  1408. width: calc((100% - 60px) / 4);
  1409. .img--wrap{
  1410. width: 100%;
  1411. height: 353px;
  1412. overflow: hidden;
  1413. border: 1px solid #E0E4F2;
  1414. img{
  1415. width: 100%;
  1416. height: 100%;
  1417. object-fit: cover;
  1418. }
  1419. }
  1420. h4{
  1421. color: #1f2128;
  1422. font-size: 16px;
  1423. width: 100%;
  1424. font-weight: 500;
  1425. overflow: hidden;
  1426. text-align: left;
  1427. text-overflow: ellipsis;
  1428. display: -webkit-box;
  1429. -webkit-line-clamp: 3;
  1430. -webkit-box-orient: vertical;
  1431. }
  1432. }
  1433. }
  1434. }
  1435. .news--wrap{
  1436. margin-top: 80px;
  1437. >h3{
  1438. margin-bottom: 24px;
  1439. color: #1f2128;
  1440. font-size: 32px;
  1441. font-weight: 700;
  1442. }
  1443. .news--list{
  1444. display: flex;
  1445. flex-direction: column;
  1446. border-top: 1px solid #1f2128;
  1447. .news{
  1448. display: flex;
  1449. gap: 40px;
  1450. justify-content: space-between;
  1451. border-bottom: 1px solid #e0e4f2;
  1452. transition: all 0.3s;
  1453. padding: 20px 0;
  1454. &:hover{
  1455. background-color: #F6F8FF;
  1456. }
  1457. .news--title--wrap{
  1458. display: flex;
  1459. flex-direction: column;
  1460. gap: 12px;
  1461. h4{
  1462. color: #1f2128;
  1463. font-size: 20px;
  1464. font-weight: 500;
  1465. overflow: hidden;
  1466. text-overflow: ellipsis;
  1467. display: -webkit-box;
  1468. -webkit-line-clamp: 2;
  1469. -webkit-box-orient: vertical;
  1470. }
  1471. span{
  1472. color: #515973;
  1473. font-size: 16px;
  1474. font-weight: 400;
  1475. }
  1476. }
  1477. .news--thumb--wrap{
  1478. width: 160px;
  1479. height: 100px;
  1480. min-width: 160px;
  1481. img{
  1482. width: 100%;
  1483. height: 100%;
  1484. object-fit: cover;
  1485. }
  1486. }
  1487. }
  1488. }
  1489. }
  1490. .notice--wrap {
  1491. .notice--list {
  1492. display: flex;
  1493. flex-direction: column;
  1494. border-top: 1px solid #1f2128;
  1495. .notice {
  1496. display: flex;
  1497. justify-content: space-between;
  1498. border-bottom: 1px solid #b6bbcc;
  1499. transition: all 0.3s;
  1500. align-items: center;
  1501. padding: 28px 20px;
  1502. gap: 80px;
  1503. &:hover {
  1504. background-color: #F6F8FF;
  1505. }
  1506. .news--index{
  1507. width: 20px;
  1508. color: #515973;
  1509. font-size: 16px;
  1510. font-weight: 400;
  1511. }
  1512. h4 {
  1513. color: #1f2128;
  1514. font-size: 20px;
  1515. width: calc(100% - 260px);
  1516. font-weight: 500;
  1517. overflow: hidden;
  1518. text-overflow: ellipsis;
  1519. display: -webkit-box;
  1520. -webkit-line-clamp: 1;
  1521. -webkit-box-orient: vertical;
  1522. }
  1523. .news--date {
  1524. color: #515973;
  1525. font-size: 16px;
  1526. white-space: nowrap;
  1527. font-weight: 400;
  1528. }
  1529. }
  1530. }
  1531. }
  1532. .faq--wrap{
  1533. margin-top: 60px;
  1534. border-top: 1px solid #1f2128;
  1535. .border-default{
  1536. border-bottom: 1px solid #b6bbcc;
  1537. .flex{
  1538. >button{
  1539. cursor: pointer;
  1540. gap: 20px;
  1541. padding: 28px 20px;
  1542. .text-start{
  1543. color: #00a654;
  1544. font-size: 20px;
  1545. font-weight: 700;
  1546. padding-left: 44px;
  1547. position: relative;
  1548. &::before{
  1549. content: 'Q';
  1550. position: absolute;
  1551. width: 24px;
  1552. left: 0;
  1553. text-align: center;
  1554. margin-right: 20px;
  1555. font-size: 24px;
  1556. line-height: 1.1;
  1557. }
  1558. }
  1559. .iconify{
  1560. width: 28px;
  1561. height: 28px;
  1562. --svg: none;
  1563. background-color: transparent;
  1564. background-image: url(/img/ico--faq--arrow.svg);
  1565. }
  1566. }
  1567. }
  1568. .overflow-hidden{
  1569. padding: 28px 60px 28px 20px;
  1570. background-color: #f6f8ff;
  1571. .text-sm{
  1572. padding-bottom: 0;
  1573. color: #1f2128;
  1574. font-size: 18px;
  1575. position: relative;
  1576. padding-left: 44px;
  1577. &::before{
  1578. content: 'A';
  1579. position: absolute;
  1580. width: 24px;
  1581. left: 0;
  1582. text-align: center;
  1583. color: #515973;
  1584. font-weight: 700;
  1585. margin-right: 20px;
  1586. font-size: 24px;
  1587. line-height: 1.1;
  1588. }
  1589. }
  1590. }
  1591. }
  1592. }
  1593. .view--wrap{
  1594. .view--title{
  1595. padding-bottom: 40px;
  1596. border-bottom: 1px solid #78809b;
  1597. >h3{
  1598. margin-bottom: 16px;
  1599. color: #1f2128;
  1600. font-size: 32px;
  1601. font-weight: 700;
  1602. }
  1603. .view--info{
  1604. display: flex;
  1605. align-items: center;
  1606. >p{
  1607. color: #515973;
  1608. font-size: 16px;
  1609. font-weight: 400;
  1610. }
  1611. .bar{
  1612. margin: 0 12px;
  1613. display: inline-block;
  1614. width: 1px;
  1615. height: 12px;
  1616. background-color: #b6bbcc;
  1617. }
  1618. }
  1619. }
  1620. .view--cont{
  1621. padding: 40px 0;
  1622. border-bottom: 1px solid #78809b;
  1623. margin-bottom: 40px;
  1624. img{
  1625. max-width: 100%;
  1626. }
  1627. p{
  1628. color: #1f2128;
  1629. font-size: 18px;
  1630. font-weight: 400;
  1631. }
  1632. }
  1633. .btn--wrap{
  1634. display: flex;
  1635. align-items: center;
  1636. justify-content: center;
  1637. >a{
  1638. width: 128px;
  1639. height: 44px;
  1640. background-color: #1f2128;
  1641. color: #fff;
  1642. border-radius: 24px;
  1643. display: flex;
  1644. justify-content: center;
  1645. align-items: center;
  1646. font-size: 16px;
  1647. font-weight: 700;
  1648. }
  1649. }
  1650. .link--wrap{
  1651. margin-top: 80px;
  1652. display: flex;
  1653. flex-direction: column;
  1654. .link{
  1655. &:first-child{
  1656. border-top: 1px solid #B6BBCC;
  1657. }
  1658. align-items: center;
  1659. display: flex;
  1660. justify-content: space-between;
  1661. transition: all 0.3s;
  1662. padding: 28px 20px;
  1663. border-bottom: 1px solid #B6BBCC;
  1664. &:hover{
  1665. background-color: #eff1fb;
  1666. }
  1667. >p{
  1668. width: 60px;
  1669. color: #515973;
  1670. font-weight: 400;
  1671. font-size: 16px;
  1672. }
  1673. >h5{
  1674. color: #1f2128;
  1675. overflow: hidden;
  1676. text-overflow: ellipsis;
  1677. display: -webkit-box;
  1678. -webkit-line-clamp: 1;
  1679. -webkit-box-orient: vertical;
  1680. font-size: 18px;
  1681. width: calc(100% - 300px);
  1682. font-weight: 500;
  1683. }
  1684. >span{
  1685. width: 80px;
  1686. color: #515973;
  1687. font-size: 16px;
  1688. font-weight: 400;
  1689. }
  1690. }
  1691. }
  1692. }
  1693. .sns--wrap{
  1694. margin-top: 80px;
  1695. >h3 {
  1696. margin-bottom: 24px;
  1697. color: #1f2128;
  1698. font-size: 32px;
  1699. font-weight: 700;
  1700. }
  1701. .sns--list{
  1702. display: flex;
  1703. gap: 20px;
  1704. .sns{
  1705. width: calc((100% - 60px) / 4);
  1706. overflow: hidden;
  1707. position: relative;
  1708. .img--wrap{
  1709. background-repeat: no-repeat;
  1710. background-size: cover;
  1711. background-position: center;
  1712. width: 100%;
  1713. padding-bottom: 100%;
  1714. transition: all 0.3s;
  1715. }
  1716. .txt--wrap{
  1717. position: absolute;
  1718. color: #fff;
  1719. height: 50%;
  1720. width: 100%;
  1721. background-color: #00a654;
  1722. bottom: -100%;
  1723. transition: all 0.3s;
  1724. left: 0;
  1725. padding: 16px;
  1726. display: flex;
  1727. flex-direction: column;
  1728. justify-content: space-between;
  1729. z-index: 3;
  1730. >h4{
  1731. overflow: hidden;
  1732. text-overflow: ellipsis;
  1733. display: -webkit-box;
  1734. -webkit-line-clamp: 2;
  1735. -webkit-box-orient: vertical;
  1736. font-size: 18px;
  1737. font-weight: 700;
  1738. }
  1739. >span{
  1740. display: flex;
  1741. font-size: 14px;
  1742. font-weight: 700;
  1743. .ico{
  1744. width: 20px;
  1745. height: 20px;
  1746. background-image: url(/img/ico--more--arrow2.svg);
  1747. }
  1748. }
  1749. }
  1750. &::before{
  1751. z-index: 2;
  1752. transition: all 0.3s;
  1753. position: absolute;
  1754. top: 0;
  1755. left: 0;
  1756. width: 100%;
  1757. background: rgba(0, 0, 0, 0.50);
  1758. content: '';
  1759. display: inline-block;
  1760. height: 100%;
  1761. opacity: 0;
  1762. }
  1763. &:hover{
  1764. &::before{
  1765. opacity: 1;
  1766. }
  1767. .txt--wrap{
  1768. bottom: 0;
  1769. }
  1770. }
  1771. }
  1772. }
  1773. }
  1774. .location--wrap{
  1775. margin-bottom: 80px;
  1776. &:last-child{
  1777. margin-bottom: 0;
  1778. }
  1779. h4{
  1780. color: #1f2128;
  1781. font-size: 28px;
  1782. font-weight: 700;
  1783. margin-bottom: 12px;
  1784. }
  1785. .map{
  1786. font-size: 16px;
  1787. color: #515973;
  1788. display: flex;
  1789. font-weight: 400;
  1790. .ico{
  1791. width: 20px;
  1792. height: 20px;
  1793. background-image: url(/img/ico--map.svg);
  1794. margin-right: 4px;
  1795. margin-top: 2px;
  1796. }
  1797. }
  1798. .call{
  1799. font-size: 16px;
  1800. display: flex;
  1801. margin-top: 12px;
  1802. color: #515973;
  1803. font-weight: 400;
  1804. .ico{
  1805. margin-top: 2px;
  1806. margin-right: 4px;
  1807. width: 20px;
  1808. height: 20px;
  1809. background-image: url(/img/ico--call.svg);
  1810. }
  1811. }
  1812. .location--map{
  1813. width: 100%;
  1814. margin-top: 28px;
  1815. height: 360px;
  1816. }
  1817. }
  1818. .pagination--wrap{
  1819. margin-top: 48px;
  1820. display: flex;
  1821. justify-content: center;
  1822. align-items: center;
  1823. gap: 8px;
  1824. >button{
  1825. width: 28px;
  1826. height: 28px;
  1827. background-image: url(/img/ico--paging--arrow.svg);
  1828. background-color: transparent;
  1829. cursor: pointer;
  1830. &.prev--btn{
  1831. transform: rotate(180deg);
  1832. }
  1833. }
  1834. .numbs{
  1835. display: flex;
  1836. align-items: center;
  1837. justify-content: center;
  1838. gap: 8px;
  1839. button{
  1840. cursor: pointer;
  1841. color: #515973;
  1842. font-size: 16px;
  1843. font-weight: 500;
  1844. background-color: transparent;
  1845. border-radius: 50%;
  1846. width: 28px;
  1847. height: 28px;
  1848. transition: all 0.3s;
  1849. &:hover{
  1850. background-color: #EFF1FB;
  1851. }
  1852. &.active{
  1853. color: #fff;
  1854. background-color: #00a654;
  1855. }
  1856. }
  1857. }
  1858. }
  1859. }
  1860. }
  1861. }
  1862. .footer--wrap{
  1863. background-color: #000;
  1864. .footer--container{
  1865. max-width: 1280px;
  1866. width: 100%;
  1867. margin: 0 auto;
  1868. padding: 40px 0 60px;
  1869. .footer--top{
  1870. display: flex;
  1871. justify-content: space-between;
  1872. .logo--wrap{
  1873. }
  1874. .menu--wrap{
  1875. display: flex;
  1876. gap: 20px;
  1877. >li{
  1878. width: 140px;
  1879. display: flex;
  1880. flex-direction: column;
  1881. gap: 20px;
  1882. >a{
  1883. color: #b6bbcc;
  1884. font-size: 15px;
  1885. font-weight: 400;
  1886. }
  1887. >ul{
  1888. display: flex;
  1889. flex-direction: column;
  1890. width: 100%;
  1891. gap: 20px;
  1892. >li{
  1893. width: 100%;
  1894. >a{
  1895. display: inline-block;
  1896. width: 100%;
  1897. font-size: 16px;
  1898. font-weight: 500;
  1899. color: #fff;
  1900. }
  1901. }
  1902. }
  1903. }
  1904. }
  1905. }
  1906. .footer--bot{
  1907. display: flex;
  1908. flex-direction: column;
  1909. margin-top: 40px;
  1910. padding-top: 20px;
  1911. border-top: 1px solid rgba(255, 255, 255, 0.2);
  1912. .sns--list{
  1913. display: flex;
  1914. gap: 20px;
  1915. margin-bottom: 20px;
  1916. li{
  1917. height: 24px;
  1918. width: 24px;
  1919. a{
  1920. display: inline-block;
  1921. width: 24px;
  1922. height: 24px;
  1923. &.blog{
  1924. background-image: url(/img/ico--blog.svg);
  1925. }
  1926. &.ytb{
  1927. background-image: url(/img/ico--ytb.svg);
  1928. }
  1929. &.fb {
  1930. background-image: url(/img/ico--fb.svg);
  1931. }
  1932. &.insta{
  1933. background-image: url(/img/ico--insta.svg);
  1934. }
  1935. }
  1936. }
  1937. }
  1938. .bar{
  1939. width: 1px;
  1940. height: 12px;
  1941. background-color: #fff;
  1942. opacity: 0.2;
  1943. }
  1944. .info--list{
  1945. align-items: center;
  1946. display: flex;
  1947. flex-wrap: wrap;
  1948. gap: 8px;
  1949. li{
  1950. color: #B6BBCC;
  1951. font-size: 14px;
  1952. font-weight: 400;
  1953. }
  1954. }
  1955. .copyright{
  1956. margin-top: 20px;
  1957. display: flex;
  1958. align-items: center;
  1959. gap: 8px;
  1960. span{
  1961. color: #B6BBCC;
  1962. font-size: 14px;
  1963. font-weight: 400;
  1964. }
  1965. a{
  1966. color: #b6bbcc;
  1967. font-size: 14px;
  1968. font-weight: 400;
  1969. }
  1970. }
  1971. }
  1972. }
  1973. }
  1974. // 모달
  1975. .bg-elevated\/75{
  1976. background-color: rgba(0,0,0,0.5);
  1977. backdrop-filter: blur(6px);
  1978. }
  1979. .bg-default{
  1980. border-radius: 0;
  1981. overflow: visible;
  1982. .modal--close--btn{
  1983. top: -36px;
  1984. right: 0;
  1985. position: absolute;
  1986. background-color: transparent;
  1987. width: 28px;
  1988. height: 28px;
  1989. background-image: url(/img/ico--close.svg);
  1990. border: none;
  1991. padding: 0;
  1992. }
  1993. .modal--img--container {
  1994. width: 100%;
  1995. max-height: calc(100vh - 80px); //close버튼 공간 남김
  1996. overflow-y: auto;
  1997. display: flex;
  1998. justify-content: center;
  1999. align-items: flex-start;
  2000. img{
  2001. width: 100%;
  2002. height: auto;
  2003. display: block;
  2004. }
  2005. }
  2006. }