-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathapp.wxss
115 lines (106 loc) · 2.21 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
/**app.wxss**/
page {
height: 100%;
width: 100%;
bottom: 0;
top: 0;
background: #F2F2F2;
font-family: Helvetica Neue,Helvetica,Roboto,Segoe UI,Arial,sans-serif;
}
.workCard {
height: 200rpx;
padding-left: 10rpx;
font-size: 30rpx;
box-shadow: 5rpx 5rpx 10rpx gray;
border-radius: 10rpx;
margin: 30rpx;
background: #fff;
}
.workCard view {
width: 100%;
height: 50rpx;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.workCard view text:nth-child(1) {
font-weight: 700;
padding: 10rpx;
}
.workCard view text:nth-child(2) {
padding-right: 10rpx;
}
.ellipsisText {
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
}
.comButtonStyle {
width: 50%;
height: 80rpx;
line-height: 80rpx;
text-align: center;
box-shadow: 10rpx 10rpx 10rpx #989898;
text-shadow: 0 0 10rpx #989898;
color: #2F2F2F;
margin-top: 30rpx;
margin-bottom: 100rpx;
border: 1px solid #ABABAB;
background: #fff;
}
.showInformationStyle {
margin: 10rpx;
border: 1px solid #BCBCBC;
border-radius: 10rpx;
background: #fff;
}
.showInformationStyle view {
margin: 10rpx;
display: flex;
flex-direction: row;
font-size: 30rpx;
}
.showInformationStyle view text {
font-weight: 700;
}
/* baseInfo otherInfo style */
.showInformationCardStyle {
font-size: 30rpx;
text-align: center;
width: 100%;
}
.showInformationCardStyle > view {
width: 94%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border: 1px solid gray;
border-radius: 10rpx;
margin: 3%;
}
.showInformationCardStyle > view text{
border-bottom: 1px solid gray;
padding-bottom: 10rpx;
font-weight: 700;
}
.showInformationCardStyle>view view{
height: 100%;
min-height: 40rpx;
flex: 1;
word-break: break-all;
padding: 5rpx;
}
.showInformationCardStyle .nullDataStyle {
width: 200rpx;
height: 200rpx;
line-height: 200rpx;
display: block;
margin-left: 50%;
transform: translateX(-50%);
margin-top: 50%;
font-size: 40rpx;
text-align: center;
border-radius: 50%;
position: fixed;
}