user.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /* pages/user/user.wxss */
  2. page {
  3. background: #F7F7F7;
  4. }
  5. .photo {
  6. background-color: #fff;
  7. padding: 30rpx 0 24rpx;
  8. text-align: center;
  9. }
  10. .userinfo-avatar {
  11. width: 80px;
  12. height: 80px;
  13. border: 1px solid rgba(0, 0, 0, 0.1);
  14. border-radius: 50%;
  15. overflow: hidden;
  16. margin: 0 auto;
  17. background-size: 80px 80px;
  18. overflow: hidden;
  19. position: relative;
  20. }
  21. .userinfo-nickname {
  22. text-align: center;
  23. display: block;
  24. font-size: 18rpx;
  25. color: white;
  26. background-color: rgba(0, 0, 0, 0.32);
  27. margin-top: 14rpx;
  28. position: absolute;
  29. bottom: 0px;
  30. width: 100%;
  31. left: 0;
  32. }
  33. .info {
  34. margin-top: 20rpx;
  35. background-color: #fff;
  36. padding: 0 46rpx;
  37. }
  38. .info .item {
  39. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  40. padding: 28rpx 0;
  41. display: flex;
  42. align-items: center;
  43. }
  44. .info .item:last-child {
  45. border-bottom: none;
  46. }
  47. .info .item>text {
  48. font-size: 30rpx;
  49. flex: 0 0 auto;
  50. color: #131D34;
  51. font-weight: 400;
  52. margin-right: 10px;
  53. }
  54. .info .item>.ir {
  55. flex: 1;
  56. }
  57. .ipname {
  58. width: 100%;
  59. text-align: right;
  60. font-size: 26rpx;
  61. color: #131D34;
  62. }
  63. .checkbox {
  64. padding-left: 80rpx;
  65. font-size: 26rpx;
  66. color: #131D34;
  67. position: relative;
  68. }
  69. .checkbox image {
  70. width: 34rpx;
  71. height: 34rpx;
  72. position: absolute;
  73. top: 50%;
  74. transform: translateY(-50%);
  75. left: 26rpx;
  76. }
  77. .radio {
  78. display: flex;
  79. align-items: center;
  80. justify-content: flex-end;
  81. }
  82. .picker-date {
  83. text-align: right;
  84. font-size: 26rpx;
  85. color: #131D34;
  86. }
  87. .picker-date image {
  88. width: 10rpx;
  89. height: 20rpx;
  90. margin-left: 20rpx;
  91. }
  92. .save {
  93. position: fixed;
  94. bottom: 0;
  95. left: 0;
  96. right: 0;
  97. padding: 28rpx 46rpx 64rpx;
  98. background-color: #fff;
  99. }
  100. .save button {
  101. height: 96rpx;
  102. background: #0075DC;
  103. color: #fff;
  104. font-size: 34rpx;
  105. line-height: 96rpx;
  106. }
  107. .getPhone {
  108. background: none;
  109. width: 100%;
  110. padding: 0;
  111. font-size: 26rpx;
  112. color: #131D34;
  113. text-align: right;
  114. }
  115. .avatar-wrapper {
  116. background-color: white;
  117. }