.banner{
	width: 100%;
	height: auto;
	display: flex;
	position: relative;
}
.banner img{
	width: 100%;
	height: 100%;
}

.list{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 60px;
	padding-bottom: 60px;
}
.com-title{
	height: 52px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.com-title img{
	height: 100%;
}
.list-1{
	width:100%;
	display: grid;
	grid-template-columns: repeat(5, 18%);
	/* flex-wrap: wrap; */
	justify-content: space-between;
	margin-bottom: 60px;
}
.list1-li{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #fff;
	margin-top: 30px;
	transition: all 0.2s;
}
.pro-img{
	width: 100%;
	height: 220px;
}
.list1-text{
	width: 100%;
	display: flex;
	flex-direction: column;
	font-size: 14px;
	padding: 20px 14px;
}
.list1-text-title{
	width: 100%;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
	color: #1a1a1a;
	margin-bottom: 10px;
	transition: all .2s;
}
.list1-text-jg{
	width: 100%;
	color: #ff3d09;
	transition: all .2s;
}
.list1-li:hover{
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
/* .list-1:after{
	content:'';
	width:18%;
} */
.gk{
	width: 18%;
}

.list-2{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.list2-img{
	width: 280px;
	height: 750px;
	position: relative;
	display: flex;
	flex-direction: column;
	margin-top: 30px;
	cursor: pointer;
	border: 4px solid transparent;
	transition: all .2s;
}
.list2-img img{
	width: 100%;
	height: 100%;
}
.list2-img p{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	line-height: 60px;
	text-align: center;
	background: #ff3d09;
	color: #fff;
	font-size: 28px;
}
.list2-img:hover{
	border: 4px solid #ff3d09;
}

.list2-i{
	width: 30px;
	height: 30px;
	position: absolute;
	bottom: 20px;
	right: 20px;
	border: 2px solid #fff;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.list2-i i{
	color: #fff;
	font-size: 20px;
	transition: all .2s;
}
.list2-img:hover .list2-i i{
	transform: rotate(90deg);
}
.list2{
	width: calc(100% - 310px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.list2-li{
	width: 31%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #fff;
	margin-top: 30px;
}
.list2-li:hover .list1-text{
	background: #ff3d09;
}
.list2-li:hover .list1-text p{
	color: #fff;
}
.pro-img2{
	width: 100%;
}
/* 商家详情 */
.com-info{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e3e0e0;
	padding: 10px 0;
}
.info-center{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.info-1{
	display: flex;
	align-items: center;
	font-size: 18px;
	font-weight: bold;
}
.info-logo{
	width: 130px;
	height: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}
.info-logo img{
	width: 100%;
	height: 100%;
}
.info-2{
	display: flex;
	flex-direction: column;
	font-size: 16px;
	color: #333333;
}
.info-2 p{
	margin: 10px 0;
}