footprint.wxss 1.6 KB

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