/* CSS Document */
@charset  "utf-8";

*{
	margin: 0;
	padding: 0;
	font-family: "微软雅黑";
}
a{
	text-decoration: none;
}
input::-webkit-input-placeholder,
-moz-input-placeholder,
-ms-,input-placeholder,
-o-input-placeholder
 { /* WebKit*/  
    color: #fff; /*改变placeholder中颜色*/
}  
ul,ol li{
	list-style:none;
	
	
	}
img{
	border:0;
}
body{
    background:url(../images/bg.png) no-repeat;
	background-color: rgb(28, 119, 172);
	animation:go 100s linear infinite;
}
	@keyframes go{
		
		0%{
			background-position:300 0; 
			}
			50%{
				
				background-position:500px;
				}
			
		100%{
			background-position:300 0; 
			}
		}
.header{
	min-width: 1200px;
	height: 62px;
	background: #f7f8f8;
	border-bottom: 1px solid #d6dfea;
}
.header .inner{
	width: 1160px;
	height: 62px;
	padding-left:20px;
	padding-right:20px;
	margin: 0 auto;
}
.header .inner .logo{
   width: 182px;
   height: 62px;    
   float: left;
}
.header .inner .logo a{
	display: block;
	width: 182px;
    height: 62px; 
    
}
.header .inner .headlink{
	float: right;
	font-size: 12px;

}
.header .inner .headlink a{
	font-size: 12px;
	color: #1d5494;
	line-height: 62px;
	
}
/*内容*/
.middle{
	min-width:1200px;
	height:600px;
	margin-top:30px;
	color:#FFF;
	
	}
.middle .cont{
	margin:auto;
	width:1160px;
	height: 600px;
	box-shadow:2px 0px 20px 1px #333;
	padding-left:20px;
	padding-right:20px;
	position:relative;
	
	/*background:linear-gradient(#c0cdd9,#FFF);*//*背景渐变*/
}

/*填写*/
.middle .cont ul{
	width:100%;
	height:50px;
	line-height:50px;
	color:#FFF;
}
.middle .cont ul li{
	float:left;
}
.middle .cont ul li span{
	width:200px;
	height:5px;
	display:block;
	background:#0FF;
	opacity:0.5;
	float:left;
	margin-top:22px;
	border-radius:20px;
	margin-right:5px;
	margin-left:5px;
}

.middle .cont .user h3{
	color:#fff;
	height:50px;
	line-height:50px;
}

.middle .cont .user{
	width:800px;
	height:auto;
	padding-left:5px;

	
}
.middle .cont .user .input{
	margin-top:20px;
}
.middle .cont .user input{
	width:200px;
	height:40px;
	background:none;
	outline:none;
	border:1px solid #FFF;
	padding-left:10px;
	padding-right:10px;
	color:#FFF;
}
.middle .cont .user label{
	width:88px;
	height:40px;
	display:block;
	line-height:40px;
	float:left;
}
.middle .cont .user .submit{
	width:220px;
	border:0px;
	background:rgba(250,191,31,0.8);
	border-radius:10px;
	color:#FFF;
	font-weight:bold;
	cursor:pointer;
	transition:all 0.2s;
}
.middle .cont .user .submit:hover{
	background:#fabf1f;
}
/*填写 end*/

 /*验证*/
 .middle .cont .validate{
	 width:800px;
	 height:auto;
	 padding-left:5px;
	 position:absolute;
	 left:20px;
	 top:50px;
	 display:none;
	 
	 
	 
	 }
.middle .cont .validate h3{
	  width:auto;
	  height:50px;
	  line-height:50px;
	  
	  }
.middle .cont .validate p{
	        padding-left:88px;
			height:50px;
			margin-top:14px;
			line-height:40px;
}
 .middle .cont .validate #yz{
	 width:200px;
	 height:40px;
	 background:none;
	 padding-left:10px;
	 padding-right:10px;
	 border:1px solid #FFF;
	 outline:none;
	 color:#FFF;
	 margin-top:50px;
	 
	 }
.middle .cont .validate .wanc,.enter{
	width:220px;
	height:40px;
	border:0px;
	background:rgba(250,191,31,0.8);
	border-radius:10px;
	color:#FFF;
	font-weight:bold;
	cursor:pointer;
	transition:all 0.2s;
	outline:none;
}
.middle .cont .validate .wanc:hover{
	background:#fabf1f;
}
.middle .cont .validate .enter:hover{
	background:#fabf1f;
}

 /*验证 end*/
 /*完成*/
 .middle .cont .complete{

	 width:800px;
	 height:200px;
	 position:absolute;
	 left:200px;
	 top:100px;
	 margin:auto;
	 text-align:center;
	 line-height:200px;
	 font-size:24px;
	 display:none;
	 	 }
.middle .cont .complete img{
		  vertical-align:middle;
		  }
 
 .middle .cont  .dj{
    width:220px;
	height:40px;
	border:0px;
	background:rgba(250,191,31,0.8);
	border-radius:10px;
	line-height:40px;
	color:#FFF;
	margin-left:300px;
	font-weight:bold;
	cursor:pointer;
	transition:all 0.2s;
 }
  .middle .cont  .dj:hover{
	  background:#fabf1f;
	  }
 /*完成 end*/
 
/*底部*/
.foot{
	min-width:100%;
	height:auto;
	background:#d9e6f7;
	text-align:center;
	color:#1d5494;
	position:fixed;
	bottom:0px;
	}
