user-info.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /* pages/user-info/user-info.wxss */
  2. page {
  3. background: #f5f5f5;
  4. }
  5. .extra {
  6. width: 100%;
  7. height: 176rpx;
  8. padding: 0 30rpx;
  9. box-sizing: border-box;
  10. background: #fff;
  11. display: flex;
  12. justify-content: space-between;
  13. align-items: center;
  14. margin-top: 20rpx;
  15. border: 2rpx solid #f5f5f5;
  16. }
  17. .avatar-content {
  18. display: flex;
  19. align-items: center;
  20. justify-content: flex-end;
  21. }
  22. .avatar {
  23. width: 102rpx;
  24. height: 102rpx;
  25. border-radius: 50%;
  26. margin-right: 30rpx;
  27. }
  28. .default {
  29. width: 64rpx;
  30. height: 67rpx;
  31. }
  32. .extra text {
  33. font-size: 30rpx;
  34. font-family: SourceHanSansCN-Regular;
  35. font-weight: 400;
  36. color: #333333;
  37. padding-top: 36rpx;
  38. }
  39. /* 输入框部分 */
  40. .list {
  41. height: 116rpx;
  42. width: 100%;
  43. font-family: SourceHanSansCN-Regular;
  44. padding: 0 30rpx;
  45. box-sizing: border-box;
  46. background: #fff;
  47. display: flex;
  48. flex-direction: row;
  49. justify-content: space-between;
  50. align-items: center;
  51. border-bottom: 2rpx solid #f5f5f5;
  52. }
  53. .list text {
  54. font-size: 30rpx;
  55. font-weight: 400;
  56. color: #666666;
  57. }
  58. .list-content {
  59. flex: 1;
  60. height: 100%;
  61. color: #000;
  62. text-align: right;
  63. font-size: 30rpx;
  64. font-weight: 400;
  65. display: flex;
  66. align-items: center;
  67. justify-content: flex-end;
  68. }
  69. .tips {
  70. font-size: 30rpx !important;
  71. color: #AAAAAA;
  72. }
  73. .list-content input {
  74. width: 100%;
  75. height: 100%;
  76. }
  77. picker {
  78. width: 100%;
  79. height: 100%;
  80. display: flex;
  81. align-items: center;
  82. justify-content: flex-end;
  83. }
  84. .picker {
  85. height: 100%;
  86. width: 100%;
  87. display: flex;
  88. align-items: center;
  89. justify-content: flex-end;
  90. }
  91. .picker .picker-view {
  92. width: 300rpx;
  93. height: 116rpx;
  94. color: #000;
  95. text-align: right;
  96. line-height: 116rpx;
  97. }
  98. .arrow {
  99. width: 17rpx;
  100. height: 29rpx;
  101. margin-left: 15rpx;
  102. }
  103. /* btn */
  104. .fixed-footer {
  105. width: 100%;
  106. }
  107. .btn-group {
  108. background: #fff;
  109. padding: 20rpx;
  110. box-sizing: border-box;
  111. }
  112. .selfBtn {
  113. display: flex;
  114. height: 88rpx;
  115. line-height: 88rpx;
  116. align-items: center;
  117. /* box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1); */
  118. background: #0177FF;
  119. border-radius: 10rpx;
  120. justify-content: center;
  121. font-size: 34rpx;
  122. font-family: SourceHanSansCN-Normal;
  123. font-weight: 400;
  124. color: rgba(255, 254, 254, 1);
  125. }