addInvoice.scss 978 B

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