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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. .spotStep {
  2. width: 100%;
  3. height: 182rpx;
  4. display: flex;
  5. align-items: center;
  6. justify-content: center;
  7. position: relative;
  8. background-color: #fff;
  9. z-index: 98;
  10. .stepItem {
  11. display: flex;
  12. justify-content: center;
  13. align-items: center;
  14. position: relative;
  15. width: 184rpx;
  16. .stepItem_title {
  17. display: flex;
  18. justify-content: center;
  19. flex-direction: column;
  20. align-items: center;
  21. .num {
  22. width: 38rpx;
  23. height: 38rpx;
  24. border-radius: 50%;
  25. color: #fff;
  26. position: relative;
  27. display: flex;
  28. justify-content: center;
  29. align-items: center;
  30. }
  31. .numSub {
  32. width: 24rpx;
  33. height: 24rpx;
  34. background: #bfbfbf;
  35. border-radius: 50%;
  36. color: #fff;
  37. }
  38. .text {
  39. font-family: PingFang SC, PingFang SC;
  40. font-weight: 500;
  41. font-size: 24rpx;
  42. color: #999;
  43. margin-top: 24rpx;
  44. }
  45. }
  46. .done {
  47. .num {
  48. width: 38rpx;
  49. height: 38rpx;
  50. background: #00b38b;
  51. }
  52. .text {
  53. color: #00b38b;
  54. }
  55. }
  56. .active {
  57. .num {
  58. background: #c6ebe3;
  59. }
  60. .numSub {
  61. background: #00b38b;
  62. }
  63. .text {
  64. color: #00b38b;
  65. }
  66. }
  67. }
  68. .line {
  69. width: 155rpx;
  70. border-top: 2rpx dashed #d8d8d8;
  71. position: absolute;
  72. top: 17rpx;
  73. left: 56%;
  74. }
  75. }