-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathapp.wxss
58 lines (51 loc) · 1.16 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
/**app.wxss**/
page{
background: #f5f5f5;
font-family: PingFang-SC-Regular,sans-serif;
font-size: 40rpx;
-webkit-tap-highlight-color: transparent;
-webkit-font-smoothing: antialiased;
-webkit-overflow-scrolling: touch;
}
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 200rpx 0;
box-sizing: border-box;
}
/*fd swiper-tab*/
.swiper-tab{
padding: 10px 0px;
height: 30px;
line-height: 30px;
background: #FFF;
display: flex;
position: relative;
z-index: 2;
flex-direction:row;
justify-content:center;
align-items:center;
}
.swiper-tab-list{
color: #f85f48;
text-align: center;
border: 1px solid #f85f48;
margin: 10px 0px;
padding: 0 6px;
width: 60px;
font-size: 28rpx;
font-family: Helvetica, Arial, "Hiragino Sans GB", "Source Han Sans CN", "PingFang SC", Roboto, "微软雅黑", "Heiti SC", "Microsoft Yahei", sans-serif
}
.swiper-left{
border-radius: .3rem 0 0 .3rem;
}
.swiper-right{
border-radius: 0 .3rem .3rem 0;
}
.on{
color: #fff;
background: #f85f48;
}