12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- .step {
- width: 100%;
- height: 182rpx;
- background: #ffffff;
- display: flex;
- align-items: center;
- justify-content: center;
- .stepItem {
- display: flex;
- justify-content: center;
- align-items: center;
- position: relative;
- .stepItem_title {
- display: flex;
- justify-content: center;
- flex-direction: column;
- align-items: center;
- .num {
- width: 50rpx;
- height: 50rpx;
- background: #BFBFBF;
- border-radius: 50%;
- color: #fff;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .text {
- font-family: PingFang SC, PingFang SC;
- font-weight: 500;
- font-size: 24rpx;
- color: #999;
- margin-top: 24rpx;
- }
- }
- .active{
- .num {
- background: #00B38B;
- }
- .text {
- color: #00B38B;
- }
- }
- }
- .line1 {
- width: 40rpx;
- height: 4rpx;
- background: #d8d8d8;
- }
- .line2 {
- width: 40rpx;
- height: 4rpx;
- background: #d8d8d8;
- }
- }
|