.banner{
	width: 100%;
	height: 270px;
	background: url(../images/contact-bg.jpg) no-repeat;
	background-size:100% 100% ;
	text-align: center;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
}
.banner h4{
	font-size: 45px;
	color: #333333;
	font-weight: 100;
	margin-bottom:20px;
}
.banner h5{
	font-size: 19px;
	color: #666666;
}

.navigate{
	width: 100%;
	height: 86px;
	border-bottom: 1px solid #e6e6e6;
	line-height: 86px;
	padding:0 3%;
	box-sizing: border-box;
	color: #b2b2b2;
}
.navigate .left{
	float: left;
	font-size: 16px;
}
.navigate .right{
	float: right;
	font-size: 20px
}
.main{
	box-sizing: border-box;
	overflow: hidden;
	padding: 5%;
}
#allmap{
	height:456px;
	float: left;
	width:50%;
}
.main .address{
	float: right;
	width: 48%;
	height: 100%;
}




.list{
	width : 100%;
}
.list ul{
	list-style: none;
}
.list>ul>li{
	width        : 100%;
	border-bottom: 1px solid #ececec;
	-webkit-transition: .3s ease;
	-moz-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
	cursor: pointer;
}
.list ul li:first-child>p{
	display: none;
}
.list ul li:first-child .list-se{
	display: block;
}
.list>ul>li>p{
	width      : 100%;
	text-align : left;
	background : #fff;
	height     : 95px;
	line-height: 95px;
	padding    : 0;
	border     : none;
	position   : relative;
	font-size  : 20px;
}
.list>ul>li>p span{
	position: absolute;
	right: 10%;
}

.list>ul>li p[class=title]{
	width      : 100%;
	text-align : left;
	background : #fff;
	height     : 95px;
	line-height: 95px;
	padding    : 0;
	border     : none;
	position   : relative;
	font-size  : 20px;
}
.list>ul>li p[class=title]>span{
	position: absolute;
	right: 10%;
}
.list-se{
	overflow: hidden;
	display: none;
}
.list-se>p{
	background: #fff;
	color     :#333333;
}
.list-se>li{
	position: relative;
	right   : -100%;
	-webkit-transition: right .5s;
	-moz-transition   : right .5s;
	-o-transition     : right .5s;
	transition        : right .5s;
}
.list-se>li>p{
	background  : #fff;
	color       : #000;
	height      : 50px;
	-webkit-box-sizing :border-box;
	        box-sizing :border-box;
	padding-left: 10px;
	line-height : 50px;
	
	-webkit-transition   : border .5s; 
			 transition  : border .5s;
	-webkit-transition   : background .3s;
			 transition  : background .3s;
}
.list-se>li>p:hover{

	background  : #fff;
}


@media screen and (max-width: 769px){
	.banner{
		height: 30vw;
	}
	.banner h4{
		font-size: 5vw;
		margin-bottom: 1vw;
	}
	.banner h5{
		font-size: 3vw
	}
	.navigate .right{
		display: none;
	}
	
	#allmap{
		width: 100%;
		height: 300px;
		float: none;
	}
	.main .address{
		width: 100%;
		float: none;
	}
	
}









































