115 lines
1.6 KiB
Plaintext
115 lines
1.6 KiB
Plaintext
/* pages/wallet/withdrawList.wxss */
|
|
page {
|
|
background: #F3F5F7;
|
|
}
|
|
|
|
.item {
|
|
width: 91%;
|
|
/* height: 184rpx; */
|
|
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;
|
|
justify-content: space-between;
|
|
margin-top: 16rpx;
|
|
}
|
|
|
|
.num {
|
|
color: #367df9;
|
|
font-size: 48rpx;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.w-status {
|
|
height: 48rpx;
|
|
border-radius: 4rpx;
|
|
padding: 4rpx 16rpx;
|
|
text-align: center;
|
|
font-size: 26rpx;
|
|
font-weight: 400;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.w-1 {
|
|
border: 1rpx solid #0FD28C;
|
|
color: #0fd28c;
|
|
background: #0fd28c1a;
|
|
}
|
|
|
|
.w-2 {
|
|
border: 1rpx solid #FFA722;
|
|
color: #FFA722;
|
|
background: #ffa7221a;
|
|
}
|
|
|
|
.w-3 {
|
|
color: #FF7A7A;
|
|
border: 1rpx solid #FF7A7A;
|
|
background: #ff7a7a1a;
|
|
}
|
|
|
|
.text {
|
|
align-self: stretch;
|
|
color: #808080;
|
|
font-family: "PingFang SC";
|
|
font-size: 28rpx;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
line-height: normal;
|
|
}
|
|
|
|
.text-refuse {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.text-1 {
|
|
width: 23%;
|
|
}
|
|
|
|
.text-2 {
|
|
width: 77%;
|
|
word-wrap:break-word;
|
|
}
|
|
|
|
.nomore {
|
|
text-align: center;
|
|
margin: 30rpx;
|
|
font-size: 28rpx;
|
|
color: rgb(151, 150, 150);
|
|
}
|
|
|
|
.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;
|
|
} |