myWallet.wxss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /* pages/user/myWallet/myWallet.wxss */
  2. page{
  3. width: 750rpx;
  4. background: #F0F1F5;
  5. }
  6. .wallet-header {
  7. width: 750rpx;
  8. height: 218rpx;
  9. background-color: #61CA54;
  10. color: #FFF;
  11. }
  12. .total-money {
  13. text-align: center;
  14. font-size: 52rpx;
  15. line-height: 70rpx;
  16. }
  17. .text-doc {
  18. display: flex;
  19. justify-content:center;
  20. align-items:center;
  21. font-size: 32rpx;
  22. line-height: 42rpx;
  23. margin-top:27rpx;
  24. }
  25. .text-doc-box {
  26. width: 30rpx;
  27. height: 32rpx;
  28. margin-right: 8rpx;
  29. }
  30. .text-prompt {
  31. margin-top: 20rpx;
  32. text-align: center;
  33. font-size: 28rpx;
  34. line-height: 38rpx;
  35. }
  36. image{
  37. width: 100%;
  38. height: 100%;
  39. }
  40. .wallet-container {
  41. width: 716rpx;
  42. margin: 0rpx auto;
  43. }
  44. .wallet-center{
  45. width:680rpx;
  46. height:88rpx;
  47. margin:0 auto;
  48. display:flex;
  49. justify-content:space-between;
  50. align-items:center;
  51. }
  52. .wallet-left {
  53. display:flex;
  54. align-items:center;
  55. }
  56. .icon-box {
  57. width: 60rpx;
  58. height:60rpx;
  59. margin-right:16rpx;
  60. }
  61. .wallet-right {
  62. width:18rpx;
  63. height:34rpx;
  64. }
  65. .wallet-detail {
  66. margin-top:20rpx;
  67. width:716rpx;
  68. height:88rpx;
  69. font-size:34rpx;
  70. color:#5E5E5E;
  71. background:#FFFFFF;
  72. border-radius:14rpx;
  73. }