@media screen and (max-width: 1200px) {
    .cebianlan {
        height: 100px;
        position: fixed;
        right: 10px;
        top: 0;
        bottom: 0;
        z-index: 999;
        margin: auto;
    }

    .cebianlan .img-box {
        width: 50px;
        height: 50px;
        border-radius: 5px;
        margin: 10px 0;
        animation: shakeHorizontal 1s infinite;
        cursor: pointer;
    }

    .cebianlan .img-box img {
        width: 100%;
        height: 100%;
        border-radius: 5px;

    }

    .cebianlan .img-box span {
        width: 18px;
        height: 18px;
        line-height: 18px;
        display: inline-block;
        background-color: red;
        border-radius: 50%;
        font-size: 14px;
        color: #fff;
        position: absolute;
        top: -6px;
        right: -6px;
        margin: auto;
        text-align: center;
    }
}

@media screen and (min-width: 1200px) {
    .cebianlan {
        height: 200px;
        position: fixed;
        right: 30px;
        top: 0;
        bottom: 0;
        z-index: 999;
        margin: auto;
    }

    .cebianlan .img-box {
        width: 80px;
        height: 80px;
        border-radius: 10px;
        margin: 20px 0;
        animation: shakeHorizontal 1s infinite;
        cursor: pointer;
    }

    .cebianlan .img-box img {
        width: 100%;
        height: 100%;
        border-radius: 10px;

    }

    .cebianlan .img-box span {
        width: 18px;
        height: 18px;
        line-height: 18px;
        display: inline-block;
        background-color: red;
        border-radius: 50%;
        font-size: 14px;
        color: #fff;
        position: absolute;
        top: -3px;
        right: -3px;
        margin: auto;
        text-align: center;
    }
}


@keyframes shakeHorizontal {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(5deg);
    }
}