.player
{
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 13px 20px 0 20px;
    box-sizing: border-box;
    width: var(--content-width);
    height: var(--player-height);
    background-color: white;
    border-top: 1px solid var(--border-color);
}

.player .items
{
    display: flex;
    gap: 16px;
}
.player .items .item
{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.player .items .item:nth-child(2)
{
	margin-left: 10px;
}
.player .items .item .item-title
{
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
}
.player .items .item .item-image
{
    display: block;
    width: 90px;
    height: 90px;
    object-fit: cover;
    margin-top: auto;
}
.player .items .item .item-image.now
{
    width: 100px;
    height: 100px;
}



.player .controls
{
	display: flex;
	align-items: center;
    margin-top: 24px;
    gap: 25px;
}
.player .controls button
{
    appearance: none;
    border: none;
    background: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.player .controls button img
{
    display: block;
    width: 35px;
    height: 35px;
}
.player .controls button[state="0"] img:not([state="0"]),
.player .controls button[state="1"] img:not([state="1"]),
.player .controls button[state="2"] img:not([state="2"])
{
    display: none;
}

.player .controls button img[state="2"]
{
    animation: spin 1s linear infinite;
}
@keyframes spin
{
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.player .controls .meta
{
    display: flex;
    flex-direction: column;
}
.player .controls .meta .meta-title
{
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
}
.player .controls .meta .meta-artist
{
    font-size: 16px;
    line-height: 22px;
}