date-select.wxss 981 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. .plan-time {
  2. padding: 30rpx 0rpx 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. font-weight: 400;
  11. color: #FF4330;
  12. }
  13. .time-filter {
  14. display: flex;
  15. flex-flow: wrap;
  16. }
  17. .time-item {
  18. margin: 15rpx 0 0 15rpx;
  19. display: flex;
  20. flex-direction: column;
  21. align-items: center;
  22. justify-content: center;
  23. width: 80rpx;
  24. height: 80rpx;
  25. background: rgba(243, 245, 249, 0.5);
  26. border-radius: 10rpx;
  27. font-size: 26rpx;
  28. font-weight: 400;
  29. color: #999999;
  30. }
  31. .time-item-active {
  32. margin: 15rpx 0 0 15rpx;
  33. display: flex;
  34. flex-direction: column;
  35. align-items: center;
  36. justify-content: center;
  37. width: 80rpx;
  38. height: 80rpx;
  39. background: linear-gradient(0deg, #FF4330 0%, #FF7B60 100%);
  40. border-radius: 10rpx;
  41. font-size: 26rpx;
  42. font-weight: 400;
  43. color: #FFF;
  44. }
  45. .time-date {
  46. font-size: 18rpx;
  47. }