/*--banner--*/
.banner{
	width: 100%;
	height: auto;
	min-height: 200px;
}
.banner>img {
	width: 100%;
}
/*--list--*/
.list {
	width: 100%;
	margin: 20px 0 30px 0;
}

.list-row {
	margin: 0 auto;
	width: 850px;
}

.list-row>div {
	display: inline-block;
}

.list-img {
	position: relative;
	width: 190px;
	height: 130px;
	margin-top: 15px;
	margin-right: 15px;
}

.list-img>img {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
}

.list-img.active>span {
	opacity: 0;
}

.list-img>img:nth-of-type(1) {
	z-index: 1;
}

.list-img>span {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	z-index: 2;
	background: #ff3a1e;
	opacity: 0.8;
	-webkit-transition: opacity 0.66s;
	transition: opacity 0.66s;
}

.list-img>img:nth-of-type(2) {
	z-index: 3;
	-webkit-transition: opacity 0.66s;
	transition: opacity 0.66s;
}
/*--content--*/
.content{
	width: 100%;
	height: auto;
	min-height: 200px;
}
.content>img {
	width: 100%;
}
/* map */
.map{
	position: relative;
	width: 100%;
}
.map-title{
	position: relative;
	width: 100%;
	margin-bottom: 66px;
	font-size: 18px;
	line-height: 66px;
	color: red;
}
.map-title > span{
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	top: -33px;
	border-bottom: 33px solid #fff;
	border-left: 33px solid transparent;
	border-right: 33px solid transparent;
}
.store-item{
	margin-bottom: 25px;
	width: 400px;
	-webkit-transform: translateX(-45px);
	        transform: translateX(-45px);
	-webkit-transition: -webkit-transform 0.36s;
	transition: -webkit-transform 0.36s;
	transition: transform 0.36s;
	transition: transform 0.36s, -webkit-transform 0.36s;
}
.store-item>img{
	width: 400px;
}
.store-item:hover{
	-webkit-transform: none;
	        transform: none;
}
.store-map-title{
	font-size: 22px;
	line-height: 66px;
}
.store-map{
	width: 100%;
}