/* player.css */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  background: #181818;
}

#player {
  height: 100%;
  z-index: 1;
}

#overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; 
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.65);
  z-index: 999999999;
  flex-direction: column;
  text-align: center;
  font-size: 20px;
  color: white;
}

/* 美化SVG样式 */
#svgIcon {
  background: #222;
  border-radius: 50%;
  box-shadow: 0 0 15px #66ccff88;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

#loading #svgIcon {
  width: 100px;
  height: 100px;
}

#unmute #svgIcon {
  width: 100px;
  height: 100px;
  padding: 10px;
  box-shadow: 0 0 20px #66ccffcc;
}

#tips {
  position: absolute;
  z-index: 99999;
  right: 2%;
  bottom: 20%;
  background: #000000a6;
  font-size: 15px;
  color: #FFF;
  padding: 8px;
  border-radius: 4px;
}

#tips a {
  color: #66ccff;
  text-decoration: none;
  cursor: pointer;
  margin-left: 10px;
}

#tips #xx {
  margin-left: 0;
}