@keyframes move_wave {
    0% {
        /*transform: translateX(0) translateZ(0) scaleY(1)*/
        background-position: 0% 0;
    }
    50% {
        background-position: 25% 0;
        /*transform: translateX(25%) translateZ(0) scaleY(1)*/
    }
    100% {
        background-position: 50% 0;

        /*transform: translateX(50%) translateZ(0) scaleY(1)*/
    }
}
.waveWrapper {
    overflow: hidden;
    position: absolute;
    left: calc(50% - 1000px);
    right: 0;
    bottom: 0;
    top: 100px;
    margin: auto;
    width: 1200px;
}

.bgTop {
    z-index: 15;
    opacity: 0.5;
}
.bgMiddle {
    z-index: 10;
    opacity: 0.75;
}
.bgBottom {
    z-index: 5;
}
.wave {
    position: absolute;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat no-repeat;
    background-position: 0 bottom;
    transform-origin: center bottom;
}
.waveTop {
    background-size: 50% 100px;
}
.waveAnimation .waveTop {
    animation: move-wave 3s;
    -webkit-animation: move-wave 3s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    background: url('../../images/newImg/xsjg/waveLine.png') center repeat-x;
}
.waveMiddle {
    background-size: 50% 120px;

}
.waveAnimation .waveMiddle {
    animation: move_wave 10s linear infinite;
    background: url('../../images/newImg/xsjg/waveLine.png') center repeat-x;
}
.waveBottom {
    background-size: 50% 100px;
}

.waveAnimation .waveBottom {
    animation: move_wave 15s linear infinite;
    background: url('../../images/newImg/xsjg/waveLine.png') center repeat-x;
}

.reap-wrap {
    position: relative;
}
