页面背景色作统一

This commit is contained in:
2026-09-23 18:43:51 +08:00
parent b008a414f0
commit 9ad38418c0
3 changed files with 6 additions and 6 deletions
+4 -4
View File
@@ -145,19 +145,19 @@ export default {
</script>
<style scoped>
.msg { display: flex; flex-direction: column; height: 100%; background: #fff; overflow: hidden; }
.msg { display: flex; flex-direction: column; height: 100%; background: #F5F7FA; overflow: hidden; }
.finder {
margin: 8rpx 24rpx 12rpx;
height: 56rpx;
border-radius: 12rpx;
background: #F3F4F6;
background: #fff;
display: flex;
align-items: center;
justify-content: center;
color: #9CA3AF;
}
.finder-txt { margin-left: 8rpx; font-size: 26rpx; line-height: 1; }
.list { background: #fff; }
.list { background: #F5F7FA; }
.ico.sm { font-size: 34rpx; color: #1677FF; }
.item { display: flex; align-items: center; padding: 22rpx 28rpx; background: #fff; }
.item.pin { background: #F7F8FA; }
@@ -176,6 +176,6 @@ export default {
.bot { display: flex; align-items: center; margin-top: 8rpx; }
.prev { flex: 1; font-size: 24rpx; color: #6B7280; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mute { font-size: 22rpx; margin-left: 8rpx; color: #9CA3AF; }
.empty { padding: 160rpx 40rpx; text-align: center; color: #6B7280; font-size: 28rpx; background: #fff; }
.empty { padding: 160rpx 40rpx; text-align: center; color: #6B7280; font-size: 28rpx; background: transparent; }
.ico { font-size: 36rpx; color: #1677FF; padding: 8rpx 12rpx; }
</style>