index.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. Page {
  2. width: 100%;
  3. height: 100%;
  4. background-color: #F7F7F7;
  5. }
  6. .container {
  7. width: 100%;
  8. height: 100%;
  9. background-color: #F7F7F7;
  10. /* 门店的标题 */
  11. .shop {
  12. background-color: #fff;
  13. border-top: 1rpx solid #ECECEC;
  14. margin-top: 20rpx;
  15. >.title {
  16. display: flex;
  17. justify-content: space-between;
  18. padding: 0 40rpx;
  19. height: 80rpx;
  20. line-height: 80rpx;
  21. }
  22. }
  23. .product {
  24. .weui-tabs {
  25. .weui-tabs-bar__wrp {
  26. .weui-tabs-bar__content {
  27. height: 100rpx;
  28. line-height: 99rpx;
  29. white-space: nowrap;
  30. display: flex;
  31. justify-content: space-around;
  32. border-bottom: 1rpx solid #ECECEC;
  33. }
  34. }
  35. }
  36. .productinfo {
  37. width: 95%;
  38. height: 380rpx;
  39. padding: 10rpx 0;
  40. margin: 0 auto;
  41. .product-item {
  42. position: relative;
  43. width: 100%;
  44. height: 380rpx;
  45. border-radius: 20rpx;
  46. background-size: cover;
  47. .product-desc {
  48. height: 380rpx;
  49. color: #fff;
  50. position: absolute;
  51. color: #fff;
  52. top: 210rpx;
  53. left: 20rpx;
  54. letter-spacing: 2rpx;
  55. font-weight: 100;
  56. }
  57. .order {
  58. position: absolute;
  59. right: 40rpx;
  60. bottom: 20rpx;
  61. width: 100rpx;
  62. height: 100rpx;
  63. border-radius: 50%;
  64. background-color: #098932;
  65. color: #fff;
  66. >view {
  67. width: 70rpx;
  68. height: 70rpx;
  69. line-height: 35rpx;
  70. letter-spacing: 5rpx;
  71. text-align: center;
  72. font-size: 14px;
  73. margin: 18rpx;
  74. }
  75. }
  76. .gray {
  77. background-color: #999;
  78. }
  79. }
  80. &:first-child {
  81. margin-top: 10rpx;
  82. }
  83. }
  84. }
  85. }
  86. .fw700 {
  87. font-weight: 500;
  88. font-size: 18px;
  89. }