index.less 656 B

12345678910111213141516171819202122232425262728293031323334
  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. &__item {
  9. display: flex;
  10. flex-direction: column;
  11. width: 100%;
  12. background-color: #fff;
  13. margin-bottom: 5px;
  14. padding-top: 10px 0px;
  15. &__row {
  16. display: flex;
  17. flex-direction: row;
  18. justify-content: space-between;
  19. align-items: center;
  20. align-content: center;
  21. margin: 5px 10px;
  22. text {
  23. text-align: left;
  24. color: #333;
  25. font-size: 14px;
  26. }
  27. }
  28. }
  29. }
  30. }