tom
2023-12-06 9e968679ed2e6937aeb7b50a6c450d5d19251f42
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
.div_catalog_item {
    position:relative;
    margin:10px;
    height:136px;
    border-radius:8px;
    background:#FFFFFF;
}
 
.img_catalog_thumbnail {
    display:block;
    position:absolute;
    top:8px;
    left:8px;
    width:100px;
    height:100px;
    border-radius:8px;
}
 
.div_catalog_info {
    position:absolute;
    top:8px;
    left:120px;
    right:8px;
    bottom:48px;
}
 
.div_catalog_title {
    position:relative;
    color:#0090FF;
    font-size:14px;
    line-height:24px;
    text-overflow:ellipsis;      
    white-space:nowrap;       
    overflow: hidden;
}
 
.div_catalog_subtitle {
    position:relative;
    color:#808080;
    font-size:13px;
    line-height:20px;
    text-overflow:ellipsis;      
    white-space:nowrap;       
    overflow: hidden;
}
 
.div_catalog_stats {
    position:absolute;
    bottom:8px;
    left:120px;
    right:8px;
    height:16px;
}
 
.div_catalog_view {
    position:relative;
    margin-left:16px;
    float:right;
    height:16px;
    background:url(../icon/people.png) no-repeat center left;
    background-size:16px 16px;
    padding-left:18px;
    padding-right:4px;
    color:#A0A0A0;
    font-size:12px;
    line-height:16px;
}
    
.div_catalog_comment {
    position:relative;
    margin-left:16px;
    float:right;
    height:16px;
    background:url(../icon/comment.png) no-repeat center left;
    background-size:16px 16px;
    padding-left:18px;
    padding-right:4px;
    color:#A0A0A0;
    font-size:12px;
    line-height:16px;
}
 
.div_catalog_like {
    position:relative;
    margin-left:16px;
    float:right;
    height:16px;
    background:url(../icon/heart.png) no-repeat center left;
    background-size:16px 16px;
    padding-left:18px;
    padding-right:4px;
    color:#A0A0A0;
    font-size:12px;
    line-height:16px;
}
 
.div_catalog_publish {
    position:absolute;
    right:8px;
    bottom:28px;
    height:16px;
    color:#A0A0A0;
    font-size:12px;
    line-height:16px;
    text-align:right;
}
 
.div_catalog_res_on, .div_catalog_res_off {
    position:absolute;
    left:8px;
    bottom:6px;
    width:32px;
    height:14px;
    border-radius:4px;
    font-size:10px;
    line-height:14px;
    text-align:center;
}
 
.div_catalog_res_on {
    border:#0090FF 1px solid;
    background:#0090FF;
    color:#FFFFFF;
}
 
.div_catalog_res_off {
    border:#E0E0E0 1px solid;
    background:#FFFFFF;
    color:#C0C0C0;
}
 
.div_catalog_length {
    position:absolute;
    left:56px;
    bottom:6px;
    width:48px;
    height:14px;
    border-radius:4px;
    border:#E0E0E0 1px solid;
    font-size:10px;
    line-height:14px;
    background:#FFFFFF;
    color:#A0A0A0;
    text-align:center;
}
 
.div_catalog_new {
    position:absolute;
    top:4px;
    right:4px;
    width:8px;
    height:8px;
    border-radius:4px;
    background:#0090FF;
}