_address-modify.css
1.02 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
.modify-address-page {
.confim-modify-mask {
position: fixed;
width: 100%;
height: 100%;
left: 0;
top: 0;
background: rgba(0, 0, 0, 0.5);
z-index: 5;
}
.confim-box {
position: absolute;
left: 50%;
top: 50%;
margin-left: -270px;
margin-top: -144px;
width: 540px;
text-align: center;
color: #444;
background: #fff;
font-size: 32px;
font-weight: bold;
border-radius: 10px;
.modify-content {
text-align: left;
padding: 30px 20px;
line-height: 80px;
}
.action {
line-height: 88px;
border-top: 1px solid #e0e0e0;
span {
display: inline-block;
width: 260px;
&:first-child {
border-right: 1px solid #e0e0e0;
}
}
}
.confim {
color: #d0021b;
}
}
}