forked from wushuxuan/PockerUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.wxss
93 lines (87 loc) · 1.29 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/**app.wxss**/
@import "wxss/index.wxss";
page{
background:#F8F8F8;
font-size: 16px;
font-family: -apple-system-font,Helvetica Neue,Helvetica,sans-serif;
}
.container {
height: 100%;
display: flex;
padding:0px 10px;
flex-direction: column;
align-items: center;
justify-content: space-between;
box-sizing: border-box;
overflow-x:hidden;
}
.indexTop{
padding:30px 0px 20px;
background:#fff;
}
.TopImg{
text-align: center;
}
.TopImg image{
width:200rpx;
height:200rpx;
}
.TopText{
padding:15px 0px;
}
/*公共内容*/
.doc-title{
width:100%;
margin:20px auto 100rpx;
padding:10px 0px;
border-bottom: 1px solid #ddd;
font-size: 60rpx;
color:#707070;
}
.free-panel{
width:100%;
margin-bottom:50rpx;
}
.free-panel-title{
width:100%;
padding:2% 0;
color:#666;
font-size:14px;
}
/*字体*/
.h1{
font-size:40rpx;
padding: 15rpx 0px;
text-align: center;
font-weight: bold;
}
.fontWeight{
font-weight: bold;
}
.text-right{
font-weight: 900;
}
.text_center{
text-align: center;
}
.text-right{
text-align: right;
}
/*按钮*/
button{
margin:10px 0px;
}
/*控制元素是否显示*/
.true{
display: block;
}
.hidden{
display: none;
}
/*注释*/
.note{
font-size:28rpx;
color: #707070;
padding-left:15px;
margin:5px 0px 15px;
}