@-webkit-keyframes h5p-roll {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes h5p-roll {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.h5p {
  background: #fff;
  box-shadow: 0 0 10px gray;
  position: relative;
}
.h5p-button {
  cursor: pointer;
}
.h5p-button:hover,
.h5p-button.h5p-active {
  color: dodgerblue;
}
.h5p-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.h5p-image {
  position: absolute;
}
.h5p-image img {
  width: 100%;
  height: 100%;
}
.h5p-title {
  font-weight: bold;
}
.h5p-bar {
  height: 2px;
  background: silver;
  position: relative;
}
.h5p-played {
  position: absolute;
  top: 0;
  height: 2px;
  background: brown;
}
.h5p-playlist {
  display: none;
  max-height: 200px;
  border-top: 1px dashed gray;
  padding: 8px 16px;
  overflow-y: auto;
}
.h5p-playlist > div {
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #1a1a1a;
  cursor: pointer;
}
.h5p-playlist > div.h5p-active {
  color: dodgerblue;
  font-weight: bold;
}
.h5p-playlist > div:hover {
  color: orange;
}
.h5p-normal {
  border-radius: 3px;
  max-width: 400px;
  font-size: 16px;
}
.h5p-normal .h5p-image {
  width: 130px;
  height: 130px;
  left: 10px;
  top: 10px;
  -webkit-animation: h5p-roll 8s linear infinite;
          animation: h5p-roll 8s linear infinite;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.h5p-normal .h5p-image img {
  border-radius: 50%;
}
.h5p-normal .h5p-roll {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.h5p-normal .h5p-toolbar {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
}
.h5p-normal .h5p-toolbar .h5p-button {
  margin-left: 5px;
}
.h5p-normal .h5p-info {
  height: 70px;
  padding: 30px 10px 0 150px;
  text-align: center;
}
.h5p-normal .h5p-control {
  padding: 0 10px 20px 150px;
  text-align: center;
}
.h5p-normal .h5p-control .h5p-button {
  margin: 10px;
  font-size: 30px;
}
.h5p-normal .h5p-artist {
  height: 20px;
  font-size: 10px;
}
.h5p-normal .h5p-lyric {
  height: 24px;
  text-align: center;
  color: brown;
  font-size: 12px;
}
.h5p-normal .h5p-progress-wrap {
  padding: 5px 10px;
}
.h5p-normal .h5p-progress {
  position: relative;
  padding: 4px 0;
}
.h5p-normal .h5p-cursor {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0;
  margin-left: -5px;
  border: 1px solid silver;
  border-radius: 50%;
  background: white;
  cursor: pointer;
}
.h5p-normal .h5p-time {
  position: absolute;
  top: -20px;
  right: 0;
  font-size: 10px;
}
.h5p-simple {
  max-width: 300px;
  height: 36px;
  border-radius: 2px;
}
.h5p-simple .h5p-image {
  width: 34px;
  height: 34px;
}
.h5p-simple .h5p-toolbar,
.h5p-simple .h5p-lyric,
.h5p-simple .h5p-time {
  display: none;
}
.h5p-simple .h5p-info {
  position: absolute;
  top: 0;
  left: 40px;
  right: 72px;
  line-height: 34px;
  font-size: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.h5p-simple .h5p-info > * {
  margin: 0 5px;
}
.h5p-simple .h5p-control {
  position: absolute;
  top: 0;
  right: 5px;
  line-height: 34px;
}
.h5p-simple .h5p-control .h5p-button {
  display: inline-block;
  margin: 0 5px;
  font-size: 18px;
}
.h5p-simple .h5p-title,
.h5p-simple .h5p-artist {
  display: inline;
}
.h5p-simple .h5p-progress-wrap {
  position: absolute;
  bottom: 0;
  width: 100%;
}
