index.scss 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. .user-box {
  2. width: 750rpx;
  3. background-color: var(--bgColor);
  4. padding: 30rpx;
  5. box-sizing: border-box;
  6. color: #FFFFFF;
  7. font-family: PingFang SC-Regular, PingFang SC;
  8. /* 用户展示内容 */
  9. .user-con {
  10. display: flex;
  11. height: 128rpx;
  12. align-items: center;
  13. background: none;
  14. .v-img {
  15. margin-top: 5rpx;
  16. }
  17. .user-msg {
  18. flex: 1;
  19. height: 100%;
  20. margin-left: 30rpx;
  21. .user-name {
  22. width: 450rpx;
  23. height: 50rpx;
  24. font-size: 36rpx;
  25. font-weight: bold;
  26. margin-top: 16rpx;
  27. text {
  28. display: inline-block;
  29. height: 40rpx;
  30. font-size: 28rpx;
  31. margin-left: 40rpx;
  32. }
  33. }
  34. .user-phone {
  35. height: 38rpx;
  36. font-size: 24rpx;
  37. font-family: PingFang SC-Regular, PingFang SC;
  38. line-height: 38rpx;
  39. margin-top: 10rpx;
  40. }
  41. }
  42. }
  43. /* 行动力 */
  44. .display-data {
  45. display: flex;
  46. height: 182rpx;
  47. background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, .5) 100%);
  48. &_l,
  49. &_r {
  50. display: flex;
  51. flex-direction: column;
  52. justify-content: center;
  53. align-items: center;
  54. height: 100%;
  55. }
  56. &_l {
  57. width: 320rpx;
  58. .first-line {
  59. height: 66rpx;
  60. line-height: 66rpx;
  61. font-size: 48rpx;
  62. font-family: PingFang SC-Bold, PingFang SC;
  63. font-weight: bold;
  64. }
  65. .tow-line {
  66. height: 40rpx;
  67. line-height: 40rpx;
  68. font-size: 28rpx;
  69. margin-top: 16rpx;
  70. }
  71. }
  72. &_r {
  73. flex: 1;
  74. font-size: 28rpx;
  75. line-height: 40rpx;
  76. .tow-line {
  77. margin-top: 25rpx;
  78. }
  79. }
  80. }
  81. }
  82. .operating {
  83. .item {
  84. width: 100%;
  85. .con {
  86. display: flex;
  87. justify-content: space-between;
  88. width: calc(100% - 30rpx);
  89. height: 90rpx;
  90. line-height: 90rpx;
  91. border-bottom: 1rpx solid #eeeeee;
  92. margin-left: 30rpx;
  93. padding-right: 20rpx;
  94. box-sizing: border-box;
  95. .label {
  96. display: flex;
  97. align-items: center;
  98. font-size: 28rpx;
  99. font-family: PingFang SC-Medium, PingFang SC;
  100. font-weight: 500;
  101. color: #333333;
  102. text {
  103. font-size: 50rpx;
  104. margin-right: 10rpx;
  105. }
  106. .bd-wechat {
  107. width: 90rpx;
  108. height: 36rpx;
  109. line-height: 36rpx;
  110. text-align: center;
  111. border-radius: 4rpx;
  112. border: 1rpx solid #CCCCCC;
  113. font-size: 20rpx;
  114. font-family: PingFangSC-Regular-, PingFangSC-Regular;
  115. font-weight: normal;
  116. color: #999999;
  117. margin-left: 10rpx;
  118. }
  119. }
  120. }
  121. }
  122. .item:last-child .con {
  123. border-bottom: 0;
  124. }
  125. .item-right {
  126. display: flex;
  127. align-items: center;
  128. line-height: 20rpx;
  129. .user-img {
  130. width: 58rpx;
  131. height: 58rpx;
  132. border-radius: 50%;
  133. margin-right: 20rpx;
  134. }
  135. }
  136. .tips {
  137. font-size: 24rpx !important;
  138. margin-top: -4rpx;
  139. margin-right: 10rpx;
  140. color: #333333;
  141. }
  142. .right-false {
  143. color: var(--error);
  144. }
  145. }
  146. /* 退出登录 */
  147. .out-login {
  148. width: 500rpx;
  149. height: 90rpx;
  150. border-radius: 90rpx !important;
  151. font-size: 28rpx;
  152. font-family: PingFang SC-Regular, PingFang SC;
  153. color: #333333 !important;
  154. }