index.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. .flex-col {
  2. display: flex;
  3. flex-direction: column;
  4. }
  5. .flex-row {
  6. display: flex;
  7. flex-direction: row;
  8. }
  9. .flex-row-reverse {
  10. display: flex;
  11. flex-direction: row-reverse;
  12. }
  13. .bord{
  14. border: 1px solid red;
  15. }
  16. .justify-start {
  17. display: flex;
  18. justify-content: flex-start;
  19. }
  20. .justify-center {
  21. display: flex;
  22. justify-content: center;
  23. }
  24. .justify-end {
  25. display: flex;
  26. justify-content: flex-end;
  27. }
  28. .justify-evenly {
  29. display: flex;
  30. justify-content: space-evenly;
  31. }
  32. .justify-around {
  33. display: flex;
  34. justify-content: space-around;
  35. }
  36. .justify-between {
  37. display: flex;
  38. justify-content: space-between;
  39. }
  40. .align-start {
  41. display: flex;
  42. align-items: flex-start;
  43. }
  44. .align-center {
  45. display: flex;
  46. align-items: center;
  47. }
  48. .align-end {
  49. display: flex;
  50. align-items: flex-end;
  51. }
  52. .sticky {
  53. display: flex;
  54. position: -webkit-sticky;
  55. position: sticky;
  56. top: 0rpx;
  57. z-index: 99;
  58. }
  59. .bord{
  60. border: 1px solid red;
  61. }
  62. .content-wrap {
  63. background: #F9F9F9;
  64. height: 100%;
  65. }
  66. .tabBarView {
  67. position: fixed;
  68. bottom: 0;
  69. }
  70. .head-wrap {
  71. position: relative;
  72. width: 750rpx;
  73. height: 100%;
  74. overflow: hidden;
  75. display: flex;
  76. flex-direction: column;
  77. }
  78. .content {
  79. position: absolute;
  80. top: 20%;
  81. left: 34rpx;
  82. right: 30rpx;
  83. border-radius: 12rpx;
  84. }
  85. .user-info {
  86. display: flex;
  87. position: relative;
  88. background-color: transparent;
  89. }
  90. .user-name {
  91. height: 48rpx;
  92. font-size: 32rpx;
  93. font-weight: 500;
  94. color: #333333;
  95. line-height: 48rpx;
  96. }
  97. .user-desc {
  98. height: 40rpx;
  99. font-size: 24rpx;
  100. font-weight: 400;
  101. color: #333333;
  102. line-height: 40rpx;
  103. }
  104. .head-right{
  105. -webkit-transform: translateY(40rpx);
  106. transform: translateY(40rpx);
  107. }
  108. .user-head {
  109. margin-right: 6px;
  110. border-radius: 50%;
  111. border: 6rpx solid rgba(184, 27, 27, 0);
  112. }
  113. .user-image {
  114. width: 152rpx;
  115. height: 152rpx;
  116. box-shadow: 0rpx 4rpx 8rpx 0rpx rgba(237, 86, 159, 0.1);
  117. border: 2rpx solid #FFFFFF;
  118. border-radius: 50%;
  119. }
  120. .balance-info {
  121. width: 686rpx;
  122. height: 268rpx;
  123. background: #d11515;
  124. box-shadow: 0rpx 8rpx 16rpx 0rpx rgba(255, 224, 92, 0.05);
  125. border-radius: 20rpx;
  126. position: relative;
  127. z-index: 2;
  128. }
  129. .balance-name {
  130. font-size: 32rpx;
  131. font-weight: 700;
  132. color: #333333;
  133. line-height: 48rpx;
  134. position: absolute;
  135. top: 30rpx;
  136. left: 30rpx;
  137. }
  138. .h-content {
  139. width: 100%;
  140. margin: 24rpx;
  141. display: flex;
  142. justify-content: space-around;
  143. position: absolute;
  144. bottom: 10rpx;
  145. }
  146. .button-wrap{
  147. display: flex;
  148. justify-content: center;
  149. align-items: center;
  150. }
  151. .nav-bar{
  152. width: 686rpx;
  153. background: #FFFFFF;
  154. box-shadow: 0rpx 8rpx 16rpx 0rpx rgba(255, 224, 92, 0.05);
  155. border-radius: 20rpx;
  156. position: relative;
  157. }
  158. .nav-bar1{
  159. }