家政小程序
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. @import "/wxParse/wxParse.wxss";
  2. page {
  3. font-family: PingFangSC-Regular;
  4. background-color: #f4f4f4;
  5. }
  6. button:after {
  7. display: none;
  8. }
  9. .empty-content {
  10. text-align: center;
  11. }
  12. .empty-content-text {
  13. display: inline-block;
  14. font-size: 28rpx;
  15. color: #888;
  16. margin-top: 150rpx;
  17. }
  18. .mod {
  19. margin: 20rpx;
  20. padding: 20rpx;
  21. background-color: #fff;
  22. border-radius: 4rpx;
  23. }
  24. .mod-hd {
  25. font-size: 30rpx;
  26. color: #666666;
  27. line-height: 1;
  28. overflow: hidden;
  29. }
  30. .mod-hd .dot {
  31. font-size: 16rpx;
  32. margin-right: 8rpx;
  33. vertical-align: 4rpx;
  34. }
  35. .mod-bd {
  36. font-size: 24rpx;
  37. color: #999999;
  38. margin-top: 8rpx;
  39. }
  40. /* 加减器 */
  41. .num-counter {
  42. display: inline-block;
  43. border-radius: 4rpx;
  44. border: solid 1rpx #d6d6d6;
  45. font-size: 0;
  46. overflow: hidden;
  47. line-height: 42rpx;
  48. }
  49. .num-counter .minus,
  50. .num-counter .plus {
  51. display: inline-block;
  52. vertical-align: top;
  53. width: 44rpx;
  54. height: 44rpx;
  55. line-height: 42rpx;
  56. text-align: center;
  57. font-size: 28rpx;
  58. color: #999999;
  59. background-color: #e5e5e5;
  60. }
  61. .num-counter .plus {
  62. color: #fff;
  63. background-color: #00a0e9;
  64. }
  65. .num-counter .input-num {
  66. display: inline-block;
  67. vertical-align: top;
  68. width: 60rpx;
  69. height: 44rpx;
  70. line-height: 44rpx;
  71. text-align: center;
  72. font-size: 30rpx;
  73. color: #999999;
  74. border: none;
  75. border-left: solid 1rpx #d6d6d6;
  76. border-right: solid 1rpx #d6d6d6;
  77. min-height: auto;
  78. background-color: #fff;
  79. }
  80. /* 预约 */
  81. .booking .input-item {
  82. height: 80rpx;
  83. line-height: 80rpx;
  84. display: flex;
  85. padding: 0 40rpx;
  86. position: relative;
  87. background-color: #fff;
  88. }
  89. .booking .input-item.space-between {
  90. justify-content: space-between;
  91. }
  92. .booking .input-item .label {
  93. width: 168rpx;
  94. font-size: 28rpx;
  95. color: #666666;
  96. position: relative;
  97. margin-right: 50rpx;
  98. }
  99. .booking .input-item .label:after {
  100. content: '';
  101. height: 40rpx;
  102. width: 2rpx;
  103. transform: scaleX(.5);
  104. background-color: #cccccc;
  105. position: absolute;
  106. right: 0;
  107. top: 24rpx;
  108. }
  109. .booking .input-text {
  110. font-size: 28rpx;
  111. height: 80rpx;
  112. }
  113. .input-placeholder {
  114. color: #cccccc;
  115. }
  116. .booking .num-counter {
  117. vertical-align: middle;
  118. }
  119. .booking .input-item:after {
  120. content: '';
  121. bottom: 0;
  122. left: 40rpx;
  123. right: 40rpx;
  124. height: 2rpx;
  125. transform: scaleY(.5);
  126. background-color: #cccccc;
  127. position: absolute;
  128. }
  129. .booking .input-item:last-child:after {
  130. display: none;
  131. }
  132. .total {
  133. height: 100rpx;
  134. margin-top: 20rpx;
  135. line-height: 97rpx;
  136. background-color: #fff;
  137. display: flex;
  138. }
  139. .total-price {
  140. width: 340rpx;
  141. text-align: center;
  142. font-size: 38rpx;
  143. color: #333333;
  144. }
  145. .total-price .red {
  146. color: #ff5400;
  147. }
  148. .total-price .unit {
  149. font-size: 24rpx;
  150. color: #ff5400;
  151. }
  152. .total .btn-pay {
  153. flex: 1;
  154. background-color: #00a0e9;
  155. font-size: 32rpx;
  156. color: #fff;
  157. text-align: center;
  158. }
  159. .total .btn-cart {
  160. flex: 1;
  161. background-color: #6ecdf9;
  162. font-size: 32rpx;
  163. color: #fff;
  164. text-align: center;
  165. }
  166. .slide-image {
  167. width: 750rpx;
  168. height: 446rpx;
  169. }