invoiceHeaderList.scss 985 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. page {
  2. background-color: #F5F9FC;
  3. }
  4. .invoice-header {
  5. &-list {
  6. padding: 20rpx 30rpx;
  7. &-item {
  8. display: flex;
  9. justify-content: space-between;
  10. align-items: center;
  11. padding: 40rpx;
  12. border-radius: 16rpx;
  13. background-color: #fff;
  14. margin-bottom: 20rpx;
  15. .left {
  16. width: 50%;
  17. font-size: 32rpx;
  18. &-item {
  19. margin-bottom: 10rpx;
  20. font-weight: bold;
  21. color: #333333;
  22. width: 100%;
  23. white-space: nowrap;
  24. overflow: hidden;
  25. text-overflow: ellipsis;
  26. &:last-child {
  27. font-weight: normal;
  28. color: #666666;
  29. margin-top: 20rpx;
  30. }
  31. }
  32. }
  33. .center {
  34. font-size: 24rpx;
  35. background-color: #F5F9FC;
  36. border-radius: 18rpx;
  37. color: #2E73FF;
  38. padding: 10rpx 16rpx;
  39. align-self: flex-start;
  40. }
  41. }
  42. }
  43. &-bottom {
  44. padding: 30rpx;
  45. }
  46. }