addInvoice.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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. }
  71. .order-box {
  72. height: calc(100vh - 50px);
  73. &-list {
  74. padding: 30rpx;
  75. &-item {
  76. display: flex;
  77. justify-content: space-between;
  78. align-items: center;
  79. background-color: #fff;
  80. padding: 30rpx;
  81. margin-bottom: 20rpx;
  82. border-radius: 10rpx;
  83. font-size: 30rpx;
  84. color: #666666;
  85. .left {
  86. display: flex;
  87. align-items: center;
  88. &-radio {
  89. margin-right: 10rpx;
  90. }
  91. &-content {
  92. line-height: 50rpx;
  93. .money {
  94. color: #333333;
  95. font-size: 34rpx;
  96. font-weight: bold;
  97. }
  98. .time {
  99. color: #999999;
  100. font-size: 28rpx;
  101. }
  102. }
  103. }
  104. }
  105. }
  106. &-bottom {
  107. display: flex;
  108. justify-content: space-between;
  109. align-items: center;
  110. background-color: #fff;
  111. padding: 10rpx 30rpx;
  112. }
  113. }