@charset "utf-8";
/* CSS Document */

/** base **/

*, :after, :before {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    overflow-y: scroll;
}

.viewport {
    overflow: hidden;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


#scroll-container > section{
    position: relative;
}

::-webkit-scrollbar{
    display: none;
    -ms-overflow-style:none;
}


.posNum {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 300px;
    height: 50px;
    margin: -25px 0 0 -150px;
    background: #111;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 50px;
    z-index: 9999;
}

