155 lines
2.1 KiB
Plaintext
155 lines
2.1 KiB
Plaintext
.container {
|
|
min-height: 100vh;
|
|
background-color: #f7f7f7;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.header {
|
|
background-color: #fff;
|
|
padding: 30rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.avatar {
|
|
width: 100rpx;
|
|
height: 100rpx;
|
|
border-radius: 50%;
|
|
margin-right: 20rpx;
|
|
background-color: #eee;
|
|
}
|
|
|
|
.info {
|
|
flex: 1;
|
|
}
|
|
|
|
.name {
|
|
font-size: 32rpx;
|
|
font-weight: bold;
|
|
color: #333;
|
|
margin-bottom: 8rpx;
|
|
}
|
|
|
|
.contribution {
|
|
font-size: 26rpx;
|
|
color: #666;
|
|
}
|
|
|
|
.list-scroll {
|
|
flex: 1;
|
|
height: 0;
|
|
}
|
|
|
|
.list-container {
|
|
padding: 0 20rpx;
|
|
}
|
|
|
|
.list-item {
|
|
background-color: #fff;
|
|
border-radius: 12rpx;
|
|
margin-bottom: 20rpx;
|
|
padding: 30rpx;
|
|
box-shadow: 0 2rpx 8rpx rgba(0,0,0,0.05);
|
|
}
|
|
|
|
.item-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding-bottom: 20rpx;
|
|
border-bottom: 1rpx solid #eee;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.order-type {
|
|
font-size: 30rpx;
|
|
font-weight: bold;
|
|
color: #333;
|
|
}
|
|
|
|
.status {
|
|
font-size: 26rpx;
|
|
padding: 4rpx 12rpx;
|
|
border-radius: 4rpx;
|
|
}
|
|
|
|
.status.pending {
|
|
color: #faad14;
|
|
background-color: #fffbe6;
|
|
border: 1rpx solid #ffe58f;
|
|
}
|
|
|
|
.status.settled {
|
|
color: #52c41a;
|
|
background-color: #f6ffed;
|
|
border: 1rpx solid #b7eb8f;
|
|
}
|
|
|
|
.status.cancelled {
|
|
color: #999;
|
|
background-color: #f5f5f5;
|
|
border: 1rpx solid #d9d9d9;
|
|
}
|
|
|
|
.item-content {
|
|
font-size: 28rpx;
|
|
color: #666;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: 12rpx;
|
|
}
|
|
|
|
.row:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.label {
|
|
color: #999;
|
|
}
|
|
|
|
.value {
|
|
color: #333;
|
|
}
|
|
|
|
.value.highlight {
|
|
color: #ff4d4f;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.empty-state {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding-top: 200rpx;
|
|
color: #999;
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
.empty-icon {
|
|
width: 200rpx;
|
|
height: 200rpx;
|
|
margin-bottom: 30rpx;
|
|
}
|
|
|
|
.loading-state {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 30rpx;
|
|
color: #999;
|
|
font-size: 24rpx;
|
|
}
|
|
|
|
.no-more {
|
|
text-align: center;
|
|
padding: 30rpx;
|
|
color: #ccc;
|
|
font-size: 24rpx;
|
|
}
|