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 {
	/* 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;

	/* fix bug: https://github.com/cocos-creator/2d-tasks/issues/791 */
	/* overflow cannot be applied in Cocos2dGameContainer, 
  otherwise child elements will be hidden when Cocos2dGameContainer rotated 90 deg */
	overflow: hidden;
}

#Cocos2dGameContainer {
	position: absolute;
	margin: 0;
	left: 0px;
	top: 0px;

	display: -webkit-box;
	-webkit-box-orient: horizontal;
	-webkit-box-align: center;
	-webkit-box-pack: center;
}

canvas {
	background-color: rgba(0, 0, 0, 0);
}

a:link,
a:visited {
	color: #666;
}

a:active,
a:hover {
	color: #666;
}

p.header {
	font-size: small;
}

p.footer {
	font-size: x-small;
}

#icon {
	position: absolute;
	left: -27px;
	top: -89px;
	width: 50%;
	height: 50%;
	background: url(./0_logo.png) no-repeat center;
	background-size: 52%;
}

#splash {
	position: absolute;
	top: 0%;
	left: 0;
	width: 100%;
	height: 100%;
	background: #171717 url(./bg.9e80b.jpg) no-repeat center;
	background-size: auto 100%;
}

/* 进度条和加载文本的父元素,通过js使之和背景图使用相同的位置大小,以确保子元素位置是相对背景图的位置*/
.progress {
	/* 为了子元素的absolute,此处设为relative */
	position: relative;
}
/* 进度条框 */
.progress-bar {
	position: absolute;
	/* 居中 */
	left: 50%;
	text-align: left;/* 子元素锚点在左 */
	transform: translate(-50%,0px);
	/* 将进度条移动到居中位置,基于这个再用transform调整位置,这个50%不可改,否则会随窗口高度变化而变化*/
	top: 50%;
	/* 背景颜色 */
	/* background-color: #9a9493; */
	background: #00000000 url(./bg_1.52fad.png) no-repeat center;
	background-size: contain;
	/* 矩形圆角 */
	/* border-radius: 20px; */
	/* 边框 */
	/* border-color: white; */
	/* border-style: solid; */
}
:root {
  --width:0%;
}

/* 进度条 */
.progress-bar span {
	/* 块*/
	display: block;
	/* 宽高位置调整 */
	height: 100%;
	/* 矩形圆角 */
	/* border-radius: 5px; */
	/* 矩形 */
	/* background-color: #3dc5de; */
	/* background-image: linear-gradient(#fdc623 10%,#fb9900 15%,#fb9900 90%, #fdc623 100%); */
	/* background-image: radial-gradient(#fb9900 50%, #fdc623); */
	background: #00000000 url(./bg_2.57a78.png) no-repeat left;
	background-size: cover;
}
.progressEffect{
	/* 块*/
	display: inline-block;
	/* 居中 */
	transform: translate(0px,0px);
	background: #00000000 url(./bg_3.163a4.png) no-repeat right;
	background-size: contain;
	margin-top: 0px;
}
/* "加载中"文本 */
.progressText {
	position: absolute;
	/* 居中 */
	left: 50%;
	transform: translate(-50%,-50%);
	/* 常改变量 */
	top: -115%;
	color: #a9e8ff;
	font-weight: bold;
	vertical-align: middle;
	/* text-shadow: 0px 0px 3px #fefe00; */
}
