1
0

share.wxss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. page{
  2. background: #f4f4f4;
  3. min-height: 100%;
  4. }
  5. .container{
  6. background: #f4f4f4;
  7. min-height: 100%;
  8. }
  9. .share{
  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 30rpx;
  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 .img-goods{
  54. float: right;
  55. width: 200rpx;
  56. height: 200rpx;
  57. }
  58. .item .info{
  59. float: center;
  60. width: 300rpx;
  61. height: 150rpx;
  62. display: flex;
  63. flex-direction: column;
  64. justify-content: center;
  65. padding-left: 20rpx;
  66. }
  67. .item .info .name{
  68. font-size: 28rpx;
  69. color: #333;
  70. line-height: 40rpx;
  71. }
  72. .item .info .subtitle{
  73. margin-top: 8rpx;
  74. font-size: 24rpx;
  75. color: #888;
  76. line-height: 40rpx;
  77. }