.audio-player {
    width: 300px;
    height: 65px;
    border: 1px solid black;
    overflow: hidden;
    white-space: nowrap;
    background: white;
}
#audio-avatar {
    height: auto;
    width: auto;
    max-height: 100%;
    margin-right: 10px;
    float: left;
}
.audio-info {
    overflow: hidden;
    position: relative;
}
#audio-title {
    display: inline-block;
    padding-left: 100%;
    animation: showFullTitle 10s linear infinite;
}
@keyframes showFullTitle {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}
.audio-progress {
    display: inline-block;
}
.audio-control {
    margin-right: 5px;
    float: right;
}