addInvoice.scss 954 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. height: 50vh;
  21. max-height: 50vh;
  22. position: relative;
  23. &-list {
  24. border-bottom: 1px solid #e4e7ed;
  25. border-top: 1px solid #e4e7ed;
  26. &-group {
  27. width: 100%;
  28. }
  29. &-item {
  30. display: flex;
  31. width: calc(100% - 60rpx);
  32. padding: 0 30rpx;
  33. height: 90rpx;
  34. line-height: 90rpx;
  35. border-bottom: 1px solid #e4e7ed;
  36. &:last-child {
  37. border-bottom: none;
  38. }
  39. }
  40. }
  41. &-bottom {
  42. position: absolute;
  43. width: 100%;
  44. margin-top: 30rpx;
  45. padding: 0 30rpx;
  46. bottom: 20rpx;
  47. }
  48. }
  49. }