
#fixed-scroll{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    width:100%;
    pointer-events: none;
}

#fixed-scroll .pager_fixed{
    position: relative;
}


#fixed-scroll .pager_fixed ul{ 
    display: flex;
    justify-content:space-between;
    width: calc(100% - 23px);
}

#fixed-scroll .pager_fixed ul li{ 
    position: relative;
    width: 30px;
    height: 75px;
    // background: #CCC;
    pointer-events: auto;
}

#fixed-scroll .pager_fixed ul li a{
    display: block;
    width:100%;
    height: 100%;
    padding:10px 10px 14px 10px;
    margin-top:-12px;
}

#fixed-scroll .pager_fixed ul li a span{
    color:#333333;
    font-size:12px;
    text-align: center;
    display: block;
    font-weight: bold;
    width:100%;
    height: 100%;
    background:rgba(83, 83, 83,0.8);
    border: 1px solid rgba(160,160,160,0.8);
    box-shadow: 0px 2px 5px rgba(0,0,0,0.4);
}


#fixed-scroll .pager_fixed ul li.prev{
    margin-left:-62px;
    transition: .3s;
}

#fixed-scroll.anime .pager_fixed ul li.prev{
    margin-left:-12px;
    transition: .3s;
}

#fixed-scroll .pager_fixed ul li.prev a span{
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

#fixed-scroll .pager_fixed ul li.prev::before{
    content: ''; 
    border-top: 10px solid transparent;
    border-right: 12px solid #fff;
    border-bottom: 10px solid transparent;
    -ms-transform: scale(0.6);
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: 4px;
}


#fixed-scroll .pager_fixed ul li.next{
    margin-right:-62px;
    transition: .3s;                                                                                                                                                                                                                               
    margin-left:auto;
}

#fixed-scroll.anime .pager_fixed ul li.next{
    margin-right:-12px;
    transition: .3s;
}

#fixed-scroll .pager_fixed ul li.next a span{
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

#fixed-scroll .pager_fixed ul li.next::before{
    content: '';
    border-top: 10px solid transparent;
    border-left: 12px solid #fff;
    border-bottom: 10px solid transparent;
    -ms-transform: scale(0.6);
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    position: absolute;
    top: 50%;
    right: 50%;
    margin-top: -12px;
    margin-right: -16px;
}
