.container { background-color: #f5f5f5; min-height: 100vh; } .chat-header { background-color: #fff; padding: 20rpx; border-bottom: 1rpx solid #e8e8e8; display: flex; align-items: center; justify-content: center; } .chat-title { font-size: 36rpx; font-weight: bold; color: #333; } .chat-list { padding: 20rpx; } .chat-item { background-color: #fff; border-radius: 12rpx; padding: 20rpx; display: flex; align-items: center; margin-bottom: 20rpx; box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05); } .avatar { width: 80rpx; height: 80rpx; border-radius: 50%; margin-right: 20rpx; overflow: hidden; } .avatar image { width: 100%; height: 100%; } .chat-info { flex: 1; position: relative; } .chat-name { font-size: 32rpx; font-weight: bold; color: #333; margin-bottom: 8rpx; } .chat-content { font-size: 28rpx; color: #666; margin-bottom: 8rpx; } .chat-time { font-size: 24rpx; color: #999; position: absolute; top: 0; right: 0; }