appointment.wxss 2.6 KB

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