.backTop {
    width: 70px;
    height: 70px;
    background: rgba(0,0,0,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 60px;
    right: 30px;
    flex-direction: column;
    z-index: 3;
    cursor: pointer;
    transition: background .2s;
}

.backTop:hover {
    background: rgba(0,0,0,.5);
}

.backTop img {
    width: 24px;
    height: 24px;
}

.backTop span {
    font-weight: 400;
    font-size: 12px;
    color: #FFFFFF;
    margin-top: 3px;
    line-height: 1;
}

.c-right {
    position: fixed;
    top: 15%;
    right: 30px;
    width: 70px;
    background: #FFFFFF;
    box-shadow: 0px 0px 38px 0px rgba(0,56,99,0.06);
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    padding: 10px 0px 20px;
    gap: 10px;
    z-index: 3;
}

.cr-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.cr-item:hover .picture {
    background: var(--themeBackground);
}

.cr-item .picture {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cr-item:hover .picture svg {
    fill: var(--themeColor);
}

.cr-item .name {
    font-weight: 400;
    font-size: 12px;
    color: #999999;
}

.cr-item:hover .name {
    color: var(--themeColor);
}

.cr-item .pop {
    position: absolute;
    right: 80px;
    background: #FFFFFF;
    box-shadow: 0px 0px 38px 0px rgba(0,56,99,0.06);
    border-radius: 20px;
    animation: flipInXline .5s ease-out;
    display: none;
    cursor: auto;
}

.cr-item .pop::after {
    content: '';
    position: absolute;
    width: 10px;
    top: 0;
    right: -10px;
    background-color: transparent;
    height: 100%;
}

.cr-item:hover .pop {
    display: flex !important;
}

.cr-item.kefu .pop {
    width: 440px;
    flex-direction: column;
}

.cr-item.kefu .pop .title {
    height: 58px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #F2F2F2;
    box-sizing: border-box;
    padding: 0px 23px;
}

.cr-item.kefu .pop .title svg {
    margin-right: 6px;
    fill: var(--themeColor);
}

.cr-item.kefu .pop .title div {
    font-weight: bold;
    font-size: 18px;
    color: #333333;
    margin-right: 10px;
}

.cr-item.kefu .pop .title span {
    font-weight: 400;
    font-size: 14px;
    color: #999999;
}

.cr-item.kefu .pop .btnGrop {
    height: 75px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding-left: 34px;
}

.cr-item.kefu .pop .btnGrop a {
    width: 100px;
    height: 30px;
    background: var(--themeBackground);
    border-radius: 15px;
    border: 1px solid var(--themeColor);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cr-item.kefu .pop .btnGrop a svg {
    margin-right: 2px;
    fill: var(--themeColor);
}

.cr-item.kefu .pop .btnGrop a span {
    font-weight: 400;
    font-size: 13px;
    color: var(--themeColor);
}

.cr-item.kefu .pop .btnGrop a:hover {
    background: var(--themeColor);
    border-color: var(--themeColor);
}

.cr-item.kefu .pop .btnGrop a:hover svg {
    filter: brightness(0%) invert(100%);
}

.cr-item.kefu .pop .btnGrop a:hover span {
    color: white;
}

.cr-item.phone .pop {
    width: 239px;
    height: 84px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: flipInXline2 .6s;
}

.cr-item.phone .pop img {
    width: 28px;
    height: 28px;
}

.cr-item.phone .pop svg {
    fill: var(--themeColor);
}

.cr-item.phone .pop .tip {
    font-weight: 400;
    font-size: 14px;
    color: #999999;
}

.cr-item.phone .pop .text {
    font-weight: bold;
    font-size: 18px;
    color: #333333;
}

.cr-item.weixin .pop,.cr-item.mobile .pop {
    height: 200px;
    align-items: center;
    gap: 50px;
    padding: 0px 10px;
}

.cr-item.weixin .pop .item,.cr-item.mobile .pop .item {
    text-align: center;
}

.cr-item.weixin .pop .item img,.cr-item.mobile .pop .item img {
    width: 180px;
    height: 180px;
    max-width: 180px;
}

.cr-item.weixin .pop .item div,.cr-item.mobile .pop .item div {
    font-weight: 400;
    font-size: 12px;
    color: #999999;
    margin-top: 10px;
}

.cr-item.weixin .pop .item span,.cr-item.mobile .pop .item span {
    color: var(--themeColor);
}

@keyframes rightFadeOut {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }

    100% {
        opacity: 0;
        transform: translateX(10px);
    }
}

@keyframes leftFadeOut {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }

    100% {
        opacity: 0;
        transform: translateX(-10px);
    }
}

@keyframes refresh {
    0% {
        transform: rotateZ(0deg)
    }

    100% {
        transform: rotateZ(360deg)
    }
}

@keyframes showIn {
    0% {
        transform: scale(0) translateX(-50%);
    }

    100% {
        transform: scale(1) translateX(-50%);
    }
}

@keyframes flipInXline {
    0% {
        transform: perspective(400px) rotateX(-30deg);
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateX(6deg)
    }

    100% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }
}

@keyframes flipInXline2 {
    0% {
        transform: perspective(400px) rotateX(-80deg);
        opacity: 0
    }

    60% {
        transform: perspective(400px) rotateX(10deg)
    }

    90% {
        transform: perspective(400px) rotateX(-12deg)
    }

    100% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }
}

@keyframes bottomFadeOuts {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }

    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}