.episode-item {
    height: 38px;
    background-color: var(--dx-base1-color);

    position: relative;

}
.episode-item .icon-playing {
        width: 20px;
        height: auto;
        display: none;
        position: absolute;
        right: 0;
        bottom: 0;
        transform: scale(0.6);
    }
.episode-item.active .icon-playing {
            display: block;
        }
.episode-item a {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }