index.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. page {
  2. height: 100%;
  3. width: 100%;
  4. background: #f4f4f4;
  5. }
  6. .container {
  7. background: #f4f4f4;
  8. height: auto;
  9. overflow: hidden;
  10. width: 100%;
  11. }
  12. .profile-info {
  13. background-color: #ab956d;
  14. color: #f4f4f4;
  15. display: flex;
  16. align-items: center;
  17. padding: 30rpx;
  18. font-size: 28rpx;
  19. }
  20. .profile-info .avatar {
  21. height: 148rpx;
  22. width: 148rpx;
  23. border-radius: 50%;
  24. }
  25. .profile-info .info {
  26. flex: 1;
  27. height: 85rpx;
  28. padding-left: 31.25rpx;
  29. }
  30. .profile-info .name {
  31. display: block;
  32. height: 45rpx;
  33. line-height: 45rpx;
  34. color: #fff;
  35. font-size: 37.5rpx;
  36. margin-bottom: 10rpx;
  37. }
  38. .profile-info .level {
  39. display: block;
  40. height: 30rpx;
  41. line-height: 30rpx;
  42. margin-bottom: 10rpx;
  43. color: #7f7f7f;
  44. font-size: 30rpx;
  45. }
  46. .user_area {
  47. /* border: 1px solid black; */
  48. width: 100%;
  49. height: 226rpx;
  50. /* margin: 0 auto; */
  51. margin-top: -8rpx;
  52. background: #fff;
  53. /* border-top: 1px solid #f4f4f4; */
  54. }
  55. .user_row {
  56. /* border: 1px solid black; */
  57. height: 86rpx;
  58. line-height: 86rpx;
  59. border-bottom: 1px solid #fafafa;
  60. }
  61. .user_row_left {
  62. /* border: 1px solid #757575; */
  63. float: left;
  64. height: 86rpx;
  65. font-weight: 550;
  66. line-height: 86rpx;
  67. margin-left: 35rpx;
  68. font-size: 26rpx;
  69. letter-spacing: 1rpx;
  70. }
  71. .user_row_right {
  72. /* border: 1px solid #757575; */
  73. float: right;
  74. height: 40rpx;
  75. width: 40rpx;
  76. font-weight: 550;
  77. line-height: 86rpx;
  78. margin-top: 28rpx;
  79. margin-right: 30rpx;
  80. }
  81. .user_column {
  82. /* border: 1px solid black; */
  83. height: 140rpx;
  84. display: flex;
  85. justify-content: center;
  86. align-items: center;
  87. }
  88. .user_column_item {
  89. width: 30%;
  90. height: 140rpx;
  91. background: #fff;
  92. text-align: center;
  93. position: relative;
  94. }
  95. .user_column_item_badge {
  96. height: 28rpx;
  97. width: 28rpx;
  98. position: absolute;
  99. background: #b4282d;
  100. color: #fff;
  101. border-radius: 50%;
  102. margin-top: 20rpx;
  103. margin-left: 40rpx;
  104. }
  105. .user_column_item_image {
  106. width: 50rpx;
  107. height: 50rpx;
  108. margin-top: 30rpx;
  109. }
  110. .user_column_item_text {
  111. /* border: 1px solid black; */
  112. margin-top: 5rpx;
  113. font-size: 24rpx;
  114. color: #555;
  115. }
  116. .separate {
  117. background: #e0e3da;
  118. width: 100%;
  119. height: 6rpx;
  120. }
  121. .user_column_item_phone {
  122. width: 30%;
  123. height: 140rpx;
  124. text-align: center;
  125. display: flex;
  126. justify-content: center;
  127. align-items: center;
  128. flex-wrap: wrap;
  129. float: left;
  130. background: #fff;
  131. border-radius: 0;
  132. }
  133. .user_column_item_phone::after {
  134. border: none;
  135. border-radius: 0;
  136. }
  137. .logout {
  138. margin-top: 30rpx;
  139. height: 100rpx;
  140. width: 100%;
  141. line-height: 100rpx;
  142. text-align: center;
  143. background: #fff;
  144. color: red;
  145. font-size: 30rpx;
  146. }