userInfo.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /* pages/userInfo/userInfo.wxss */
  2. .pageWrap {
  3. padding: 24rpx;
  4. }
  5. .area {
  6. background: #fff;
  7. border-radius: 20rpx;
  8. overflow: hidden;
  9. }
  10. .area+.area {
  11. margin-top: 24rpx;
  12. }
  13. .logo {
  14. position: relative;
  15. display: flex;
  16. align-items: center;
  17. height: 178rpx;
  18. border-bottom: solid #f5f5f5 1rpx;
  19. }
  20. .icon-arrowr {
  21. position: absolute;
  22. top: 50%;
  23. right: 16rpx;
  24. transform: translateY(-50%);
  25. font-size: 30rpx;
  26. color: #707070;
  27. }
  28. .logo .avatar {
  29. position: absolute;
  30. top: 50%;
  31. transform: translateY(-50%);
  32. right: 65rpx;
  33. width: 128rpx;
  34. height: 128rpx;
  35. border-radius: 50%;
  36. }
  37. .lineGroup {
  38. position: relative;
  39. }
  40. .lineGroup+.lineGroup {
  41. border-top: solid #f5f5f5 1rpx;
  42. }
  43. .lineInner {
  44. display: flex;
  45. }
  46. .lineGroup .label,
  47. .logo .label {
  48. padding: 0 24rpx;
  49. height: 98rpx;
  50. line-height: 98rpx;
  51. font-size: 32rpx;
  52. color: #666;
  53. }
  54. .lineGroup .content {
  55. flex: 1;
  56. width: 0;
  57. }
  58. .lineGroup .placeholderStyle {
  59. padding: 0 24rpx;
  60. height: 98rpx;
  61. line-height: 98rpx;
  62. text-align: right;
  63. }
  64. .lineGroup .placeholderStyle.textarea {
  65. padding: 31rpx 24rpx;
  66. line-height: 36rpx;
  67. min-height: 150rpx;
  68. }
  69. .lineGroup .text {
  70. padding: 31rpx 24rpx;
  71. line-height: 36rpx;
  72. text-align: right;
  73. font-size: 28rpx;
  74. color: #282828;
  75. word-break: break-all;
  76. }
  77. .lineGroup .text.textarea {
  78. padding: 31rpx 24rpx;
  79. line-height: 36rpx;
  80. min-height: 150rpx;
  81. }
  82. .lineSpread {
  83. position: relative;
  84. padding: 24rpx;
  85. display: flex;
  86. align-items: center;
  87. }
  88. .lineSpread:before {
  89. content: "";
  90. position: absolute;
  91. top: 0;
  92. left: 24rpx;
  93. right: 24rpx;
  94. height: 1rpx;
  95. background: #f5f5f5;
  96. }
  97. .lineSpread .btn {
  98. flex: 1;
  99. height: 80rpx;
  100. line-height: 80rpx;
  101. font-size: 32rpx;
  102. color: #d5d1d1;
  103. background: transparent;
  104. border: solid #c4c4c4 1rpx;
  105. border-radius: 0;
  106. }
  107. .lineSpread .btn+.btn {
  108. margin-left: 20rpx!important;
  109. }