index.less 889 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .list {
  2. display: flex;
  3. flex-direction: column;
  4. justify-content: space-between;
  5. .list-item {
  6. padding: 5px 10px;
  7. display: flex;
  8. flex-direction: column;
  9. height: 60px;
  10. border-bottom: 1px solid #f0f0f0;
  11. align-content: center;
  12. align-items: center;
  13. .list-item-info {
  14. width: 100%;
  15. display: flex;
  16. justify-content: flex-start;
  17. height: 30px;
  18. padding-top: 5px;
  19. .phonenum {
  20. width: 75%;
  21. margin-left: 30px;
  22. }
  23. .receivername {
  24. width: 110px;
  25. }
  26. }
  27. .list-item-address {
  28. width: 100%;
  29. color: #999;
  30. font-size: 13px;
  31. }
  32. }
  33. text {
  34. color: #333;
  35. font-size: 16px;
  36. text-align: left;
  37. }
  38. }
  39. .buttom_view {
  40. display: flex;
  41. flex-direction: column;
  42. justify-content: space-between;
  43. margin-top: 20px;
  44. align-items: center;
  45. align-content: center;
  46. }