personal.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. /* pages/personal/personal.wxss */
  2. page {
  3. background-color: #ffffff;
  4. }
  5. .personal {
  6. display: flex;
  7. flex-direction: column;
  8. box-sizing: border-box;
  9. }
  10. .user-info {
  11. padding: 0 30rpx;
  12. background-color: #b4dbfe;
  13. box-sizing: border-box;
  14. }
  15. .user-info-inner {
  16. box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
  17. border-radius: 24rpx;
  18. background-color: #fff;
  19. position: relative;
  20. bottom: -76rpx;
  21. box-sizing: border-box;
  22. margin-top: -76rpx;
  23. }
  24. .info-top {
  25. display: flex;
  26. align-items: center;
  27. justify-content: space-between;
  28. padding: 34rpx 38rpx 24rpx 38rpx;
  29. }
  30. .photo-img {
  31. width: 100rpx;
  32. height: 100rpx;
  33. border-radius: 100%;
  34. }
  35. .info-head-name {
  36. line-height: 44rpx;
  37. font-size: 40rpx;
  38. color: #333333;
  39. font-family: PingFangSC-Medium, PingFang SC;
  40. font-weight: 500;
  41. margin-left: 20rpx;
  42. }
  43. .flex-center {
  44. display: flex;
  45. align-items: center;
  46. }
  47. .info-head-center {
  48. display: flex;
  49. align-items: center;
  50. font-size: 26rpx;
  51. line-height: 36rpx;
  52. color: #666;
  53. }
  54. .like-wrap {
  55. display: flex;
  56. align-items: center;
  57. justify-content: center;
  58. background: rgba(59, 122, 255, 1);
  59. padding: 4rpx 10rpx;
  60. border-radius: 8rpx;
  61. }
  62. .normal {
  63. background: #efefef;
  64. }
  65. .like-wrap .like-icon {
  66. width: 28rpx;
  67. height: 28rpx;
  68. }
  69. .like-wrap .like {
  70. font-size: 26rpx;
  71. font-family: PingFangSC-Medium, PingFang SC;
  72. font-weight: 500;
  73. color: rgba(255, 255, 255, 1);
  74. }
  75. .info-bottom {
  76. display: flex;
  77. justify-content: space-around;
  78. align-items: center;
  79. position: relative;
  80. padding-bottom: 34rpx;
  81. }
  82. .info-bottom-item {
  83. flex: 1;
  84. display: flex;
  85. flex-direction: column;
  86. align-items: center;
  87. color: #333;
  88. }
  89. .line {
  90. content: "";
  91. width: 2rpx;
  92. height: 40rpx;
  93. background-color: #e1e1e1;
  94. }
  95. .info-bottom-item .info-bottom-item-top {
  96. font-size: 36rpx;
  97. line-height: 44rpx;
  98. font-family: PingFangSC-Medium, PingFang SC;
  99. font-weight: 400;
  100. }
  101. .info-bottom-item-bottom {
  102. font-size: 24rpx;
  103. line-height: 34rpx;
  104. }
  105. .tabs-wrap {
  106. padding-top: 120rpx;
  107. padding-bottom: 20rpx;
  108. background-color: #ffffff;
  109. }
  110. .end-txt {
  111. height: 60rpx;
  112. line-height: 60rpx;
  113. font-size: 30rpx;
  114. color: #c0c0c0;
  115. text-align: center;
  116. padding-bottom: var(--safe-area-inset-bottom, 0);
  117. }