appointment.scss 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. .container {
  2. width: 100%;
  3. height: 100%;
  4. background-color: #F7F7F7;
  5. .shop-info,
  6. .product-desc,
  7. .order-time,
  8. .product-mobile {
  9. width: 93%;
  10. margin: 15rpx auto;
  11. background-color: #fff;
  12. }
  13. .shop-info {
  14. position: relative;
  15. height: 180rpx;
  16. width: 93%;
  17. margin: 10rpx auto;
  18. background-color: #fff;
  19. .address-icon {
  20. width: 50rpx;
  21. height: 53rpx;
  22. position: absolute;
  23. top: 50%;
  24. transform: translateY(-50%);
  25. left: 70rpx;
  26. }
  27. .shop {
  28. height: 180rpx;
  29. text-align: left;
  30. margin-left: 180rpx;
  31. display: flex;
  32. flex-direction: column;
  33. justify-content: center;
  34. .shop-name {
  35. font-size: 17px;
  36. color: #000;
  37. font-weight: 500;
  38. letter-spacing: 2rpx;
  39. }
  40. .address {
  41. font-size: 13px;
  42. color: #999;
  43. font-weight: 400;
  44. margin-top: 20rpx;
  45. letter-spacing: 1rpx;
  46. }
  47. }
  48. }
  49. .product-desc {
  50. display: flex;
  51. flex-direction: column;
  52. .product {
  53. display: flex;
  54. justify-content: flex-start;
  55. height: 200rpx;
  56. padding: 20rpx;
  57. border-bottom: 1rpx solid #ECECEC;
  58. .product-img {
  59. width: 270rpx;
  60. image {
  61. width: 100%;
  62. height: 100%;
  63. }
  64. }
  65. .product-name {
  66. margin-left: 20rpx;
  67. position: relative;
  68. padding-top: 10rpx;
  69. .title {
  70. font-size: 17px;
  71. }
  72. .price {
  73. font-size: 18px;
  74. position: absolute;
  75. bottom: 0;
  76. left: 0;
  77. display: flex;
  78. justify-content: flex-start;
  79. & :first-child {
  80. font-size: 12px;
  81. color: #424242;
  82. padding-top: 25rpx;
  83. margin-right: 10rpx;
  84. }
  85. }
  86. }
  87. }
  88. }
  89. .people-num {
  90. display: flex;
  91. justify-content: space-between;
  92. height: 90rpx;
  93. background-color: #fff;
  94. line-height: 90rpx;
  95. align-items: center;
  96. margin-bottom: 10rpx;
  97. padding-left: 20rpx;
  98. .num-box {
  99. width: 250rpx;
  100. display: flex;
  101. justify-content: space-around;
  102. >view {
  103. width: 40rpx;
  104. height: 40rpx;
  105. margin: 5rpx 0;
  106. background-color: #fff;
  107. >image {
  108. width: 30rpx;
  109. height: 30rpx;
  110. margin-left: 10rpx;
  111. }
  112. }
  113. .num-text {
  114. width: 50rpx;
  115. height: 90rpx;
  116. line-height: 90rpx;
  117. text-align: center;
  118. }
  119. }
  120. }
  121. .desc-title {
  122. width: 100%;
  123. text-align: center;
  124. color: rgb(100, 100, 100);
  125. line-height: 100rpx;
  126. letter-spacing: 4rpx;
  127. }
  128. .order-time {
  129. background-color: #fff;
  130. margin-bottom: 20rpx;
  131. // padding-bottom: 20rpx;
  132. display: flex;
  133. justify-content: flex-start;
  134. position: relative;
  135. .weui-tabs {
  136. width: 100%;
  137. .weui-tabs-bar__wrp {
  138. .weui-tabs-bar__content {
  139. height: 95rpx;
  140. line-height: 94rpx;
  141. white-space: nowrap;
  142. display: flex;
  143. justify-content: space-around;
  144. border-bottom: 1rpx solid #ECECEC;
  145. .weui-tabs-bar__item {
  146. width: 14.2857%;
  147. .weui-tabs-bar__title {
  148. width: 100rpx;
  149. text-align: center;
  150. border-bottom-width: 6rpx;
  151. font-size: 13px;
  152. }
  153. }
  154. }
  155. }
  156. .weui-tabs-swiper {
  157. height: 800rpx;
  158. }
  159. }
  160. .tab-content {
  161. .orders {
  162. display: flex;
  163. flex-wrap: wrap;
  164. background-color: #fff;
  165. margin-top: 15rpx;
  166. .time-info {
  167. width: 166rpx;
  168. height: 80rpx;
  169. line-height: 80rpx;
  170. background-color: #F5F5F5;
  171. margin: 5rpx 5rpx;
  172. text-align: center;
  173. }
  174. .select-time {
  175. background-color: #BA9D6E;
  176. color: #fff
  177. }
  178. .out-time {
  179. color: #acacac;
  180. }
  181. }
  182. }
  183. }
  184. .product-mobile {
  185. height: 200rpx;
  186. position: relative;
  187. margin-bottom: 50rpx;
  188. display: flex;
  189. flex-direction: column;
  190. button {
  191. background-color: rgba(0, 0, 0, 0);
  192. color: #202020;
  193. font-weight: 400;
  194. height: 100rpx;
  195. line-height: 100rpx;
  196. padding: 0;
  197. /* margin: 0; */
  198. position: absolute;
  199. left: 60rpx;
  200. top: 0;
  201. }
  202. .phone {
  203. display: flex;
  204. position: relative;
  205. height: 100rpx;
  206. line-height: 100rpx;
  207. .phone-icon {
  208. position: absolute;
  209. width: 50rpx;
  210. height: 50rpx;
  211. top: 50%;
  212. transform: translateY(-50%);
  213. left: 40rpx;
  214. }
  215. .desc-text {
  216. margin-left: 140rpx;
  217. letter-spacing: 4rpx;
  218. }
  219. }
  220. & :first-child {
  221. border-bottom: 1px solid #ECECEC;
  222. }
  223. }
  224. .appointment {
  225. width: 100%;
  226. height: 100rpx;
  227. display: flex;
  228. justify-content: flex-start;
  229. .price {
  230. flex: 1;
  231. background-color: #222224;
  232. color: #fff;
  233. padding-left: 36rpx;
  234. line-height: 100rpx;
  235. font-weight: 300;
  236. letter-spacing: 2rpx;
  237. }
  238. .btn {
  239. width: 300rpx;
  240. background-color: #BA9D6E;
  241. text-align: center;
  242. line-height: 100rpx;
  243. }
  244. }
  245. }