/ / triangle

.money-ul li.active:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-bottom: 13px solid red;
    border-left: 15px solid transparent;
}
Copy the code

/ / check

.money-ul li.active:before{
    content: ' ';
    position: absolute;
    width: 7px;
    height: 3px;
    background: transparent;
    bottom: 3px;
    right: 0px;
    border: 2px solid white;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-55deg);
    -ms-transform: rotate(-55deg);
    transform: rotate(-55deg);
    z-index: 9;
}
Copy the code