index.less 753 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* mHome/pages/settle/list/index.wxss */
  2. .container {
  3. .list-view {
  4. display: flex;
  5. flex-direction: column;
  6. width: 100%;
  7. background-color: #f0f0f0;
  8. align-items: center;
  9. align-content: center;
  10. &__item {
  11. display: flex;
  12. flex-direction: column;
  13. width: 96%;
  14. background-color: #fff;
  15. margin: 5px 0px;
  16. border-radius: 10px;
  17. padding: 10px 0px;
  18. &__row {
  19. display: flex;
  20. flex-direction: row;
  21. justify-content: space-between;
  22. align-items: center;
  23. align-content: center;
  24. margin: 5px 10px;
  25. text {
  26. text-align: left;
  27. color: #333;
  28. font-size: 14px;
  29. width: 90%;
  30. }
  31. }
  32. }
  33. }
  34. }