* {
	margin: 0;
	padding: 0;
}

body {
	background: url(../img/kjs-bg1.jpg) no-repeat center center;
	background-size: cover;
	width:100%;
	height: 100%;
	background-attachment: fixed;
}
body:before {
  content: ' ';
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(../img/kjs-bg1.jpg) center 0 no-repeat;
  background-size: cover;
}

.contanier {
	width: 100%;
	height: auto;
}

header {
	width: 100%;
	height: 50px;
	background-color: #000;
	position: fixed;
	top: 0;
	z-index: 10;
}

header span {
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	line-height: 50px;
	margin-left: 20px;
}
header label{
	display: block;
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	float: right;
	margin-right: 20px;
	line-height: 50px;
}
.firstPage{
	width: 100%;
	height: 600px;
	/*opacity: 0.2;
	background-color: black;*/
	text-align: center;
}
.firstPage h1{
	color: #fff;
	font-weight: bold;
	margin-top: 150px;
	font-size: 40px;
	margin-bottom: 70px;
}
.firstPage img{
	margin-top: 250px;
	width: 50px;
	height: 50px;
	margin-bottom: 30px;
}
.firstPage span{
	color: #fff;
	/*border: 1px solid #fff;*/
	padding: 5px 8px;
}
.firstPage a{
	text-decoration: none;
}
.more{
	/*margin-top: 170px;*/
	/*width: 100%;*/
	position: relative;
	display: block;
	text-align: center;
	margin-left: -10px;
	/*border: 1px solid #fff;*/
	width: 100px;
	height: 100px;
	margin: 70px auto;
}
.moreOne{
	position: absolute;
	color: #fff;
	font-size: 40px;
	left: 50%;
	margin-left: -13px;
	top: 0px;
	animation: move 2s linear 0.3s infinite;
}
.content1{
	width: 100%;
	min-height: 800px;
	opacity: 0.8;
	background-color: #fff;
	border-bottom: 1px solid #ccc;
}
.colContent{
	/*margin-left: 20px;*/
	padding-left: 40px;
	font-size: 20px;
	margin-bottom: 40px;
	padding-top: 0px;
	/*text-align: center;*/
}
.colTitle{
	text-align: center;
	font-size: 30px;
	padding: 100px 0;
}
.imgObj{
	width: 150px;
	height: 150px;
	/*margin-top: -170px;*/
}
.detailTitle{
	/*text-align: center;*/
	font-size: 20px;
	margin-bottom: 20px;
}
.detailContent{
	/*text-align: center;*/
}
.search a{
	color: #fff;;
}
.search{
	cursor: pointer;
}


/*footer*/
footer{
	width: 100%;
	height: 50px;
	background-color: #000;
	text-align: center;
	line-height: 50px;
}
footer p{
	color: #fff;
}
footer a{
	text-decoration: none;
	color: #fff;
}


@keyframes move {
		0% {
			top: 0;
		}

		50% {
			top: 20px;
		}

		100% {
			top: 0;
		}
	}