-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.wxss
70 lines (66 loc) · 1.09 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
/**app.wxss**/
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 200rpx 0;
box-sizing: border-box;
}
/* 统一按钮 */
.btn-search {
opacity: 0.8;
color: white;
background-color: #ff8719;
margin-top: 80rpx;
}
.btn-rest {
opacity: 0.8;
color: #ff8719;
background-color: white;
margin-top: 20rpx;
border-style:solid;
border-width:1px;
border-color:#ff8719;
}
.btn-input {
border-color: #878787;
border-style: solid;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 1px;
border-left-width: 0px;
font-size: 30rpx;
}
/* Table效果 */
.table {
border: 0px solid darkgray;
}
.tr {
display: flex;
width: 100%;
justify-content: center;
height: 3rem;
align-items: center;
}
.td {
width:40%;
justify-content: center;
text-align: center;
}
.bg-w{
background: snow;
}
.bg-g{
background: #E6F3F9;
}
.th {
width: 40%;
justify-content: center;
background: #ff8719;
color: #fff;
display: flex;
height: 3rem;
align-items: center;
}