@keyframes audio-play {
    0% {
        background-position: 0 center;
    }
    100% {
        background-position: -39px center;
    }
}

.audio-container {
    position: relative;
    display: flex;
    // width: 80px;
    height: 20px;
    align-items: center;
    justify-content: flex-start;

    &:active {
        opacity: 0.7;
    }

    &.play {
        .audio-status {
            animation: audio-play 1.5s steps(3) infinite;
        }
    }

    &.reverse {
        justify-content: flex-end;
    }

    .audio-status {
        display: inline-block;
        width: 13px;
        height: 14px;
        background: url(https://static.jk.cn/T1aLJLBXZv1RCvBVdK) no-repeat -26px center;
        background-size: 39px auto;
        -webkit-backface-visibility: hidden;
        &.reverse {
            transform: rotate(-180deg);
        }
    }

    .audio-duration {
        font-size: 24rpx;
        color: #666666;
        // position: absolute;
        // top: 12px;
        // left: 50px;
        margin-left: 5px;
        &.reverse {
            // right: auto;
            // right: 50px;
            margin-right: 5px;
            margin-left: 0;
        }
    }
}

.cable-message-item {
    .bubble--alt {
        .audio-status {
            transform: rotate(-180deg);
        }
        .audio-duration {
            left: -50px;
        }
    }
}

.unknow-tip{
    font-size: 30rpx;
}