index.wxss 1.7 KB

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