time-line.wxss 728 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .container {
  2. display: flex;
  3. flex-direction: row;
  4. }
  5. .plan-line {
  6. width: 41rpx;
  7. display: flex;
  8. flex-direction: column;
  9. align-items: center;
  10. }
  11. .line {
  12. flex: 1;
  13. width: 2rpx;
  14. background-color: #EDEDED;
  15. height: 100%;
  16. }
  17. .line-icon {
  18. background: #C8C8C8;
  19. border: 7rpx solid #FFFFFF;
  20. border-radius: 50%;
  21. width: 15rpx;
  22. height: 15rpx;
  23. }
  24. .line-active {
  25. flex: 1;
  26. width: 2rpx;
  27. background-color: #FF4330;
  28. height: 100%;
  29. }
  30. .plan-complete-img {
  31. width: 41rpx;
  32. height: 41rpx;
  33. }
  34. .line-icon-active {
  35. background: linear-gradient(0deg, #FF7B60 0%, #FF4330 100%);
  36. border: 7rpx solid #FFFFFF;
  37. border-radius: 50%;
  38. width: 15rpx;
  39. height: 15rpx;
  40. }