.banner{
	position: relative;
}
.banner .title{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
}
.banner .title h4{
	font-weight: bold;
	font-size: 2rem;
	color: #fff;
	line-height: 2.5rem;
}
.banner .title form div{
	margin: 0.5rem 0;
}
.banner .title form div label{
	margin:0 0.5rem;
}
.banner .title form div label span{
	color: #fff;
	font-size: 0.6rem
}
.banner .title form div.chazhao{
	position: relative;
	width: 350px;
	height: 26px;
	border: 2px solid #fff;
	border-radius:15px ;
	display: flex;
	align-items: center;
	justify-content: space-between;
	overflow: hidden;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 0 0.5rem;
	background: #fff;
}
.banner .title form div .sub{
	width: 20px;
	height: 20px;
	background: url(../images/chazhao.png) no-repeat center;
	float:left;
	cursor: pointer;
}
.banner .title form div .txt{
	width: 300px;
	height: 26px;
	float: right;
	background: rgba(0,0,0,0);
	color: #999;
	font-size: 14px;
}


.main-wrapper{
	width: 100%;
}
.main{
	width: 100%;
	max-width: 1220px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 1rem;
}
.main .top{
	width: 100%;
	height:500px;
	background: #fff;
}
.main .top p span{
	color: #bd302a;
	font-size: 12px;
	margin-right:5px;
}
.main .top h4{
	text-align: center;
	font-size: 1.5rem;
	color: #333;
	margin: 1.5rem 0;
}

.main .top .center{
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin:3rem 0;
}
.main .top .center .text{
	width: 35%;
	font-size:0.8rem;
	color: #ccc;
}
.main .top .center .text h5{
	font-size: 24px;
	color: #333;
	margin-bottom: 1rem;
}
.main .top .center .text h6{
	font-size: 12px;
	color: #bd302a;
	font-weight: bold;
}
.main .top .center form{
	width:35%;
}
.main .top .center form h5{
	font-size: 1.2rem;
	color: #666666;
	margin-bottom: 0.5rem;
}
.main .top .center form div{
	border: 1px solid #cccccc;
	height: 38px;
}
.main .top .center form div input{
	float: left;
	height: 100%;
}
.main .top .center form div input.sub{
	width:10%;
	background: url(../images/chazhao.png) no-repeat center;
}
.main .top .center form div input.txt{
	width:90%;
	font-size: 14px;
	color: #666;
}
.main .top .center form a{
	display: flex;
	align-items: center;
	height: 38px;
	border-bottom: 1px solid #ccc;
	font-size: 12px;
	color: #ccc;
}
.main .top .center form a img{
	width: 14px;
	height: 14px;
	margin: 0 0.5rem;
}
.main .top .center form h6{
	font-size: 12px;
	color: #666;
	margin: 0.5rem 0;
}
.main .top .center form div.select{
	border: none;
	display: flex;
	justify-content: space-between;
}
.main .top .center form div.select select{
	width: 45%;
	border: 1px solid #ccc;
	color: #999;
	font-size: 12px;
	box-sizing: border-box;
	padding-left: 0.5rem;
}
.main .top .center form>select{
	width: 100%;
	border: 1px solid #ccc;
	color: #999;
	font-size: 12px;
	box-sizing: border-box;
	padding-left: 0.5rem;
	height: 38px;
	margin: 0.5rem 0;
}







.faqs-wrapper{
	width: 100%;
	background: #f2f2f2;
}
.faqs-wrapper .faqs{
	width: 100%;
	max-width: 1220px;
	height: auto;
	margin: 0 auto;
	box-sizing: border-box;
	padding:2rem ;
}
.faqs-wrapper .faqs .title{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.faqs-wrapper .faqs .title h4{
	font-size: 24px;
	color: #666;
}
.faqs-wrapper .faqs .title h6 a{
	display: inline-block;
	width: auto;
	font-size: 0.9rem;
	color: #bd302a;
	margin-left: 1rem;
}
.faqs-wrapper .faqs .title h6 a:hover{
	border-bottom: 1px solid #bd302a;
}
.faqs-wrapper .faqs ul{
	margin-top:2rem;
}
.faqs-wrapper .faqs ul li a{
	display: block;
	width: 100%;
	height: 2rem;
	border-bottom: 1px solid #cccccc;
	line-height: 2rem;
	font-size: 14px;
	color: #999;
}
.faqs-wrapper .faqs ul li a:hover{
	color: #00A7E1;
}
.faqs-wrapper .faqs>h4{
	font-size: 20px;
	color: #bd302a;
	text-align: center;
	margin-top:5rem;
}





@media screen and (max-width:1200px){
	.main .top{
		height: auto;
	}
	.main .top .center .text{
		margin: 1rem 0;
	}
	.main .top .center{
		height: auto;
		margin: 0;
		flex-direction: column;
		justify-content: space-around;
		align-items: center;
	}
	.main .top .center form{
		width: 60%;
	}
}


@media screen and (max-width:768px){
	.faqs-wrapper .faqs{
		height: auto;
	}
	.faqs-wrapper .faqs>h4{
		margin-top: 2rem;
	}
	.faqs-wrapper .faqs ul li a{
		overflow: hidden;
		text-overflow:ellipsis;
		white-space: nowrap;
	}
	.banner .title form{
		display: none;
	}
}
@media screen and (max-width:640px){
	.main .top .center form{
		width: 80%;
	}
	.main .top .center .text{
		width: 80%;
	}
}

@media screen and (max-width:480px){
	
	
	.faqs-wrapper .faqs .title{
		display: flex;
		flex-direction: column;
		justify-content: center;
		
	}
	.faqs-wrapper .faqs .title{
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
	.faqs-wrapper .faqs .title h6 a{
		margin-left: 0;
		margin-right: 10px;
	}
	.main .top .center .text{
		font-size: 14px;
	}
}















.maindown{
	width: 100%;
	max-width: 1220px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 1rem;
}
.maindown .top{
	width: 100%;
	height:500px;
	background: #fff;
}
.maindown .top p span{
	color: #bd302a;
	font-size: 12px;
	margin-right:5px;
}
.maindown .top h4{
	text-align: center;
	font-size: 1.5rem;
	color: #333;
	margin: 1.5rem 0;
}

.maindown .top .center{
	display: flex;
	justify-content: space-around;
	margin: 5.77rem 0;
}
.maindown .top .center a img{
	transition: all .5s;
	width: 220px;
}
.maindown .top .center a img:hover{
	box-shadow: 0 4px 30px rgba(0,0,0,.15);
}

.maindown .top .center .text h5{
	font-size: 24px;
	color: #333;
	margin-bottom: 1rem;
}
.maindown .top .center .text h6{
	font-size: 12px;
	color: #bd302a;
	font-weight: bold;
}



.maindown .top .center .dow{
	width: 598px;
	height: 148px;
	border: 1px solid #cccccc;
	box-sizing: border-box;
	padding:15px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.maindown .top .center .dow h6{
	font-weight: bold;
	color: #333;
	font-size: 12px;
}
.maindown .top .center .dow .top{
	display: flex;
	justify-content: space-between;
}
.maindown .top .center .dow .top .data p{
	color: #666666;
	font-size: 12px;
}
.maindown .top .center .dow .top a{
	display: block;
	width: 100px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	color: #fff;
	background: #bd3a00;
	border-radius:5px ;
	font-size: 12px;
	font-weight: bold;
}




@media screen and (max-width:1200px){
	.maindown .top{
		height: auto;
	}
	.maindown .top .center .text{
		margin: 1rem 0;
	}
	.maindown .top .center{
		height: auto;
		margin: 0;
		flex-direction: column;
		justify-content: space-around;
		align-items: center;
	}
	.maindown .top .center .dow{
		width: 60%;
		justify-content: space-around;
	}
}

@media screen and (max-width:640px){
	.maindown .top .center .dow{
		width: 90%;
	}
}

@media screen and (max-width:480px){
	.maindown .top .center .dow{
		width: 100%;
		align-items: center;
		
	}
	.maindown .top .center .dow .top{
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		align-items: center;
	}
	.maindown .top .center .dow .top .data{
		text-align: center;
	}
}









.mainanswer{
	width: 100%;
	max-width: 1220px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 1rem;
}
.mainanswer .top{
	width: 100%;
	height:500px;
	background: #fff;
}
.mainanswer .top p span{
	color: #bd302a;
	font-size: 12px;
	margin-right:5px;
}
.mainanswer .top h4{
	text-align: center;
	font-size: 1.5rem;
	color: #333;
	margin: 1.5rem 0;
}

.mainanswer .top .center{
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin:3rem 0;
}
.mainanswer .top .center a img{
	transition: all .5s;
	width: 300px;
}
.mainanswer .top .center a img:hover{
	box-shadow: 0 4px 30px rgba(0,0,0,.15);
}

.mainanswer .top .center .text h5{
	font-size: 24px;
	color: #333;
	margin-bottom: 1rem;
}
.mainanswer .top .center .text h6{
	font-size: 12px;
	color: #bd302a;
	font-weight: bold;
}
.mainanswer .top .center form{
	width:35%;
}
.mainanswer .top .center form h5{
	font-size: 1.2rem;
	color: #666666;
	margin-bottom: 0.5rem;
}
.mainanswer .top .center form div{
	border: 1px solid #cccccc;
	height: 38px;
}
.mainanswer .top .center form div input{
	float: left;
	height: 100%;
}
.mainanswer .top .center form div input.sub{
	width:10%;
	background: url(../images/chazhao.png) no-repeat center;
}
.mainanswer .top .center form div input.txt{
	width:90%;
	font-size: 14px;
	color: #666;
}
.mainanswer .top .center form a{
	display: flex;
	align-items: center;
	height: 38px;
	border-bottom: 1px solid #ccc;
	font-size: 12px;
	color: #ccc;
}
.mainanswer .top .center form a img{
	width: 14px;
	height: 14px;
	margin: 0 0.5rem;
}
.mainanswer .top .center form h6{
	font-size: 12px;
	color: #666;
	margin: 0.5rem 0;
}
.mainanswer .top .center form div.select{
	border: none;
	display: flex;
	justify-content: space-between;
}
.mainanswer .top .center form div.select select{
	width: 45%;
	border: 1px solid #ccc;
	color: #999;
	font-size: 12px;
	box-sizing: border-box;
	padding-left: 0.5rem;
}
.mainanswer .top .center form>select{
	width: 100%;
	border: 1px solid #ccc;
	color: #999;
	font-size: 12px;
	box-sizing: border-box;
	padding-left: 0.5rem;
	height: 38px;
	margin: 0.5rem 0;
}





@media screen and (max-width:1200px){
	.mainanswer .top{
		height: auto;
	}
	.mainanswer .top .center .text{
		margin: 1rem 0;
	}
	.mainanswer .top .center{
		height: auto;
		margin: 0;
		flex-direction: column;
		justify-content: space-around;
		align-items: center;
	}
	.mainanswer .top .center form{
		width: 60%;
	}
}

@media screen and (max-width:640px){
	.mainanswer .top .center form{
		width: 80%;
	}
}

@media screen and (max-width:480px){

}




