﻿.load-container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: inline;
  background-color: black;
  color: #fff;
}
.loadTitle{
  color: #fff;
  font-size: 30px;
  margin-top: 150px;
}
.loadProgress{
  color: #fff;
  font-size: 20px;
  margin-top: 10px;
}
.loaderAnimate {
	position: absolute;
	margin-top: 35vh;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 50px;
	height: 50px;
}

.loaderAnimate .circle {
	position: absolute;
	width: 38px;
	height: 38px;
	opacity: 0;
	transform: rotate(225deg);
	animation-iteration-count: infinite;
	animation-name: orbit;
	animation-duration: 3.5s;
}

.loaderAnimate .circle:after {
	content: '';
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 5px;
	background: #fff;
	box-shadow: 0 0 9px rgba(255, 255, 255, .7);
	visibility: visible;
}

.loaderAnimate .circle:nth-child(2) {
	animation-delay: 240ms;
}

.loaderAnimate .circle:nth-child(3) {
	animation-delay: 480ms;
}

.loaderAnimate .circle:nth-child(4) {
	animation-delay: 720ms;
}

.loaderAnimate .circle:nth-child(5) {
	animation-delay: 960ms;
}
@keyframes orbit {
	0% {
		transform: rotate(225deg);
		opacity: 1;
		animation-timing-function: ease-out;
	}

	7% {
		transform: rotate(345deg);
		animation-timing-function: linear;
	}

	30% {
		transform: rotate(455deg);
		animation-timing-function: ease-in-out;
	}

	39% {
		transform: rotate(690deg);
		animation-timing-function: linear;
	}

	70% {
		transform: rotate(815deg);
		opacity: 1;
		animation-timing-function: ease-out;
	}

	75% {
		transform: rotate(945deg);
		animation-timing-function: ease-out;
	}

	76% {
		transform: rotate(945deg);
		opacity: 0;
	}

	100% {
		transform: rotate(945deg);
		opacity: 0;
	}
}
.icon{
	height: 100px;
	margin-top: 40vh;
}

#mask {
	position:absolute;
	z-index:9999;
	background-color:#C0C0C0;
	height:200px ;
	width:200px;
	left: 100px;
	top: 100px;
	display :none;
	opacity:0.5;
}
 
#tip{
	color:red;
	text-align:center;
	float:center;
	line-height:20px;
	font-size:10px;
}

.GameCanvas{
	background-color: rgb(9, 255, 0);
	/* display: none; */
}
.Cocos3dGameContainer{
	left: 0;
	top:  0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
}
.GameDiv{
	left: 0;
	top:  0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 200;
}

.gameMask{
	position: absolute;
	left: 0;
	top: 0;
	width: 100vw;
	height: 200vh;
	z-index: 100;
	display: block;
	background-color: black;
}

.gameBody{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	position: relative;
	left: 0;
	z-index: 999999;
	width: 100vw;
	height: 100vh;
	background-color: rgb(0, 0, 0);
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}

.bg {
	display: flex;
	background-size: cover; /* 确保背景图片铺满整个屏幕 */
	background-position: center; /* 使背景居中 */
	filter: blur(30px); /* 添加模糊效果，10px可以根据需要调整 */
	height: 100vh; /* 设置背景高度为整个屏幕高度 */
	width: 110vw; /* 设置背景宽度为整个屏幕宽度 */
	position: absolute; /* 固定背景图片，使其不随页面滚动 */
	top: 0px;
	left: 0px;
	z-index: 1; /* 确保背景图片在内容的后面 */
	margin-left: 0px;
}
/* html, body {
    height: 100%; 
	width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
} */
/* iOS 修复 100vh 的问题 */
@supports (-webkit-touch-callout: none) {
	.bg {
		width:  -webkit-fill-available; /* 使用这个来替代 100vh，在 iOS 上更加可靠 */
	}
}


.ver{
	position: fixed;
	bottom: 1px;
	font-size: 8px;
	color: gray;
	z-index: 99999;
	width: 100%;
	display: flex;
	justify-content: space-between;
}
