* {
	margin: 0;
	padding: 0;
	border: 0;
  }
  html, body {
	  -ms-touch-action: none
  }
  html {
	  background: rgba(0,0,0,0.85);
	  overflow: hidden
  }
  
  img {
	  border: 0
  }
  
  body {
	/* padding-top: 100px; */
	/*火狐*/
	-webkit-user-select: none;
	   -moz-user-select: none;
	/*webkit浏览器*/
		-ms-user-select: none;
	/*早期浏览器*/
			user-select: none; 
  
	background: #000;
	/*IE10*/
  
	 -khtml-user-select: none;
  }

  #gameContainer{
	position: absolute;
	top: 0;
	left: 0;
	transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
	-ms-transform-origin: 0 0
}

.container{
	background: url('../images/bg.jpg') center no-repeat;
}

.mouse2Div {
	cursor: pointer
}

/* .progress {
  margin: 0 auto;
} */

.hidden{
	display: none;
}

.backPos {
	position: absolute;
	left: 0;
	top: 0
}

.progressbar {
	position: absolute;
	top: 300px;
	left: 105px;
	width: 600px;
	border-radius: 8px;
	padding: 4px;
	background: rgba(0, 0, 0, 0.25);
	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
  	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
	border-collapse: separate
}
.progressbar>div {
	width: 0;
	height: 15px;
	border-radius: 10px;
	background:#86e01e;
	background: -moz-linear-gradient(top, hsl(120, 98%, 48%) 0, #86e01e 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #86e01e), color-stop(100%, #86e01e));
	background: -webkit-linear-gradient(top, #86e01e 0, #86e01e 100%);
	background: -o-linear-gradient(top, #86e01e 0, #86e01e 100%);
	background: -ms-linear-gradient(top, #86e01e 0, #86e01e 100%);
	background: linear-gradient(to bottom, #86e01e 0, #86e01e 100%)
}

.progress {
  padding: 4px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
}

.progress-bar {
  position: relative;
  height: 16px;
  border-radius: 4px;
  -webkit-transition: 0.1s linear;
  -moz-transition: 0.1s linear;
  -o-transition: 0.1s linear;
  transition: 0.1s linear;
  -webkit-transition-property: width, background-color;
  -moz-transition-property: width, background-color;
  -o-transition-property: width, background-color;
  transition-property: width, background-color;
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.1);
}

h1 {
	color: #ff4400;
	font-size: 35px;
	text-align:center;
	padding:15px;
}

span {
	color: #f4e93b;
	font-size: 16px;
}
strong {
	color: #f4e93b;
}
a, a:hover{
	text-decoration: none;
	color:#ff4400;
}
section {
	width: 900px;
	margin: auto;
}
footer {
	padding-top: 5px;
	width: 900px;
	margin:auto;
}
.info {
	color: #fff;
	/* width:170px; */
	float:left;
}
.timecounter {
	color: #fff;
	float: left;
	margin-left: 5px;
}
.piccell {
	display: block;
	background-repeat: no-repeat;
	float: left;
	position: relative;
}
.picbox {
	border: #cf712e solid 3px;
	border-radius: 5px;
	/* width: 602px; */
	float:left;
	margin:2px 10px -5px 5px;
	clear: both;
}

.progressbox {
	width: 800px;
	margin:5px;
	float: left;
}
.floatmask {
	position: absolute;
	z-index: 100;
}
.showborder {
	border: red solid 1px;
}
.btnbar {
	text-align: center;
	width: auto;
}

.button {
	width:165px;
	line-height: 50px;
	font-size: 20px;
	color: #fff;
	/* background: url('../images/input.png') center no-repeat; */
	border: #222 solid 2px;
	border-radius: 4px;
	background-color:#444;
	display: block;
	opacity:0.8;
	text-align: center;
	margin:10px 5px 10px 0px;
}
.hintBtn, .pauseBtn, .link-button{
	width:165px;
	line-height: 50px;
	font-size: 20px;
	color: #444;
	display: block;
	font-weight: bold;
	text-align: center;
	margin:20px 5px 20px 0px;
	background: url('../images/input.png') center no-repeat;
	cursor:pointer;
}
.col-sm-9,.col-sm-12{
	padding-right:5px;
	padding-left:5px;
	flex:auto;
}

.link-left{
	float:left;
}
.link-right{
	float:right;
}

.gamePause{
	background: url('../images/mask_back.jpg');
	width: 810px;
	height: 640px;
}


/*animation */
.animate-moveFromTop {
	animation: moveFromTop 2s ease both;
  }
@-webkit-keyframes moveFromTop{
	from {transform: translateX(100%); opacity: 0.5;}
	to {opacity: 1;}
}
@keyframes moveFromTop{
	from {transform: translateX(100%); opacity: 0.5;}
	to {opacity: 1;}
}