set-up.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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. .other-height {
  20. height: 180rpx !important;
  21. }
  22. .row-between {
  23. width: 100%;
  24. height: 130rpx;
  25. display: flex;
  26. justify-content: space-between;
  27. align-items: center;
  28. padding: 0 20rpx;
  29. box-sizing: border-box;
  30. border-bottom: 1px solid #F6F6F6;
  31. }
  32. .row-between:last-child {
  33. border-bottom: none;
  34. }
  35. .label {
  36. color: #202020;
  37. font-size: 34rpx;
  38. }
  39. .photo-box {
  40. width: 106rpx;
  41. height: 106rpx;
  42. position: relative;
  43. }
  44. .photo {
  45. width: 106rpx;
  46. height: 106rpx;
  47. border-radius: 50%;
  48. }
  49. .replace {
  50. width: 100%;
  51. height: 50%;
  52. line-height: 50%;
  53. border-radius: 0 0 200rpx 200rpx;
  54. background: rgb(51, 51, 51, 0.63);
  55. position: absolute;
  56. bottom: 0;
  57. left: 0;
  58. color: #FFFFFF;
  59. font-size: 28rpx;
  60. display: flex;
  61. justify-content: center;
  62. align-items: center;
  63. }
  64. .input {
  65. flex: 1;
  66. text-align: right;
  67. color: #202020;
  68. font-size: 34rpx;
  69. }
  70. .right-sidebar {
  71. display: flex;
  72. align-items: center;
  73. font-size: 34rpx;
  74. color: #A7A7A7;
  75. }
  76. .back-icon {
  77. width: 18rpx;
  78. margin-left: 16rpx;
  79. }
  80. .left-sidebar {
  81. display: flex;
  82. align-items: center;
  83. }
  84. .user-img {
  85. width: 128rpx;
  86. height: 128rpx;
  87. border-radius: 50%;
  88. margin-right: 24rpx;
  89. }
  90. .user-name {
  91. color: #333333;
  92. font-size: 34rpx;
  93. font-weight: bold;
  94. }
  95. .btn-box {
  96. width: 100%;
  97. display: flex;
  98. justify-content: center;
  99. align-items: center;
  100. padding: 48rpx 0;
  101. }
  102. .btn-box button {
  103. width: 100%;
  104. height: 90rpx;
  105. line-height: 90rpx;
  106. display: flex;
  107. align-items: center;
  108. justify-content: center;
  109. background-color: #fff;
  110. color: #202020;
  111. font-size: 28rpx;
  112. border-radius: 100rpx;
  113. }
  114. .mask {
  115. position: fixed;
  116. left: 0;
  117. right: 0;
  118. top: 0;
  119. height: 100vh;
  120. background-color: rgba(0, 0, 0, 0.38);
  121. z-index: 9998;
  122. }
  123. .window {
  124. position: fixed;
  125. width: calc(100% - 240rpx);
  126. top: 50%;
  127. left: 50%;
  128. transform: translate(-50%, -50%);
  129. border-radius: 20rpx;
  130. overflow: hidden;
  131. background-color: #fff;
  132. z-index: 9999;
  133. display: flex;
  134. flex-direction: column;
  135. }
  136. .window-top {
  137. width: 100%;
  138. min-height: 128rpx;
  139. color: #202020;
  140. font-size: 32rpx;
  141. display: flex;
  142. justify-content: center;
  143. align-items: center;
  144. }
  145. .window-bottom {
  146. width: 100%;
  147. display: flex;
  148. align-items: center;
  149. border-top: 1px solid #E2E6E9;
  150. box-sizing: border-box;
  151. }
  152. .window-bottom button {
  153. width: 50%;
  154. height: 98rpx;
  155. line-height: 98rpx;
  156. display: flex;
  157. justify-content: center;
  158. align-items: center;
  159. color: #202020;
  160. font-size: 30rpx;
  161. border-radius: initial;
  162. border-right: 1px solid #E2E6E9;
  163. background-color: #fff;
  164. }
  165. .window-bottom button:last-child {
  166. border-right: none;
  167. color: #F2501A;
  168. }