Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

handleStep.scss 947B

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