forked from dingyong0214/ThorUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.wxss
98 lines (79 loc) · 1.38 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
/**app.wxss**/
page {
background: #fafafa;
/* font-family:PingFang-SC-Medium; */
}
.container {
display: flex;
flex-direction: column;
box-sizing: border-box;
}
.phcolor {
color: #ccc;
font-size: 32rpx;
}
button::after {
border: none;
}
.opcity {
opacity: 0.5;
}
.hover {
background: #f7f7f9 !important;
}
.ellipsis {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
/*列表统一样式 */
.list-item {
position: relative;
}
.list-item::after {
content: '';
position: absolute;
border-bottom: 1rpx solid #eaeef1;
-webkit-transform: scaleY(0.5);
transform: scaleY(0.5);
bottom: 0;
right: 0;
left: 30rpx;
}
.last::after {
border-bottom: 0 !important;
}
/*按钮样式*/
.btn-primary {
width: 100%;
height: 90rpx;
line-height: 90rpx;
background: linear-gradient(-90deg, #5677fc, #5c8dff);
border-radius: 45rpx;
color: #fff;
font-size: 36rpx;
}
.btn-hover {
color: #d5d4d9;
background: linear-gradient(-90deg, #4a67d6, #4e77d9);
}
.btn-gray {
background: #ededed;
color: #999 !important;
}
.btn-gray-hover {
background: #d5d5d5 !important;
color: #898989;
}
.btn-white {
background: #fff;
color: #333 !important;
}
.tui-white-hover {
background: #e5e5e5 !important;
color: #2e2e2e !important;
}
.btn-disabled {
color: #fafbfc !important;
background: linear-gradient(-90deg, #cad8fb, #c9d3fb);
}