progress.css
2.72 KB
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
.progressBar {
padding-top: 30px;
color: #4A4A4A;
position: relative;
width: 93%;
margin: 0 auto;
}
.app_progress {
display: flex;
width: 100%;
}
.app_progress li {
display: inline-block;
text-align: center;
flex: 1;
width: 100%;
-moz-user-select: none; /*火狐*/
-webkit-user-select: none; /*webkit浏览器*/
-ms-user-select: none; /*IE10*/
-khtml-user-select: none; /*早期浏览器*/
user-select: none;
}
.app_progress .layui-progress {
flex: 2.1;
position: relative;
top: 13px;
margin-left: -3.8%;
margin-right: -3.8%;
}
.layui-progress {
height: 2px!important;
}
.layui-progress-bar {
height: 2px!important;
}
.item_proress {
position: relative;
z-index: 10;
}
.app_progress li p{
width: 26px;
height: 26px;
border-radius: 50%;
background-color: #E6E6E6;
margin: 0 auto;
}
.app_progress li h5 {
white-space: nowrap;
margin-top: 5px;
font-size: 14px;
}
.active {
background-color: #47E1BF!important;
position: relative;
}
.activeing {
background-color: #47E1BF!important;
}
.activeingtext {
color: #47E1BF!important;
}
.active::after {
content: " ";
display: block;
position: absolute;
left: 9px;
top: 6px;
width: 7px;
height: 10px;
border-color: #fff;
border-style: solid;
border-width: 0 2px 2px 0;
transform: rotate(45deg);
}
.layui-progress-bar {
background-color: #47E1BF!important;
}
.next_button button {
width: 140px;
height: 42px;
position: relative;
}
.next_button a {
color: #ffffff;
display: block;
position: absolute;
width: 140px;
height: 42px;
text-align: center;
line-height: 42px;
left: 0;
top: 0;
}
.next_button a:hover {
color: #ffffff;
}
/* ------------中间内容区域------------- */
.content_area {
background: #FFFFFF;
box-shadow: 0px 4px 16px 0px rgba(40, 120, 254, 0.24);
-webkit-box-shadow: 0px 4px 16px 0px rgba(40, 120, 254, 0.24);
-moz-box-shadow: 0px 4px 16px 0px rgba(40, 120, 254, 0.24);
border-radius: 6px;
box-sizing: border-box;
padding: 20px;
margin-top: 10px;
margin-bottom: 50px;
}
.progressBar_con {
text-align: center;
}
/* ---------------业务名称title----------------------- */
.name_title {
padding: 10px;
margin-top: 15px;
}
.name_title h2 {
display: inline-block;
margin-right: 10px;
height: 16px;
line-height: 16px;
color: #4A4A4A;
line-height: 16px;
position: relative;
}
.name_title h2::after {
position: absolute;
content: "";
width: 1px;
height: 12px;
background-color: #9B9B9B;
right: -7px;
top: 2px;
}
.name_title p {
display: inline-block;
color: #4A4A4A
}