addInvoiceHeader.scss 525 B

12345678910111213141516171819202122232425262728293031323334
  1. .invoice-header {
  2. height: calc(100vh - 44px);
  3. background-color: #f9f9f9;
  4. padding: 30rpx;
  5. &-form {
  6. padding: 0 30rpx 30rpx;
  7. background-color: #fff;
  8. }
  9. &-default {
  10. background-color: #fff;
  11. margin-top: 20rpx;
  12. padding: 0 30rpx 10rpx;
  13. &-item {
  14. display: flex;
  15. justify-content: space-between;
  16. align-items: center;
  17. width: 100%;
  18. .tips {
  19. font-size: 20rpx;
  20. }
  21. }
  22. }
  23. &-bottom {
  24. position: fixed;
  25. bottom: 0;
  26. width: 100%;
  27. left: 0;
  28. }
  29. }