personinfo.scss 1.6 KB

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