:root {
	--primary-color: #FF5000;
	--secondary-color: #FF6A00;
	--text-color: #333;
	--light-text: #999;
	--border-color: #f0f0f0;
	--bg-color: #f5f5f5;
	--white: #fff;
	--radius: 8px;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	background-color: var(--bg-color);
	color: var(--text-color);
	line-height: 1.5;
	margin: 0;
	padding: 0;
	max-width: 900px;
	margin: 0 auto;
}

.container {
	background: var(--white);
	position: relative;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* 顶部导航 */
.header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--white);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	padding: 10px 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.location {
	display: flex;
	align-items: center;
	color: var(--text-color);
	text-decoration: none;
	font-size: 14px;
	white-space: nowrap;
}

.location img {
	width: 16px;
	height: 20px;
	margin-right: 5px;
}

.page-title {
	font-size: 16px;
	font-weight: bold;
	color: var(--text-color);
	margin: 0 10px;
	flex: 1;
	text-align: center;
}

/* 浏览历史 */
.history-item {
	font-size: 13px;
	color: var(--light-text);
	padding: 10px 15px;
	background: var(--white);
	border-bottom: 1px solid var(--border-color);
}

.history-item img {
	width: 12px;
	vertical-align: middle;
	margin-right: 5px;
}

/* 导航图标 */
.nav-icons {
	display: flex;
	flex-wrap: wrap;
	padding: 10px 0;
	background: var(--white);
	margin-bottom: 10px;
}

.nav-item {
	width: 25%;
	text-align: center;
	margin-bottom: 10px;
}

.nav-icon {
	width: 40px;
	height: 40px;
	margin: 0 auto 5px;
}

.nav-title {
	font-size: 12px;
	color: var(--text-color);
}

/* 店铺列表 */
.store-container {
	padding: 0 10px;
}

@media (min-width: 768px) {
	.store-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
}

.store-item {
	background: var(--white);
	border-radius: var(--radius);
	margin-bottom: 10px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.store-content {
	display: flex;
	padding: 10px;
}

.store-logo {
	width: 120px;
	height: 90px;
	border-radius: 4px;
	object-fit: cover;
	margin-right: 10px;
	border: 1px solid var(--border-color);
}

.store-info {
	flex: 1;
}

.store-name {
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 5px;
	color: var(--text-color);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.store-address {
	font-size: 12px;
	color: var(--light-text);
	margin-bottom: 8px;
}

.store-navigate {
	background: var(--primary-color);
	color: var(--white);
	border: none;
	border-radius: 4px;
	padding: 4px 8px;
	font-size: 12px;
	margin-right: 8px;
	cursor: pointer;
}

/* 分页 */
.pager {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	background: var(--white);
	margin-top: 10px;
}

.pager-summary {
	font-size: 12px;
	color: var(--light-text);
}

.pagination {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

.pagination li {
	margin: 0 5px;
}

.pagination a {
	display: block;
	padding: 5px 10px;
	border-radius: 4px;
	background: var(--bg-color);
	color: var(--text-color);
	text-decoration: none;
	font-size: 12px;
}

.pagination .active a {
	background: var(--primary-color);
	color: var(--white);
}

/* 底部导航 */
.footer-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--white);
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
	z-index: 100;
	max-width: 900px;
	margin: 0 auto;
}

.footer-nav ul {
	display: flex;
	padding: 5px 0;
	margin: 0;
}

.footer-nav li {
	flex: 1;
	text-align: center;
}

.footer-nav a {
	display: block;
	color: var(--text-color);
	text-decoration: none;
	font-size: 10px;
	padding: 5px 0;
}

.footer-nav img {
	width: 24px;
	height: 24px;
	margin: 0 auto 2px;
}

.footer-nav .active {
	color: var(--primary-color);
}

/* 版权信息 */
.copyright {
	padding: 15px;
	text-align: center;
	font-size: 12px;
	color: var(--light-text);
	background: var(--white);
	margin-bottom: 60px;
}

.copyright a {
	color: var(--light-text);
	text-decoration: none;
	margin: 0 5px;
}