<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">playlist-item
{
   display: flex;
   align-items: center;
   padding-bottom: 8px;
   margin-bottom: 10px;
   border-bottom: 1px solid #E9E9E9
}
playlist-item &gt; img
{
   width: 40px;
   height: 40px;
   border-radius: 5px;
   object-fit: cover;
}
playlist-item &gt; .song-info
{
   flex: 1;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   height: 46px;
}
playlist-item &gt; .song-info &gt; .title,
playlist-item &gt; .song-info &gt; .artist
{
   margin: 0px 10px;
   font-size: 16px;
   line-height: 21px;

   display: -webkit-box;
   -webkit-line-clamp: 1;
   -webkit-box-orient: vertical;
   overflow: hidden;
   text-overflow: ellipsis;
}
playlist-item &gt; .song-info &gt; .title
{
   font-weight: 700;
}
playlist-item &gt; .song-info &gt; .artist
{
   font-weight: 300;
}
playlist-item &gt; regular-icon
{
   display: none;
   margin-right: 20px;
}
playlist-item &gt; .time
{
   font-size: 13px;
   font-weight: 500;
   line-height: 16px;
}

@media screen and (min-width: 744px)
{
   playlist-item
   {
      color: var(--kl-text-color-light);
   }
}</pre></body></html>