ticketWait.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /* pages/ticketWait/ticketWait.wxss */
  2. .searchWrap {
  3. position: fixed;
  4. top: 0;
  5. left: 0;
  6. right: 0;
  7. padding: 24rpx;
  8. display: flex;
  9. align-items: center;
  10. background: #f8f9fb;
  11. z-index: 100;
  12. }
  13. .searchWrap .icon-search {
  14. position: absolute;
  15. top: 50%;
  16. transform: translateY(-50%);
  17. left: 48rpx;
  18. font-size: 30rpx;
  19. color: #999;
  20. }
  21. .searchWrap .input {
  22. flex: 1;
  23. width: 0;
  24. height: 84rpx;
  25. padding-left: 68rpx;
  26. padding-right: 24rpx;
  27. font-size: 30rpx;
  28. color: #282828;
  29. background: #fff;
  30. border-radius: 8rpx;
  31. flex-direction: column;
  32. }
  33. .placeholderStyle {
  34. font-size: 30rpx;
  35. }
  36. /* 列表 */
  37. .topPlaceholder {
  38. height: 132rpx;
  39. }
  40. .list {
  41. padding: 0 24rpx;
  42. }
  43. .item {
  44. padding: 24rpx;
  45. border-radius: 14rpx;
  46. background: #fff;
  47. }
  48. .item+.item {
  49. margin-top: 24rpx;
  50. }
  51. .item .name {
  52. margin-bottom: 12rpx;
  53. font-size: 32rpx;
  54. font-weight: 450;
  55. }
  56. .item .line {
  57. padding: 8rpx 0;
  58. font-size: 28rpx;
  59. color: #b3b6c3;
  60. word-break: break-all;
  61. }
  62. .warning{
  63. color:#ff8c42;
  64. }
  65. .black{
  66. color:#282828;
  67. }
  68. .danger{
  69. color:#fd482c;
  70. }
  71. .blue{
  72. color:#20cff5;
  73. }
  74. .item .btnGroup {
  75. padding: 20rpx 0 10rpx;
  76. display: flex;
  77. align-items: center;
  78. justify-content: flex-end;
  79. }
  80. .item .btnGroup .btn {
  81. height: 58rpx;
  82. line-height: 58rpx;
  83. font-size: 28rpx;
  84. color: #fff;
  85. border-radius: 29rpx;
  86. }
  87. .btn.del {
  88. width: 98rpx;
  89. background: #fd482c;
  90. }
  91. .btn.fresh{
  92. width: 98rpx;
  93. background: #fbc423;
  94. }
  95. .btn.ticket {
  96. width: 158rpx;
  97. margin-left: 24rpx !important;
  98. background: #007dff;
  99. }