mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
81 lines
1.2 KiB
Plaintext
81 lines
1.2 KiB
Plaintext
|
|
.zui-vsteps {
|
|
position: relative;
|
|
padding: 15px;
|
|
color: #999;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.zui-vsteps::after {
|
|
left: 42px;
|
|
}
|
|
|
|
.zui-vsteps__step--done {
|
|
color: #44BB00;
|
|
}
|
|
|
|
.zui-vsteps__line {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 22px;
|
|
width: 1px;
|
|
background-color: #e5e5e5;
|
|
}
|
|
|
|
.zui-vsteps__title {
|
|
padding-left: 27px;
|
|
}
|
|
|
|
.zui-vsteps__icons {
|
|
position: absolute;
|
|
left: 22px;
|
|
top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
z-index: 2;
|
|
padding: 3px 0;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.zui-vsteps__circle {
|
|
width: 5px;
|
|
height: 5px;
|
|
background-color: #cacaca;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.zui-vsteps__step--done .zui-vsteps__circle {
|
|
width: 13px;
|
|
height: 13px;
|
|
color: #09bb07;
|
|
background-color: transparent;
|
|
border-radius:0;
|
|
}
|
|
|
|
.zui-vsteps__icon--active {
|
|
width: 13px;
|
|
height: 13px;
|
|
}
|
|
|
|
.zui-vsteps--first-child .zui-vsteps__title::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 50%;
|
|
left: 22px;
|
|
width: 1px;
|
|
background-color: #fff;
|
|
z-index: 1;
|
|
}
|
|
|
|
.zui-vsteps--last-child .zui-vsteps__title::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 50%;
|
|
bottom: 0%;
|
|
left: 22px;
|
|
width: 1px;
|
|
background-color: #fff;
|
|
z-index: 1;
|
|
}
|