index.scss 3.2 KB

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