
/*
    ************************************ 공통 레이아웃 ************************************
*/

* {padding:0; border:0; margin:0;}
html, body {height:100%; overscroll-behavior: none;}

a {text-decoration:none; color:#000000;}
a:visited {text-decoration:none; color:#000000;}
a:active {text-decoration:none; color:#000000;}
a:link {text-decoration:none; color:#000000;}

ul, ol, dl {list-style: none;}

:focus {outline:none;}



.pageOutWrap {display:block; position:relative; width:100%; height:100%; overflow: hidden; background-size:cover; background-position:center center;}

/*스케일로 리사이징 되는 영역*/
.contentsOutWrap, .contentsIframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: top left;
    background: linear-gradient(180deg, #E1E6EF 0%, #E8ECF1 43.27%, #DFE6F0 60.1%, #ECF0F7 66.35%, #FFF 100%);
    overflow: hidden;
}
/*.contentsIframe { width: 1280px; height: 720px; }*/

body {
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
    -webkit-tap-highlight-color: transparent; -webkit-tap-highlight-color: rgba(0,0,0,0); /*모바일에서 하이라이트 안되게 추가해줌.*/
}
/*이미지 드래그 막기위해서*/
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* 활동페이지 */
.activityPage { padding: 45px 30px 40px 30px; box-sizing: border-box; }

/* 인트로 페이지 */
.introPage { position: absolute; width: 100%; height: 100%; /*background-image: url("../images/QR_Intro_bg.jpg");*/ background-repeat: no-repeat; background-position: center center; background-size: cover; z-index: 9; }
.introPage .lottie-player {width:100%; height:100%;}
.introPage .btnStart {
    position: absolute;
    bottom: 241px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 50px;
    background-image: url("../images/btnIntroStart.png");
    background-size: 150px 50px;
    background-repeat: no-repeat;
    cursor: pointer;
}
.introPage .btnStart:hover {background-image:url("../images/btnIntroStart_over.png");}
.introPage .mainTitle { position: absolute; top: 242px; left: 50%; transform: translateX(-50%) /*scale(0.2)*/; transform-origin: center center; font-size: 64px; color: #fff; font-family: "NotoSansBlk"; white-space: nowrap;}
/*.introPage .mainTitle.on {transition:all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); transform:translateX(-50%) scale(1); opacity:1;}*/
.introPage .mainTitle img { width: 100%; }
