profile.wxss 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. .profile-container.data-v-935803c6 {
  2. background: #f7f8fa;
  3. min-height: 100vh;
  4. }
  5. .profile-header.data-v-935803c6 {
  6. text-align: center;
  7. font-size: 36rpx;
  8. font-weight: bold;
  9. padding: 40rpx 0 20rpx 0;
  10. background: #fff;
  11. }
  12. .profile-list.data-v-935803c6 {
  13. margin-top: 20rpx;
  14. background: #fff;
  15. border-radius: 20rpx;
  16. overflow: hidden;
  17. }
  18. .profile-item.data-v-935803c6 {
  19. display: flex;
  20. align-items: center;
  21. padding: 0 32rpx;
  22. height: 100rpx;
  23. border-bottom: 1rpx solid #f0f0f0;
  24. }
  25. .profile-item.data-v-935803c6:last-child {
  26. border-bottom: none;
  27. }
  28. .item-label.data-v-935803c6 {
  29. flex: 0 0 180rpx;
  30. color: #333;
  31. font-size: 30rpx;
  32. }
  33. .item-value.data-v-935803c6 {
  34. flex: 1;
  35. color: #666;
  36. font-size: 28rpx;
  37. text-align: right;
  38. margin-right: 16rpx;
  39. }
  40. .avatar.data-v-935803c6 {
  41. width: 70rpx;
  42. height: 70rpx;
  43. border-radius: 50%;
  44. margin-left: auto;
  45. margin-right: 8rpx;
  46. background: #eee;
  47. }
  48. .wechat-icon.data-v-935803c6 {
  49. width: 36rpx;
  50. height: 36rpx;
  51. margin-right: 8rpx;
  52. }
  53. .arrow.data-v-935803c6 {
  54. color: #bbb;
  55. font-size: 36rpx;
  56. margin-left: 8rpx;
  57. }
  58. .popup-mask.data-v-935803c6 {
  59. position: fixed;
  60. left: 0; right: 0; top: 0; bottom: 0;
  61. background: rgba(0,0,0,0.3);
  62. display: flex;
  63. align-items: center;
  64. justify-content: center;
  65. z-index: 1000;
  66. }
  67. .popup-content.data-v-935803c6 {
  68. background: #fff;
  69. border-radius: 16rpx;
  70. padding: 40rpx;
  71. min-width: 400rpx;
  72. display: flex;
  73. flex-direction: column;
  74. align-items: center;
  75. }
  76. .popup-content input.data-v-935803c6 {
  77. width: 300rpx;
  78. border: 1rpx solid #eee;
  79. border-radius: 8rpx;
  80. padding: 16rpx;
  81. margin-bottom: 24rpx;
  82. }
  83. .popup-btns.data-v-935803c6 {
  84. display: flex;
  85. width: 100%;
  86. justify-content: space-between;
  87. }
  88. .popup-btns button.data-v-935803c6 {
  89. flex: 1;
  90. margin: 0 8rpx;
  91. background: #409EFF;
  92. color: #fff;
  93. border: none;
  94. border-radius: 8rpx;
  95. padding: 16rpx 0;
  96. font-size: 28rpx;
  97. }