index.scss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. display: flex;
  23. height: 50rpx;
  24. font-size: 36rpx;
  25. font-weight: bold;
  26. margin-top: 16rpx;
  27. .name {
  28. width: 350rpx;
  29. }
  30. text {
  31. display: inline-block;
  32. height: 40rpx;
  33. font-size: 28rpx;
  34. margin-left: 20rpx;
  35. }
  36. }
  37. .user-phone {
  38. height: 38rpx;
  39. font-size: 24rpx;
  40. font-family: PingFang SC-Regular, PingFang SC;
  41. line-height: 38rpx;
  42. margin-top: 10rpx;
  43. }
  44. }
  45. }
  46. }
  47. .operating {
  48. width: 690rpx;
  49. margin: 0 auto;
  50. background-color: #fff;
  51. margin-top: 40rpx;
  52. border-radius: 16rpx;
  53. overflow: hidden;
  54. .item {
  55. width: 100%;
  56. .con {
  57. display: flex;
  58. justify-content: space-between;
  59. width: calc(100% - 30rpx);
  60. height: 90rpx;
  61. line-height: 90rpx;
  62. border-bottom: 1rpx solid #eeeeee;
  63. margin-left: 30rpx;
  64. padding-right: 20rpx;
  65. box-sizing: border-box;
  66. .label {
  67. display: flex;
  68. align-items: center;
  69. font-size: 28rpx;
  70. font-family: PingFang SC-Medium, PingFang SC;
  71. font-weight: 500;
  72. color: #333333;
  73. text {
  74. font-size: 50rpx;
  75. margin-right: 10rpx;
  76. }
  77. .bd-wechat {
  78. width: 90rpx;
  79. height: 36rpx;
  80. line-height: 36rpx;
  81. text-align: center;
  82. border-radius: 4rpx;
  83. border: 1rpx solid #CCCCCC;
  84. font-size: 20rpx;
  85. font-family: PingFangSC-Regular-, PingFangSC-Regular;
  86. font-weight: normal;
  87. color: #999999;
  88. margin-left: 10rpx;
  89. }
  90. }
  91. }
  92. }
  93. .item:last-child .con {
  94. border-bottom: 0;
  95. }
  96. .item-right {
  97. display: flex;
  98. align-items: center;
  99. line-height: 20rpx;
  100. .user-img {
  101. width: 58rpx;
  102. height: 58rpx;
  103. border-radius: 50%;
  104. margin-right: 20rpx;
  105. }
  106. }
  107. .tips {
  108. font-size: 24rpx !important;
  109. margin-top: -4rpx;
  110. margin-right: 10rpx;
  111. color: #333333;
  112. }
  113. .right-false {
  114. color: var(--error);
  115. }
  116. }
  117. /* 退出登录 */
  118. .out-login {
  119. width: 500rpx;
  120. height: 90rpx;
  121. border-radius: 90rpx !important;
  122. font-size: 28rpx;
  123. font-family: PingFang SC-Regular, PingFang SC;
  124. color: #333333 !important;
  125. }