addInvoiceHeader.scss 554 B

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