body {
	background-color: #f8fafc;
	max-width: 900px;
	margin: 0 auto;
	font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
	padding-bottom: 60px; /* 为底部导航留出空间 */
}

/* 新增：去除li前面的点 */
ul, ol, li {
	list-style: none;
	padding: 0;
	margin: 0;
}
/* 筛选容器 */
.filter-container {
	padding: 15px;
	background: white;
	margin-bottom: 10px;
}
 
/* 筛选标题 */
.filter-title {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #333;
}
 
/* 筛选标签 */
.filter-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}
 
.filter-tabs a {
	display: block;
	padding: 3px 3px;
	background: #f5f5f5;
	border-radius: 15px;
	color: #666;
	font-size: 14px;
	text-decoration: none;
}
 
.filter-tabs a.curr   {
	background: #ff6600;
	color: white;
}
 
/* 活动容器 */
.activity-container {
	padding: 0 10px;
}
 
/* 活动卡片 */
.activity-card {
	display: block;
	margin-bottom: 15px;
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	text-decoration: none;
	color: #333;
}
 
/* 活动图片容器 */
.activity-image-container {
	width: 100%;
	height: 180px;
	overflow: hidden;
}
 
/* 活动图片 */
.activity-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}
 
.activity-card:hover .activity-image {
	transform: scale(1.05);
}
 
/* 活动内容 */
.activity-content {
	padding: 15px;
}
 
/* 活动标题 */
.activity-title {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 8px;
	color: #333;
}
 
/* 活动元信息 */
.activity-meta {
	font-size: 13px;
	color: #666;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
}
 
.activity-meta img {
	width: 14px;
	height: 14px;
	margin-right: 5px;
}
 
/* 活动状态 */
.activity-status {
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 12px;
	margin-left: 10px;
}
 
.status-pending {
	background: #f0f0f0;
	color: #999;
}
 
.status-ready {
	background: #fff8e6;
	color: #ff9900;
}
 
.status-started {
	background: #e6f7ff;
	color: #1890ff;
}
 
.status-completed {
	background: #f6ffed;
	color: #52c41a;
}
 
/* 进度条容器 */
.progress-container {
	margin-top: 10px;
}
 
.progress-bar {
	height: 6px;
	background: #f5f5f5;
	border-radius: 3px;
	overflow: hidden;
}
 
.progress-fill {
	height: 100%;
	width: 70%;
	background: #ff6600;
	border-radius: 3px;
}
 
/* 加载更多 */
.loading-more {
	text-align: center;
	padding: 15px;
	color: #999;
	font-size: 14px;
	cursor: pointer;
}

/* 分页容器 */
.pagination-container {
	margin: 20px 15px;
	background: white;
	padding: 15px;
	border-radius: 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* 分页信息 */
.pager-summary {
	font-size: 14px;
	color: #666;
}

.pager-summary em {
	font-style: normal;
	color: #ff6600;
	font-weight: bold;
}

/* 分页导航 */
.pagination {
	display: flex;
	list-style: none;
	gap: 5px;
}

.pagination li a {
	display: block;
	padding: 5px 10px;
	background: #f5f5f5;
	border-radius: 15px;
	text-decoration: none;
	color: #333;
	font-size: 14px;
	transition: all 0.3s;
}

.pagination li.active  a,
.pagination li a:hover {
	background: #ff6600;
	color: white;
}

/* 页脚 */
.footer {
	padding: 15px;
	text-align: center;
	font-size: 12px;
	color: #999;
}
 
.footer a {
	color: #666;
	text-decoration: none;
	margin: 0 5px;
}
 
/* 底部导航 */
.bottom-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: white;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
	padding: 5px 0;
	z-index: 100;
	max-width: 900px;
	margin: 0 auto;
}
 
.bottom-nav .flex {
	display: flex;
	justify-content: space-around;
}
 
.nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: #666;
}
 
.nav-icon {
	width: 24px;
	height: 24px;
	margin-bottom: 4px;
}
 
.nav-text {
	font-size: 12px;
}
 
/* 响应式调整 */ 
@media (max-width: 768px) {
	.activity-image-container {
		height: 150px;
	}
	
	.pagination-container {
		flex-direction: column;
		gap: 10px;
	}
}
 
@media (min-width: 768px) {
	.activity-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
		padding: 15px;
	}
	
	.activity-card {
		margin-bottom: 0;
	}
}