date-select.wxss 1015 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .plan-time {
  2. padding: 30rpx 10rpx 40rpx;
  3. margin: 30rpx;
  4. background: #FFFFFF;
  5. border-radius: 30rpx;
  6. }
  7. .plan-time-txt {
  8. padding: 0 30rpx 10rpx;
  9. font-size: 28rpx;
  10. color: #FF4330;
  11. }
  12. .time-filter {
  13. width: 100%;
  14. white-space: nowrap;
  15. }
  16. .time-wraper {
  17. display: inline-block;
  18. vertical-align: middle;
  19. overflow: hidden;
  20. }
  21. .time-item {
  22. margin: 15rpx 0 0 15rpx;
  23. display: flex;
  24. flex-direction: column;
  25. align-items: center;
  26. justify-content: center;
  27. width: 80rpx;
  28. height: 80rpx;
  29. background: rgba(243, 245, 249, 0.5);
  30. border-radius: 10rpx;
  31. font-size: 26rpx;
  32. color: #999999;
  33. }
  34. .time-item-active {
  35. margin: 15rpx 0 0 15rpx;
  36. display: flex;
  37. flex-direction: column;
  38. align-items: center;
  39. justify-content: center;
  40. width: 80rpx;
  41. height: 80rpx;
  42. background: linear-gradient(0deg, #FF4330 0%, #FF7B60 100%);
  43. border-radius: 10rpx;
  44. font-size: 26rpx;
  45. color: #FFF;
  46. }
  47. .time-date {
  48. font-size: 18rpx;
  49. }