/*页面公共区域*/
#pro {
    position: absolute;
    width: 640px;
    height: 100%;
    overflow: hidden;
    left: 0;
    top: 0;
}

.page {
    width: 640px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.page .p {
    width: 640px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

h1 {
    color: #ffffff;
    font-size: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#box .page0 {
    background: #0B5D28;
}

#box .page1 {
    background: #E2B75A;
}

#box .page2 {
    background: #f57401;
}

#box .page3 {
    background: #78a106;
}

#box .page4 {
    background: #ea969d;
}

#box .page5 {
    background: #F65B60;
}

#box .page6 {
    background: #49923B;
}

.wipeUp {
    width: 30px;
    height: 30px;
    background: url("../images/imageSprites.png") 0px -86px;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: upWard 1s linear 0s infinite alternate;
    -webkit-transform: translateX(-50%);
    -webkit-animation: upWard 1s linear 0s infinite alternate;
}

@-webkit-keyframes upWard {
    from {
        bottom: 20px;
    }
    to {
        bottom: 60px;
    }
}