userInfo.less 681 B

1234567891011121314151617181920212223242526272829303132
  1. .main {
  2. height: 88vh;
  3. background: #ffffff;
  4. .one {
  5. width: 96vw;
  6. .content {
  7. display: flex;
  8. flex-direction: row;
  9. justify-content: space-between;
  10. align-items: center;
  11. margin: 0 10px;
  12. padding: 10px 5px;
  13. border-bottom: 1px solid #cccccc;
  14. .label {
  15. font-size: 16px;
  16. }
  17. .value {
  18. color: #666;
  19. font-size: 18px;
  20. .img {
  21. height: 15vw;
  22. width: 15vw;
  23. // border-radius: 5px;
  24. }
  25. }
  26. }
  27. }
  28. }