invoiceSummary.wxss 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. /* miniprogram/pages/invoiceSummary/invoiceSummary.wxss */
  2. @import "../../style/style";
  3. @import '../ticketWait/ticketWait';
  4. .searchWrap {
  5. position: fixed;
  6. top: 0;
  7. left: 0;
  8. right: 0;
  9. padding: 24rpx;
  10. display: flex;
  11. align-items: center;
  12. background: #f8f9fb;
  13. z-index: 100;
  14. }
  15. .searchWrap .icon-search {
  16. position: absolute;
  17. top: 50%;
  18. transform: translateY(-50%);
  19. left: 48rpx;
  20. font-size: 30rpx;
  21. color: #999;
  22. }
  23. .searchWrap .input {
  24. flex: 1;
  25. width: 0;
  26. height: 84rpx;
  27. padding-left: 68rpx;
  28. padding-right: 24rpx;
  29. font-size: 30rpx;
  30. color: #282828;
  31. background: #fff;
  32. border-radius: 8rpx;
  33. }
  34. .placeholderStyle {
  35. font-size: 30rpx;
  36. }
  37. /* 列表 */
  38. .topPlaceholder {
  39. height: 132rpx;
  40. }
  41. .list {
  42. padding: 0 24rpx;
  43. }
  44. .item {
  45. padding: 24rpx;
  46. border-radius: 14rpx;
  47. background: #fff;
  48. }
  49. .item+.item {
  50. margin-top: 24rpx;
  51. }
  52. .item .name {
  53. margin-bottom: 12rpx;
  54. font-size: 32rpx;
  55. font-weight: 450;
  56. }
  57. .item .line {
  58. padding: 8rpx 0;
  59. font-size: 28rpx;
  60. color: #b3b6c3;
  61. word-break: break-all;
  62. }
  63. .warning{
  64. color:#ff8c42;
  65. }
  66. .black{
  67. color:#282828;
  68. }
  69. .danger{
  70. color:#fd482c;
  71. }
  72. .blue{
  73. color:#20cff5;
  74. }
  75. .item .btnGroup {
  76. padding: 20rpx 0 10rpx;
  77. display: flex;
  78. align-items: center;
  79. justify-content: flex-end;
  80. }
  81. .item .btnGroup .btn {
  82. height: 58rpx;
  83. line-height: 58rpx;
  84. font-size: 28rpx;
  85. color: #fff;
  86. border-radius: 29rpx;
  87. }
  88. .btn.del {
  89. width: 98rpx;
  90. background: #fd482c;
  91. }
  92. .btn.fresh{
  93. width: 98rpx;
  94. background: #fbc423;
  95. }
  96. .btn.ticket {
  97. width: 158rpx;
  98. margin-left: 24rpx !important;
  99. background: #007dff;
  100. }
  101. .tabBar {
  102. position: fixed;
  103. top: 0;
  104. left: 0;
  105. right: 0;
  106. display: flex;
  107. background: #fff;
  108. z-index: 100;
  109. }
  110. .tabItem {
  111. position: relative;
  112. flex: 1;
  113. width: 0;
  114. height: 88rpx;
  115. line-height: 88rpx;
  116. font-size: 30rpx;
  117. color: #666;
  118. text-align: center;
  119. transition: all .3s ease;
  120. }
  121. .tabItem:before {
  122. position: absolute;
  123. bottom: 0;
  124. left: 50%;
  125. margin-left: -47rpx;
  126. content: "";
  127. height: 6rpx;
  128. width: 94rpx;
  129. transform: scaleX(0);
  130. background: #007dff;
  131. transition: all .3s ease;
  132. }
  133. .tabItem.active {
  134. color: #007dff;
  135. }
  136. .tabItem.active:before {
  137. transform: scaleX(1);
  138. }
  139. .searchWrap {
  140. top: 88rpx;
  141. }
  142. .pickerGroup {
  143. position: fixed;
  144. top: 220rpx;
  145. left: 0;
  146. right: 0;
  147. padding: 0 24rpx 24rpx;
  148. display: flex;
  149. align-items: center;
  150. background: #f7f8fb;
  151. z-index: 100;
  152. }
  153. .picker {
  154. flex: 1;
  155. width: 0;
  156. background: #fff;
  157. border-radius: 8rpx;
  158. transition: width .3s ease;
  159. }
  160. .picker+.picker {
  161. margin-left: 15rpx;
  162. }
  163. .picker .inner {
  164. position: relative;
  165. padding: 0 20rpx;
  166. height: 80rpx;
  167. font-size: 28rpx;
  168. }
  169. .picker .inner .text {
  170. display: block;
  171. height: 80rpx;
  172. line-height: 80rpx;
  173. }
  174. .picker .inner .icon-fail {
  175. position: absolute;
  176. top: 50%;
  177. transform: translateY(-51%);
  178. right: 20rpx;
  179. font-size: 32rpx;
  180. color: #d2d2d2;
  181. z-index: 100;
  182. background: #fff;
  183. }
  184. .picker .inner:after {
  185. content: "";
  186. position: absolute;
  187. top: 50%;
  188. transform: translateY(-50%);
  189. right: 20rpx;
  190. width: 0;
  191. height: 0;
  192. border-right: 10rpx solid transparent;
  193. border-left: 10rpx solid transparent;
  194. border-top: 14rpx solid #bfbfbf;
  195. z-index: 80;
  196. }
  197. .topPlaceholder {
  198. height: 20rpx;
  199. }
  200. .btnGroup .get {
  201. color: #fff;
  202. background: #007dff;
  203. }
  204. .btnGroup {
  205. display: flex;
  206. align-items: center;
  207. }
  208. .btnGroup .btn {
  209. flex: 1;
  210. width: 0;
  211. height: 110rpx;
  212. line-height: 110rpx;
  213. font-size: 36rpx;
  214. text-align: center;
  215. border-radius: 0;
  216. }
  217. .ticketItem {
  218. padding: 22rpx 24rpx;
  219. background: #fff;
  220. border-radius: 10rpx;
  221. }
  222. .ticketItem+.ticketItem {
  223. margin-top: 24rpx;
  224. }
  225. .ticketItem .header {
  226. margin-bottom: 24rpx;
  227. font-size: 32rpx;
  228. font-weight: 450;
  229. word-break: break-all;
  230. }
  231. .ticketItem .line {
  232. font-size: 28rpx;
  233. color: #b3b6c3;
  234. word-break: break-all;
  235. }
  236. .ticketItem .line+.line {
  237. margin-top: 18rpx;
  238. }
  239. .paddingBottom {
  240. height: 110rpx;
  241. }