personinfo.wxss 1.5 KB

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