-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathapp.wxss
128 lines (108 loc) · 1.9 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
@import './components/firstui/fui-theme/fui-theme.wxss';
page {
background-color: var(--fui-bg-color-grey,#F1F4FA);
font-size: 32rpx;
font-weight: 500;
color: var(--fui-color-title,#181818);
font-family: -apple-system-font, Helvetica Neue, Helvetica, sans-serif;
}
.fui-page__hd {
width: 100%;
padding: 52rpx 32rpx;
box-sizing: border-box;
}
.fui-page__bd {
width: 100%;
padding-bottom: 64rpx;
}
.fui-page__title {
text-align: left;
font-size: 36rpx;
font-weight: 600;
}
.fui-page__desc {
margin-top: 8rpx;
color: #B2B2B2;
text-align: left;
font-size: 28rpx;
font-weight: 400;
word-break: break-all;
}
.fui-page__spacing {
padding-left: 32rpx;
padding-right: 32rpx;
box-sizing: border-box;
}
.fui-section__title {
font-size: 32rpx;
line-height: 32rpx;
font-weight: 600;
margin-bottom: 32rpx;
padding-left: 16rpx;
position: relative;
box-sizing: border-box;
}
.fui-section__title:not(:first-child) {
margin-top: 96rpx;
}
.fui-page__title image {
width: 48rpx;
height: 48rpx;
margin-left: 16rpx;
}
.fui-section__title::after {
content: '';
position: absolute;
width: 2px;
height: 100%;
background: #465CFF;
border-radius: 2px;
left: 0;
top: 0;
}
.fui-color__primary{
color: #465CFF;
}
::-webkit-scrollbar {
width: 0 !important;
height: 0 !important;
color: transparent !important;
display: none;
}
.fui-wrap {
width: 100%;
display: flex;
box-sizing: border-box;
flex-direction: column;
}
.fui-ellipsis {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.fui-flex {
display: flex;
}
.fui-flex__1 {
flex: 1
}
.fui-flex__column {
flex-direction: column;
}
.fui-flex__center {
display: flex;
align-items: center;
justify-content: center;
}
.fui-flex__between {
display: flex;
align-items: center;
justify-content: space-between;
}
.fui-flex__reverse {
flex-direction: row-reverse;
}
.fui-align__center {
display: flex;
align-items: center;
}