52 lines
986 B
Plaintext
52 lines
986 B
Plaintext
/* packageI/invoice/components/progress-step/progress-step.wxss */
|
|
.bgc153 {
|
|
background-color: #f15353;
|
|
}
|
|
.bgcCB {
|
|
background-color: #cbcbcb;
|
|
}
|
|
.bor153 {
|
|
border: #f15353 1rpx solid;
|
|
}
|
|
.borCB {
|
|
border: #cbcbcb 1rpx solid;
|
|
}
|
|
.steps {
|
|
display: flex;
|
|
margin: 41rpx 0 25rpx;
|
|
}
|
|
.steps .steps-line {
|
|
flex: 1;
|
|
height: 32rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.steps .steps-line .steps-line-child {
|
|
width: 100%;
|
|
height: 1rpx;
|
|
}
|
|
.steps .steps-item {
|
|
width: 128rpx;
|
|
font-size: 24rpx;
|
|
text-align: center;
|
|
}
|
|
.steps .steps-item .steps-item-text {
|
|
margin-top: 12rpx;
|
|
font-size: 24rpx;
|
|
color: #333;
|
|
}
|
|
.steps .steps-item-radius {
|
|
width: 32rpx;
|
|
height: 32rpx;
|
|
margin: 0 auto;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.steps .steps-item-radius .with {
|
|
width: 16rpx;
|
|
height: 16rpx;
|
|
border-radius: 50%;
|
|
}
|
|
|