main.less
1.7 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
.flexX{
display: flex;
}
.flexJ {
display: flex;
justify-content: space-between;
align-items: center;
}
.flexC {
display: flex;
justify-content: center;
align-items: center;
}
.flexCCol {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.flexD {
display: flex;
align-items: center;
justify-content: flex-end;
}
.flexA {
display: flex;
align-items: center;
}
.flexACol {
display: flex;
align-items: center;
flex-direction: column;
}
.flexW {
display: flex;
align-items: center;
flex-wrap: wrap;
}
.flex1 {
flex: 1;
}
.Alltitle {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2; // 控制多行的行数
-webkit-box-orient: vertical;
}
.zidx {
position: relative;
z-index: 1000;
}
.iosPadding {
padding-bottom: constant(safe-area-inset-bottom);
padding-bottom: env(safe-area-inset-bottom);
}
.bluetext {
color: #05b8d2;
}
.graytext {
color: #666666;
}
.Zindex {
z-index: 9999 !important;
position: relative;
}
.ffftext {
color: #fff;
}
.blueTag {
border: 2rpx solid #05b8d2;
background: #ebfdff;
color: #05b8d2;
border-radius: 8rpx;
}
.grayLine {
margin: 0 auto;
background-color: #f5f9fa;
width: calc(100% + 64rpx);
height: 20rpx;
margin-left: -32rpx;
}
.flexJA{
display: flex;
align-items: center;
justify-content: space-around;
}
.fixed-bottom {
z-index: 999999;
width: 100%;
padding: 16rpx;
box-sizing: border-box;
bottom: 0;
left: 0;
position: fixed;
z-index: 99;
background: rgba(255, 255, 255, 1);
border-top: 1rpx solid #F0F2F5;
.form-btns {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
}