lthd.css
2.6 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
body{
background-color: #F4F5F9;
}
*{
margin: 0;
padding: 0;
}
.container{
width: 7.5rem;
line-height: 1;
display: flex;
flex-flow: column;
align-items: center;
}
/*头部*/
.head{
width: 7.5rem;
height: 0.88rem;
background:rgba(201,201,201,1);
position: fixed;
top: 0;
left: 0;
z-index: 999;
display: flex;
align-items: center;
justify-content: space-between;
box-sizing: border-box;
padding: 0 0.2rem;
}
.head_new{
font-size: 0.3rem;
color: rgba(68,68,68,1);
font-weight: bold;
}
.items{
margin-top: 0.88rem;
margin-bottom: 1rem;
}
.item{
width: 7.3rem;
height: 2rem;
display: flex;
background:rgba(255,255,255,1);
box-shadow:0 0.03rem 0.03rem 0 rgba(0, 0, 0, 0.22);
margin-top: 0.1rem;
position: relative;
}
.item:first-child{
margin-top: 0.21rem;
}
.item_left{
width: 1.8rem;
height: 1.75rem;
display: flex;
border-radius: 0.1rem;
margin: 0.13rem 0 0.13rem 0.1rem;
}
.item_left img{
width: 100%;
height: 100%;
border-radius: 0.1rem;
}
.item_mid{
width: 4rem;
height: 1.6rem;
display: flex;
flex-flow: column;
margin: 0.2rem;
}
.item_mid_big{
height: 1rem;
font-size: 0.3rem;
font-weight: bold;
line-height: 0.42rem;
box-sizing: border-box;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
}
.item_mid_small{
height: 0.9rem;
font-size: 0.22rem;
color: #333333;
line-height: 0.38rem;
box-sizing: border-box;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
margin-top: 0.1rem;
}
.item_right{
width: 0.9rem;
height: 2rem;
background: #EA474B;
border-radius: 0.02rem;
position: absolute;
right: 0;
font-size: 0.22rem;
font-family:MicrosoftYaHei;
font-weight:400;
color:rgba(255,255,255,1);
line-height: 0.38rem;
display: flex;
flex-flow: column;
align-items: center;
justify-content: center;
}
.color_gray{
background-color: #e5e5e5;
}
/*底部菜单栏*/
.bottom_menu{
width: 7.5rem;
height: 0.88rem;
display: flex;
align-items: center;
justify-content: space-around;
background-color: #ffffff;
position: fixed;
bottom: 0;
}
.bottom_menu_index{
display: flex;
flex-flow: column;
align-items: center;
color: #666666;
}
.bottom_menu_index_text{
font-size: 0.22rem;
color: #666666;
}