footprint.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. page{
  2. background: #f4f4f4;
  3. min-height: 100%;
  4. }
  5. .container{
  6. background: #f4f4f4;
  7. min-height: 100%;
  8. }
  9. .footprint{
  10. height: auto;
  11. overflow: hidden;
  12. width: 100%;
  13. border-top: 1px solid #e1e1e1;
  14. }
  15. .day-item{
  16. height: auto;
  17. overflow: hidden;
  18. width: 100%;
  19. margin-bottom: 20rpx;
  20. }
  21. .day-hd{
  22. height: 94rpx;
  23. width: 100%;
  24. line-height: 94rpx;
  25. background: #fff;
  26. padding-left: 30rpx;
  27. color: #333;
  28. font-size: 28rpx;
  29. }
  30. .day-list{
  31. width: 100%;
  32. height: auto;
  33. overflow: hidden;
  34. background: #fff;
  35. padding-left: 30rpx;
  36. border-top: 1px solid #e1e1e1;
  37. }
  38. .item{
  39. height: 212rpx;
  40. width: 720rpx;
  41. background: #fff;
  42. padding: 30rpx 30rpx 30rpx 0;
  43. border-bottom: 1px solid #e1e1e1;
  44. }
  45. .item:last-child{
  46. border-bottom: 1px solid #fff;
  47. }
  48. .item .img{
  49. float: left;
  50. width: 150rpx;
  51. height: 150rpx;
  52. }
  53. .item .info{
  54. float: right;
  55. width: 540rpx;
  56. height: 150rpx;
  57. display: flex;
  58. flex-direction: column;
  59. justify-content: center;
  60. padding-left: 20rpx;
  61. }
  62. .item .info .name{
  63. font-size: 28rpx;
  64. color: #333;
  65. line-height: 40rpx;
  66. }
  67. .item .info .subtitle{
  68. margin-top: 8rpx;
  69. font-size: 24rpx;
  70. color: #888;
  71. line-height: 40rpx;
  72. }
  73. .item .info .price{
  74. margin-top: 8rpx;
  75. font-size: 28rpx;
  76. color: #333;
  77. line-height: 40rpx;
  78. }
  79. .search-result-empty {
  80. width: 100%;
  81. height: 100%;
  82. padding-top: 300rpx;
  83. }
  84. .search-result-empty .icon {
  85. margin: 0 auto;
  86. display: block;
  87. width: 240rpx;
  88. height: 240rpx;
  89. }
  90. .search-result-empty .text {
  91. display: block;
  92. width: 100%;
  93. height: 40rpx;
  94. font-size: 28rpx;
  95. text-align: center;
  96. color: #999;
  97. }