html {
  -ms-touch-action: none;
}

* {
  box-sizing: border-box;
}
body,
canvas,
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;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Remove spin of input type number */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  margin: 0;

  cursor: default;
  color: #888;
  background-color: #333;

  text-align: center;
  font-family: Helvetica, Verdana, Arial, sans-serif;

  display: flex;
  flex-direction: column;
}

canvas {
  background-color: rgba(0, 0, 0, 0);
}

#GameDiv {
  width: 0px;
  height: 0px;
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.5));
}

#Cocos3dGameContainer,
#GameCanvas {
  width: 100%;
  height: 100%;
}

#__box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background-color: black;
}

#__background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% center;
}

#__shadow {
  position: absolute;
  background-color: black;
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.5));
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#__fullmask {
  position: absolute;
  z-index: 9999;
  background-color: #C0C0C0;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: none;
  opacity: 0.5;
}

#__fulltip {
  color: red;
  text-align: center;
  float: center;
  line-height: 250px;
}

/* 
body {
  padding: 0;
  margin: 0;
} */
 /* -------- ----------------------------*/
 
#l_mask {
  position: relative;
  width: 720px;
  height: 1280x;
  overflow: hidden;
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.5));
}

#__loading {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
}

#gameplane {
  position: relative;
  background-size: 720px 1280px;
  background-position: center;
  z-index: 99;
}

#__enter {
  position: absolute;
  width: 276px;
  height: 84px;
  background-size: 100% 100%;
  top: 73%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}

#__logo {
  position: absolute;
  background-size: 100% 100%;
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
}

#l_label {
  position: absolute;
  width: 20%;
  height: 54%;
  background-size: 100% 100%;
  top: -45%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 44;
}

#__probox {
  position: absolute;
  width: 496px;
  height: 40px;
  top: 75%;
  left: 15%;
  /* transform: scale(1, 1); */
  transform-origin: 0 0;
}

#__p1 {
  position: absolute;
  border-image-slice: 0 20 0 20 fill;
  /* border-top: 20px solid; */
  border-right: 20px solid;
  /* border-bottom: 20px solid; */
  border-left: 20px solid;
  width: 100%;
  height: 100%;
}

#__p2 {
  position: absolute;
  left: 10px;
  border-image-slice: 0 14 0 14 fill;
  /* border-top: 20px solid; */
  border-right: 14px solid;
  /* border-bottom: 20px solid; */
  border-left: 14px solid;
  width: 0%;
  height: 100%;
}