body {
  padding: 0;
  margin: 0;
}
#unity-container {
  position: absolute;
}

/*显示容器铺满body*/
#unity-container.unity-desktop {
  position: fixed;
  width: 100%;
  height: 100%;
}

/*画布的背景图片,替换进度显示界面*/
#unity-canvas {
  background: #292c3a;
}

/*画布铺满显示容器*/
.unity-desktop #unity-canvas {
  width: 100%;
  height: 100%;
}

/*进度加载条*/
#unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

/*进度条背景*/
#unity-progress-bar-empty {
  width: 750px;
  height: 20px;
  margin-top: 10px;
  margin-left: 6.5px;
  background: url("progress-bar-empty.png")
  no-repeat center;
}

/*进度信息填充*/
#unity-progress-bar-full {
  width: 0%;
  height: 20px;
  margin-top: 10px;
  background: url("progress-bar-full.png")
  no-repeat center;
}

/*警告信息*/
#unity-warning {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%);
  background: white;
  padding: 10px;
  display: none;
}
