/* pages/recent/recent.wxss */ .recent-page { min-height: 100vh; background: #f5f5f5; padding-bottom: 120rpx; } .page-header { padding: 32rpx; background: #fff; } .page-title { font-size: 36rpx; font-weight: 600; color: #262626; } .recent-list { margin: 24rpx; } .recent-item { display: flex; align-items: center; justify-content: space-between; padding: 28rpx 24rpx; background: #fff; border-radius: 16rpx; margin-bottom: 16rpx; box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.04); } .item-left { flex: 1; min-width: 0; } .item-title { font-size: 30rpx; color: #262626; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin-bottom: 12rpx; } .item-meta { display: flex; align-items: center; gap: 16rpx; } .meta-tag { padding: 4rpx 12rpx; font-size: 22rpx; color: #1677ff; background: #e6f4ff; border-radius: 6rpx; } /* 后台来源标签 - 蓝色 */ .meta-local { color: #1677ff; background: #e6f4ff; } /* 云搜来源标签 - 绿色 */ .meta-yunso { color: #52c41a; background: #f6ffed; } .meta-time { font-size: 24rpx; color: #8c8c8c; } .item-right { margin-left: 20rpx; } .go-icon { font-size: 40rpx; color: #bfbfbf; font-weight: 300; } /* 分页导航 */ .pagination { padding: 32rpx 24rpx; background: #fff; margin: 0 24rpx; border-radius: 16rpx; } .page-info { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24rpx; } .total-text { font-size: 26rpx; color: #8c8c8c; } .page-text { font-size: 26rpx; color: #595959; } /* 页码下拉选择器 */ .page-selector { display: flex; align-items: center; gap: 8rpx; } .page-label { font-size: 26rpx; color: #595959; } .page-picker { display: flex; align-items: center; background: #f5f5f5; padding: 8rpx 16rpx; border-radius: 8rpx; } .page-current { font-size: 28rpx; color: #1677ff; font-weight: 600; min-width: 60rpx; text-align: center; } .picker-arrow { font-size: 20rpx; color: #8c8c8c; margin-left: 8rpx; } .page-btns { display: flex; gap: 24rpx; } .page-btn { flex: 1; height: 80rpx; line-height: 80rpx; text-align: center; background: #1677ff; color: #fff; font-size: 28rpx; border-radius: 40rpx; } .page-btn.disabled { background: #e6e6e6; color: #999; } .page-btn.next-btn { background: #52c41a; } .page-btn.next-btn.disabled { background: #e6e6e6; color: #999; } .loading-more, .no-more { text-align: center; padding: 32rpx; font-size: 26rpx; color: #8c8c8c; } .empty-result { text-align: center; padding: 120rpx 32rpx; font-size: 28rpx; color: #8c8c8c; } .banner-ad-container { position: fixed; bottom: 0; left: 0; width: 100%; height: 100rpx; background: #fff; }