personinfo.wxss 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. .top-bar {
  2. background-color: #343434;
  3. }
  4. .top-bar .bar-text {
  5. text-align: center;
  6. color: #fff;
  7. position: relative;
  8. padding-bottom: 15rpx;
  9. font-size: 25rpx;
  10. }
  11. .top-bar .bar-text .left {
  12. position: absolute;
  13. left: 30rpx;
  14. top: 6rpx;
  15. }
  16. .top-bar .bar-text .left > .left-img {
  17. width: 38rpx;
  18. height: 38rpx;
  19. }
  20. .container {
  21. background-color: #F7F7F7;
  22. min-height: 1200rpx;
  23. letter-spacing: 3rpx;
  24. }
  25. .container .head-img {
  26. height: 200rpx;
  27. display: flex;
  28. justify-content: space-between;
  29. background-color: #fff;
  30. padding: 0 50rpx;
  31. margin-bottom: 20rpx;
  32. }
  33. .container .head-img .title {
  34. height: 200rpx;
  35. line-height: 200rpx;
  36. }
  37. .container .head-img .info {
  38. width: 150rpx;
  39. height: 150rpx;
  40. border-radius: 50%;
  41. margin-top: 25rpx;
  42. }
  43. .container .head-img .info > image {
  44. width: 150rpx;
  45. height: 150rpx;
  46. border-radius: 50%;
  47. }
  48. .container .user-name, .container .sex, .container .birth, .container .tel {
  49. display: flex;
  50. justify-content: space-between;
  51. height: 100rpx;
  52. background-color: #fff;
  53. position: relative;
  54. padding: 0 50rpx;
  55. }
  56. .container .user-name .title, .container .user-name .info, .container .sex .title, .container .sex .info, .container .birth .title, .container .birth .info, .container .tel .title, .container .tel .info {
  57. line-height: 100rpx;
  58. }
  59. .container .user-name .info, .container .sex .info, .container .birth .info, .container .tel .info {
  60. text-align: right;
  61. color: #707070;
  62. }
  63. .container .user-name .info > input, .container .sex .info > input, .container .birth .info > input, .container .tel .info > input {
  64. height: 100%;
  65. }
  66. .container .user-name .icon, .container .sex .icon, .container .birth .icon, .container .tel .icon {
  67. width: 30rpx;
  68. height: 30rpx;
  69. position: absolute;
  70. top: 38rpx;
  71. right: 15rpx;
  72. }