xiangqinxiaochengxu/miniprogram/pages/my-matches/my-matches.wxss
2026-04-17 10:49:14 +08:00

60 lines
772 B
Plaintext

.matches-page {
padding: 24rpx;
}
.match-item {
display: flex;
padding: 24rpx;
margin-bottom: 24rpx;
background: #ffffff;
border-radius: 24rpx;
}
.avatar {
width: 120rpx;
height: 120rpx;
border-radius: 60rpx;
background: #f0f0f0;
}
.avatar-placeholder {
display: flex;
align-items: center;
justify-content: center;
color: #999999;
}
.content {
flex: 1;
margin-left: 20rpx;
}
.name-row {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 12rpx;
}
.name {
font-size: 32rpx;
font-weight: 600;
}
.detail-link {
font-size: 24rpx;
color: #E8593C;
}
.meta,
.time {
color: #666666;
margin-bottom: 8rpx;
}
.empty-state {
padding: 80rpx 24rpx;
text-align: center;
color: #999999;
}