index.less 754 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* pages/reservationMan/index.wxss */
  2. .container{
  3. padding-bottom: 120rpx;
  4. }
  5. .filterStatus{
  6. font-size: 28rpx;
  7. padding: 10rpx 0 20rpx 30rpx;
  8. background-color: #fff;
  9. margin-bottom: 20rpx;
  10. color: rgba(0,0,0,0.85);
  11. }
  12. .filterStatus view{
  13. display: inline-block;
  14. padding: 0 18rpx;
  15. position: relative;
  16. }
  17. .filterStatus .active{
  18. font-weight: bold;
  19. }
  20. .filterStatus .active::after{
  21. display: inline-block;
  22. content: '';
  23. width: 40rpx;
  24. height: 4rpx;
  25. position: absolute;
  26. left: 34rpx;
  27. bottom: -20rpx;
  28. /* margin-left: -20rpx; */
  29. background: #2C6CEC;
  30. border-radius: 2rpx;
  31. }
  32. .filterStatus .active.first::after{
  33. left: 24rpx;
  34. }
  35. .bottomBtn{
  36. padding-top: 20rpx;
  37. text-align: right;
  38. }
  39. .bottomBtn button {
  40. margin-left: 0 !important;
  41. }