* {
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}
#demo { width: 100%; }
#demoAudio { width: 100%; }
#demoList { margin-top: 10px; }
#demoList .song {
  padding: 10px;
  color: #9f9f9f;
  border-bottom: 0;
  cursor: pointer;
  font-size: 14px;
}
#demoList .song:first-child {
  border-top: 1px solid #e1e1e1;
}
#demoList .song.now {
  font-weight: 500;
  color: white;
  background: #003200;
}
#demoList .song::before {
  content: "\2022";
  margin-right: 10px;
}
#demoList .song.now::before {
  content: "\27A4";
}