html,body{
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

.header-iframe{
	width: 100%;
	height: 60px;
}

.footer-iframe{
	width: 100%;
	height: 70px;
}

.search-section{
	width: 100%;
	height: 180px;
	position: relative;
}

.top-bg{
	width: 100%;
	height: 100%;
	display: block;
}

.label-input{
	width: 50%;
	height: 44px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

#search-input{
	font-size: 16px;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	/*去除阴影*/
	box-shadow:none;
	/*聚焦input的蓝色边框*/
	outline: none;
	/*textarea 禁止拖拽*/
	resize: none; 
	/*去除边框*/
	border: none; 
	/*常用于IOS下移除原生样式*/
	-webkit-appearance: none;
	/*点击高亮的颜色*/
	-webkit-tap-highlight-color:rgba(0,0,0,0); 
	background-color: #fff;
	border-radius: 26px;
	padding: 0 20px 0 36px;
	box-sizing: border-box;
}

#search-input::-webkit-input-placeholder {
    font-size: 16px;
    color: #999999;
}

.search-icon{
	width: 20px;
	height: 20px;
	display: block;
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
	left: 10px;
}

.shop-section{
	width: 100%;
	height: calc(100% - 310px);
	background-color: #F4F4F4;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.shop-group{
	width: 70%;
	height: calc(100% - 100px);
	overflow: auto;
	box-sizing: border-box;
}

.shop-item{
	min-width: 100%;
	width: fit-content;
	height:auto;
	background-color: #fff;
	border-radius: 12px;
	padding: 16px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	
	margin-bottom: 16px;
}

.shop-info{
	width: 100%;
	height: 150px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 10px 0px 10px 16px;
	box-sizing: border-box;
}

.shop-title{
	margin-bottom: 10px;
}

.template-img{
	width: 300px;
	height: 150px;
	flex-shrink:0;
	overflow: hidden;
	border-radius: 8px;
}

.template-img>img{
	width: 100%;
	min-height: 100%;
	height: auto;
	display: block;
}

.file-img{
	width: 20px;
	height: 20px;
	display: block;
}

.file-info{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.file-group{
	display: flex;
	align-items: center;
}

.shop-synopsis{
	font-size: 14px;
	color: #999999;
	overflow: hidden; 
	text-overflow: ellipsis; 
	display: -webkit-box;
	-webkit-line-clamp: 2; 
	-webkit-box-orient: vertical;  
	 
}

.file-text{
	font-size:14px;
	color: #999999;
	margin-left: 5px;
}

.shop-btn{
	min-width: 124px;
	width: fit-content;
	padding: 0 10px;
	height: 32px;
	font-size: 14px;
	color: #fff;
	background-color: #2488F5;
	border-radius: 16px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.pagination{
	width: 100%;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-group{
	display: flex;
	align-items: center;
}

.page-img{
	width: 28px;
	height: 28px;
	display: block;
	cursor: pointer;
}

.page-num{
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #999999;
	font-size: 14px;
	background-color: #fff;
	margin:0 5px;
	cursor: pointer;
}

.page-active{
	background-color: #2488F5;
	color: #fff;
}

.empty-data{
	width: 100%;
	height: 100%;
	color: #999999;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.customer-code{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	display: none;
}