person.wxss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. Page {
  2. width: 100%;
  3. height: 100%;
  4. }
  5. .container .person {
  6. display: flex;
  7. height: 200px;
  8. padding: 10rpx 30rpx;
  9. justify-content: space-between;
  10. align-items: center;
  11. background-color: #FFE084;
  12. }
  13. .container .person .person-info {
  14. padding-left: 40rpx;
  15. }
  16. .container .person .person-info .user-name {
  17. position: relative;
  18. margin-top: 10rpx;
  19. }
  20. .container .person .person-info .user-name .next {
  21. width: 35rpx;
  22. height: 35rpx;
  23. position: absolute;
  24. right: -74rpx;
  25. top: 12rpx;
  26. z-index: -1;
  27. }
  28. .container .person .person-info .tel {
  29. margin-top: 20rpx;
  30. }
  31. .container .person .head-img {
  32. width: 140rpx;
  33. height: 140rpx;
  34. border-radius: 50%;
  35. }
  36. .container .person .head-img image {
  37. width: 140rpx;
  38. height: 140rpx;
  39. border-radius: 50%;
  40. }
  41. .container .user-login {
  42. display: flex;
  43. flex-flow: row nowrap;
  44. justify-content: space-between;
  45. height: 70px;
  46. margin-top: 42px;
  47. }
  48. .collection-view {
  49. text-align: center;
  50. margin-right:44px ;
  51. }
  52. .record-yes-view{
  53. text-align: center;
  54. }
  55. .record-view{
  56. text-align: center;
  57. margin-left:55px ;
  58. }
  59. .opta-view-text {
  60. font-size: 14px;
  61. font-weight: 600;
  62. color: #000000;
  63. margin-top: 5px;
  64. }
  65. .opta-view-num {
  66. font-size: 20px;
  67. font-weight: 600;
  68. color: #FF8364;
  69. }
  70. .login-info {
  71. display: flex;
  72. flex-flow: row nowrap;
  73. justify-content: left;
  74. align-items: center;
  75. }
  76. .container .user-login .login-btn {
  77. background-color: transparent;
  78. font-weight: 400;
  79. text-align: center;
  80. }
  81. .container .user-login .next {
  82. width: 50rpx;
  83. height: 50rpx;
  84. }
  85. .head-img {
  86. width: 140rpx;
  87. height: 140rpx;
  88. margin-right: 32px;
  89. border-radius: 50%;
  90. }
  91. .user-info{
  92. display: flex;
  93. flex-flow: column nowrap;
  94. justify-content: left;
  95. width: 150px;
  96. margin-left: 55px;
  97. }
  98. .nick-name{
  99. font-size: 22px;
  100. font-weight: bold;
  101. color: #000000;
  102. }
  103. .edit-text-view{
  104. display: flex;
  105. flex-flow: row nowrap;
  106. justify-content: left;
  107. margin-top: 5px;
  108. align-items: center;
  109. }
  110. .edit-icon{
  111. width: 14px;
  112. height: 14px;
  113. }
  114. .edit-text{
  115. font-size: 14px;
  116. font-family: Source Han Sans CN;
  117. font-weight: 600;
  118. color: #000000;
  119. margin-left: 5px;
  120. }
  121. .container .order {
  122. display: flex;
  123. width: 100%;
  124. height: 120rpx;
  125. background-color: #fff;
  126. border-bottom: 1px solid #ebeef5;
  127. justify-content: flex-start;
  128. position: relative;
  129. }
  130. .container .order .icons {
  131. width: 55rpx;
  132. height: 55rpx;
  133. margin: 32rpx 23rpx;
  134. }
  135. .container .order .order-text {
  136. line-height: 120rpx;
  137. letter-spacing: 3rpx;
  138. }
  139. .container .order .next-gray {
  140. width: 30rpx;
  141. height: 30rpx;
  142. position: absolute;
  143. right: 30rpx;
  144. top: 45rpx;
  145. }
  146. .container .assess {
  147. display: flex;
  148. width: 100%;
  149. height: 120rpx;
  150. background-color: #fff;
  151. border-bottom: 1px solid #ebeef5;
  152. justify-content: flex-start;
  153. position: relative;
  154. }
  155. .container .assess .icons {
  156. width: 55rpx;
  157. height: 55rpx;
  158. margin: 32rpx 23rpx;
  159. }
  160. .container .assess .assess-text {
  161. line-height: 120rpx;
  162. letter-spacing: 3rpx;
  163. }
  164. .container .assess .next-gray {
  165. width: 30rpx;
  166. height: 30rpx;
  167. position: absolute;
  168. right: 30rpx;
  169. top: 45rpx;
  170. }
  171. .title {
  172. width: 100%;
  173. height: 30px;
  174. text-align: center;
  175. margin-top: 50px;
  176. line-height: 30px;
  177. font-size: 14px;
  178. }
  179. .gotoRecord {
  180. margin-left: 55px;
  181. }
  182. .opta-view {
  183. height: 60px;
  184. width: 100%;
  185. display: flex;
  186. flex-flow: row nowrap;
  187. justify-content: space-between;
  188. align-items: center;
  189. margin-top: 12px;
  190. }
  191. .index-header {
  192. display: flex;
  193. flex-flow: column nowrap;
  194. justify-content: left;
  195. height: 280px;
  196. background-color: #FFE084;
  197. color: #fff;
  198. }
  199. .remind{
  200. width: 331px;
  201. height: 220px;
  202. z-index: 999;
  203. /* margin: 0 auto; */
  204. border-radius: 20px;
  205. background-color: #fff;
  206. box-shadow: 0px 9px 9px 9px rgba(131, 131, 131, 0.16);
  207. position: absolute;
  208. top: 430px;
  209. /* left: 22px; */
  210. padding-top:26px;
  211. }
  212. .remind>view{
  213. margin-left:18px;
  214. }
  215. .remind-title{
  216. font-size: 16px;
  217. font-weight: bold;
  218. color: #000000;
  219. }
  220. .remind-text{
  221. margin-top: 39px;
  222. font-size: 10px;
  223. color: #000000;
  224. white-space: pre-line;
  225. }