wyb
2021-05-11 49ce087bd2a34a150597e1cc1da157af242c0b6d
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
body,
div,
ul,
li {
    margin: 0;
    padding: 0;
}
 
body {
    font-family: "微软雅黑";
}
 
.ui-step-wrap {
    position: relative;
}
 
    .ui-step-wrap .ui-step-bg,
    .ui-step-wrap .ui-step-progress {
        height: 6px;
        position: absolute;
        top: 50px;
        left: 0;
    }
 
    .ui-step-wrap .ui-step-bg {
        width: 100%;
        background: #ddd;
    }
 
    .ui-step-wrap .ui-step-progress {
        width: 0;
        background: #64BD2E;
    }
 
    .ui-step-wrap .ui-step {
        position: relative;
        z-index: 1;
        list-style: none;
    }
 
        .ui-step-wrap .ui-step:after {
            content: '';
            display: table;
            clear: both;
        }
 
        .ui-step-wrap .ui-step .ui-step-item {
            float: left;
            text-align:center;
        }
 
            .ui-step-wrap .ui-step .ui-step-item div {
                text-align: center;
                color: #625454;
            }
 
            .ui-step-wrap .ui-step .ui-step-item .ui-step-item-num {
                margin-top: 18px;
            }
 
                .ui-step-wrap .ui-step .ui-step-item .ui-step-item-num span {
                    display: inline-block;
                    width: 26px;
                    height: 26px;
                    border-radius: 50%;
                    background: #dad9d9;
                }
 
            .ui-step-wrap .ui-step .ui-step-item.active .ui-step-item-num span {
                color: #fff;
                background: #64BD2E;
            }
button {
    display: inline-block;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #fff;
    background-color: #5bc0de;
}
 
.main {
    width: 1000px;
    margin: 30px auto;
}
 
#step {
    margin-bottom: 3
    0px;
}
 
.btns {
    float: left;
}
 
.info {
    float: left;
    height: 34px;
    line-height: 34px;
    margin-left: 40px;
    font-size: 28px;
    font-weight: bold;
    color: #928787;
}
 
    .info span {
        color: red;
    }