mine.scss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. /* 部分菜单图标 */
  2. .mine {
  3. min-height: calc(100vh - 44px);
  4. background-color: #F2F2F2;
  5. font-family: 'PingFangSC-Regular, PingFang SC';
  6. &-bg {
  7. height: 650rpx;
  8. margin-top: -70rpx;
  9. background-image: url(../../static/img/mine-bg.png);
  10. background-repeat: no-repeat;
  11. background-position: center center;
  12. background-size: cover;
  13. }
  14. &-info {
  15. margin-top: -430rpx;
  16. &-header {
  17. display: flex;
  18. justify-content: space-between;
  19. align-items: center;
  20. &-left {
  21. margin-left: 20rpx;
  22. display: flex;
  23. align-items: center;
  24. .avatar {
  25. background-color: rgba(255, 255, 255, 0.2);
  26. width: 146rpx;
  27. height: 146rpx;
  28. border-radius: 50%;
  29. display: flex;
  30. align-items: center;
  31. justify-content: center;
  32. margin-right: 20rpx;
  33. image {
  34. width: 130rpx;
  35. height: 130rpx;
  36. border-radius: 50%;
  37. }
  38. }
  39. .name {
  40. color: #fff;
  41. font-size: 40rpx;
  42. font-family: 'PingFangSC-Medium, PingFang SC';
  43. }
  44. }
  45. &-right {
  46. background: linear-gradient(270deg, #FF6100 0%, #FE7C02 100%);
  47. border-top-left-radius: 40rpx;
  48. border-bottom-left-radius: 40rpx;
  49. border: solid 2px rgba(255, 255, 255, 0.3);
  50. border-right: none;
  51. display: flex;
  52. align-items: center;
  53. padding: 0 30rpx 0 26rpx;
  54. height: 82rpx;
  55. view {
  56. &:first-child {
  57. font-size: 22rpx;
  58. color: #fff;
  59. opacity: 0.7;
  60. }
  61. &:nth-child(2) {
  62. font-size: 60rpx;
  63. color: #fff;
  64. font-weight: 500;
  65. margin: 0 22rpx 0 16rpx;
  66. }
  67. }
  68. }
  69. }
  70. &-authentication {
  71. display: flex;
  72. justify-content: space-between;
  73. width: calc(100% - 220rpx);
  74. margin: 30rpx auto;
  75. font-size: 24rpx;
  76. color: rgba(255, 255, 255, .6);
  77. &-item {
  78. display: flex;
  79. align-items: center;
  80. view {
  81. &:last-child {
  82. padding: 6rpx 16rpx;
  83. background-color: rgba(255, 255, 255, 0.2);
  84. border-radius: 30rpx;
  85. margin-left: 10rpx;
  86. font-size: 18rpx;
  87. }
  88. }
  89. }
  90. }
  91. &-gain {
  92. display: flex;
  93. justify-content: space-between;
  94. width: calc(100% - 60rpx);
  95. margin: 0 auto;
  96. background-color: #fff;
  97. border-radius: 10rpx;
  98. padding: 36rpx 34rpx;
  99. &-item {
  100. text-align: center;
  101. view {
  102. &:first-child {
  103. font-size: 70rpx;
  104. font-weight: 500;
  105. text {
  106. font-size: 38rpx;
  107. font-weight: 400;
  108. color: #6E6E6E;
  109. }
  110. }
  111. &:last-child {
  112. font-size: 32rpx;
  113. margin-top: 10rpx;
  114. font-weight: 400;
  115. }
  116. }
  117. &:first-child {
  118. view {
  119. &:first-child {
  120. color: #4591E7;
  121. }
  122. }
  123. }
  124. &:nth-child(2) {
  125. view {
  126. &:first-child {
  127. color: #FF5733;
  128. }
  129. }
  130. }
  131. &:last-child {
  132. view {
  133. &:first-child {
  134. color: #17BEB2;
  135. }
  136. }
  137. }
  138. }
  139. }
  140. &-cell1 {
  141. width: calc(100% - 60rpx);
  142. margin: 20rpx auto;
  143. padding: 34rpx;
  144. background-color: #fff;
  145. border-radius: 10rpx;
  146. .cell-icon {
  147. margin-right: 24rpx;
  148. }
  149. .jianli {
  150. width: 34rpx;
  151. height: 34rpx;
  152. }
  153. .toudi {
  154. width: 34rpx;
  155. height: 34rpx;
  156. }
  157. .mianshi {
  158. width: 28rpx;
  159. height: 34rpx;
  160. }
  161. .peixun {
  162. width: 30rpx;
  163. height: 38rpx;
  164. }
  165. .pingjia {
  166. width: 36rpx;
  167. height: 30rpx;
  168. }
  169. }
  170. }
  171. }