| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- .steps-container {
- display: flex;
- /* padding: 0 55rpx; */
- padding: 10rpx;
- justify-content: space-between;
- /* width: 100%; */
- }
- .steps {
- display: flex;
- justify-content: space-between;
- width: 100%;
- position: relative;
- }
-
- .step {
- display: flex;
- align-items: center;
- flex-direction: column;
- flex: 1;
- }
-
- .step-icon {
- width: 44rpx;
- height: 44rpx;
- position: relative;
- margin: 10rpx 60rpx 60rpx 20rpx;
- }
-
- .step-title {
- color: #1B365D;
- text-align: center;
- font-size: 30rpx;
- font-weight: 500;
- /* line-height: 44rpx; */
- }
-
- .step-title image {
- width: 44rpx;
- height: 44rpx;
- }
-
- .step-line {
- width: 150rpx;
- height: 2rpx;
- background-color: #ccc;
- position: absolute;
- left: 80rpx;
- top: 40rpx;
- }
- .step-line-1 {
- width: 55rpx;
- height: 2rpx;
- background-color: #ccc;
- position: absolute;
- left: 20rpx;
- /* z-index: 99; */
- top: 50rpx;
- }
- .step-line-2 {
- width: 55rpx;
- height: 2rpx;
- background-color: #ccc;
- position: absolute;
- right: 20rpx;
- /* z-index: 99; */
- top: 50rpx;
- }
|