-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathapp.wxss
66 lines (57 loc) · 1.06 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
page {
background-color: #f0f0f0;
}
page .head {
padding: 0;
margin: 22rpx 25rpx;
}
page .head .top-button {
width: 304rpx;
height: 84rpx;
margin: 22rpx auto;
font-size: 30rpx;
font-weight: 600;
border-radius: 42rpx;
display: flex;
justify-content: center;
align-items: center;
color: #616161;
background: #fffefc;
border: 1rpx solid rgba(13,25,40,0.25);
box-shadow: 0 8rpx 20rpx 0 rgba(44,57,75,0.1);
}
page .head .top-button-hover {
transform: scale(.95);
transition: all 200ms;
box-shadow: 0 2rpx 6rpx 0 rgba(44,57,75,0.15);
}
page .body {
padding: 25rpx;
}
page .body-IPX {
padding-bottom: 46px; /* 25rpx = 12px, 12px + 34px */
}
page .body .bottom {
display: flex;
justify-content: center;
padding-top: 25rpx;
}
page .body .bottom .loading {
width: 60rpx;
height: 60rpx;
}
button::after {
border: none;
}
.ad-item {
margin: 25rpx 0;
border-radius: 6rpx;
overflow: hidden;
box-shadow: 0 8rpx 20rpx 0 rgba(44,57,75,0.1);
}
.ad-item:first-child {
margin-top: 0;
}
.ad-item:last-child {
margin-bottom: 0;
}