index.scss 3.2 KB

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