my.wxss 2.1 KB

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