addInvoice.scss 936 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .invoice {
  2. background-color: #f9f9f9;
  3. height: calc(100vh - 44px);
  4. padding: 30rpx;
  5. &-form {
  6. background-color: #fff;
  7. padding: 0 30rpx;
  8. }
  9. &-tips {
  10. margin-top: 30rpx;
  11. }
  12. &-submit {
  13. position: fixed;
  14. bottom: 20rpx;
  15. width: calc(100% - 60rpx);
  16. }
  17. .popup {
  18. padding: 30rpx 0;
  19. margin-top: 60rpx;
  20. max-height: 50vh;
  21. position: relative;
  22. &-list {
  23. border-bottom: 1px solid #e4e7ed;
  24. border-top: 1px solid #e4e7ed;
  25. &-group {
  26. width: 100%;
  27. }
  28. &-item {
  29. display: flex;
  30. width: calc(100% - 60rpx);
  31. padding: 0 30rpx;
  32. height: 90rpx;
  33. line-height: 90rpx;
  34. border-bottom: 1px solid #e4e7ed;
  35. &:last-child {
  36. border-bottom: none;
  37. }
  38. }
  39. }
  40. &-bottom {
  41. position: absolute;
  42. width: 100%;
  43. margin-top: 30rpx;
  44. padding: 0 30rpx;
  45. bottom: 20rpx;
  46. }
  47. }
  48. }