footprint.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. }