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.

index.wxss 2.2KB

1 vuosi sitten
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. .wux-step {
  2. font-size: 0;
  3. position: relative;
  4. display: inline-block;
  5. box-sizing: border-box;
  6. padding: 0 10rpx;
  7. vertical-align: top;
  8. }
  9. .wux-step--vertical {
  10. padding-bottom: 60rpx
  11. }
  12. .wux-step--vertical .wux-step__hd {
  13. float: left
  14. }
  15. .wux-step--vertical .wux-step__bd {
  16. overflow: hidden;
  17. display: block;
  18. margin-left: 80rpx;
  19. margin-top: 0;
  20. text-align: left;
  21. clear: inherit
  22. }
  23. .wux-step--vertical .wux-step__ft {
  24. position: absolute;
  25. left: 38rpx;
  26. top: 0;
  27. height: 100%;
  28. width: 2rpx;
  29. padding: 60rpx 0 8rpx;
  30. margin-left: 0
  31. }
  32. .wux-step--vertical .wux-step__ft::after {
  33. width: 2rpx;
  34. height: 100%
  35. }
  36. .wux-step__ft {
  37. position: absolute;
  38. left: 50%;
  39. width: 100%;
  40. top: 24rpx;
  41. padding: 0 48rpx;
  42. margin-left: 6rpx;
  43. box-sizing: border-box
  44. }
  45. .wux-step__ft::after {
  46. content: "";
  47. display: inline-block;
  48. background: #d9d9d9;
  49. height: 2rpx;
  50. border-radius: 2rpx;
  51. width: 100%;
  52. transition: background .3s;
  53. position: relative;
  54. left: -4rpx
  55. }
  56. .wux-step__icon {
  57. box-sizing: border-box;
  58. font-size: 24rpx;
  59. width: 48rpx;
  60. height: 100%;
  61. border-radius: 50%;
  62. background: #fff;
  63. position: relative;
  64. z-index: 2;
  65. margin: 0 auto;
  66. border: #e9eaec solid 2rpx
  67. }
  68. .wux-step__thumb {
  69. width: 100%;
  70. height: 100%;
  71. display: inline-block;
  72. overflow: hidden
  73. }
  74. .wux-step--process .wux-step__icon {
  75. border: #1677ff solid 2rpx;
  76. color: #fff;
  77. background: #1677ff
  78. }
  79. .wux-step--wait .wux-step__icon {
  80. border: #e9eaec solid 2rpx;
  81. color: #e9eaec
  82. }
  83. .wux-step--wait .wux-step__ft::after {
  84. background: #e9eaec
  85. }
  86. .wux-step--finish .wux-step__icon {
  87. border: #1677ff solid 2rpx;
  88. color: #1677ff
  89. }
  90. .wux-step--finish .wux-step__ft::after {
  91. background: #1677ff
  92. }
  93. .wux-step--error .wux-step__icon {
  94. border: #ef473a solid 2rpx;
  95. color: #ef473a
  96. }
  97. .wux-step--error .wux-step__ft::after {
  98. background: #ef473a
  99. }
  100. .wux-step__hd {
  101. width: auto;
  102. height: 48rpx;
  103. line-height: 48rpx;
  104. text-align: center;
  105. box-sizing: border-box
  106. }
  107. .wux-step__bd {
  108. margin-top: 20rpx;
  109. text-align: center;
  110. clear: both
  111. }
  112. .wux-step__title {
  113. font-size: 24rpx;
  114. font-weight: 700;
  115. color: rgba(0,0,0,.85)
  116. }
  117. .wux-step__content {
  118. font-size: 24rpx;
  119. margin-top: 6rpx;
  120. color: rgba(0,0,0,.65)
  121. }