家政小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

app.wxss 2.9KB

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