html {
  -ms-touch-action: none;
}

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 {
  -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: rgb(0, 0, 0);
  text-align: center;
  font-family: Helvetica, Verdana, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* fix bug: https://github.com/cocos-creator/2d-tasks/issues/791 */
}

#Cocos2dGameContainer {
  position: absolute;
  margin: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent; /* 确保背景透明 */
}

canvas {
  width: 100%;
  height: 100%;
  background: transparent; /* 让 canvas 透明显示背景 */
}

a:link, a:visited {
  color: #666;
}

a:active, a:hover {
  color: #666;
}

p.header {
  font-size: small;
}

p.footer {
  font-size: x-small;
}

/* 将 splash 设置为全屏显示背景 */
#splash {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./bg.09f77.png') repeat; /* 平铺背景图 */
  background-size: auto; /* 确保背景图不被拉伸 */
}

/* 在 splash 中添加一个 logo 图片 */
#logo {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 20%; /* 控制 logo 的最大高度 */
}

.loading-text {
  position: absolute;
  top: 50%; /* 设置文本位置在进度条正上方 */
  left: 50%;
  transform: translate(-50%, -50%);
  color: white; /* 白色文字 */
  text-shadow: 2px 2px 2px black; /* 黑色描边 */
  font-size: large; /* 可根据需要调整字体大小 */
  font-family: Helvetica, Verdana, Arial, sans-serif;
  font-weight: bold; /* 加粗字体 */
  white-space: nowrap; 
}

.progress-bar {
  position: absolute;
  left: 27.5%;
  top: 80%;
  height: 30px;
  padding: 2px;
  width: 45%;
  border-radius: 7px;
  box-shadow: 0 1px 5px #000 inset, 0 1px 0 #444;
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: 3px;
  transition: width .4s ease-in-out;
  background-color: #f6d10c;
}

.stripes span {
  background-size: 28px 28px;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);            
  animation: animate-stripes 1s linear infinite;             
}

.progress-percentage {
  position: absolute;
  top: 50%; /* 设置进度百分比文本位置 */
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: large;
  font-family: Helvetica, Verdana, Arial, sans-serif;
  font-weight: bold;
  text-shadow: 2px 2px 2px black; 
}

@keyframes animate-stripes {
  0% {background-position: 0 0;} 
  100% {background-position: 60px 0;}
}
