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
| .one-t {
| overflow: hidden;
| white-space: nowrap;
| text-overflow: ellipsis;
| transition: all linear 0.2s;
| }
| .more-t {
| overflow: hidden;
| text-overflow: ellipsis;
| word-break: break-all;
| display: -webkit-box;
| -webkit-line-clamp: 2;
| -webkit-box-orient: vertical;
| transition: all linear 0.2s;
| }
| .card {
| width: 80%;
| margin: 10rpx auto;
| max-width: 700rpx;
| max-height: 140rpx;
| box-sizing: border-box;
| overflow: hidden;
| display: flex;
| justify-content: space-between;
| align-items: center;
| padding: 20rpx 0 20rpx 10rpx;
| border-radius: 12rpx;
| }
| .card-img {
| width: 96rpx;
| height: 96rpx;
| border-radius: 12rpx;
| flex: 0 0 96rpx;
| }
| .card-icon {
| width: 30rpx;
| height: 96rpx;
| }
| .card .text-wrap {
| display: flex;
| flex-direction: column;
| justify-content: space-between;
| }
| .card .text-wrap-width {
| width: 72%;
| }
| .card .title {
| font-weight: bold;
| font-size: 34rpx;
| line-height: 48rpx;
| }
| .card .desc {
| font-size: 27rpx;
| line-height: 37rpx;
| }
|
|