app.wxss
1.5 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
/**app.wxss**/
page {
width: 100%;
height: 100%;
}
.container {
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
/* padding: 200rpx 0; */
/* box-sizing: border-box; */
}
.drop_img {
width: 30rpx;
height: 27rpx;
cursor: pointer;
margin: 0 auto 40rpx;
position: fixed;
bottom: 50rpx;
left: 50%;
margin-left: -15rpx;
}
/* 客服 */
.chat_peo {
position: fixed;
width: 86rpx;
height: 86rpx;
bottom: 80rpx;
right: 24rpx;
z-index: 999999;
}
button::after {
border: none;
opacity: 0;
}
.contacButton {
background: none;
border: none;
padding: 0;
display:inline-block;
width:100%;
height:100%;
}
.chat_peo image {
width: 100%;
height: 100%;
}
/* 返回顶部 */
.return_top {
bottom: 187rpx;
z-index: 999999;
}
/* 去除滚动条 */
::-webkit-scrollbar {
width: 0;
height: 0;
color: transparent;
}
.dots{
width: 100%;
height: 50rpx;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
position: absolute;
bottom: 0;
/* margin-top: -18rpx; */
}
/*未选中时的小圆点样式 */
.dot{
width: 16rpx;
height: 16rpx;
border-radius: 50%;
margin-right: 26rpx;
background-color:#CCCCCC;
}
/*选中以后的小圆点样式 */
.active{
width: 22rpx;
height: 22rpx;
border-radius:8rpx;
/* background-color: #FB7F47; */
background: url("http://pjq0ww1cj.bkt.clouddn.com/lbxia.png") no-repeat center;
background-size: 100%;
}