You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .step {
  2. width: 100%;
  3. height: 182rpx;
  4. background: #ffffff;
  5. display: flex;
  6. align-items: center;
  7. justify-content: center;
  8. }
  9. .step .stepItem {
  10. display: flex;
  11. justify-content: center;
  12. align-items: center;
  13. position: relative;
  14. }
  15. .step .stepItem .stepItem_title {
  16. display: flex;
  17. justify-content: center;
  18. flex-direction: column;
  19. align-items: center;
  20. }
  21. .step .stepItem .stepItem_title .num {
  22. width: 50rpx;
  23. height: 50rpx;
  24. background: #BFBFBF;
  25. border-radius: 50%;
  26. color: #fff;
  27. display: flex;
  28. justify-content: center;
  29. align-items: center;
  30. }
  31. .step .stepItem .stepItem_title .text {
  32. font-family: PingFang SC, PingFang SC;
  33. font-weight: 500;
  34. font-size: 24rpx;
  35. color: #999;
  36. margin-top: 24rpx;
  37. }
  38. .step .stepItem .active .num {
  39. background: #00B38B;
  40. }
  41. .step .stepItem .active .text {
  42. color: #00B38B;
  43. }
  44. .step .line1 {
  45. width: 40rpx;
  46. height: 4rpx;
  47. background: #d8d8d8;
  48. }
  49. .step .line2 {
  50. width: 40rpx;
  51. height: 4rpx;
  52. background: #d8d8d8;
  53. }