ticket.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. .myqr {
  2. width: 560rpx;
  3. height: 560rpx;
  4. position: absolute;
  5. left: 50%;
  6. top: 50%;
  7. transform: translate3d(-50%, -50%, 0);
  8. background: #efe2e2;
  9. z-index: 999;
  10. border-radius: 20rpx;
  11. /* border: 1rpx solid #999; */
  12. padding: 20rpx;
  13. }
  14. .myqr .cancel {
  15. position: absolute;
  16. width: 60rpx;
  17. height: 60rpx;
  18. margin-left: 280rpx;
  19. }
  20. .myqr .img {
  21. width: 480rpx;
  22. }
  23. page {
  24. height: 100%;
  25. width: 100%;
  26. background: #f4f4f4;
  27. }
  28. .container {
  29. background: #f4f4f4;
  30. height: 100vh;
  31. }
  32. .orders-switch {
  33. width: 100%;
  34. background: #fff;
  35. height: 84rpx;
  36. /* position: fixed;
  37. top: 0rpx; */
  38. z-index: 1;
  39. /* border-bottom: 1px solid rgba(0,0,0,.15); */
  40. }
  41. .orders-switch .item {
  42. display: inline-block;
  43. height: 82rpx;
  44. width: 18%;
  45. padding: 0 15rpx;
  46. text-align: center;
  47. }
  48. .orders-switch .item .txt {
  49. display: inline-block;
  50. height: 82rpx;
  51. padding: 0 20rpx;
  52. line-height: 82rpx;
  53. color: #9a9ba1;
  54. font-size: 30rpx;
  55. width: 170rpx;
  56. }
  57. .orders-switch .item.active .txt {
  58. color: #ab956d;
  59. border-bottom: 4rpx solid #ab956d;
  60. }
  61. .no-order {
  62. width: 100%;
  63. height: auto;
  64. margin: 0 auto;
  65. }
  66. .no-order .c {
  67. width: 100%;
  68. height: auto;
  69. margin-top: 400rpx;
  70. }
  71. .no-order .c text {
  72. margin: 0 auto;
  73. display: block;
  74. width: 258rpx;
  75. height: 29rpx;
  76. line-height: 29rpx;
  77. text-align: center;
  78. font-size: 29rpx;
  79. color: #999;
  80. }
  81. .orders {
  82. height: auto;
  83. /* width: 100%; */
  84. overflow: hidden;
  85. padding: 20rpx;
  86. /* margin-top: 85rpx */
  87. }
  88. .order {
  89. margin-top: 20rpx;
  90. background: #fff;
  91. }
  92. .content {
  93. font-size: 46rpx;
  94. line-height: 50rpx;
  95. font-weight: 500;
  96. margin: 20rpx;
  97. color: #333;
  98. }
  99. .btn {
  100. height: 44rpx;
  101. width: 148rpx;
  102. text-align: center;
  103. line-height: 44rpx;
  104. text-align: center;
  105. border-radius: 10rpx;
  106. border: 1rpx solid #09afff;
  107. font-size: 28rpx;
  108. margin-left: 20rpx;
  109. color: #333;
  110. }
  111. .status {
  112. height: 32rpx;
  113. float: right;
  114. line-height: 32rpx;
  115. color: #999;
  116. }
  117. .status-action{
  118. color: #b4282d;
  119. font-size: 24rpx;
  120. }
  121. .ticketSn {
  122. color: #333;
  123. line-height: 32rpx;
  124. font-size: 32rpx;
  125. font-weight: 500;
  126. }
  127. .ticket {
  128. display: flex;
  129. /* height: 42rpx;
  130. line-height: 42rpx; */
  131. }
  132. .ticket-item {
  133. min-width: 140rpx;
  134. width: 140rpx;
  135. color: #666;
  136. font-weight: 600;
  137. }
  138. .ticket-content {
  139. color: #666;
  140. }
  141. .ticket-content-ellipsis{
  142. color: #666;
  143. display: -webkit-box;
  144. overflow: hidden;
  145. text-overflow: ellipsis;
  146. word-break: break-all;
  147. -webkit-box-orient: vertical;
  148. -webkit-line-clamp: 2;
  149. }
  150. .tool {
  151. display: flex;
  152. align-items: center;
  153. margin-top: 30rpx;
  154. justify-content: flex-end;
  155. margin-bottom: 10rpx;
  156. }
  157. .flex-center{
  158. display: flex;
  159. align-items: center;
  160. }
  161. .address {
  162. display: block;
  163. color: darkred;
  164. line-height: 46rpx;
  165. font-size: 36rpx;
  166. margin: 20rpx 20rpx;
  167. }