html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  height: 100%;
}
body #game-container {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 0;
}
body #game-container iframe {
  width: 100%;
  height: 100%;
}
#ctrl-btn {
  background: #fff;
  padding: 7px;
  position: fixed;
  right: 0;
  top: 120px;
  z-index: 999999;
  border-radius: 50px 0 0 50px;
  align-items: center;
}
#ctrl-btn img {
  width: 30px;
  height: auto;
}
#ctrl-btn .iconfont {
  color: #aaa;
  padding-left: 3px;
  font-size: 13px;
}
#mask {
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
}
#mask.show {
  display: block;
}
#ctrl-panel {
  z-index: 9999999999;
  position: fixed;
  bottom: 0;
  width: 88%;
  height: fit-content;
  background-color: #fff;
  margin-left: calc((100% - 88%) / 2);
  bottom: -250px;
  transition: bottom ease-in-out 0.4s;
  border-radius: 9px 9px 0px 0px;
  padding: 20px 15px;
  box-sizing: border-box;
}
#ctrl-panel .ctrl-panel-head {
  display: flex;
  justify-content: space-between;
}
#ctrl-panel .ctrl-panel-head .iconfont {
  background: #FFFFFF;
  box-shadow: 0px 2px 10px 0px rgba(206, 206, 206, 0.5);
  border-radius: 6px;
  color: #11B7A4;
  display: inline-block;
  font-size: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#ctrl-panel .ctrl-panel-head .icon-guanbi1 {
  font-size: 18px;
}
#ctrl-panel .ctrl-panel-head .ctrl-panel-head-left {
  display: flex;
}
#ctrl-panel .ctrl-panel-head .ctrl-panel-head-left .icon-home1 {
  margin-right: 10px;
  font-size: 24px;
}
#ctrl-panel .ctrl-panel-list {
  margin-top: 20px;
  background: #FFFFFF;
  box-shadow: 0px 2px 10px 0px rgba(206, 206, 206, 0.5);
  border-radius: 6px;
  padding: 8px;
}
#ctrl-panel .like-count {
  display: flex;
  flex-direction: column;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #11B7A4;
  background: #FFFFFF;
  box-shadow: 0px 2px 10px 0px rgba(206, 206, 206, 0.5);
  border-radius: 6px;
  margin-top: 10px;
  font-size: 12px;
}
#ctrl-panel.panel-show {
  bottom: 0;
}
