| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645 |
- @import "pretendard/dist/web/static/pretendard.css";
- * {
- 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;
- &::after, &::before{
- display: inline-block;
- }
- }
- .ico{
- display: inline-block;
- background-repeat: no-repeat;
- background-position: center;
- }
- .header--wrap{
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- z-index: 1000;
- .header--container{
- width: 100%;
- max-width: 1280px;
- margin: 0 auto;
- background-color: transparent;
- justify-content: space-between;
- display: flex;
- align-items: center;
- height: 80px;
- .logo--wrap{
- max-width: 138px;
- img{
- width: 100%;
- }
- }
- .menu--wrap{
- display: flex;
- .menu--item{
- position: relative;
- > a{
- color: #fff;
- font-weight: normal;
- padding: 0 30px;
- display: inline-block;
- height: 80px;
- font-weight: 700;
- transition: color 0.3s;
- font-size: 16px;
- line-height: 80px;
- position: relative;
- &::before{
- position: absolute;
- content: '';
- bottom: 20px;
- left: 50%;
- transition: width 0.3s;
- transform: translateX(-50%);
- height: 2px;
- width: 0;
- background-color: #00A654;
- }
- &:hover{
- color: #00A654;
- &::before{
- width: calc(100% - 50px);
- }
- }
- }
- .submenu{
- position: absolute;
- top: 80px;
- left: 50%;
- transform: translateX(-50%);
- background-color: rgba(0, 0, 0, 0.9);
- backdrop-filter: blur(10px);
- min-width: 160px;
- padding: 20px 0;
- border-radius: 8px;
- opacity: 0;
- visibility: hidden;
- transition: all 0.3s ease;
- z-index: 1000;
- li{
- a{
- color: #fff;
- padding: 12px 24px;
- display: block;
- font-size: 14px;
- font-weight: 500;
- transition: all 0.3s ease;
- &:hover{
- background-color: rgba(255, 255, 255, 0.1);
- color: #10b981;
- }
- }
- }
- }
- &:hover .submenu{
- opacity: 1;
- visibility: visible;
- }
- }
- }
- .lang--wrap{
- display: flex;
- align-items: center;
- gap: 4px;
- cursor: pointer;
- .ico{
- width: 24px;
- height: 24px;
- background-image: url(/img/ico--lang.svg);
- }
- >p{
- color: #fff;
- line-height: 1;
- font-size: 16px;
- font-weight: 700;
- }
- }
- }
- }
- main{
- .main--visual--wrap{
- .main--swiper--wrap{
- width: 100%;
- position: relative;
- .main--swiper{
- .visual--img{
- position: relative;
- .txt--wrap{
- width: 100%;
- text-align: center;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- position: absolute;
- h2{
- color: #fff;
- font-size: 48px;
- font-weight: 800;
- line-height: 1.4;
- }
- }
- .img--wrap{
- img{
- width: 100%;
- height: 100vh;
- object-fit: cover;
- }
- }
- }
- }
- .swiper--control--wrap{
- position: absolute;
- bottom: 0;
- left: 0;
- height: 84px;
- display: flex;
- justify-content: center;
- gap: 16px;
- align-items: center;
- z-index: 10;
- width: 100%;
- .pagination--wrap{
- display: flex;
- gap: 12px;
- align-items: center;
- .current{
- color: #fff;
- font-size: 14px;
- font-weight: 700;
- }
- .bar{
- opacity: 0.5;
- background-color: #fff;
- width: 1px;
- height: 12px;
- }
- .total{
- font-size: 14px;
- font-weight: 700;
- color: #fff;
- opacity: 0.5;
- }
- }
- .swiper--pagination{
- width: 150px;
- position: relative;
- height: 2px;
- background-color: rgba(255,255,255,0.5);
- .swiper-pagination-progressbar-fill{
- background-color: #fff;
- }
- }
- .swiper--btn--wrap{
- display: flex;
- gap:4px;
- align-items: center;
- justify-content: center;
- .swiper--btn--prev{
- width: 20px;
- height: 20px;
- background-image: url(/img/ico--swiper--prev.svg);
- }
- .swiper--btn--next{
- width: 20px;
- height: 20px;
- background-image: url(/img/ico--swiper--next.svg);
- }
- .play--btn{
- width: 20px;
- height: 20px;
- background-image: url(/img/ico--pause.svg);
- &.pause{
- background-image: url(/img/ico--play.svg);
- }
- }
- }
- }
- }
- }
- .main--content--wrap{
- &.bg--type{
- background-image: url(/img/main--bg.png);
- background-position: center;
- background-size: cover;
- background-repeat: no-repeat;
- }
- &.black--type{
- background-color: #1F2128;
- }
- &.gray--type{
- background-color: #F6F8FF;
- }
- &.white--txt{
- color: #fff !important;
- *{
- color: #fff!important;
- }
- }
- .main--container{
- margin: 0 auto;
- width: 100%;
- max-width: 1280px;
- padding: 100px 0;
- .title--wrap{
- text-align: center;
- .green--title{
- margin-bottom: 16px;
- color: #00a654!important;
- font-size: 18px;
- font-weight: 700;
- }
- .sub--title{
- color: #1f2128;
- font-size: 20px;
- font-weight: 400;
- margin-bottom: 12px;
- }
- >h2{
- color: #1f2128;
- font-size: 40px;
- font-weight: 700;
- }
- }
- .content--wrap{
- .img--card--wrap{
- display: flex;
- margin-bottom: 40px;
- justify-content: space-between;
- .card{
- img{
- width: 100%;
- }
- }
- }
- .square--card--wrap{
- width: 100%;
- margin-bottom: 40px;
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- gap: 20px;
- align-items: center;
- .card{
- width: calc((100% - 40px) / 3);
- padding: 20px 24px 60px 24px;
- display: flex;
- flex-direction: column;
- gap: 8px;
- border: 1px solid rgba(255, 255, 255, 0.30);
- background-color: rgba(0, 0, 0, 0.30);
- backdrop-filter: blur(6px);
- dt{
- font-size: 24px;
- font-weight: 700;
- }
- dd{
- font-size: 16px;
- font-weight: 400;
- }
- }
- }
- .number--card--wrap{
- display: flex;
- gap: 20px;
- width: 100%;
- .card{
- width: calc((100% - 40px) / 3);
- padding: 0 40px;
- display: flex;
- flex-direction: column;
- gap: 24px;
- align-items: center;
- text-align: center;
- .ico{
- width: 48px;
- height: 48px;
- background-image: url(/img/ico--main1.svg);
- }
- .card--title{
- display: flex;
- flex-direction: column;
- gap: 8px;
- align-items: center;
- .circle{
- border-radius: 24px;
- background-color: #2f3342;
- width: fit-content;
- font-size: 16px;
- padding: 3px 12px;
- font-weight: 700;
- }
- .number--wrap{
- .number{
- font-size: 60px;
- font-weight: 900;
- }
- .percent{
- font-size: 48px;
- font-weight: 900;
- }
- }
- .sub--txt{
- font-size: 18px;
- font-weight: 700;
- }
- }
- .card--desc{
- display: flex;
- flex-direction: column;
- gap: 4px;
- li{
- display: flex;
- gap: 12px;
- text-align: left;
- .nation{
- color: #00a654!important;
- font-size: 14px;
- font-weight: 400;
- line-height: 1.8;
- width: 18px;
- }
- .txt{
- width: calc(100% - 30px);
- strong{
- font-size: 14px;
- font-weight: 700;
- }
- span{
- color: #78809b!important;
- font-size: 14px;
- font-weight: 400;
- }
- }
- }
- }
- &:nth-of-type(2){
- .ico{
- background-image: url(/img/ico--main2.svg);
- }
- }
- &:nth-of-type(3) {
- .ico {
- background-image: url(/img/ico--main3.svg);
- }
- }
- }
- }
- .news--card--wrap{
- margin-bottom: 40px;
- display: flex;
- gap: 30px;
- .news{
- width: calc((100% - 60px) / 3);
- display: flex;
- flex-direction: column;
- gap: 24px;
- border-top: 1px solid #1f2128;
- padding-top: 24px;
- .news--title{
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- color: #1f2128;
- font-size: 20px;
- font-weight: 700;
- }
- .news--cont{
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 3;
- -webkit-box-orient: vertical;
- color: #515973;
- font-size: 16px;
- font-weight: 400;
- }
- .news--date{
- color: #515973;
- font-size: 16px;
- font-weight: 400;
- }
- }
- }
- }
- }
- .black--btn--wrap{
- display: flex;
- justify-content: center;
- align-items: center;
- .black--btn{
- border-radius: 24px;
- background-color: #1f2128;
- width: 128px;
- height: 44px;
- line-height: 44px;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #fff;
- gap: 8px;
- font-size: 16px;
- font-weight: 700;
- .ico{
- background-image: url(/img/ico--more--arrow.svg);
- width: 24px;
- height: 24px;
- }
- &.blur--type{
- backdrop-filter: blur(6px);
- }
- }
- }
- .swiper--container{
- padding: 100px 0;
- .title--wrap {
- text-align: center;
-
- .green--title {
- margin-bottom: 16px;
- color: #00a654 !important;
- font-size: 18px;
- font-weight: 700;
- }
-
- .sub--title {
- color: #1f2128;
- font-size: 20px;
- font-weight: 400;
- margin-bottom: 12px;
- }
-
- >h2 {
- color: #1f2128;
- font-size: 40px;
- font-weight: 700;
- }
- }
- .item--swiper--wrap{
- .item--swiper{
- .item--img{
- display: flex;
- flex-direction: column;
- gap: 16px;
- .img--wrap{
- img{
- width: 100%;
- }
- }
- .txt--wrap{
- color: #1f2128;
- font-size: 14px;
- font-weight: 500;
- }
- }
- }
- }
- .marquee--wrap{
- overflow: hidden;
- .vue3-marquee{
- overflow: hidden;
- }
- .marquee{
- display: flex;
- gap: 40px;
- width: fit-content;
- .logo--wrap{
- display: flex;
- align-items: center;
- justify-content: center;
- width: 180px;
- height: 108px;
- }
- }
- }
- }
- }
-
- }
- .footer--wrap{
- background-color: #000;
- .footer--container{
- max-width: 1280px;
- width: 100%;
- margin: 0 auto;
- padding: 40px 0 60px;
- .footer--top{
- display: flex;
- justify-content: space-between;
- .logo--wrap{
- }
- .menu--wrap{
- display: flex;
- gap: 20px;
- >li{
- width: 140px;
- display: flex;
- flex-direction: column;
- gap: 20px;
- >a{
- color: #b6bbcc;
- font-size: 15px;
- font-weight: 400;
- }
- >ul{
- display: flex;
- flex-direction: column;
- width: 100%;
- gap: 20px;
- >li{
- width: 100%;
- >a{
- display: inline-block;
- width: 100%;
- font-size: 16px;
- font-weight: 500;
- color: #fff;
- }
- }
- }
- }
- }
- }
- .footer--bot{
- display: flex;
- flex-direction: column;
- margin-top: 40px;
- padding-top: 20px;
- border-top: 1px solid rgba(255, 255, 255, 0.2);
- .sns--list{
- display: flex;
- gap: 20px;
- margin-bottom: 20px;
- li{
- height: 24px;
- width: 24px;
- a{
- display: inline-block;
- width: 24px;
- height: 24px;
- &.blog{
- background-image: url(/img/ico--blog.svg);
- }
- &.ytb{
- background-image: url(/img/ico--ytb.svg);
- }
- &.fb {
- background-image: url(/img/ico--fb.svg);
- }
- &.insta{
- background-image: url(/img/ico--insta.svg);
- }
- }
- }
- }
- .bar{
- width: 1px;
- height: 12px;
- background-color: #fff;
- opacity: 0.2;
- }
- .info--list{
- align-items: center;
- display: flex;
- flex-wrap: wrap;
- gap: 8px;
- li{
- color: #B6BBCC;
- font-size: 14px;
- font-weight: 400;
- }
- }
- .copyright{
- margin-top: 20px;
- display: flex;
- align-items: center;
- gap: 8px;
- span{
- color: #B6BBCC;
- font-size: 14px;
- font-weight: 400;
- }
- a{
- color: #b6bbcc;
- font-size: 14px;
- font-weight: 400;
- }
- }
- }
- }
- }
|