html {
  -ms-touch-action: none;
}

/* 不在全局设置 body 的 position 和 display */
/* 改为在 #GameDiv 容器内设置 */

#GameDiv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

#GameDiv canvas,
#GameDiv div {
  display: block;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
}

canvas {
  background-color: rgba(0, 0, 0, 0);
}

#GameDiv,
#Cocos3dGameContainer,
#GameCanvas {
  width: 100%;
  height: 100%;
}

/* 保留必要的全局样式，但去掉影响布局的属性 */
body222 {
  /* 只保留不影响布局的样式 */
  cursor: default;
  font-family: Helvetica, Verdana, Arial, sans-serif;
  padding: 0;
  border: 0;
  margin: 0;
 
}
