.clm-link {
    position: relative;
}

.clm-link::after {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    top: -20px;
    right: -6px;
    transform: rotate(30deg);
    background-image: url(../../../icon/new.svg);
    background-repeat: no-repeat;
    background-position: center;
    animation: fuwafuwa .8s ease-in-out infinite alternate-reverse;
}

.clm-link::before{
    content: '';
    width: 18px;
    height: 13px;
    background-color: #000;
    position: absolute;
    right: 0;
    top: -11px;
}


@keyframes fuwafuwa {
    0% {
        top: -20px;
    }

    100% {
        top: -22px;
    }
}