*{
	margin:0;
	padding: 0;
}
#game{
	width: 320px;
	height: 568px;
	margin:auto;
	overflow: hidden;
}
#gameStart{
	width: 100%;
	height: 100%;
	background: url("../image/ks.png");
	position: relative;
	display: block;
}
#gameStart span{
	display: block;
	width: 160px;
	height: 40px;
	line-height: 32px;
	background: #ccc;
	text-align: center;
	border:4px solid #666;
	box-sizing: border-box;
	font-size: 20px;
	background: #C2C8C9;
	cursor: pointer;
	position: absolute;
	left: 80px;
	bottom:200px; 
}
#gameStart span:hover{
	color: white;
	transition: all .3s;
}

#gameEnter{
	width: 100%;
	height: 100%;
	background: url(../image/background_1.png);
	position: relative;
	display: none;
}
#gameOverPanel{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 190px;
	background: #D7DDDE;
	border: 1px solid #808080;
	border-radius: 5px;
	font-size: 14px;
	display: none;
}
#gameOverPanel .header{
	padding: 10px;
	border-bottom: 1px solid #808080;
}
#gameOverPanel #endScore{
	text-align: center;
	padding: 20px;
	border-bottom: 1px solid #808080;
	font-weight: bolder;
	font-size: 24px;
}
#gameOverPanel #goNext{
	padding: 5px 20px;
    margin: 10px auto;
    background: #b5bdbe;
    border: none;
    box-shadow: none;
    width: 70px;
    margin-left: 60px;
    cursor: pointer;
}
#gameOverPanel #goNext:hover{
	background: #B2B9B9;
}
#myPlane{
	width: 66px;
	height: 80px;
	position: absolute;
	left: 127px;
	bottom: 0;
	cursor: pointer;
}

#bullets,#enemys{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top:0;
}
.bullet{
	width: 6px;
	height: 14px;
	position: absolute;
/*	left: 157px;
	top: 474px;*/
}
.e{
	position: absolute;
}
#scores{
	width: 100%;
	height: 40px;
	line-height: 40px;
	padding: 0 20px;
	font-size: 24px;
	font-weight: bolder;
}
