appointment.wxss 3.0 KB

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