ticketGet.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. /* pages/ticketGet/ticketGet.wxss */
  2. @import "../../style/style";
  3. @import '../ticketWait/ticketWait';
  4. .tabBar {
  5. position: fixed;
  6. top: 0;
  7. left: 0;
  8. right: 0;
  9. display: flex;
  10. background: #fff;
  11. z-index: 100;
  12. }
  13. .tabItem {
  14. position: relative;
  15. flex: 1;
  16. width: 0;
  17. height: 88rpx;
  18. line-height: 88rpx;
  19. font-size: 30rpx;
  20. color: #666;
  21. text-align: center;
  22. transition: all .3s ease;
  23. }
  24. .tabItem:before {
  25. position: absolute;
  26. bottom: 0;
  27. left: 50%;
  28. margin-left: -47rpx;
  29. content: "";
  30. height: 6rpx;
  31. width: 94rpx;
  32. transform: scaleX(0);
  33. background: #007dff;
  34. transition: all .3s ease;
  35. }
  36. .tabItem.active {
  37. color: #007dff;
  38. }
  39. .tabItem.active:before {
  40. transform: scaleX(1);
  41. }
  42. .searchWrap {
  43. top: 88rpx;
  44. }
  45. .pickerGroup {
  46. position: fixed;
  47. top: 220rpx;
  48. left: 0;
  49. right: 0;
  50. padding: 0 24rpx 24rpx;
  51. display: flex;
  52. align-items: center;
  53. background: #f7f8fb;
  54. z-index: 100;
  55. }
  56. .picker {
  57. flex: 1;
  58. width: 0;
  59. background: #fff;
  60. border-radius: 8rpx;
  61. transition: width .3s ease;
  62. }
  63. .picker+.picker {
  64. margin-left: 15rpx;
  65. }
  66. .picker .inner {
  67. position: relative;
  68. padding: 0 20rpx;
  69. height: 80rpx;
  70. font-size: 28rpx;
  71. }
  72. .picker .inner .text {
  73. display: block;
  74. height: 80rpx;
  75. line-height: 80rpx;
  76. }
  77. .picker .inner .icon-fail {
  78. position: absolute;
  79. top: 50%;
  80. transform: translateY(-51%);
  81. right: 20rpx;
  82. font-size: 32rpx;
  83. color: #d2d2d2;
  84. z-index: 100;
  85. background: #fff;
  86. }
  87. .picker .inner:after {
  88. content: "";
  89. position: absolute;
  90. top: 50%;
  91. transform: translateY(-50%);
  92. right: 20rpx;
  93. width: 0;
  94. height: 0;
  95. border-right: 10rpx solid transparent;
  96. border-left: 10rpx solid transparent;
  97. border-top: 14rpx solid #bfbfbf;
  98. z-index: 80;
  99. }
  100. .topPlaceholder {
  101. height: 20rpx;
  102. }
  103. .btnGroup .get {
  104. color: #fff;
  105. background: #007dff;
  106. }
  107. .btnGroup {
  108. display: flex;
  109. align-items: center;
  110. }
  111. .btnGroup .btn {
  112. flex: 1;
  113. width: 0;
  114. height: 110rpx;
  115. line-height: 110rpx;
  116. font-size: 36rpx;
  117. text-align: center;
  118. border-radius: 0;
  119. }
  120. .ticketItem {
  121. padding: 22rpx 24rpx;
  122. background: #fff;
  123. border-radius: 10rpx;
  124. }
  125. .ticketItem+.ticketItem {
  126. margin-top: 24rpx;
  127. }
  128. .ticketItem .header {
  129. margin-bottom: 24rpx;
  130. font-size: 32rpx;
  131. font-weight: 450;
  132. word-break: break-all;
  133. }
  134. .ticketItem .line {
  135. font-size: 28rpx;
  136. color: #b3b6c3;
  137. word-break: break-all;
  138. }
  139. .ticketItem .line+.line {
  140. margin-top: 18rpx;
  141. }
  142. .paddingBottom {
  143. height: 110rpx;
  144. }