wallet_details.wxss 919 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. page{
  2. height: 100%;
  3. background: #f9f9f9;
  4. }
  5. .box{
  6. width: 100%;
  7. display: flex;
  8. flex-direction: column;
  9. align-items: center;
  10. padding-bottom: 20rpx;
  11. }
  12. .box .list{
  13. width: 93%;
  14. display: flex;
  15. align-items: center;
  16. justify-content: space-between;
  17. background: white;
  18. margin-top: 20rpx;
  19. height: 140rpx;
  20. }
  21. .list .left{
  22. margin-left: 20rpx;
  23. display: flex;
  24. flex-direction: column;
  25. justify-content: space-around;
  26. height: 90%;
  27. }
  28. .list .left text:nth-of-type(1){
  29. font-size: 28rpx;
  30. color: black;
  31. }
  32. .list .left text:nth-of-type(2){
  33. font-size: 26rpx;
  34. color: gray;
  35. padding-left: 16rpx;
  36. }
  37. .list .right{
  38. margin-right: 20rpx;
  39. font-size: 26rpx;
  40. display: flex;
  41. flex-direction: column;
  42. justify-content: space-around;
  43. height: 90%;
  44. align-items: flex-end;
  45. }
  46. .no_list{
  47. font-size:26rpx;
  48. font-family:PingFang SC;
  49. font-weight:500;
  50. color:rgba(127,127,127,1);
  51. padding-top: 100rpx;
  52. }