com_servicer.wxss
778 Bytes
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
/* 联系客服操作菜单 */
.action {
position: fixed;
bottom: 100rpx;
z-index: 1;
width: 100%;
background-color: white;
border-radius: 20rpx 20rpx 0 0;
}
.action .icon-guan {
position: absolute;
left: 20rpx !important;
right: auto !important;
padding: 10rpx 20rpx 10rpx 10rpx;
}
.action .iconfont {
color: #ff7295;
margin-right: 10rpx;
}
.action button {
text-align: left;
line-height: normal;
}
.action button::after {
border-width: 0;
}
.action .btn2 {
box-sizing: border-box;
height: 100rpx;
display: flex;
align-items: center;
}
.mask2 {
display: none;
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-color: rgba(0,0,0,.5);
}
.action.active ~ .mask2 {
display: block;
}