mobileInvoice.scss 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. @import '~assets/scss/mixins';
  2. $blue-base: #3f84f6;
  3. .mobile-invoice {
  4. .switch-head {
  5. border-bottom: .28rem solid #f1f3f6;
  6. }
  7. .mi-remind-area {
  8. padding: .24rem 0.15rem;
  9. font-size: .28rem;
  10. color: #333;
  11. line-height: .42rem;
  12. margin: 0 0.24rem;
  13. background: #fff;
  14. .more {
  15. font-size: .24rem;
  16. color: $blue-base;
  17. text-align: center;
  18. margin-top: .1rem;
  19. i {
  20. font-size: .22rem;
  21. }
  22. }
  23. &.less {
  24. height: 1.5rem;
  25. overflow: hidden;
  26. position: relative;
  27. .more {
  28. margin: 0;
  29. position: absolute;
  30. bottom: 0;
  31. left: .3rem;
  32. right: .3rem;
  33. @include background-gradient(rgba(255, 255, 255, .4), rgba(255, 255, 255, 1));
  34. }
  35. }
  36. .content {
  37. word-break: break-all;
  38. color: #666;
  39. span {
  40. &:first-child {
  41. vertical-align: top;
  42. width: 6%;
  43. }
  44. &:last-child {
  45. width: 94%;
  46. }
  47. }
  48. }
  49. }
  50. .mi-search-content {
  51. padding: .24rem 0;
  52. text-align: center;
  53. background: #f1f3f6;
  54. input {
  55. border: 1px solid $blue-base;
  56. }
  57. }
  58. .mi-list-content {
  59. .mi-lc-filters {
  60. padding: .1rem 0;
  61. margin: 0 .3rem;
  62. border-bottom: 1px solid #dcdcdc;
  63. .multi-check {
  64. width: 1.4rem;
  65. height: .5rem;
  66. line-height: .5rem;
  67. border: 1px solid #bfbfbf;
  68. color: #666;
  69. font-size: .28rem;
  70. margin-left: .24rem;
  71. text-align: center;
  72. border-radius: .04rem;
  73. &:first-child {
  74. margin-left: 0;
  75. }
  76. &.active {
  77. border-color: $blue-base;
  78. color: $blue-base;
  79. }
  80. }
  81. }
  82. .mi-list {
  83. font-size: .28rem;
  84. padding: 0 .3rem;
  85. li {
  86. margin: .3rem 0;
  87. border-radius: .06rem;
  88. border: 1px solid #dcdcdc;
  89. &.active {
  90. border-color: $blue-base;
  91. }
  92. .line {
  93. border-bottom: 1px solid #dcdcdc;
  94. word-break: break-all;
  95. padding: .26rem;
  96. &:last-child {
  97. border-bottom: none;
  98. }
  99. .title {
  100. width: 31%;
  101. text-align: right;
  102. color: #666;
  103. vertical-align: top;
  104. }
  105. .content {
  106. width: 69%;
  107. text-align: right;
  108. padding-right: .18rem;
  109. padding-left: .6rem;
  110. color: #333;
  111. .inv {
  112. width: .7rem;
  113. height: .34rem;
  114. line-height: .3rem;
  115. text-align: center;
  116. font-size: .24rem;
  117. border-radius: .04rem;
  118. background: rgba(21, 178, 98, .1);
  119. border: 1px solid #15b262;
  120. color: #15b262;
  121. font-style: normal;
  122. display: block;
  123. float: right;
  124. &.spec-inv {
  125. background: rgba(254, 157, 3, .1);
  126. border: 1px solid #fe9d03;
  127. color: #fe9d03;
  128. }
  129. }
  130. }
  131. .price {
  132. color: #ee1111;
  133. }
  134. .link {
  135. color: $blue-base;
  136. }
  137. }
  138. }
  139. }
  140. }
  141. .mi-fix-result {
  142. position: fixed;
  143. bottom: .98rem;
  144. height: 1.06rem;
  145. width: 100%;
  146. line-height: 1.06rem;
  147. padding: 0 .3rem;
  148. background: #fff;
  149. border-top: 1px solid #bfbfbf;
  150. button {
  151. float: right;
  152. width: 2.48rem;
  153. height: .77rem;
  154. line-height: .77rem;
  155. font-size: .32rem;
  156. color: #fff;
  157. background: $blue-base;
  158. border-radius: .08rem;
  159. margin-top: .15rem;
  160. }
  161. }
  162. &.invoice-record {
  163. .switch-head {
  164. border: none;
  165. }
  166. .mi-list {
  167. padding: 0;
  168. li {
  169. border: none;
  170. margin: .3rem;
  171. border-bottom: 1px solid #dcdcdc;
  172. .line {
  173. border: none;
  174. padding: 0;
  175. margin-bottom: .36rem;
  176. .title {
  177. label {
  178. display: none;
  179. }
  180. }
  181. }
  182. }
  183. }
  184. .mi-fix-result {
  185. display: none;
  186. }
  187. }
  188. }