personinfo.scss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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,.sex,.birth,.tel{
  29. display: flex;
  30. justify-content: space-between;
  31. height: 100rpx;
  32. background-color: #fff;
  33. position: relative;
  34. padding: 0 50rpx;
  35. .title,.info{
  36. line-height: 100rpx;
  37. }
  38. .info{
  39. text-align: right;
  40. color: #707070;
  41. >input{
  42. height: 100%;
  43. }
  44. }
  45. .icon{
  46. width: 30rpx;
  47. height: 30rpx;
  48. position: absolute;
  49. top: 38rpx;
  50. right: 15rpx;
  51. }
  52. }
  53. }