user.wxss 1.7 KB

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