/*右侧导航*/
.right-memory{
    width: 61px;
    position: fixed;
    right: 15px;
    bottom: 20%;
    z-index: 98;
}
.right-memory li{
    width: 61px;
    height: 61px;
    background: #4D7EF4;
    box-shadow: 0px 6px 15px 0px rgba(27, 77, 203, 0.1);
    border-radius: 5px;
    margin-bottom: 9px;
    padding-top: 8px;
    position: relative;
}
.right-memory li span{
    font-size: 12px;
    color: #fff;
    display: block;
    text-align: center;
}
.right-memory li i{
    display: block;
    margin: 0 auto;
    background-position: center center;
    background-repeat: no-repeat;
    /*background-size: 2.02rem auto;*/
    background-image: url(../images/right-memory.png);
}
.right-memory li.backTop{
    border-radius: 50%;
}
.right-memory li.gzh i{
    width: 36px;
    height: 29px;
    background-size: 72px auto;
    background-position: -39px 0;
}
.right-memory li.kefu i{
    width: 36px;
    height: 29px;
    background-size: 72px auto;
    background-position: -39px -32px;
}
.right-memory li.phoneNum i{
    width: 36px;
    height: 29px;
    background-size: 72px auto;
    background-position: -39px -66px;
}
.right-memory li.backTop i{
    width: 26px;
    height: 37px;
    background-size: 72px auto;
    background-position: -42px -94px;
}
.right-memory li.gzh:hover i{
    background-position: 0 0;
}
.right-memory li.kefu:hover i{
    background-position: 0 -32px;
}
.right-memory li.phoneNum:hover i{
    background-position: 0 -66px;
}
.right-memory li.backTop:hover i{
    background-position: -42px -94px;
}
.right-memory li:hover{
    background: #fff;
    cursor: pointer;
}
.right-memory li.backTop:hover{
    background: #4D7EF4;
    cursor: pointer;
}
.right-memory li:hover span{
    color: #4D7EF4;
}
.right-memory li .item{
    display: none;
    position: absolute;
    width: 144px;
    background: #FFFFFF;
    box-shadow: 0px 6px 15px 0px rgba(27, 77, 203, 0.1);
    border-radius: 6px;
    top: 0;
    left: -154px;
    padding: 0px 0 10px;
}
.right-memory li:hover .item{
    display: block;
}
.right-memory li .item p{
    text-align: center;
    font-size: 15px;
    color: #1D2843;
}
.right-memory li.phoneNum .item{
    padding: 15px 0;
}
.right-memory li.phoneNum .item p:first-child{
    margin-bottom: 3px;
}
.right-memory li.backTop{
    opacity: 0;
    visibility: hidden;
}
.right-memory .active-right-2{
    position: absolute;
    top: -5px;
    width: 80px;
    left: 50%;
    transform: translate(-50%,-100%);
    cursor: pointer;
    display: none;
}
.right-memory .active-right-1{
    position: absolute;
    top: -91px;
    width: 90px;
    left: -15px;
    /* transform: translate(-50%,-100%); */
    cursor: pointer;
}

.right-memory .active-right-1:hover{
    -webkit-animation: buzz-out .3s linear 0s 1;
    animation: buzz-out .3s linear 0s 1;
}
@-webkit-keyframes buzz-out {
    0% {
        -webkit-transform: translateX(3px) rotate(3deg);
        transform: translateX(3px) rotate(3deg);
    }
    100% {
        -webkit-transform: translateX(-3px) rotate(-3deg);
        transform: translateX(-3px) rotate(-3deg);
    }
}
@keyframes buzz-out {
    0% {
        -webkit-transform: translateX(3px) rotate(3deg);
        transform: translateX(3px) rotate(3deg);
    }
    100% {
        -webkit-transform: translateX(-3px) rotate(-3deg);
        transform: translateX(-3px) rotate(-3deg);
    }
}