express.wxss
2.86 KB
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/* stylelint-disable */
.header {
background-color: white;
height: 100rpx;
display: flex;
flex-direction: row;
}
.header .rigthView{
background-color: white;
height: 100rpx;
width: 18%;
}
.header .rigthView .image{
background-color: gray;
height: 80rpx;
width: 80rpx;
margin-left: 30rpx;
margin-top: 10rpx;
}
.header .leftView{
background-color: white;
height: 80rpx;
width: 82%;
margin-top: 10rpx;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.header .leftView .text{
background-color: white;
height: 40rpx;
font-size: 28rpx;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.header .leftView .textTelView{
background-color: white;
height: 40rpx;
display: flex;
flex-direction: row;
}
.header .leftView .textTelView .textTel{
background-color: white;
height: 40rpx;
font-size: 28rpx;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.header .leftView .textTelView .textTelButton{
width: 61rpx;
height: 28rpx;
justify-content: center;
display: flex;
border: 1rpx solid #000;
border-radius: 6rpx;
margin-left: 30rpx;
margin-top: 2px;
line-height: 28rpx;
}
.header .leftView .textTelView .textTelButton .buttontext{
font-size: 21rpx;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.space {
width: 100%;
height: 20rpx;
background-color: #f0f0f0;
border-bottom-style:solid;
border-bottom-width: 1rpx;
border-bottom-color: #e0e0e0;
border-top-style:solid;
border-top-width: 1rpx;
border-top-color: #e0e0e0;
}
.detailTitleView {
width: 100%;
height: 100rpx;
background-color: white;
display: flex;
align-items: center;
}
.detailTitleView .detailTitle{
font-size: 34rpx;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
margin-left: 27rpx;
}
.line {
width: 100%;
height: 1rpx;
background-color: #f0f0f0;
}
.cell {
background-color: white;
height: 100rpx;
display: flex;
flex-direction: row;
}
.cellLine {
width: 84%;
height: 1rpx;
background-color: #f0f0f0;
margin-left: 16%;
}
.cell .cellLeft{
background-color: white;
height: 100rpx;
width: 16%;
}
.cell .cellLeft .HLine{
background-color: #f0f0f0;
height: 100rpx;
width: 2rpx;
margin-left: 63rpx;
}
.cell .cellLeft .dot{
height: 17rpx;
width: 16rpx;
margin-left: -6rpx;
margin-top: 25rpx;
}
.cell .cellRight{
background-color: white;
height: 100rpx;
width: 84%;
display: flex;
flex-direction: column;
justify-content: center;
}
.cell .cellRight .text1{
background-color: white;
height: 40rpx;
width: 84%;
font-size: 28rpx;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.cell .cellRight .text2{
background-color: white;
height: 40rpx;
width: 84%;
font-size: 24rpx;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}