.hkc-12054 .backstage-hotSpotBox {
    position: relative;
}
.hkc-12054 .hot_link{
    color: #000;
}
    .hkc-12054 .backstage-hotSpot-wrap .backstage-hotSpot-name {
        background: #fff;
        margin: 0px 0 0 5px;
        padding: 10px;
        width: auto;
        border-radius: 10px;
        display: inline-block;
       
        font-size: 14px;
    }
    @media (min-width:990px) {
        .hkc-12054 .backstage-hotSpot-wrap .backstage-hotSpot-name{
 width: 100px;
        }
        
         .hkc-12054 .backstage-hotSpotBox .backstage-hotSpot-wrap:hover .backstage-hotSpot-img {
    animation: boxmove;
    animation-duration: 1s;
    animation-iteration-count: 1;
    transition: ease-in-out;
    animation-fill-mode: forwards;
}
    }
@media (max-width:989px) {
    .hkc-12054 .backstage-hotSpot-wrap span.backstage-hotSpot-name {
            overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100px;
    padding: 10px;
    border-radius: 4px;
    font-size: 12px;
    min-width: 100px;
    }
}
.hkc-12054 .backstage-hotSpotBox img {
    width: 100%;
    vertical-align: top;
}

.hkc-12054 .backstage-hotSpotBox .backstage-hotSpot-wrap {
    position: absolute;
    width: 20px;
    height: 40px;
    cursor: pointer;
        z-index: 1;
}

@keyframes boxmoveLeft {
    0% {
        left: -2500px;
        transform: rotate(0deg);
    }

    100% {
        left: 100px;
        transform: rotate(7200deg);
    }
}
@keyframes boxmoveRight {
    0% {
        left: -2500px;
        transform: rotate(0deg);
    }

    100% {
        left: -300px;
        transform: rotate(7200deg);
    }
}
@keyframes boxmove {
    0% {
        left: -2500px;
        transform: rotate(0deg);
    }

    100% {
        left: -180px;
        transform: rotate(7200deg);
    }
}

.hkc-12054 .backstage-hotSpot-wrap .backstage-hotSpot-img {
    width: 200px;
    height: 200px;
    top: -2px;
    left: -200px;
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    left: -2500px;
    border: 1px solid #dedede;
}

.hkc-12054 .backstage-hotSpot-icon {
    width: 100%;
    height: 100%;
}

.hkc-12054 .loader {
    width: 25px;
    height: 25px;
    background: #0089F5;
    animation: loading 1s ease-out forwards infinite;
    border-radius: 50%;
    position: absolute;
    left: -7px;
    top: -10px;
    text-align: center;
    font-size: 12px;
    color: #fff;
    line-height: 25px;
}

@keyframes loading {
    0% {
        box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 0px 12px rgba(255, 255, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.3);
    }
}