body { padding: 0; margin: 0 }
html,body{
    width: 100%;
    height: 100%;
    font-size: 0;
}
#unity-container { position: relative; background: url('01-bg-0001-1.jpg') no-repeat center; background-size: 100% 100%;margin: 0 auto; }
#unity-container.unity-desktop { width: 100%; height: 100%  }
/* #unity-container.unity-desktop { width: 430px; height: 932px; } */
#unity-container.unity-mobile { width: 100%; height: 100% }
#unity-canvas { background-color: transparent }
.unity-mobile #unity-canvas { width: 100%; height: 100% }
#unity-loading-bar { position: absolute; left: 50%; top: 20%; transform: translate(-50%, -50%); display: none; width: 90%;}
#unity-logo {
    width: 100%;
    max-width: 398px;
    height: 223px;
    background: url('01_ing_logo_01.png') no-repeat center;
    background-size: 100% 100%;
    margin: 0 auto;
}
#unity-progress-bar-empty { width: 80%; height: 12px;   background: url('01_img_lodingbarbg_01.png') no-repeat center;margin:0 auto; position: absolute; bottom: 200px;
    left: 50%;
    transform: translateX(-50%);}
#unity-progress-bar-full { width: 0%; height: 12px;  background: url('01_img_lodingbar_01.png') no-repeat center; background-size: cover;  }
#unity-footer { position: relative;display: none }
#unity-logo-title-footer { float:left; width: 102px; height: 38px; background: url('unity-logo-title-footer.png') no-repeat center;  }
#unity-build-title { float: right; margin-right: 10px; line-height: 38px; font-family: arial; font-size: 18px }
#unity-fullscreen-button { cursor:pointer; float: right; width: 38px; height: 38px; background: url('fullscreen-button.png') no-repeat center }
#unity-warning { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: white; padding: 10px; display: none }
.progress{
    position: absolute;
    right: 0;
    top: -28px;
    font-size: 18px;
    color: #f0c57b;
}
.loading-wrp {
    position: absolute;
    bottom: 101%;
    font-size: 14px;
    color: #FFF;
    opacity: 0.5; 
}
.loading-wrp>span{
    float: left;
    margin-bottom: 5px;
}

.loading,
.loading > div {
  position: relative;
  box-sizing: border-box;
}

.loading {
  display: inline-block;
  font-size: 0;
  color: #fff;

}

.loading.la-dark {
  color: #555;
}

.loading > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}

.loading {
  width: 54px;
  height: 18px;
}

.loading > div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  animation: ball-beat 0.7s -0.15s infinite linear;
}

.loading > div:nth-child(2n-1) {
  animation-delay: -0.5s;
}

@keyframes ball-beat {
  50% {
    opacity: 0.2;
    transform: scale(0.75);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* 仅仅在PC上生效 */
@media screen and (min-width: 800px) {
  body {
    /* background: url('pc-bg.jpg') no-repeat center;
    background-size: cover;
    background-position: center; */
    /* backdrop-filter: blur(10px); */
    /* -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -o-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: blur(10px); */
    /* 斜45度渐变，黑色到黄色 */
    background: #0f1112;
  } 
  #unity-container{
    height: 100%; /* 或其他固定高度 */
    aspect-ratio: 9 / 16;
    width: auto !important; /* 宽度将根据高度和宽高比自动计算 */
  }
}

