No Description
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.

step.css 1018B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. #StepWrapper_wrapper {
  2. display:flex;
  3. flex-flow: column;
  4. align-items: center;
  5. justify-content: center;
  6. }
  7. #StepWrapper {
  8. width: 100%;
  9. display: inline-flex;
  10. justify-content: center;
  11. padding-bottom: 1.1rem;
  12. margin-bottom: 1.1rem;
  13. }
  14. #StepWrapper_content {
  15. width: 100%;
  16. }
  17. .s-step{
  18. display: inline-flex;
  19. align-items: center;
  20. justify-content: center;
  21. }
  22. .s-step > .s-circle {
  23. border: 0.125rem solid #1E9FFF;
  24. border-radius: 100%;
  25. display: flex;
  26. align-items: center;
  27. justify-content: center;
  28. width: 1.5rem;
  29. height: 1.5rem;
  30. position: relative;
  31. }
  32. .s-step > .s-circle > .tip {
  33. position: absolute;
  34. top: 1.5rem;
  35. text-align: center;
  36. }
  37. .s-step > .s-line {
  38. border: 0.0625rem solid #1E9FFF;
  39. }
  40. .s-step > .active {
  41. background: #1E9FFF;
  42. color: #1E9FFF;
  43. }
  44. .s-step > .active > .s-num {
  45. color: #ffffff;
  46. }
  47. #Content_Main, #Content_Main .item {
  48. background-color: transparent;
  49. }
  50. #Carousel_item:before {
  51. content: '';
  52. }