appointment.scss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. .container {
  2. width: 100%;
  3. height: 100%;
  4. background-color: #F7F7F7;
  5. .product-img {
  6. width: 100%;
  7. >image {
  8. width: 100%;
  9. }
  10. }
  11. .product-title,
  12. .shop-name {
  13. width: 100%;
  14. height: 90rpx;
  15. background-color: #fff;
  16. padding: 10rpx 20rpx;
  17. margin-bottom: 10rpx;
  18. line-height: 90rpx;
  19. }
  20. .people-num {
  21. display: flex;
  22. justify-content: space-between;
  23. height: 90rpx;
  24. background-color: #fff;
  25. line-height: 90rpx;
  26. align-items: center;
  27. margin-bottom: 10rpx;
  28. padding-left: 20rpx;
  29. .num-box {
  30. width: 250rpx;
  31. display: flex;
  32. justify-content: space-around;
  33. >view {
  34. width: 40rpx;
  35. height: 40rpx;
  36. margin: 5rpx 0;
  37. background-color: #fff;
  38. >image {
  39. width: 30rpx;
  40. height: 30rpx;
  41. margin-left: 10rpx;
  42. }
  43. }
  44. .num-text {
  45. width: 50rpx;
  46. height: 90rpx;
  47. line-height: 90rpx;
  48. text-align: center;
  49. }
  50. }
  51. }
  52. .order-time {
  53. background-color: #fff;
  54. margin-bottom: 20rpx;
  55. padding-bottom: 20rpx;
  56. display: flex;
  57. justify-content: flex-start;
  58. position: relative;
  59. .weui-tabs {
  60. width: 100%;
  61. .weui-tabs-bar__wrp {
  62. .weui-tabs-bar__content {
  63. height: 95rpx;
  64. line-height: 94rpx;
  65. white-space: nowrap;
  66. display: flex;
  67. justify-content: space-around;
  68. border-bottom: 1rpx solid #ECECEC;
  69. .weui-tabs-bar__item {
  70. width: 14.2857%;
  71. .weui-tabs-bar__title {
  72. width: 100rpx;
  73. text-align: center;
  74. border-bottom-width: 6rpx;
  75. font-size: 13px;
  76. }
  77. }
  78. }
  79. }
  80. .weui-tabs-swiper {
  81. height: 800rpx;
  82. }
  83. }
  84. .tab-content {
  85. .orders {
  86. display: flex;
  87. flex-wrap: wrap;
  88. background-color: #fff;
  89. margin: 10rpx 15rpx 0;
  90. .time-info {
  91. width: 20%;
  92. height: 110rpx;
  93. line-height: 50rpx;
  94. background-color: #E6E6E6;
  95. margin: 10rpx 0;
  96. text-align: center;
  97. }
  98. .select-time {
  99. background-color: #DF3361;
  100. color: #fff
  101. }
  102. .out-time {
  103. color: #acacac;
  104. }
  105. }
  106. }
  107. }
  108. .product-mobile {
  109. background-color: #fff;
  110. width: 100%;
  111. height: 100rpx;
  112. position: relative;
  113. >button {
  114. background-color: rgba(0, 0, 0, 0);
  115. color: #202020;
  116. font-weight: 400;
  117. height: 100rpx;
  118. line-height: 100rpx;
  119. padding: 0;
  120. /* margin: 0; */
  121. position: absolute;
  122. left: -40rpx;
  123. top: 0;
  124. }
  125. }
  126. .appointment {
  127. width: 90%;
  128. height: 100rpx;
  129. margin: 10rpx auto;
  130. background-color: #DF3361;
  131. color: #fff;
  132. .btn {
  133. font-size: 17px;
  134. line-height: 100rpx;
  135. text-align: center;
  136. letter-spacing: 2rpx;
  137. }
  138. }
  139. .appointment-hover {
  140. background-color: #fff;
  141. border: 2rpx solid #DF3361;
  142. color: rgb(54, 54, 54);
  143. }
  144. }