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 {
    position: fixed;
    left: 0;
    top: 120px;
    z-index: 999999;
    
  }
  
  
  #ctrl-btn .btn-box{
    background: #fff;
    border-radius: 0px 50px 50px 0px;
    padding: 7px;
    align-items: center;
    box-shadow: 0px 2px 4px 0px rgba(19, 182, 162, 1);
    background-color: rgba(255, 255, 255, 0.8);
  }
  
  
  #ctrl-btn img {
    width: 30px;
    height: auto;
  }
  #ctrl-btn .iconfont {
    color: #E05E9F;
  }
  #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: flex;
    align-items: center;
  }
  #ctrl-panel {
    width: 88%;
    margin-left: calc((100% - 88%) / 2);
  }
  #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 {
    display: block;
  }
  