alert.wxss
1.2 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
.cover {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
background: rgba(0, 0, 0, 0.7);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 110rpx;
z-index: 100;
}
.alert {
width: 658rpx;
height: 500rpx;
background: #FFFFFF;
border-radius: 16rpx;
position: relative;
display: flex;
flex-direction: column;
align-items: center;
}
.icon-alert {
margin: 88rpx 0 40rpx;
width: 100rpx;
height: 100rpx;
background: url('https://hbrand.oss-cn-hangzhou.aliyuncs.com/cpp/jyScan/warn_icon.png') no-repeat center / cover;
}
.icon-close {
background: url('https://hbrand.oss-cn-hangzhou.aliyuncs.com/BUSINESS/CPP/weilong/icon_close.png') no-repeat center / cover;
width: 60rpx;
height: 60rpx;
position: absolute;
bottom: -110rpx;
left: calc(50% - 30rpx);
}
.content {
width: 600rpx;
font-weight: 400;
font-size: 34rpx;
color: #333333;
letter-spacing: 0;
text-align: center;
}
.user-id {
width: 100%;
font-weight: 400;
font-size: 28rpx;
color: #999999;
text-align: center;
position: absolute;
bottom: 34rpx;
}