ticketList.wxss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. page {
  2. background: #F3F3F3;
  3. color: #333;
  4. /* padding:0 24rpx; */
  5. }
  6. view,text{
  7. box-sizing: border-box;
  8. color:#333;
  9. font-size: 28rpx;
  10. }
  11. .whole-page{
  12. padding:100rpx 0 40rpx;
  13. }
  14. .top-block{
  15. position: fixed;
  16. top:0;
  17. left:0;
  18. right:0;
  19. height:80rpx;
  20. display: flex;
  21. background: #fff;
  22. align-items: center;
  23. padding:0 24rpx;
  24. }
  25. .select-item{
  26. height: 80rpx;
  27. display: flex;
  28. align-items: center;
  29. margin-right:60rpx;
  30. }
  31. .select-item view{
  32. color: #666;
  33. }
  34. .select-item image{
  35. width:24rpx;
  36. height:14rpx;
  37. margin-left:10rpx;
  38. }
  39. .ticket-list{
  40. padding:0 24rpx 32rpx;
  41. }
  42. .ticket-item{
  43. width:702rpx;
  44. background: #FFFFFF;
  45. border-radius: 18rpx;
  46. padding:24rpx;
  47. margin-bottom:20rpx;
  48. }
  49. .ticket-top{
  50. display: flex;
  51. align-items: center;
  52. margin-bottom:8rpx;
  53. }
  54. .ticket-top image{
  55. width:40rpx;
  56. height:40rpx;
  57. margin-right:6rpx;
  58. }
  59. .ticket-top view{
  60. font-size: 32rpx;
  61. /* overflow: hidden;
  62. white-space: nowrap;
  63. text-overflow: ellipsis; */
  64. }
  65. .ticket-line{
  66. line-height: 56rpx;
  67. height: 56rpx;
  68. }
  69. .ticket-detail{
  70. color: #0EAEFC;
  71. text-decoration: underline;
  72. /* display: inline-block; */
  73. text-align: right;
  74. line-height: 36rpx;
  75. }
  76. .no-data{
  77. text-align: center;
  78. color: #999;
  79. font-size: 26rpx;
  80. line-height: 80rpx;
  81. padding-top:100rpx;
  82. }