index.scss 3.2 KB

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