index.css 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. @import '../common/index.css';
  2. .van-steps {
  3. overflow: hidden;
  4. background-color: #fff;
  5. background-color: var(--steps-background-color, #fff);
  6. }
  7. .van-steps--horizontal {
  8. padding: 10px;
  9. }
  10. .van-steps--horizontal .van-step__wrapper {
  11. position: relative;
  12. display: -webkit-flex;
  13. display: flex;
  14. overflow: hidden;
  15. }
  16. .van-steps--vertical {
  17. padding-left: 10px;
  18. }
  19. .van-steps--vertical .van-step__wrapper {
  20. padding: 0 0 0 20px;
  21. }
  22. .van-step {
  23. position: relative;
  24. -webkit-flex: 1;
  25. flex: 1;
  26. font-size: 14px;
  27. font-size: var(--step-font-size, 14px);
  28. color: #969799;
  29. color: var(--step-text-color, #969799);
  30. }
  31. .van-step--finish {
  32. color: #323233;
  33. color: var(--step-finish-text-color, #323233);
  34. }
  35. .van-step__circle {
  36. border-radius: 50%;
  37. width: 5px;
  38. width: var(--step-circle-size, 5px);
  39. height: 5px;
  40. height: var(--step-circle-size, 5px);
  41. background-color: #969799;
  42. background-color: var(--step-circle-color, #969799);
  43. }
  44. .van-step--horizontal {
  45. padding-bottom: 14px;
  46. }
  47. .van-step--horizontal:first-child .van-step__title {
  48. -webkit-transform: none;
  49. transform: none;
  50. }
  51. .van-step--horizontal:first-child .van-step__circle-container {
  52. padding: 0 8px 0 0;
  53. -webkit-transform: translate3d(0, 50%, 0);
  54. transform: translate3d(0, 50%, 0);
  55. }
  56. .van-step--horizontal:last-child {
  57. position: absolute;
  58. right: 0;
  59. width: auto;
  60. }
  61. .van-step--horizontal:last-child .van-step__title {
  62. text-align: right;
  63. -webkit-transform: none;
  64. transform: none;
  65. }
  66. .van-step--horizontal:last-child .van-step__circle-container {
  67. right: 0;
  68. padding: 0 0 0 8px;
  69. -webkit-transform: translate3d(0, 50%, 0);
  70. transform: translate3d(0, 50%, 0);
  71. }
  72. .van-step--horizontal .van-step__circle-container {
  73. position: absolute;
  74. bottom: 6px;
  75. z-index: 1;
  76. -webkit-transform: translate3d(-50%, 50%, 0);
  77. transform: translate3d(-50%, 50%, 0);
  78. background-color: #fff;
  79. background-color: var(--white, #fff);
  80. padding: 0 8px;
  81. padding: 0 var(--padding-xs, 8px);
  82. }
  83. .van-step--horizontal .van-step__title {
  84. display: inline-block;
  85. -webkit-transform: translate3d(-50%, 0, 0);
  86. transform: translate3d(-50%, 0, 0);
  87. font-size: 12px;
  88. font-size: var(--step-horizontal-title-font-size, 12px);
  89. }
  90. .van-step--horizontal .van-step__line {
  91. position: absolute;
  92. right: 0;
  93. bottom: 6px;
  94. left: 0;
  95. height: 1px;
  96. -webkit-transform: translate3d(0, 50%, 0);
  97. transform: translate3d(0, 50%, 0);
  98. background-color: #ebedf0;
  99. background-color: var(--step-line-color, #ebedf0);
  100. }
  101. .van-step--horizontal.van-step--process {
  102. color: #323233;
  103. color: var(--step-process-text-color, #323233);
  104. }
  105. .van-step--horizontal.van-step--process .van-step__icon {
  106. display: block;
  107. line-height: 1;
  108. font-size: 12px;
  109. font-size: var(--step-icon-size, 12px);
  110. }
  111. .van-step--vertical {
  112. padding: 10px 10px 10px 0;
  113. line-height: 18px;
  114. }
  115. .van-step--vertical:after {
  116. border-bottom-width: 1px;
  117. }
  118. .van-step--vertical:last-child:after {
  119. border-bottom-width: none;
  120. }
  121. .van-step--vertical:first-child:before {
  122. position: absolute;
  123. top: 0;
  124. left: -15px;
  125. z-index: 1;
  126. width: 1px;
  127. height: 20px;
  128. content: '';
  129. background-color: #fff;
  130. background-color: var(--white, #fff);
  131. }
  132. .van-step--vertical .van-step__circle,
  133. .van-step--vertical .van-step__icon,
  134. .van-step--vertical .van-step__line {
  135. position: absolute;
  136. top: 19px;
  137. left: -14px;
  138. z-index: 2;
  139. -webkit-transform: translate3d(-50%, -50%, 0);
  140. transform: translate3d(-50%, -50%, 0);
  141. }
  142. .van-step--vertical .van-step__icon {
  143. line-height: 1;
  144. font-size: 12px;
  145. font-size: var(--step-icon-size, 12px);
  146. }
  147. .van-step--vertical .van-step__line {
  148. z-index: 1;
  149. width: 1px;
  150. height: 100%;
  151. -webkit-transform: translate3d(-50%, 0, 0);
  152. transform: translate3d(-50%, 0, 0);
  153. background-color: #ebedf0;
  154. background-color: var(--step-line-color, #ebedf0);
  155. }