body {
	background-color: white;
	padding-top: 44px;
	padding-bottom: 57px;
}
.header-top{
	top: 0;
}
/* 搜索框 */
.main-content .search-input {
	background-color: white;
	width: 100%;
	height: 44px;
	position: fixed;
	top: 44px;
	z-index: 9;
	padding: 6px 10px;
}
.main-content .search-input input {
	background: #F0F0F0;
	border-radius: 15px;
	width: 80%;
	height: 32px;
	border: none;
	text-align: center;
}

/* 商品列表 */
.main-content .product-list {
	
}
.product-list .product-content {
	overflow-y: auto;
}
.product-list .category-title {
	background: #F0F0F0;
	font-size: 10px;
	color: #A2A2A2;
	height: 24px;
	line-height: 24px;
	padding-left: 10px;
}
.product-list .product-item {
	padding: 10px;
	display: flex;
	background-color: white;
	border-bottom: 1px solid #EAEAEA;
}
.product-item .product-cover {
	width: 100px;
	height: 100px;
}
.product-item .product-cover img {
	width: 100px;
	height: 100px;
	border-radius: 2px;
}
.product-item .product-detail {
	padding: 9px;
}
.product-item .product-detail .title {
	white-space: nowrap;
	width: 235px;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 16px;
}
.product-item .product-detail .description {
	font-size: 12px;
	color: #7A7A7A;
	height: 48px;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	margin-top: 5px;
	line-height: 22px;
}
.product-item .product-detail .price {
	color: #FF6D00;
	font-size: 14px;
}
.product-item .product-detail .price img {
	width: 20px;
	height: 20px;
	float: right;
	margin-top: -2px;
}