<!-- S : 이벤트 복사영역 여기서부터 --><style type="text/css">/* font */ @import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard-dynamic-subset.css'); /* root */ :root { --head: 94px; /* a-rt 100px / abc 80px / gs 94px / ots 116px */ --font: 'pretendard', sans-serif; --bg-color: #f1fffc; } /* common */ .art-container-event { position: relative; width: 100%; max-width: 1920px; margin: 0 auto; text-align: center; } .art-content-inner { position: relative; display: flex; justify-content: center; margin: 0 auto; overflow: hidden; } .art-content-inner img { display: block; width: 100%; } /* gnb */ #tabNav { position: sticky; top: var(--head); display: flex; justify-content: center; font-family: var(--font) !important; gap: 1px; background-color: #fff; transition: all 0.3s; z-index: 2; width: 100%; } #tabNav li { font-size: 28px; font-weight: 700; height: 120px; letter-spacing: -0.05em; color: #fff; background-color: #067466; transition: all 0.3s; width: 100%; } #tabNav li span { display: block; line-height: 1; } #tabNav li:hover, #tabNav li.active { color: #003a33; background-color: var(--bg-color); } #tabNav li .sub { color: #9ffff3; font-size: 20px; font-weight: 300; padding-bottom: 10px; } #tabNav li:hover .sub, #tabNav li.active .sub { color: #067466; } #tabNav li a { display: flex; flex-flow: column; justify-content: center; width: 100%; height: 100%; }</style><!-- s : art-container-event --><div class="art-container-event"><!-- 메인 이미지 --><div class="art-content-inner main"><img alt="" src="https://image.a-rt.com/art/managing/event/20250418_abc_camp_evt/pc/main.jpg" /></div><!-- GNB --><ul id="tabNav" role="tablist"> <li aria-controls="tabpanel1" class="tab" id="tab1" role="tab"><a href="#tabpanel1"><span class="sub">만나서 반가워요</span> <span>회원 가입 이벤트</span> </a></li> <li aria-controls="tabpanel2" class="tab" id="tab2" role="tab"><a href="#tabpanel2"><span class="sub">좋은 건 함께 즐겨보세요</span> <span>친구 초대 이벤트</span> </a></li> <li aria-controls="tabpanel3" class="tab" id="tab3" role="tab"><a href="#tabpanel3"><span class="sub">혜택을 100% 누려볼까요? </span> <span>APP 설치 이벤트</span> </a></li> <li aria-controls="tabpanel4" class="tab" id="tab4" role="tab"><a href="#tabpanel4"><span class="sub">우리 같이 걸어요</span> <span>만보기 이벤트</span> </a></li></ul><div aria-labelledby="tab1" class="art-content-inner cnt" id="tabpanel1"><img src="https://image.a-rt.com/art/managing/event/20250418_abc_camp_evt/pc/01.jpg" usemap="#map1" /><map name="map1"><area alt="회원가입 이벤트 자세히 보기" coords="736,634,1182,744" href="https://www.a-rt.com/promotion/event/detail?eventNo=2000002197" shape="rect" target="_blank" /></map></div><div aria-labelledby="tab2" class="art-content-inner cnt" id="tabpanel2"><img src="https://image.a-rt.com/art/managing/event/20250418_abc_camp_evt/pc/02.jpg" usemap="#map2" /><map name="map2"><area alt="친구 초대 이벤트 자세히 보기" coords="743,630,1173,726" href="https://www.a-rt.com/promotion/event/detail?eventNo=2000002198" shape="rect" target="_blank" /></map></div><div aria-labelledby="tab3" class="art-content-inner cnt" id="tabpanel3"><img src="https://image.a-rt.com/art/managing/event/20250418_abc_camp_evt/pc/03.jpg" usemap="#map3" /><map name="map3"><area alt="APP 설치 이벤트 자세히 보기" coords="744,672,1178,768" href="https://www.a-rt.com/promotion/event/detail?eventNo=2000002199" shape="rect" target="_blank" /></map></div><div aria-labelledby="tab4" class="art-content-inner cnt" id="tabpanel4"><!-- 조기 종료 --><img src="https://image.a-rt.com/art/managing/event/20250418_abc_camp_evt/pc/04.jpg" usemap="#map4" /><map name="map4"><area alt="만보기 이벤트 자세히 보기" coords="743,674,1174,763" href="https://www.a-rt.com/promotion/event/detail?eventNo=2000002200" shape="rect" target="_blank" /></map></div></div><!-- e : art-container-event --><!-- 1920px 스크립트 --><script> function editorCalcWidth() { var width_size = $(window).width(); if (width_size > 1200) $('.editor-wrap').css({ width: width_size, 'margin-left': -(width_size - 1200) / 2 }); } function fixImageMaps(force) { var imgs = document.querySelectorAll('img[usemap]'); [].forEach.call(imgs, function (img) { if (!img.naturalHeight) { return; } var h = img.height / img.naturalHeight; var w = img.width / img.naturalWidth; var map = document.getElementsByName(img.useMap.slice(1))[0]; if (!map) { return; } for (var i = 0; i < map.children.length; i++) { var area = map.children[i]; if (!area.coords) { continue; } var coords = area.coords; if (!area.originalCoords) { area.originalCoords = coords; } else { coords = area.originalCoords; } var split = coords.split(','); var fixed = ''; split.forEach(function (coord, n) { if (n != 0) { fixed += ','; } fixed += n % 2 == 0 ? Number(coord) * w : Number(coord) * h; }); area.coords = fixed; } }); } $(document).ready(function () { editorCalcWidth(); fixImageMaps(); }); $(window).on('scroll resize', function () { editorCalcWidth(); fixImageMaps(); }); </script><!-- GNB 스크립트 --><script> $(document).ready(function () { const topSpace = 214; function onScroll() { const scrollY = Math.ceil($(window).scrollTop() + topSpace); $('.art-content-inner.cnt').each(function () { const cntTop = Math.floor($(this).offset().top); const cntBtm = cntTop + $(this).height(); if (scrollY >= cntTop && scrollY < cntBtm) { $(this).addClass('active'); $('#' + $(this).attr('aria-labelledby')) .addClass('active') .siblings() .removeClass('active'); } else { $(this).removeClass('active'); $('#' + $(this).attr('aria-labelledby')).removeClass('active'); } }); } $('#tabNav li a').on('click', function (event) { event.preventDefault(); $('html, body') .stop() .animate({ scrollTop: $($(this).attr('href')).offset().top - topSpace }, 0); }); $(window).on('scroll', onScroll); }); </script><!-- E : 이벤트 복사영역 여기까지 -->
<div class="gray-box notice-box newD"><strong>이벤트 안내 사항</strong><ul> <li>당첨자가 잘못 기입한 개인정보로 인해 발생하는 문제에 대해서는 책임을 지지 않습니다.</li> <li>경품은 제시된 이미지와 상이할 수 있으며, 당사가 제공하는 형태로만 수령 가능합니다. 대체 또는 현금 제공은 불가합니다.<br /> 다만, 지정된 경품의 수급이 불가능한 경우 당사가 제시하는 동일가액의 물품으로 변경됩니다.</li> <li>본 이벤트는 (주)에이비씨마트코리아에서 주관하며, 경품 처리 업무 대행 및 제세공과금 처리는 (주)젤라블루, (주)스마트콘을 통해 운영됩니다.<br /> 이에 따라 당첨자 안내 및 경품 발송을 위해 회원님의 개인정보(이름/휴대폰 번호)를 (주)젤라블루, (주)스마트콘으로 위탁합니다.</li> <li>제공된 개인 정보는 당첨자 안내 및 경품 발송 외에는 사용되지 않으며, 목적 달성 후 제공된 개인정보는 파기됩니다.</li> <li>본 이벤트는 당사 사정에 따라 변경/중단될 수 있습니다.</li> <li>본 경품 이벤트는 Apple과 무관합니다. </li></ul></div>