addInvoiceHeader.scss 596 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. page {
  2. background-color: #F5F9FC;
  3. }
  4. .invoice-header {
  5. padding: 30rpx;
  6. &-right {
  7. margin-right: 30rpx;
  8. }
  9. &-form {
  10. padding: 0 30rpx 30rpx;
  11. background-color: #fff;
  12. border-radius: 16px;
  13. }
  14. &-default {
  15. background-color: #fff;
  16. border-radius: 16px;
  17. margin-top: 20rpx;
  18. padding: 0 30rpx 10rpx;
  19. &-item {
  20. display: flex;
  21. justify-content: space-between;
  22. align-items: center;
  23. width: 100%;
  24. .tips {
  25. font-size: 20rpx;
  26. }
  27. }
  28. }
  29. &-bottom {
  30. position: fixed;
  31. bottom: 0;
  32. width: 100%;
  33. left: 0;
  34. }
  35. }