invoiceHeaderList.scss 754 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .invoice-header {
  2. height: calc(100vh - 44px);
  3. background-color: #f9f9f9;
  4. &-list {
  5. padding: 31rpx;
  6. &-item {
  7. display: flex;
  8. justify-content: space-between;
  9. align-items: center;
  10. // background-color: #fff;
  11. padding: 20rpx 30rpx;
  12. // margin-bottom: 20rpx;
  13. .left {
  14. width: 50%;
  15. &-item {
  16. margin-bottom: 10rpx;
  17. font-weight: bold;
  18. width: 100%;
  19. white-space: nowrap;
  20. overflow: hidden;
  21. text-overflow: ellipsis;
  22. &:last-child {
  23. font-weight: normal;
  24. }
  25. }
  26. }
  27. .center {
  28. color: $u-type-primary;
  29. font-size: 24rpx;
  30. }
  31. }
  32. }
  33. &-bottom {
  34. padding: 30rpx;
  35. }
  36. }