wallet.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /* pages/personal/wallet/wallet.wxss */
  2. page {
  3. background: rgba(244, 244, 244, 1);
  4. }
  5. .wallet {
  6. width: 100%;
  7. height: 100vh;
  8. }
  9. /* 显示余额 begin */
  10. .top{
  11. height:301rpx;
  12. display:flex;
  13. align-items: center;
  14. flex-direction: column;
  15. justify-content: flex-end;
  16. position: relative;
  17. }
  18. .detailed{
  19. position: absolute;
  20. top: 81rpx;
  21. right: 60rpx;
  22. font-size: 28rpx;
  23. color: white;
  24. z-index: 10;
  25. }
  26. .balance {
  27. width: 90%;
  28. height: 266rpx;
  29. color: #fff;
  30. position: relative;
  31. overflow: hidden;
  32. display: flex;
  33. flex-direction: column;
  34. }
  35. .balance view:nth-of-type(1) {
  36. font-size: 28rpx;
  37. padding: 48rpx 0rpx 0rpx 49rpx;
  38. }
  39. .balance image {
  40. position: absolute;
  41. left: 0rpx;
  42. top: 0rpx;
  43. width: 100%;
  44. height: 100%;
  45. z-index: -1;
  46. }
  47. .balance .money {
  48. font-size: 60rpx;
  49. letter-spacing: 5rpx;
  50. padding-left: 8rpx;
  51. }
  52. .balance1 {
  53. width: 100%;
  54. margin: 45rpx 0 0 62rpx;
  55. }
  56. /* 显示余额 end */
  57. /* 列表 begin */
  58. .walletList view {
  59. background: #fff;
  60. font-size: 28rpx;
  61. padding: 10rpx 28rpx 10rpx 50rpx;
  62. }
  63. .walletList .iconfont {
  64. font-size: 55rpx;
  65. }
  66. .walletList .state {
  67. color: #999;
  68. }
  69. .tixian{
  70. width: 90%;
  71. height: auto;
  72. display: flex;
  73. flex-direction: column;
  74. background: white;
  75. margin: 20rpx auto;
  76. align-items: center;
  77. padding-bottom: 30rpx;
  78. }
  79. .tixian .title{
  80. width: 90%;
  81. padding: 50rpx 0rpx;
  82. }
  83. .tixian .view{
  84. width: 90%;
  85. border-bottom: 1rpx solid #ccc;
  86. display: flex;
  87. align-items: center;
  88. font-size: 46rpx;
  89. font-weight: 800;
  90. }
  91. .tixian .text{
  92. width: 90%;
  93. display: flex;
  94. padding: 50rpx 0rpx;
  95. }
  96. .tixian .btn{
  97. width: 90%;
  98. display: flex;
  99. align-items: center;
  100. justify-content: center;
  101. height: 80rpx;
  102. border-radius: 20rpx;
  103. }
  104. .tixian .cencal{
  105. padding-top: 20rpx;
  106. font-size: 28rpx;
  107. }