-
Notifications
You must be signed in to change notification settings - Fork 75
/
app.wxss
70 lines (70 loc) · 1.26 KB
/
app.wxss
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
/**app.wxss**/
/*修改顶层节点的样式*/
page {
display: block;
min-height: 100%;
background-color: #fff;
}
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
box-sizing: border-box;
background-color: #eee;
}
.slider {
display: block;
height: 400rpx;
}
.slider .slide-image{
width: 100%;
height: 100%;
}
.slider .default-slide-image{
width: 60rpx!important;
height: 60rpx!important;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.clearfix::after{
content: "";
display: table!important;
clear: both;
}
/*布局相关*/
.pt20{
height: 20rpx;
background-color: #eee;
}
/*警示状态栏*/
.status-bar{
position: fixed;
bottom: 0;
left: 0;
right: 0;
display: flex;
justify-content: center;
align-items: center;
height: 90rpx;
border-top: solid #efe5a7 3rpx;
background-color: #fffae2;
font-size: 30rpx;
color: #222;
}
.status-bar text{
padding: 0 3px;
color: #e61773;
}
/*按钮primary*/
button[type="primary"] {
border-radius: 0;
background-color: #e61773;
}
button[disabled][type="primary"] {
border-radius: 0;
background-color:#ccc;
}