html {
	-ms-touch-action: none;
}

body, canvas, div {
	display: block;
	outline: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);

	-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: #111111;
	background-color: #111111;

	text-align: center;
	font-family: Helvetica, Verdana, Arial, sans-serif;

	display: flex;
	flex-direction: column;
}

#Cocos2dGameContainer {
	position: absolute;
	margin: 0;
	overflow: hidden;
	left: 0px;
	top: 0px;
	width: 0px;
	height: 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: #111111;
}

a:active, a:hover {
	color: #111111;
}

p.header {
	font-size: small;
}

p.footer {
	font-size: x-small;
}

#splash {
	position: fixed;
	top: 1000%;
}

.progress-bar {
	background-color: #1a1a1a;
	position: relative;
	left: 17%;
	top: -10%;
	height: 2.5%;
	/*padding: 0.35%;*/
	width: 66%;
	/*margin: 0 -175px;         */
	border-radius: 15px;
	box-shadow: 0 1px 5px #000 inset, 0 1px 0 #444;
}

.progress-bar span {
	display: block;
	height: 100%;
	border-radius: 12px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;
	transition: width .4s ease-in-out;
	/*下面的颜色值具体设置*/
	background-color: #e7b152;
	/*text-align: right;*/
}

.stripes span {
	background-size: 20px 30px ;
	background-image: linear-gradient(0deg,#275db1,#193c73,#a3b9dc);
}

@keyframes animate-stripes {
		0% {background-position: 0 0;} 100% {background-position: 60px 0;}
}

#preloading {
	position: fixed;
	top: 50%;
	width: 100%;
	height: 100%;
}

.sk-three-bounce {
	margin: 40px auto;
	width: 80px;
	text-align: center; }
	.sk-three-bounce .sk-child {
		width: 20px;
		height: 20px;
		background-color: #FA7C01;
		border-radius: 100%;
		display: inline-block;
		-webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
						animation: sk-three-bounce 1.4s ease-in-out 0s infinite both; }
	.sk-three-bounce .sk-bounce1 {
		-webkit-animation-delay: -0.32s;
						animation-delay: -0.32s; }
	.sk-three-bounce .sk-bounce2 {
		-webkit-animation-delay: -0.16s;
						animation-delay: -0.16s; }

@-webkit-keyframes sk-three-bounce {
	0%, 80%, 100% {
		-webkit-transform: scale(0);
						transform: scale(0); }
	40% {
		-webkit-transform: scale(1);
						transform: scale(1); } }

@keyframes sk-three-bounce {
	0%, 80%, 100% {
		-webkit-transform: scale(0);
						transform: scale(0); }
	40% {
		-webkit-transform: scale(1);
						transform: scale(1); } }