.qin17364 .backstage-hotSpotBox {
    position: relative;
}

.qin17364 .hot_link {
    color: #000;
}

.qin17364 .backstage-hotSpot-wrap .backstage-hotSpot-name {
    padding: 0px 10px;
    width: auto;
    border-radius: 10px;
    display: inline-block;
}

@media (min-width:990px) {
    /* .qin17364 .backstage-hotSpot-wrap .backstage-hotSpot-name {
        width: 100px;
    } */

    .qin17364 .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) {
    .qin17364 .backstage-hotSpot-wrap span.backstage-hotSpot-name {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100px;
        border-radius: 4px;
        font-size: 12px;
    }
}

.qin17364 .backstage-hotSpotBox img {
    width: 100%;
    vertical-align: top;
}

.qin17364 .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);
    }
}

.qin17364 .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;
}

.qin17364 .backstage-hotSpot-icon {
    width: 100%;
    height: 100%;
}

.qin17364 .loader {
    width: 10px;
    height: 10px;
    background: #1155cc;
    /* animation: loading 1s ease-out forwards infinite; */
    border-radius: 50%;
    position: absolute;
    left: 0px;
    top: 0px;
    text-align: center;
    font-size: 12px;
    color: #fff;
    line-height: 25px;
}
.qin17364 .circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: transparent;
    border: 1px solid #1155cc;
    opacity: .7;
}
.qin17364 .circle1 {
    animation: loading 3s linear infinite;   
}
.qin17364 .circle2 {
    animation: loading 3s linear 1s infinite;
}

@keyframes loading {
    100% {
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}