ticketQuery.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /* pages/ticketQuery/ticketQuery.wxss */
  2. @import '../ticketWait/ticketWait';
  3. .tabBar {
  4. position: fixed;
  5. top: 0;
  6. left: 0;
  7. right: 0;
  8. display: flex;
  9. background: #fff;
  10. z-index: 100;
  11. }
  12. .tabItem {
  13. position: relative;
  14. flex: 1;
  15. width: 0;
  16. height: 88rpx;
  17. line-height: 88rpx;
  18. font-size: 30rpx;
  19. color: #666;
  20. text-align: center;
  21. transition: all .3s ease;
  22. }
  23. .tabItem:before {
  24. position: absolute;
  25. bottom: 0;
  26. left: 50%;
  27. margin-left: -47rpx;
  28. content: "";
  29. height: 6rpx;
  30. width: 94rpx;
  31. transform: scaleX(0);
  32. background: #007dff;
  33. transition: all .3s ease;
  34. }
  35. .tabItem.active {
  36. color: #007dff;
  37. }
  38. .tabItem.active:before {
  39. transform: scaleX(1);
  40. }
  41. .searchWrap {
  42. top: 88rpx;
  43. }
  44. .pickerGroup {
  45. position: fixed;
  46. top: 220rpx;
  47. left: 0;
  48. right: 0;
  49. padding: 0 24rpx 24rpx;
  50. display: flex;
  51. align-items: center;
  52. background: #f7f8fb;
  53. z-index: 100;
  54. }
  55. .picker {
  56. flex: 1;
  57. width: 0;
  58. background: #fff;
  59. border-radius: 8rpx;
  60. transition: width .3s ease;
  61. }
  62. .picker+.picker {
  63. margin-left: 15rpx;
  64. }
  65. .picker .inner {
  66. position: relative;
  67. padding: 0 20rpx;
  68. height: 80rpx;
  69. font-size: 28rpx;
  70. }
  71. .picker .inner .text {
  72. display: block;
  73. height: 80rpx;
  74. line-height: 80rpx;
  75. }
  76. .picker .inner .icon-fail {
  77. position: absolute;
  78. top: 50%;
  79. transform: translateY(-51%);
  80. right: 20rpx;
  81. font-size: 32rpx;
  82. color: #d2d2d2;
  83. z-index: 100;
  84. background: #fff;
  85. }
  86. .picker .inner:after {
  87. content: "";
  88. position: absolute;
  89. top: 50%;
  90. transform: translateY(-50%);
  91. right: 20rpx;
  92. width: 0;
  93. height: 0;
  94. border-right: 10rpx solid transparent;
  95. border-left: 10rpx solid transparent;
  96. border-top: 14rpx solid #bfbfbf;
  97. z-index: 80;
  98. }
  99. .topPlaceholder {
  100. height: 324rpx;
  101. }