style.scss 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136
  1. @charset "UTF-8";
  2. @use 'animation';
  3. img{
  4. width: 100%;
  5. }
  6. .evt--section01{
  7. background-color: #00b6ff;
  8. background-repeat: no-repeat;
  9. background-size: 100%;
  10. position: relative;
  11. overflow: hidden;
  12. .palm--img1{
  13. position: absolute;
  14. top: -3%;
  15. left: 0;
  16. max-width: 495px;
  17. width: 50%;
  18. z-index:10;
  19. }
  20. .palm--img2{
  21. z-index:10;
  22. position: absolute;
  23. right: -60px;
  24. top: -3%;
  25. width: 50%;
  26. max-width: 500px;
  27. }
  28. .bubble--bg{
  29. z-index:10;
  30. position: absolute;
  31. background-image: url(../img/img_bg_3.png);
  32. width: 231px;
  33. height: 95px;
  34. bottom: -500px;
  35. left: -231px;
  36. }
  37. .wave--bg{
  38. position: absolute;
  39. background-size: 100%;
  40. background-position: 0 -120px;
  41. background-image: url(../img/bg_2.png);
  42. width: 100%;
  43. height: 5000px;
  44. }
  45. .section--container{
  46. max-width: 1440px;
  47. margin: 0 auto;
  48. position: relative;
  49. .section--title{
  50. margin-top: 150px;
  51. margin-bottom: 150px;
  52. display: flex;
  53. flex-direction: column;
  54. position: relative;
  55. z-index: 11;
  56. align-items: center;
  57. .logo{
  58. max-width: 290px;
  59. width: 40%;
  60. margin-bottom: 80px;
  61. opacity: 0;
  62. transform: translateY(60px);
  63. animation: fadeUpLogo 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  64. }
  65. >h1{
  66. margin-bottom: 30px;
  67. opacity: 0;
  68. transform: translateX(-60px);
  69. animation: fadeInRightH1 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
  70. }
  71. >h2{
  72. opacity: 0;
  73. transform: translateX(60px);
  74. animation: fadeInLeftH2 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
  75. margin-bottom: 100px;
  76. }
  77. >h3{
  78. opacity: 0;
  79. transform: translateY(60px);
  80. animation: fadeUpH3 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
  81. max-width: 716px;
  82. width: 80%;
  83. }
  84. .bg1{
  85. position: absolute;
  86. left: -200px;
  87. top: 0px;
  88. }
  89. .bg2{
  90. position: absolute;
  91. left: -230px;
  92. bottom: -200px;
  93. }
  94. .bg4{
  95. position: absolute;
  96. right: -200px;
  97. bottom: -60px;
  98. }
  99. .bg--wave--wrap{
  100. position: absolute;
  101. right: -90px;
  102. top: 50px;
  103. .bg--wave{
  104. position: relative;
  105. width: 900px;
  106. height: 550px;
  107. .bg--wave1{
  108. position: absolute;
  109. z-index: -1;
  110. opacity: 0;
  111. transform: translateX(-100px);
  112. animation: waveInRight 1.4s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
  113. }
  114. .bg--wave2{
  115. position: absolute;
  116. width: 316px;
  117. right: 60px;
  118. top: 103px;
  119. opacity: 0;
  120. transform: translateX(-100px);
  121. animation: waveInRight 1.5s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
  122. }
  123. }
  124. }
  125. }
  126. .video--wrap{
  127. max-width: 1440px;
  128. margin: 0 auto 120px;
  129. overflow: hidden;
  130. max-height: 90vh;
  131. background-color: black;
  132. border: 3px solid #ffffff;
  133. border-radius: 2px;
  134. display: flex;
  135. justify-content: center;
  136. align-items: center;
  137. box-sizing: border-box;
  138. position: relative;
  139. z-index: 5;
  140. video{
  141. aspect-ratio: 4 / 3;
  142. z-index: 5;
  143. width: 100%;
  144. position: relative;
  145. vertical-align: top;
  146. }
  147. .bg5{
  148. position: absolute;
  149. top: -100px;
  150. left: -340px;
  151. z-index: 2;
  152. }
  153. .video--btn{
  154. display: none;
  155. position: absolute;
  156. top: 50%;
  157. left: 50%;
  158. transform: translate(-50%, -50%);
  159. max-width: 230px;
  160. max-height: 230px;
  161. width: 20vw;
  162. height: 20vw;
  163. z-index: 10;
  164. height: 230px;
  165. cursor: pointer;
  166. background-repeat: no-repeat;
  167. background-position: center;
  168. background-size: 100%;
  169. background-image: url(../img/ico_play.png);
  170. &.play{
  171. display: block;
  172. }
  173. }
  174. }
  175. .swiper--wrap{
  176. position: relative;
  177. margin-bottom: 200px;
  178. box-shadow: 16px 12px 32px rgba(68, 68, 68, 0.15);
  179. .bg1{
  180. position: absolute;
  181. right: -180px;
  182. top: -30px;
  183. }
  184. .bg2{
  185. position: absolute;
  186. left: -160px;
  187. top: 50%;
  188. }
  189. .bg3{
  190. position: absolute;
  191. right: -260px;
  192. bottom: 30%;
  193. }
  194. .swiper--tab--wrap{
  195. display: flex;
  196. gap: 5px;
  197. .tab--btn{
  198. background-color: #fff;
  199. border: none;
  200. border-top-left-radius: 15px;
  201. border-top-right-radius: 15px;
  202. text-align: center;
  203. width: 100%;
  204. position: relative;
  205. font-weight: 500;
  206. font-family: 'GmarketSans';
  207. height: 80px;
  208. display: flex;
  209. align-items: center;
  210. justify-content: center;
  211. font-size: 28px;
  212. padding: 0;
  213. color: #787878;
  214. box-shadow: 0px -2px 5px 0px rgba(0, 0, 0, 0.15) inset;
  215. &:first-child,
  216. &:nth-child(2),
  217. &:nth-child(3){
  218. &::before{
  219. content: 'NEW';
  220. font-size: 14px;
  221. margin-top: -5px;
  222. margin-right: 5px;
  223. }
  224. }
  225. &::after{
  226. content: '';
  227. display: inline-block;
  228. width: 100%;
  229. bottom: 0;
  230. position: absolute;
  231. }
  232. &.active{
  233. background-color: #0000ff;
  234. font-weight: 700;
  235. color: #ffde00;
  236. }
  237. }
  238. }
  239. .swiper-slide{
  240. display: flex;
  241. justify-content: center;
  242. }
  243. .slide--img{
  244. position: relative;
  245. .new--icon{
  246. display: inline-block;
  247. position: absolute;
  248. width: 10%;
  249. padding-bottom: 11%;
  250. background-repeat: no-repeat;
  251. bottom: 5%;
  252. right: 6%;
  253. background-image: url(../img/ico_new.png);
  254. max-width: 130px;
  255. max-height: 130px;
  256. background-size: 100%;
  257. }
  258. }
  259. .slide--desc{
  260. padding: 70px 100px;
  261. height: 380px;
  262. background-color: #fff;
  263. &.type2{
  264. padding: 40px 100px;
  265. h4{
  266. margin-bottom: 0px;
  267. }
  268. }
  269. h4{
  270. font-family: 'GmarketSans';
  271. font-weight: 700;
  272. font-size: 42px;
  273. margin-bottom: 20px;
  274. span{
  275. font-size: 28px;
  276. }
  277. }
  278. p{
  279. font-family: 'Pretendard Variable';
  280. font-size: 28px;
  281. line-height: 1.4;
  282. font-weight: 500;
  283. margin-bottom: 30px;
  284. &:last-child{
  285. margin-bottom: 0px;
  286. }
  287. }
  288. }
  289. .swiper-pagination{
  290. bottom: -100px;
  291. span{
  292. width: 32px;
  293. height: 32px;
  294. margin: 0 12px;
  295. background-color: #008be6;
  296. opacity: 0.6;
  297. }
  298. .swiper-pagination-bullet-active{
  299. background-color: #0047bb;
  300. opacity: 1;
  301. }
  302. }
  303. .swiper-button-next, .swiper-button-prev{
  304. width: 50px;
  305. background-image: url(../img/ico_arrow.png);
  306. height: 90px;
  307. top: 30%;
  308. right: -100px;
  309. &::after{
  310. display: none;
  311. }
  312. }
  313. .swiper-button-prev{
  314. transform: rotate(180deg);
  315. left: -100px;
  316. }
  317. }
  318. }
  319. }
  320. .evt--section02-1{
  321. position: relative;
  322. overflow: hidden;
  323. background: linear-gradient(to bottom, #004dee, #007ff6);
  324. &::before{
  325. content: '';
  326. background-image: url(../img/bg_4.png);
  327. background-repeat: no-repeat;
  328. background-position: bottom;
  329. display: inline-block;
  330. top: 0;
  331. z-index: 1;
  332. left: 0;
  333. position: absolute;
  334. width: 100%;
  335. height: 100%;
  336. }
  337. .cloud--img1{
  338. position: absolute;
  339. left: 0;
  340. z-index: 10;
  341. max-width: 20%;
  342. top: 100px;
  343. animation: cloudMoveLeftToRight 20s linear infinite;
  344. }
  345. .cloud--img2{
  346. position: absolute;
  347. right: 0;
  348. z-index: 10;
  349. max-width: 30%;
  350. top: 50px;
  351. animation: cloudMoveLeftToRight 30s linear infinite;
  352. }
  353. .section--container{
  354. max-width: 1920px;
  355. margin: 0 auto;
  356. .evt--1{
  357. padding: 100px 0 130px;
  358. position: relative;
  359. background-position: bottom;
  360. background-repeat: no-repeat;
  361. z-index: 1;
  362. display: flex;
  363. flex-direction: column;
  364. justify-content: center;
  365. align-items: center;
  366. h2{
  367. max-width: 682px;
  368. width: 70%;
  369. }
  370. .bg1{
  371. position: absolute;
  372. left: 15%;
  373. top: 30%;
  374. animation: floating-diag-1 4s ease-in-out infinite alternate;
  375. }
  376. .bg2{
  377. position: absolute;
  378. right: 5%;
  379. top: 30%;
  380. animation: floating-diag-2 5s ease-in-out infinite alternate;
  381. }
  382. .bg3{
  383. left: 7%;
  384. bottom: 25%;
  385. position: absolute;
  386. animation: floating-diag-3 4.5s ease-in-out infinite alternate;
  387. }
  388. .bg4{
  389. position: absolute;
  390. bottom: 25%;
  391. right: 5%;
  392. animation: floating-diag-4 6s ease-in-out infinite alternate;
  393. }
  394. .evt--box{
  395. margin-top: 50px;
  396. font-weight: 600;
  397. text-align: center;
  398. font-size: 45px;
  399. font-family: 'Pretendard Variable';
  400. color: #ffffff;
  401. line-height: 1.2;
  402. }
  403. }
  404. .evt--circle{
  405. font-family: 'Pretendard Variable';
  406. font-weight: 800;
  407. font-size: 30px;
  408. padding: 20px 40px;
  409. background-color: #00175f;
  410. color: #ffffff;
  411. border-radius: 50%;
  412. margin-bottom: 50px;
  413. display: inline-block;
  414. }
  415. h3{
  416. color: #ffffff;
  417. font-weight: 700;
  418. margin-bottom: 0;
  419. text-align: center;
  420. font-size: 56px;
  421. font-family: 'Pretendard Variable';
  422. }
  423. }
  424. }
  425. .evt--section02-2{
  426. background-color: #007ff6;
  427. position: relative;
  428. overflow: hidden;
  429. .bg1{
  430. position: absolute;
  431. left: 0;
  432. z-index: 2;
  433. bottom: 20%;
  434. max-width: 575px;
  435. width: 40%;
  436. }
  437. .bg2{
  438. max-width: 690px;
  439. width: 40%;
  440. position: absolute;
  441. right: 0;
  442. z-index: 2;
  443. bottom: 10%;
  444. }
  445. &::after{
  446. content: '';
  447. display: inline-block;
  448. bottom: 0;
  449. z-index: 1;
  450. left: 0;
  451. position: absolute;
  452. background: linear-gradient(to bottom, #007ff6, #004dee);
  453. width: 100%;
  454. height: 100%;
  455. }
  456. .section--container{
  457. max-width: 1500px;
  458. margin: 0 auto;
  459. .evt--circle{
  460. font-family: 'Pretendard Variable';
  461. font-weight: 800;
  462. font-size: 30px;
  463. padding: 20px 40px;
  464. background-color: #00175f;
  465. color: #ffffff;
  466. border-radius: 50%;
  467. margin-bottom: 50px;
  468. display: inline-block;
  469. }
  470. h3{
  471. color: #ffffff;
  472. font-weight: 700;
  473. font-size: 56px;
  474. font-family: 'Pretendard Variable';
  475. }
  476. .evt--2{
  477. padding: 120px 0 130px;
  478. position: relative;
  479. background-repeat: no-repeat;
  480. z-index: 20;
  481. display: flex;
  482. flex-direction: column;
  483. justify-content: center;
  484. align-items: center;
  485. h2{
  486. max-width: 789px;
  487. width: 90%;
  488. }
  489. h3{
  490. text-align: center;
  491. margin-bottom: 30px;
  492. }
  493. .evt--box{
  494. margin-top: 60px;
  495. margin-bottom: 70px;
  496. border-radius: 25px;
  497. background-color: rgba(0, 152, 249, 0.4);
  498. box-shadow: 0px 2px 9.5px 0.5px rgba(0, 0, 0, 0.23);
  499. font-weight: 600;
  500. padding: 75px 90px;
  501. font-size: 36px;
  502. font-family: 'Pretendard Variable';
  503. color: #ffffff;
  504. line-height: 1.2;
  505. display: flex;
  506. flex-direction: column;
  507. gap: 25px;
  508. li{
  509. list-style: none;
  510. font-size: 36px;
  511. display: flex;
  512. align-items: center;
  513. width: 100%;
  514. font-weight: 400;
  515. gap: 25px;
  516. .circle{
  517. padding: 10px 40px;
  518. width: 168px;
  519. display: inline-block;
  520. height: 60px;
  521. border-radius: 30px;
  522. background-color: #00A2FB;
  523. text-align: justify;
  524. &::after {
  525. content: "";
  526. display: inline-block;
  527. width: 100%;
  528. }
  529. }
  530. }
  531. }
  532. .evt--box2{
  533. max-width: 470px;
  534. width: 60%;
  535. }
  536. .evt--btn{
  537. border-style: solid;
  538. border-width: 3px;
  539. border-color: rgb(255, 255, 255);
  540. border-radius: 50px;
  541. display: flex;
  542. align-items: center;
  543. justify-content: center;
  544. background-color: #00175f;
  545. box-shadow: 0px 15px 16px 0px rgba(0, 0, 0, 0.14);
  546. max-width: 416px;
  547. width: 100%;
  548. height: 95px;
  549. font-family: 'Pretendard Variable';
  550. font-size: 40px;
  551. font-weight: 800;
  552. text-decoration: none;
  553. color: #ffffff;
  554. }
  555. .bob01{
  556. width:210px;
  557. height:214px;
  558. background: url(../img/bob_01.png) no-repeat center;
  559. animation: bubbleFloat 3s ease-in-out infinite alternate;
  560. }
  561. .bob02{
  562. width:225px;
  563. height:211px;
  564. background: url(../img/bob_02.png) no-repeat center;
  565. animation: bubbleFloat 3s ease-in-out infinite alternate;
  566. }
  567. .bob03{
  568. width:417px;
  569. height:403px;
  570. background: url(../img/bob_03.png) no-repeat center;
  571. animation: bubbleFloat 3s ease-in-out infinite alternate;
  572. }
  573. .bob04{
  574. width:139px;
  575. height:140px;
  576. background: url(../img/bob_04.png) no-repeat center;
  577. animation: bubbleFloat 3s ease-in-out infinite alternate;
  578. }
  579. .bob05{
  580. width:248px;
  581. height:211px;
  582. background: url(../img/bob_05.png) no-repeat center;
  583. animation: bubbleFloat 3s ease-in-out infinite alternate;
  584. }
  585. .bob06{
  586. width:409px;
  587. height:394px;
  588. background: url(../img/bob_06.png) no-repeat center;
  589. animation: bubbleFloat 3s ease-in-out infinite alternate;
  590. }
  591. .bob07{
  592. width:220px;
  593. height:211px;
  594. background: url(../img/bob_07.png) no-repeat center;
  595. animation: bubbleFloat 3s ease-in-out infinite alternate;
  596. }
  597. .bob08{
  598. width:58px;
  599. height:53px;
  600. background: url(../img/bob_08.png) no-repeat center;
  601. animation: bubbleFloat 3s ease-in-out infinite alternate;
  602. }
  603. .bob09{
  604. width:90px;
  605. height:90px;
  606. background: url(../img/bob_09.png) no-repeat center;
  607. animation: bubbleFloat 3s ease-in-out infinite alternate;
  608. }
  609. .bob10{
  610. width:152px;
  611. height:141px;
  612. background: url(../img/bob_10.png) no-repeat center;
  613. animation: bubbleFloat 3s ease-in-out infinite alternate;
  614. }
  615. .bob--wrap01{
  616. position: absolute;
  617. top:50%;
  618. left:50%;
  619. transform: translate(-50%, -50%);
  620. width:210px;
  621. height:214px;
  622. margin-left: 712px;
  623. margin-top: -601px;
  624. animation: bobUp 2.2s cubic-bezier(0.22,1,0.36,1) infinite;
  625. }
  626. .bob--wrap02{
  627. position: absolute;
  628. top:50%;
  629. left:50%;
  630. transform: translate(-50%, -50%);
  631. width:225px;
  632. height:211px;
  633. margin-left: 759px;
  634. margin-top: -153px;
  635. animation: bobUp 1.8s cubic-bezier(0.22,1,0.36,1) infinite;
  636. }
  637. .bob--wrap03{
  638. position: absolute;
  639. top:50%;
  640. left:50%;
  641. transform: translate(-50%, -50%);
  642. margin-left: 568px;
  643. margin-top: 169px;
  644. animation: bobUp 5.5s cubic-bezier(0.22,1,0.36,1) infinite;
  645. }
  646. .bob--wrap04{
  647. position: absolute;
  648. top:50%;
  649. left:50%;
  650. transform: translate(-50%, -50%);
  651. width:139px;
  652. height:140px;
  653. margin-left: -692px;
  654. margin-top: -579px;
  655. animation: bobUp 4.2s cubic-bezier(0.22,1,0.36,1) infinite;
  656. }
  657. .bob--wrap05{
  658. position: absolute;
  659. top:50%;
  660. left:50%;
  661. transform: translate(-50%, -50%);
  662. width:248px;
  663. height:211px;
  664. margin-left: -832px;
  665. margin-top: -216px;
  666. animation: bobUp 3.2s cubic-bezier(0.22,1,0.36,1) infinite;
  667. }
  668. .bob--wrap06{
  669. position: absolute;
  670. top:50%;
  671. left:50%;
  672. transform: translate(-50%, -50%);
  673. width:409px;
  674. height:394px;
  675. margin-left: -1012px;
  676. margin-top: -19px;
  677. animation: bobUp 4s cubic-bezier(0.22,1,0.36,1) infinite;
  678. }
  679. .bob--wrap07{
  680. position: absolute;
  681. top:50%;
  682. left:50%;
  683. transform: translate(-50%, -50%);
  684. width:220px;
  685. height:211px;
  686. margin-left: -682px;
  687. margin-top: 372px;
  688. animation: bobUp 3.2s cubic-bezier(0.22,1,0.36,1) infinite;
  689. }
  690. .bob--wrap08{
  691. position: absolute;
  692. top:50%;
  693. left:50%;
  694. transform: translate(-50%, -50%);
  695. width:58px;
  696. height:53px;
  697. margin-left: -620px;
  698. margin-top: 61px;
  699. animation: bobUp 6.5s cubic-bezier(0.22,1,0.36,1) infinite;
  700. }
  701. .bob--wrap09{
  702. position: absolute;
  703. top:50%;
  704. left:50%;
  705. transform: translate(-50%, -50%);
  706. width:90px;
  707. height:90px;
  708. margin-left: 324px;
  709. margin-top: 586px;
  710. animation: bobUp 7.2s cubic-bezier(0.22,1,0.36,1) infinite;
  711. }
  712. .bob--wrap10{
  713. position: absolute;
  714. top:50%;
  715. left:50%;
  716. transform: translate(-50%, -50%);
  717. width:152px;
  718. height:141px;
  719. margin-left: -440px;
  720. margin-top: 386px;
  721. animation: bobUp 4.2s cubic-bezier(0.22,1,0.36,1) infinite;
  722. }
  723. .tok01{
  724. position: absolute;
  725. top:50%;
  726. left:50%;
  727. transform: translate(-50%, -50%);
  728. width: 66px;
  729. height:66px;
  730. background: url(../img/tok_01.png) no-repeat center;
  731. margin-top: -281px;
  732. margin-left: -857px;
  733. }
  734. .tok02{
  735. position: absolute;
  736. top:50%;
  737. left:50%;
  738. transform: translate(-50%, -50%);
  739. width: 44px;
  740. height:44px;
  741. background: url(../img/tok_02.png) no-repeat center;
  742. margin-top: -431px;
  743. margin-left: -566px;
  744. }
  745. .tok03{
  746. position: absolute;
  747. top:50%;
  748. left:50%;
  749. transform: translate(-50%, -50%);
  750. width: 51px;
  751. height:51px;
  752. background: url(../img/tok_03.png) no-repeat center;
  753. margin-top: 210px;
  754. margin-left: 592px;
  755. }
  756. .tok04{
  757. position: absolute;
  758. top:50%;
  759. left:50%;
  760. transform: translate(-50%, -50%);
  761. width: 56px;
  762. height:56px;
  763. background: url(../img/tok_04.png) no-repeat center;
  764. margin-top: -355px;
  765. margin-left: 753px;
  766. }
  767. .tok05{
  768. position: absolute;
  769. top:50%;
  770. left:50%;
  771. transform: translate(-50%, -50%);
  772. width: 66px;
  773. height:66px;
  774. background: url(../img/tok_05.png) no-repeat center;
  775. margin-top: -475px;
  776. margin-left: 590px;
  777. }
  778. }
  779. }
  780. }
  781. .evt--section03{
  782. overflow: hidden;
  783. background: linear-gradient(to bottom,#5DBBFF 0%, #00A8FF 50%, #5DBBFF 100%);
  784. padding: 150px 0 150px;
  785. position: relative;
  786. &::before{
  787. content: '';
  788. width: 100%;
  789. height: 100%;
  790. position: absolute;
  791. top: 0;
  792. right: 0;
  793. background-position: top;
  794. z-index: 0;
  795. background-repeat: no-repeat;
  796. display: inline-block;
  797. background-image: url(../img/bg_color_2.png);
  798. }
  799. &::after{
  800. content: '';
  801. width: 100%;
  802. height: 100%;
  803. position: absolute;
  804. bottom: 0;
  805. left: 0;
  806. background-position: bottom;
  807. z-index: 0;
  808. background-repeat: no-repeat;
  809. display: inline-block;
  810. background-image: url(../img/bg_color_1.png);
  811. }
  812. .section--container{
  813. max-width: 1280px;
  814. z-index: 10;
  815. position: relative;
  816. margin: 0 auto;
  817. .section--title{
  818. text-align: center;
  819. display: flex;
  820. flex-direction: column;
  821. align-items: center;
  822. margin-bottom: 80px;
  823. h3{
  824. max-width: 750px;
  825. width: 60%;
  826. }
  827. h2{
  828. max-width: 945px;
  829. width: 70%;
  830. }
  831. .circle{
  832. margin-top: 20px;
  833. max-width: 832px;
  834. width: 70%;
  835. }
  836. }
  837. .promotion--wrap{
  838. display: flex;
  839. justify-content: center;
  840. margin-bottom: 120px;
  841. gap: 140px;
  842. .promotion{
  843. width: 400px;
  844. height: 580px;
  845. background-image: url(../img/img_bg_9.png);
  846. background-size: 100%;
  847. background-repeat: no-repeat;
  848. display: flex;
  849. align-items: center;
  850. flex-direction: column;
  851. color: #ffffff;
  852. h4{
  853. font-family: 'Pretendard Variable';
  854. font-size: 56px;
  855. font-weight: 700;
  856. line-height: 210px;
  857. margin-bottom: 0;
  858. }
  859. p{
  860. font-family: 'gmarketSans';
  861. font-size: 45px;
  862. margin-bottom: 0;
  863. }
  864. h5{
  865. line-height: 1.1;
  866. font-family: 'gmarketSans';
  867. font-size: 86px;
  868. font-weight: 800;
  869. margin-bottom: 0;
  870. span{
  871. font-size: 44px;
  872. }
  873. }
  874. }
  875. }
  876. .promotion--detail--wrap{
  877. display: flex;
  878. flex-direction: column;
  879. gap: 80px;
  880. margin-bottom: 460px;
  881. position: relative;
  882. .detail{
  883. color: #373737;
  884. background-color: #fff;
  885. border: 3px solid black;
  886. padding: 70px;
  887. border-radius: 68px;
  888. z-index: 3;
  889. position: relative;
  890. display: flex;
  891. &:nth-child(1){
  892. &::before{
  893. content: '';
  894. position: absolute;
  895. display: inline-block;
  896. width: 318px;
  897. height: 314px;
  898. top: -91px;
  899. left: -48px;
  900. background-repeat: no-repeat;
  901. background-image: url(../img/bg_wave_3.png);
  902. }
  903. }
  904. &:nth-child(2){
  905. &::before{
  906. content: '';
  907. position: absolute;
  908. display: inline-block;
  909. width: 286px;
  910. right: -125px;
  911. top: -36px;
  912. z-index: 10;
  913. height: 380px;
  914. background-repeat: no-repeat;
  915. background-image: url(../img/bg_wave_4.png);
  916. }
  917. }
  918. .detail--l{
  919. width: 70%;
  920. >span{
  921. font-size: 44px;
  922. font-weight: 700;
  923. display: inline-block;
  924. font-family: 'Pretendard Variable';
  925. text-decoration: underline;
  926. margin-bottom: 40px;
  927. }
  928. >h5{
  929. font-family: 'Pretendard Variable';
  930. font-size: 54px;
  931. font-weight: 900;
  932. margin-bottom: 40px;
  933. >span{
  934. color: #6d21ed;
  935. }
  936. }
  937. >ul{
  938. li{
  939. line-height: 1.2;
  940. font-family: 'Pretendard Variable';
  941. font-weight: 500;
  942. font-size: 38px;
  943. }
  944. }
  945. }
  946. .detail--r{
  947. width: 30%;
  948. display: flex;
  949. flex-direction: column;
  950. align-items: flex-end;
  951. justify-content: flex-end;
  952. text-align: right;
  953. >span{
  954. box-shadow: inset -10px -10px 20px rgba(0, 0, 0, 0.4);
  955. background: linear-gradient(135deg, #8324ff, #5a3dfd, #0a5aff);
  956. font-family: 'Pretendard Variable';
  957. font-size: 44px;
  958. font-weight: 800;
  959. width: 130px;
  960. height: 140px;
  961. line-height: 1.2;
  962. display: flex;
  963. align-items: center;
  964. right: 100px;
  965. top: 0;
  966. justify-content: center;
  967. color: #ffffff;
  968. position: absolute;
  969. }
  970. >p{
  971. font-size: 28px;
  972. font-family: 'Pretendard Variable';
  973. font-weight: 500;
  974. margin-bottom: 10px;
  975. }
  976. .before--price{
  977. font-size: 44px;
  978. font-weight: 700;
  979. font-family: 'Pretendard Variable';
  980. position: relative;
  981. &::after{
  982. content: '';
  983. display: inline-block;
  984. width: 267px;
  985. height: 62px;
  986. position: absolute;
  987. top: 50%;
  988. left: -30px;
  989. background-image: url(../img/ico_arrow2.png);
  990. }
  991. }
  992. .after--price{
  993. font-family: 'Pretendard Variable';
  994. font-size: 66px;
  995. color: #6d21ed;
  996. font-weight: 900;
  997. }
  998. }
  999. }
  1000. .detail--plus{
  1001. z-index: 2;
  1002. position: absolute;
  1003. font-size: 38px;
  1004. top: calc(100% - 55px);
  1005. width: 100%;
  1006. border-bottom-left-radius: 50px;
  1007. border-bottom-right-radius: 50px;
  1008. font-family: 'Pretendard Variable';
  1009. background-color: #9EC3FE;
  1010. padding: 100px 60px 60px;
  1011. font-weight: 500;
  1012. margin-bottom: 0;
  1013. li{
  1014. list-style: none;
  1015. position: relative;
  1016. padding-left: 30px;
  1017. &::before{
  1018. top: 0px;
  1019. left: -0px;
  1020. position: absolute;
  1021. content: '*';
  1022. }
  1023. }
  1024. strong{
  1025. font-weight: 800;
  1026. text-decoration: underline;
  1027. }
  1028. }
  1029. }
  1030. .count--wrap{
  1031. display: flex;
  1032. flex-direction: column;
  1033. position: relative;
  1034. z-index: 10;
  1035. align-items: center;
  1036. .count--txt{
  1037. display: flex;
  1038. align-items: flex-end;
  1039. justify-content: center;
  1040. gap: 20px;
  1041. margin-bottom: 90px;
  1042. .img--wrap{
  1043. position: relative;
  1044. .wch--l{
  1045. position: absolute;
  1046. top:0px;
  1047. left:0px;
  1048. width:139px;
  1049. height:122px;
  1050. background: url(../img/wch_l.png) no-repeat center;
  1051. animation: bellRing 1.2s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  1052. transform-origin: 50% 80%; // 종의 아래쪽을 기준으로 흔들림
  1053. }
  1054. .wch--r{
  1055. position: absolute;
  1056. top:0px;
  1057. right:0px;
  1058. width:159px;
  1059. height:121px;
  1060. background: url(../img/wch_r.png) no-repeat center;
  1061. animation: bellRing 1.2s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  1062. transform-origin: 50% 80%; // 종의 아래쪽을 기준으로 흔들림
  1063. }
  1064. &::before{
  1065. content: '';
  1066. display: inline-block;
  1067. width: 144px;
  1068. height: 80px;
  1069. background-repeat: no-repeat;
  1070. background-size: 100%;
  1071. left: -40%;
  1072. top: 30px;
  1073. position: absolute;
  1074. background-image: url(../img/img_15_bg1.png);
  1075. }
  1076. &::after{
  1077. content: '';
  1078. display: inline-block;
  1079. width: 242px;
  1080. height: 177px;
  1081. background-repeat: no-repeat;
  1082. background-size: 100%;
  1083. right: -70%;
  1084. bottom: 100px;
  1085. position: absolute;
  1086. background-image: url(../img/img_15_bg2.png);
  1087. }
  1088. }
  1089. >p{
  1090. color: #ffffff;
  1091. font-family: 'gmarketSans';
  1092. text-align: center;
  1093. font-size: 46px;
  1094. font-weight: 800;
  1095. margin-bottom: 0;
  1096. text-align: center;
  1097. text-shadow: 0px 3px 7px rgba(0, 0, 0, 0.35);
  1098. }
  1099. }
  1100. .count--num{
  1101. display: flex;
  1102. font-family: 'gmarketSans';
  1103. gap: 10px;
  1104. margin-bottom: 140px;
  1105. position: relative;
  1106. .number{
  1107. font-family: 'gmarketSans';
  1108. position: relative;
  1109. display: inline-block;
  1110. font-size: 120px;
  1111. color: #ffffff;
  1112. width: 140px;
  1113. line-height: 1.75;
  1114. font-weight: 800;
  1115. height: 210px;
  1116. border-radius: 20%;;
  1117. box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  1118. &:nth-child(4){
  1119. margin-left: 80px;
  1120. }
  1121. &:nth-child(5){
  1122. margin-right: 80px;
  1123. }
  1124. span{
  1125. display: inline-block;
  1126. width: 100%;
  1127. height: 100%;
  1128. }
  1129. }
  1130. &::before{
  1131. content: '';
  1132. width: 210px;
  1133. left: -300px;
  1134. top: calc(50% - 500px);
  1135. height: 1000px;
  1136. position: absolute;
  1137. top:50%;
  1138. transform: translateY(-50%);
  1139. left:-154px;
  1140. width:62px;
  1141. height:266px;
  1142. background: url(../img/bbl_01.png) no-repeat center;
  1143. animation: shakeX 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  1144. }
  1145. .bbl--eft02{
  1146. position: absolute;
  1147. top:50%;
  1148. transform: translateY(-50%);
  1149. left:-226px;
  1150. width:106px;
  1151. height:427px;
  1152. background: url(../img/bbl_02.png) no-repeat center;
  1153. animation: shakeX 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  1154. }
  1155. .bbl--eft03{
  1156. position: absolute;
  1157. top:50%;
  1158. transform: translateY(-50%);
  1159. left:-303px;
  1160. width:146px;
  1161. height:550px;
  1162. background: url(../img/bbl_03.png) no-repeat center;
  1163. animation: shakeX 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  1164. }
  1165. .bbl--eft04{
  1166. position: absolute;
  1167. top:50%;
  1168. transform: rotate(180deg) translateY(-50%);
  1169. transform-origin: top;
  1170. right:-154px;
  1171. width:62px;
  1172. height:266px;
  1173. background: url(../img/bbl_01.png) no-repeat center;
  1174. animation: shakeX2 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  1175. }
  1176. .bbl--eft05{
  1177. position: absolute;
  1178. top:50%;
  1179. transform:rotate(180deg) translateY(-50%);
  1180. transform-origin: top;
  1181. right:-226px;
  1182. width:106px;
  1183. height:427px;
  1184. background: url(../img/bbl_02.png) no-repeat center;
  1185. animation: shakeX2 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  1186. }
  1187. .bbl--eft06{
  1188. position: absolute;
  1189. top:50%;
  1190. transform:rotate(180deg) translateY(-50%);
  1191. transform-origin: top;
  1192. right:-303px;
  1193. width:146px;
  1194. height:550px;
  1195. background: url(../img/bbl_03.png) no-repeat center;
  1196. animation: shakeX2 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  1197. }
  1198. // &::before{
  1199. // content: '';
  1200. // width: 210px;
  1201. // left: -300px;
  1202. // top: calc(50% - 500px);
  1203. // height: 1000px;
  1204. // position: absolute;
  1205. // background-repeat: no-repeat;
  1206. // background-position: center;
  1207. // background-image: url(../img/img_bg_10.png);
  1208. // }
  1209. // &::after{
  1210. // content: '';
  1211. // width: 210px;
  1212. // right: -300px;
  1213. // top: calc(50% - 500px);
  1214. // height: 1000px;
  1215. // position: absolute;
  1216. // background-repeat: no-repeat;
  1217. // background-position: center;
  1218. // transform: rotate(180deg);
  1219. // background-image: url(../img/img_bg_10.png);
  1220. // }
  1221. div{
  1222. display: flex;
  1223. gap: 30px;
  1224. align-items: center;
  1225. span{
  1226. font-size: 120px;
  1227. color: #ffffff;
  1228. background-color: #7F1BF2;
  1229. width: 140px;
  1230. font-weight: 800;
  1231. height: 210px;
  1232. display: inline-block;
  1233. line-height: 2;
  1234. text-align: center;
  1235. box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  1236. border-radius: 30px;
  1237. position: relative;
  1238. z-index: 30;
  1239. perspective: 600px;
  1240. overflow: hidden;
  1241. &.flip{
  1242. animation: flipDown 0.5s ease-in-out;
  1243. }
  1244. &::before {
  1245. content: '';
  1246. width: 100%;
  1247. z-index: -1;
  1248. display: inline-block;
  1249. left: 0;
  1250. top: 0;
  1251. border-top-left-radius: 30px;
  1252. border-top-right-radius: 30px;
  1253. height: 50%;
  1254. background-color: #8b2ef4;
  1255. position: absolute;
  1256. }
  1257. }
  1258. }
  1259. }
  1260. .evt--btn{
  1261. border-style: solid;
  1262. border-width: 3px;
  1263. border-color: rgb(255, 255, 255);
  1264. border-radius: 50px;
  1265. display: flex;
  1266. align-items: center;
  1267. z-index: 10;
  1268. justify-content: center;
  1269. background-color: #00175f;
  1270. box-shadow: 0px 15px 16px 0px rgba(0, 0, 0, 0.14);
  1271. max-width: 416px;
  1272. width: 100%;
  1273. height: 95px;
  1274. font-family: 'Pretendard Variable';
  1275. font-size: 40px;
  1276. font-weight: 800;
  1277. text-decoration: none;
  1278. color: #ffffff;
  1279. }
  1280. }
  1281. }
  1282. }
  1283. /*===============================================
  1284. 에니메이션
  1285. ===============================================*/
  1286. .floating {
  1287. animation: floating 3s ease-in-out infinite;
  1288. }
  1289. @keyframes bobUp {
  1290. 0% { transform: translateY(120vh); opacity: 0; }
  1291. 80% { opacity: 1; }
  1292. 100% { transform: translateY(0); opacity: 1; }
  1293. }
  1294. // 둥둥 떠있는 효과
  1295. @keyframes bubbleFloat {
  1296. 0% { transform: translateY(0) scale(1);}
  1297. 50% { transform: translateY(-12px) scale(1.05);}
  1298. 100% { transform: translateY(0) scale(1);}
  1299. }
  1300. @keyframes floating {
  1301. 0% { transform: translateY(0px); }
  1302. 50% { transform: translateY(-20px); }
  1303. 100% { transform: translateY(0px); }
  1304. }
  1305. @keyframes fadeUpLogo {
  1306. to {
  1307. opacity: 1;
  1308. transform: translateY(0);
  1309. }
  1310. }
  1311. @keyframes fadeInRightH1 {
  1312. to {
  1313. opacity: 1;
  1314. transform: translateX(0);
  1315. }
  1316. }
  1317. @keyframes fadeInLeftH2 {
  1318. to {
  1319. opacity: 1;
  1320. transform: translateX(0);
  1321. }
  1322. }
  1323. @keyframes fadeUpH3 {
  1324. to {
  1325. opacity: 1;
  1326. transform: translateY(0);
  1327. }
  1328. }
  1329. @keyframes waveInRight {
  1330. 0% {
  1331. opacity: 0;
  1332. transform: translateX(-100px);
  1333. }
  1334. 60% {
  1335. opacity: 1;
  1336. transform: translateX(20px);
  1337. }
  1338. 100% {
  1339. opacity: 1;
  1340. transform: translateX(0);
  1341. }
  1342. }
  1343. @keyframes cloudMoveLeftToRight {
  1344. 0% {
  1345. opacity: 0;
  1346. transform: translateX(-100px);
  1347. }
  1348. 10% {
  1349. opacity: 1;
  1350. transform: translateX(0px);
  1351. }
  1352. 90% {
  1353. opacity: 1;
  1354. transform: translateX(300px);
  1355. }
  1356. 100% {
  1357. opacity: 0;
  1358. transform: translateX(400px);
  1359. }
  1360. }
  1361. @keyframes floating-diag-1 {
  1362. 0% { transform: translate(0, 0); }
  1363. 20% { transform: translate(-10px, 10px);}
  1364. 40% { transform: translate(10px, -10px);}
  1365. 60% { transform: translate(-10px, -10px);}
  1366. 80% { transform: translate(10px, 10px);}
  1367. 100% { transform: translate(0, 0);}
  1368. }
  1369. @keyframes floating-diag-2 {
  1370. 0% { transform: translate(0, 0); }
  1371. 25% { transform: translate(12px, -8px);}
  1372. 50% { transform: translate(-12px, 8px);}
  1373. 75% { transform: translate(8px, 12px);}
  1374. 100% { transform: translate(0, 0);}
  1375. }
  1376. @keyframes floating-diag-3 {
  1377. 0% { transform: translate(0, 0);}
  1378. 30% { transform: translate(-8px, 12px);}
  1379. 60% { transform: translate(8px, -12px);}
  1380. 100% { transform: translate(0, 0);}
  1381. }
  1382. @keyframes floating-diag-4 {
  1383. 0% { transform: translate(0, 0);}
  1384. 20% { transform: translate(10px, 10px);}
  1385. 40% { transform: translate(-10px, -10px);}
  1386. 60% { transform: translate(10px, -10px);}
  1387. 80% { transform: translate(-10px, 10px);}
  1388. 100% { transform: translate(0, 0);}
  1389. }
  1390. @keyframes shakeX {
  1391. 0% { transform: translateY(-50%) translateX(0); }
  1392. 10%, 30%, 50%, 70%, 90% { transform: translateY(-50%) translateX(-8px); }
  1393. 20%, 40%, 60%, 80% { transform: translateY(-50%) translateX(8px); }
  1394. 100% { transform: translateY(-50%) translateX(0); }
  1395. }
  1396. @keyframes shakeX2 {
  1397. 0% { transform: rotate(180deg) translateY(-50%) translateX(0); }
  1398. 10%, 30%, 50%, 70%, 90% { transform: rotate(180deg) translateY(-50%) translateX(-8px); }
  1399. 20%, 40%, 60%, 80% { transform: rotate(180deg) translateY(-50%) translateX(8px); }
  1400. 100% { transform: rotate(180deg) translateY(-50%) translateX(0); }
  1401. }
  1402. @keyframes bellRing {
  1403. 0% { transform: rotate(0deg); }
  1404. 10% { transform: rotate(-18deg); }
  1405. 20% { transform: rotate(16deg); }
  1406. 30% { transform: rotate(-12deg); }
  1407. 40% { transform: rotate(10deg); }
  1408. 50% { transform: rotate(-6deg); }
  1409. 60% { transform: rotate(4deg); }
  1410. 70% { transform: rotate(-2deg); }
  1411. 80%, 100% { transform: rotate(0deg); }
  1412. }
  1413. @media(max-width: 1480px){
  1414. .section--container{
  1415. padding: 0 20px;
  1416. }
  1417. .evt--section01{
  1418. .section--container{
  1419. .swiper--wrap{
  1420. .swiper-button-next,
  1421. .swiper-button-prev{
  1422. display: none;
  1423. }
  1424. .slide--desc{
  1425. padding: 25px 50px!important;
  1426. min-height: 300px;
  1427. height: auto;
  1428. h4{
  1429. font-size: 32px;
  1430. span{
  1431. font-size: 20px;
  1432. }
  1433. }
  1434. p{
  1435. font-size: 18px;
  1436. }
  1437. }
  1438. }
  1439. }
  1440. }
  1441. .evt--section02-1{
  1442. .section--container{
  1443. .evt--1{
  1444. .bg1{
  1445. left: 0;
  1446. img{
  1447. width: 80%;
  1448. }
  1449. }
  1450. .bg2{
  1451. right: -10%;
  1452. img{
  1453. width: 80%;
  1454. }
  1455. }
  1456. .bg3{
  1457. left: 0;
  1458. bottom: 45%;
  1459. img{
  1460. width: 80%;
  1461. }
  1462. }
  1463. .bg4{
  1464. bottom: 40%;
  1465. right: -10%;
  1466. img{
  1467. width: 80%;
  1468. }
  1469. }
  1470. }
  1471. }
  1472. }
  1473. }
  1474. @media(max-width: 1200px){
  1475. .evt--section01{
  1476. .section--container{
  1477. .swiper--wrap{
  1478. .swiper--tab--wrap{
  1479. .tab--btn{
  1480. font-size: 18px;
  1481. height: 68px;
  1482. }
  1483. }
  1484. }
  1485. }
  1486. }
  1487. .evt--section02-1{
  1488. .section--container{
  1489. h3{
  1490. font-size: 36px;
  1491. }
  1492. .evt--1{
  1493. .bg1{
  1494. img{
  1495. width: 50%;
  1496. }
  1497. }
  1498. .bg2{
  1499. top: 40%;
  1500. right: -30%;
  1501. img{
  1502. width: 50%;
  1503. }
  1504. }
  1505. .bg3{
  1506. img{
  1507. width: 50%;
  1508. }
  1509. }
  1510. .bg4{
  1511. right: -240px;
  1512. img{
  1513. width: 50%;
  1514. }
  1515. }
  1516. }
  1517. }
  1518. }
  1519. .evt--section02-2{
  1520. .bg1{
  1521. bottom: auto;
  1522. top: 5%;
  1523. }
  1524. .bg2{
  1525. bottom: auto;
  1526. top: 5%;
  1527. }
  1528. .section--container{
  1529. h3{
  1530. font-size: 36px;
  1531. }
  1532. .evt--2{
  1533. .evt--box{
  1534. padding: 30px;
  1535. li{
  1536. font-size: 30px;
  1537. }
  1538. }
  1539. }
  1540. }
  1541. }
  1542. .evt--section03{
  1543. .section--container{
  1544. .promotion--detail--wrap{
  1545. gap: 40px;
  1546. .detail{
  1547. padding: 50px;
  1548. .detail--l{
  1549. >span{
  1550. font-size: 32px;
  1551. margin-bottom: 20px;
  1552. }
  1553. >h5{
  1554. font-size: 48px;
  1555. line-height: 1.4;
  1556. }
  1557. >ul{
  1558. padding-left: 24px;
  1559. li{
  1560. font-size: 24px;
  1561. line-height: 1.4;
  1562. }
  1563. }
  1564. }
  1565. .detail--r{
  1566. >span{
  1567. right: 50px;
  1568. }
  1569. >p{
  1570. font-size: 24px;
  1571. }
  1572. .before--price{
  1573. font-size: 32px;
  1574. &::after{
  1575. transform: scaleX(-1);
  1576. left: auto;
  1577. right: -10px;
  1578. }
  1579. }
  1580. .after--price{
  1581. font-size: 48px;
  1582. }
  1583. }
  1584. }
  1585. .detail--plus{
  1586. font-size: 24px;
  1587. li{
  1588. padding-left: 20px;
  1589. }
  1590. }
  1591. }
  1592. .count--wrap{
  1593. > p{
  1594. font-size: 30px;
  1595. }
  1596. .count--txt{
  1597. >p{
  1598. font-size: 30px;
  1599. }
  1600. }
  1601. .count--num{
  1602. width: 100%;
  1603. justify-content: center;
  1604. .number{
  1605. font-size: 100px;
  1606. width: 120px;
  1607. height: 174px;
  1608. &:nth-child(4){
  1609. margin-left: 40px;
  1610. }
  1611. &:nth-child(5){
  1612. margin-right: 40px;
  1613. }
  1614. }
  1615. }
  1616. }
  1617. }
  1618. }
  1619. }
  1620. @media(max-width: 1000px){
  1621. .evt--section01{
  1622. .section--container{
  1623. .section--title{
  1624. .bg2{
  1625. left: -30px;
  1626. bottom: -60px;
  1627. img{
  1628. }
  1629. }
  1630. .bg4{
  1631. bottom: auto;
  1632. top: 0px;
  1633. right: -30px;
  1634. img{
  1635. width: 80%;
  1636. }
  1637. }
  1638. }
  1639. .swiper--wrap{
  1640. .swiper--tab--wrap{
  1641. overflow-x: auto;
  1642. white-space: nowrap;
  1643. width: auto;
  1644. .tab--btn{
  1645. width: fit-content;
  1646. height: auto;
  1647. padding: 15px 15px 10px;
  1648. flex-shrink: 0;
  1649. &:first-child{
  1650. &::before{
  1651. font-size: 10px;
  1652. }
  1653. }
  1654. }
  1655. }
  1656. .swiper-pagination{
  1657. span{
  1658. width: 24px;
  1659. height: 24px;
  1660. }
  1661. }
  1662. .slide--desc{
  1663. padding: 25px 15px!important;
  1664. min-height: 240px;
  1665. h4{
  1666. font-size: 24px;
  1667. margin-bottom: 15px;
  1668. span{
  1669. font-size: 16px;
  1670. }
  1671. }
  1672. p{
  1673. margin-bottom: 15px;
  1674. font-size: 14px;
  1675. }
  1676. }
  1677. }
  1678. }
  1679. }
  1680. .evt--section03{
  1681. .section--container{
  1682. .promotion--wrap{
  1683. gap: 20px;
  1684. .promotion{
  1685. h4{
  1686. font-size: 32px;
  1687. }
  1688. p{
  1689. font-size: 32px;
  1690. }
  1691. h5{
  1692. font-size: 72px;
  1693. }
  1694. }
  1695. }
  1696. .promotion--detail--wrap{
  1697. gap: 20px;
  1698. .detail{
  1699. .detail--l{
  1700. >span{
  1701. font-size: 24px;
  1702. margin-bottom: 15px;
  1703. }
  1704. >h5{
  1705. font-size: 36px;
  1706. }
  1707. >ul{
  1708. li{
  1709. font-size: 18px;
  1710. }
  1711. }
  1712. }
  1713. .detail--r{
  1714. >span{
  1715. font-size: 24px;
  1716. width: 80px;
  1717. height: 90px;
  1718. }
  1719. >p{
  1720. font-size: 18px;
  1721. }
  1722. .before--price{
  1723. font-size: 24px;
  1724. &::after{
  1725. right: -10px;
  1726. height: 50px;
  1727. top: 15px;
  1728. background-size: cover;
  1729. width: 210px;
  1730. background-position: left;
  1731. transform: scaleX(1);
  1732. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='50' viewBox='0 0 88 20' fill='none'%3E%3Cpath d='M1 1V0.5H0.265087L0.534922 1.18358L1 1ZM8.5 20L9.34929 14.2893L3.97904 16.4091L8.5 20ZM87.5 1V0.5H1V1V1.5H87.5V1ZM1 1L0.534922 1.18358L6.38267 15.9979L6.84775 15.8143L7.31283 15.6307L1.46508 0.816417L1 1Z' fill='%23373737'/%3E%3C/svg%3E");
  1733. }
  1734. }
  1735. .after--price{
  1736. font-size: 36px;
  1737. }
  1738. }
  1739. }
  1740. .detail--plus{
  1741. padding: 80px 30px 30px;
  1742. font-size: 18px;
  1743. }
  1744. }
  1745. .count--wrap{
  1746. .count--txt{
  1747. margin-bottom: 50px;
  1748. flex-direction: column;
  1749. align-items: center;
  1750. .img--wrap{
  1751. width: 50%;
  1752. &::before{
  1753. width: 70px;
  1754. top: 0px;
  1755. }
  1756. &::after{
  1757. bottom: auto;
  1758. width: 100px;
  1759. right: -50%;
  1760. top: 50%;
  1761. transform: translateY(-50%);
  1762. }
  1763. }
  1764. }
  1765. .count--num{
  1766. gap: 5px;
  1767. .number{
  1768. font-size: 60px;
  1769. line-height: 2;
  1770. width: 90px;
  1771. height: 120px;
  1772. &:nth-child(4){
  1773. margin-left: 20px;
  1774. }
  1775. &:nth-child(5){
  1776. margin-right: 20px;
  1777. }
  1778. }
  1779. }
  1780. }
  1781. }
  1782. }
  1783. }
  1784. @media(max-width: 767px){
  1785. .evt--section01{
  1786. .section--container{
  1787. .section--title{
  1788. .bg--wave--wrap{
  1789. top: 120px;
  1790. .bg--wave{
  1791. height: 300px;
  1792. width: 450px;
  1793. .bg--wave2{
  1794. display: none;
  1795. }
  1796. }
  1797. }
  1798. }
  1799. }
  1800. }
  1801. .evt--section02-1{
  1802. .section--container{
  1803. .evt--1{
  1804. .bg1{
  1805. top: 10%;
  1806. }
  1807. .bg2{
  1808. right: -320px;
  1809. top: 5%;
  1810. }
  1811. .bg3{
  1812. bottom: auto;
  1813. top: 30%;
  1814. }
  1815. .bg4{
  1816. bottom: auto;
  1817. right: -240px;
  1818. top: 35%;
  1819. }
  1820. .evt--circle{
  1821. font-size: 18px;
  1822. padding: 10px 20px;
  1823. margin-bottom: 30px;
  1824. }
  1825. h3{
  1826. font-size: 20px;
  1827. }
  1828. }
  1829. }
  1830. }
  1831. .evt--section02-2{
  1832. .section--container{
  1833. .evt--2{
  1834. .evt--box{
  1835. width: 100%;
  1836. li{
  1837. gap: 10px;
  1838. font-size: 18px;
  1839. .circle{
  1840. padding: 10px 30px;
  1841. height: auto;
  1842. width: auto;
  1843. &::after{
  1844. display: none;
  1845. }
  1846. }
  1847. }
  1848. }
  1849. .evt--circle{
  1850. font-size: 18px;
  1851. padding: 10px 20px;
  1852. margin-bottom: 30px;
  1853. }
  1854. h3{
  1855. font-size: 20px;
  1856. }
  1857. .evt--btn{
  1858. font-size: 24px;
  1859. height: 80px;
  1860. }
  1861. }
  1862. }
  1863. }
  1864. .evt--section03{
  1865. .section--container{
  1866. .promotion--wrap{
  1867. margin-bottom: 40px;
  1868. .promotion{
  1869. height: 450px;
  1870. h4{
  1871. font-size: 20px;
  1872. line-height: 24vw;
  1873. }
  1874. p{
  1875. font-size: 20px;
  1876. }
  1877. h5{
  1878. font-size: 48px;
  1879. }
  1880. }
  1881. }
  1882. .promotion--detail--wrap{
  1883. .detail{
  1884. flex-direction: column;
  1885. padding: 30px;
  1886. gap: 15px;
  1887. border-radius: 20px;
  1888. &::before{
  1889. display: none!important;
  1890. }
  1891. .detail--l{
  1892. width: 100%;
  1893. >span{
  1894. font-size: 18px;
  1895. }
  1896. >h5{
  1897. font-size: 24px;
  1898. margin-bottom: 20px;
  1899. }
  1900. }
  1901. .detail--r{
  1902. width: 100%;
  1903. >span{
  1904. font-size: 18px;
  1905. width: 60px;
  1906. height: 70px;
  1907. right: 30px;
  1908. }
  1909. >p{
  1910. margin-bottom: 0;
  1911. }
  1912. .before--price{
  1913. font-size: 18px;
  1914. &::after{
  1915. width: 140px;
  1916. height: 30px;
  1917. top: 12px;
  1918. }
  1919. }
  1920. .after--price{
  1921. font-size: 24px;
  1922. }
  1923. }
  1924. }
  1925. .detail--plus{
  1926. border-bottom-left-radius: 20px;
  1927. border-bottom-right-radius: 20px;
  1928. font-size: 14px;
  1929. }
  1930. }
  1931. .count--wrap{
  1932. .evt--btn{
  1933. font-size: 24px;
  1934. height: 80px;
  1935. }
  1936. .count--txt{
  1937. >p{
  1938. font-size: 20px;
  1939. }
  1940. .img--wrap{
  1941. .wch--l{
  1942. top:-60px;
  1943. left:-30px;
  1944. }
  1945. .wch--r{
  1946. top:-60px;
  1947. right:-40px;
  1948. }
  1949. }
  1950. }
  1951. .count--num{
  1952. .number{
  1953. font-size: 40px;
  1954. width: 60px;
  1955. height: 80px;
  1956. }
  1957. }
  1958. }
  1959. }
  1960. }
  1961. @keyframes bellRing {
  1962. 0% { transform:scale(.5) rotate(0deg); }
  1963. 10% { transform:scale(.5) rotate(-18deg); }
  1964. 20% { transform:scale(.5) rotate(16deg); }
  1965. 30% { transform:scale(.5) rotate(-12deg); }
  1966. 40% { transform:scale(.5) rotate(10deg); }
  1967. 50% { transform:scale(.5) rotate(-6deg); }
  1968. 60% { transform:scale(.5) rotate(4deg); }
  1969. 70% { transform:scale(.5) rotate(-2deg); }
  1970. 80%, 100% { transform:scale(.5) rotate(0deg); }
  1971. }
  1972. }
  1973. @media(max-width: 500px){
  1974. .evt--section01{
  1975. .section--container{
  1976. .swiper--wrap{
  1977. margin-bottom: 50px;
  1978. .swiper--tab--wrap{
  1979. .tab--btn{
  1980. font-size: 16px;
  1981. }
  1982. }
  1983. .swiper-pagination{
  1984. span{
  1985. width: 14px;
  1986. height: 14px;
  1987. margin: 0 5px;
  1988. }
  1989. }
  1990. .slide--desc{
  1991. padding: 25px 15px!important;
  1992. min-height: 200px;
  1993. height: 100%;
  1994. h4{
  1995. font-size: 18px;
  1996. span{
  1997. font-size: 12px;
  1998. }
  1999. }
  2000. p{
  2001. font-size: 14px;
  2002. }
  2003. }
  2004. }
  2005. }
  2006. }
  2007. .evt--section02-1{
  2008. .section--container{
  2009. .evt--1{
  2010. .bg1{
  2011. img{
  2012. }
  2013. }
  2014. .bg2{
  2015. top: 2%;
  2016. right: -360px;
  2017. img{
  2018. width: 45%;
  2019. }
  2020. }
  2021. .bg3{
  2022. top: 32%;
  2023. }
  2024. }
  2025. }
  2026. }
  2027. .evt--section02-2{
  2028. .section--container{
  2029. .evt--2{
  2030. .evt--box{
  2031. li{
  2032. font-size: 14px;
  2033. .circle{
  2034. padding: 5px 15px;
  2035. white-space: nowrap;
  2036. }
  2037. }
  2038. padding: 20px;
  2039. }
  2040. }
  2041. }
  2042. }
  2043. .evt--section03{
  2044. .section--container{
  2045. .promotion--wrap{
  2046. .promotion{
  2047. height: 300px;
  2048. h4{
  2049. font-size: 16px;
  2050. margin-bottom: 0px;
  2051. line-height: 22vw;
  2052. }
  2053. p{
  2054. font-size: 16px;
  2055. margin-bottom: 0px;
  2056. }
  2057. h5{
  2058. font-size: 36px;
  2059. span{
  2060. font-size: 24px;
  2061. }
  2062. }
  2063. }
  2064. }
  2065. .count--wrap{
  2066. .count--num{
  2067. .number{
  2068. font-size: 24px;
  2069. height: 72px;
  2070. line-height: 3;
  2071. &:nth-child(4){
  2072. margin-left: 10px;
  2073. }
  2074. &:nth-child(5){
  2075. margin-right: 10px;
  2076. }
  2077. }
  2078. }
  2079. }
  2080. }
  2081. }
  2082. }