index.scss 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. .user {
  2. width: 100vw;
  3. min-height: 100vh;
  4. background-color: rgb(247, 247, 247);
  5. .user-box {
  6. width: 100%;
  7. height: 100%;
  8. @include flex(center);
  9. }
  10. .seize {
  11. width: 100%;
  12. height: 20rpx;
  13. background-color: #ffffff;
  14. }
  15. .picture-bg {
  16. width: 100%;
  17. height: 372rpx;
  18. position: relative;
  19. .bg-icon {
  20. position: absolute;
  21. top: 40rpx;
  22. right: 30rpx;
  23. z-index: 2;
  24. @include flex(null, null, 26rpx);
  25. }
  26. .bg-image {
  27. width: 100%;
  28. height: 100%;
  29. filter: blur(4rpx);
  30. image {
  31. width: 100%;
  32. height: 100%;
  33. display: block;
  34. }
  35. }
  36. .bg-info {
  37. position: absolute;
  38. bottom: -74rpx;
  39. left: 32rpx;
  40. @include flex(null, null, 26rpx);
  41. .info-image {
  42. position: relative;
  43. .img {
  44. width: 158rpx;
  45. height: 158rpx;
  46. padding: 5rpx;
  47. box-sizing: border-box;
  48. border-radius: 50%;
  49. background-color: rgba(255, 255, 255, 0.5);
  50. @include flex(center);
  51. image {
  52. width: 148rpx;
  53. height: 148rpx;
  54. border-radius: 50%;
  55. }
  56. }
  57. .info-switch {
  58. width: 52rpx;
  59. height: 52rpx;
  60. position: absolute;
  61. right: 6rpx;
  62. bottom: 0;
  63. image {
  64. width: 100%;
  65. height: 100%;
  66. }
  67. }
  68. }
  69. .info-text {
  70. height: 150rpx;
  71. display: flex;
  72. justify-content: space-around;
  73. flex-direction: column;
  74. .text-title {
  75. font-size: 36rpx;
  76. color: #ffffff;
  77. font-weight: 700;
  78. }
  79. .text-lable {
  80. @include flex(null, null, 20rpx);
  81. .lable {
  82. font-size: 24rpx;
  83. color: #3d3d3d;
  84. padding: 4rpx 20rpx;
  85. background-color: #f9f9f9;
  86. border-radius: 30rpx;
  87. }
  88. }
  89. }
  90. }
  91. }
  92. .user-container {
  93. padding: 114rpx 28rpx 28rpx;
  94. box-sizing: border-box;
  95. background-color: #ffffff;
  96. .user-flowing {
  97. width: 100%;
  98. height: 132rpx;
  99. background: linear-gradient(270deg, #fe4b1e 0%, #fb8857 100%);
  100. border-radius: 30rpx 30rpx 0 0;
  101. @include flex(null, null, null);
  102. .flowing-box {
  103. flex: 1;
  104. @include flex(null, column, 22rpx);
  105. .flowing-txt {
  106. font-size: 24rpx;
  107. color: #ffffff;
  108. font-weight: 600;
  109. }
  110. .flowing-price {
  111. font-size: 32rpx;
  112. color: #ffffff;
  113. font-weight: 600;
  114. }
  115. }
  116. .left {
  117. position: relative;
  118. &::after {
  119. content: "";
  120. width: 4rpx;
  121. height: 95%;
  122. background-color: #ffffff;
  123. position: absolute;
  124. right: 0;
  125. top: 50%;
  126. transform: translateY(-50%);
  127. }
  128. }
  129. }
  130. .user-account {
  131. width: 100%;
  132. .account-top {
  133. width: 100%;
  134. padding: 36rpx 0;
  135. padding-right: 16rpx;
  136. box-sizing: border-box;
  137. border-bottom: 1rpx solid #e4e4e4;
  138. @include flex(space-between);
  139. text {
  140. font-size: 28rpx;
  141. color: #333333;
  142. font-weight: 600;
  143. }
  144. }
  145. .account-bottom {
  146. width: 100%;
  147. @include flex(null, null, null);
  148. flex-wrap: wrap;
  149. .bottom-box {
  150. width: 25%;
  151. margin-top: 20rpx;
  152. @include flex(center, column, 20rpx);
  153. image{
  154. width: 50rpx;
  155. height: 50rpx;
  156. display: block;
  157. }
  158. text{
  159. font-size: 28rpx;
  160. color: #666666;
  161. }
  162. }
  163. }
  164. }
  165. }
  166. }
  167. .number {
  168. line-height: 30rpx;
  169. transition: transform 0.3s linear;
  170. }