index.less 863 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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: 40px;
  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. align-items: center;
  20. align-content: center;
  21. .taxpayerid {
  22. margin-left: 15px;
  23. }
  24. .username {
  25. margin-left: 15px;
  26. margin-right: 15px;
  27. }
  28. }
  29. }
  30. text {
  31. color: #333;
  32. font-size: 13px;
  33. text-align: left;
  34. }
  35. }
  36. .buttom_view {
  37. display: flex;
  38. flex-direction: column;
  39. justify-content: space-between;
  40. margin-top: 20px;
  41. align-items: center;
  42. align-content: center;
  43. }