mine.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. .min-wrapper .header {
  2. position: relative;
  3. left: 0;
  4. top: 0;
  5. width: 100%;
  6. height: 460rpx;
  7. }
  8. .nav-bar {
  9. background: rgba(255, 255, 255, 0);
  10. }
  11. .min-wrapper .header .bg {
  12. position: absolute;
  13. left: 0;
  14. top: 0;
  15. right: 0;
  16. bottom: 0;
  17. display: block;
  18. width: 100%;
  19. }
  20. .user-info {
  21. position: relative;
  22. left: 0;
  23. top: 0;
  24. z-index: 1;
  25. display: flex;
  26. align-items: center;
  27. padding-top: 71rpx;
  28. padding-left: 40rpx;
  29. }
  30. .user-info .portrait {
  31. width: 128rpx;
  32. height: 128rpx;
  33. overflow: hidden;
  34. margin-right: 32rpx;
  35. border-radius: 24rpx;
  36. border: 2rpx solid #F7F7F7;
  37. background: rgba(255, 255, 255, 1);
  38. }
  39. .user-info .name {
  40. color: rgba(0, 0, 0, 1);
  41. font-size: 40rpx;
  42. font-weight: 500;
  43. }
  44. .user-info .phone {
  45. color: rgba(102, 102, 102, 1);
  46. font-size: 28rpx;
  47. }
  48. .navigate-list {
  49. margin-top: 70rpx;
  50. padding: 0 24rpx 320rpx;
  51. }
  52. .list {
  53. display: flex;
  54. align-items: center;
  55. justify-content: space-between;
  56. }
  57. .label-wrap {
  58. display: flex;
  59. align-items: center;
  60. }
  61. .label-wrap image.label {
  62. width: 100rpx;
  63. height: 100rpx;
  64. }
  65. .label-wrap text.label {
  66. margin-left: 8rpx;
  67. color: rgba(51, 51, 51, 1);
  68. font-size: 32rpx;
  69. font-weight: 500;
  70. line-height: 40rpx;
  71. }
  72. .list .arrow {
  73. width: 28rpx;
  74. height: 28rpx;
  75. }
  76. .list.padding-bottom-22 {
  77. position: relative;
  78. left: 0;
  79. top: 0;
  80. padding-bottom: 22rpx;
  81. }
  82. .list.padding-bottom-22:after {
  83. position: absolute;
  84. left: -24rpx;
  85. right: -24rpx;
  86. bottom: 0;
  87. content: '';
  88. border-bottom: 1rpx solid #EEEEEE;
  89. }
  90. .list.margin-top-20 {
  91. margin-top: 20rpx;
  92. }
  93. .list.margin-top-22 {
  94. margin-top: 22rpx;
  95. }