personal-information.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. page {
  2. background-color: #F2F2F2;
  3. }
  4. .wrap {
  5. width: 100%;
  6. display: flex;
  7. flex-direction: column;
  8. padding: 20rpx 24rpx;
  9. box-sizing: border-box;
  10. }
  11. .module {
  12. width: 100%;
  13. display: flex;
  14. flex-direction: column;
  15. background-color: #fff;
  16. border-radius: 16rpx;
  17. margin-bottom: 20rpx;
  18. }
  19. .row-between {
  20. width: 100%;
  21. height: 130rpx;
  22. display: flex;
  23. justify-content: space-between;
  24. align-items: center;
  25. padding: 0 20rpx;
  26. box-sizing: border-box;
  27. border-bottom: 1px solid #F6F6F6;
  28. }
  29. .row-between:last-child {
  30. border-bottom: none;
  31. }
  32. .label {
  33. color: #202020;
  34. font-size: 34rpx;
  35. }
  36. .photo-box {
  37. width: 106rpx;
  38. height: 106rpx;
  39. position: relative;
  40. }
  41. .photo {
  42. width: 106rpx;
  43. height: 106rpx;
  44. border-radius: 50%;
  45. }
  46. .replace {
  47. width: 100%;
  48. height: 50%;
  49. line-height: 50%;
  50. border-radius: 0 0 200rpx 200rpx;
  51. background: rgb(51, 51, 51, 0.63);
  52. position: absolute;
  53. bottom: 0;
  54. left: 0;
  55. color: #FFFFFF;
  56. font-size: 28rpx;
  57. display: flex;
  58. justify-content: center;
  59. align-items: center;
  60. }
  61. .input {
  62. flex: 1;
  63. text-align: right;
  64. color: #202020;
  65. font-size: 34rpx;
  66. }
  67. .right-sidebar {
  68. flex: 1;
  69. display: flex;
  70. justify-content: flex-end;
  71. align-items: center;
  72. font-size: 34rpx;
  73. color: #202020;
  74. }
  75. .right-sidebar picker{
  76. width: 100%;
  77. height: 130rpx;
  78. line-height: 130rpx;
  79. text-align: right;
  80. }
  81. .back-icon {
  82. width: 18rpx;
  83. margin-left: 14rpx;
  84. }