invoice.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. .listContent {
  2. height: 100% !important;
  3. .listBox {
  4. display: flex;
  5. // height: 180rpx;
  6. padding: 20rpx 0;
  7. border-bottom: 2rpx solid #e5e5e5;
  8. .listBox-sel {
  9. height: 90rpx;
  10. width: 80rpx;
  11. // line-height: 90rpx;
  12. text-align: center;
  13. checkbox {
  14. transform: scale(1.2);
  15. }
  16. }
  17. .listBox-con {
  18. width: 100%;
  19. // display: flex;
  20. // flex-wrap: wrap;
  21. // justify-content: space-between;
  22. align-items: center;
  23. padding: 0 18rpx 0 0;
  24. .listBox-top {
  25. width: 100%;
  26. display: flex;
  27. justify-content: space-between;
  28. padding-bottom: 10rpx;
  29. .listBox-name,
  30. .listBox-code {
  31. display: inline-block;
  32. font-size: $uni-font-size-sm;
  33. font-weight: bold;
  34. }
  35. }
  36. .listBox-bottom {
  37. width: 100%;
  38. display: flex;
  39. justify-content: space-between;
  40. font-size: $uni-font-size-sm;
  41. flex-wrap: wrap;
  42. >view {
  43. width: 100%;
  44. overflow: hidden;
  45. white-space: nowrap;
  46. text-overflow: ellipsis;
  47. }
  48. .half {
  49. width: 50%;
  50. }
  51. }
  52. }
  53. }
  54. .noDate {
  55. height: 100%;
  56. }
  57. }