fei.wang
2024-03-07 80c20bb65f4b73d8beb817e0d595889cd44479dd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
.lay-step {
    font-size: 0;
    width: 400px;
    margin: 0 auto;
    max-width: 100%;
    padding-left: 200px;
}
 
.step-item {
    display: inline-block;
    line-height: 26px;
    position: relative;
    font-size: 14px;
}
 
.step-item-tail {
    width: 100%;
    padding: 0 10px;
    position: absolute;
    left: 0;
    top: 13px;
}
 
.step-item-tail i {
    display: inline-block;
    width: 100%;
    height: 1px;
    vertical-align: top;
    background: #c2c2c2;
    position: relative;
}
 
.step-item-tail .step-item-tail-done {
    background: #009688;
}
 
.step-item-head {
    position: relative;
    display: inline-block;
    height: 26px;
    width: 26px;
    text-align: center;
    vertical-align: top;
    color: #009688;
    border: 1px solid #009688;
    border-radius: 50%;
    background: #ffffff;
}
 
.step-item-head.step-item-head-active {
    background: #009688;
    color: #ffffff;
}
 
.step-item-main {
    display: block;
    position: relative;
    margin-left: -50%;
    margin-right: 50%;
    padding-left: 26px;
    text-align: center;
}
 
.step-item-main-title {
    font-weight: bolder;
    color: #555555;
}
 
.step-item-main-desc {
    color: #aaaaaa;
}
 
.lay-step + [carousel-item]:before {
    display: none;
}
 
.lay-step + [carousel-item] > * {
    background-color: transparent;
}