87 lines
1.2 KiB
Plaintext
87 lines
1.2 KiB
Plaintext
/* pages/wallet/detail.wxss */
|
|
page {
|
|
background: #F3F5F7;
|
|
}
|
|
|
|
.item {
|
|
width: 91%;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 16rpx;
|
|
align-self: stretch;
|
|
border-radius: 16rpx;
|
|
background: #FFF;
|
|
box-shadow: 0 0 8rpx 0 #F3F5F7;
|
|
margin: 0 auto;
|
|
margin-top: 24rpx;
|
|
padding: 24rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.top {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.icon {
|
|
width: 48rpx;
|
|
height: 48rpx;
|
|
}
|
|
|
|
.title {
|
|
color: #363636;
|
|
font-size: 32rpx;
|
|
font-style: normal;
|
|
margin-left: 10rpx;
|
|
}
|
|
|
|
.bottom {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-top: 16rpx;
|
|
}
|
|
|
|
.num {
|
|
color: #367df9;
|
|
font-size: 48rpx;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.w-btn {
|
|
width: 208rpx;
|
|
height: 72rpx;
|
|
color: #ffffff;
|
|
font-size: 32rpx;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
line-height: 72rpx;
|
|
text-align: center;
|
|
|
|
border-radius: 16rpx;
|
|
background: linear-gradient(115deg, #62B2FF -1.34%, #3C80F6 100%);
|
|
}
|
|
|
|
.emptyData {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 250px;
|
|
margin-top: 200rpx;
|
|
}
|
|
|
|
.emptyData image {
|
|
display: block;
|
|
width: 166px;
|
|
height: 194px;
|
|
}
|
|
|
|
.emptyDataText {
|
|
margin-top: 24px;
|
|
color: #898989ff;
|
|
font-size: 13px;
|
|
font-weight: 400;
|
|
text-align: center;
|
|
} |