addInvoice.scss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. &-more-pop {
  54. background-color: #F5F9FC;
  55. padding: 30rpx;
  56. height: 100%;
  57. position: relative;
  58. &-form {
  59. padding: 30rpx;
  60. background-color: #fff;
  61. border-radius: 16rpx;
  62. }
  63. &-submit {
  64. position: absolute;
  65. bottom: 0;
  66. width: 100%;
  67. left: 0;
  68. }
  69. }
  70. }