jiangping
2024-07-29 d9a89d83c2048a964f16ca179feb2b7f21b9d33a
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
page {
  background-color: #f7f7f7;
  padding-bottom: 220rpx;
}
.date_item .date {
  display: flex;
  font-weight: 500;
  font-size: 32rpx;
  color: #222222;
  height: 108rpx;
  align-items: center;
  padding: 0 22rpx;
}
.date_item .list {
  padding: 30rpx 22rpx 1rpx;
  background-color: #fff;
}
.date_item .line {
  display: flex;
  align-items: center;
  height: 120rpx;
  margin-bottom: 30rpx;
}
.date_item .line .icon {
  width: 40rpx;
}
.date_item .line .content {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.date_item .line .content .name {
  width: 100%;
  font-size: 30rpx;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.date_item .line .content .time {
  font-size: 24rpx;
  color: #999999;
}
.date_item .line .img {
  width: 214rpx;
  height: 120rpx;
  border-radius: 8rpx;
  margin-left: 26rpx;
  margin-right: 20rpx;
  border: 1px solid;
}
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 750rpx;
  background-color: #fff;
  box-shadow: 0rpx -1rpx 0rpx 0rpx #EEEEEE;
}
.footer .btns {
  display: flex;
  align-items: center;
  height: 100rpx;
  padding: 12rpx 40rpx;
}
.footer .btns .all_sel {
  display: flex;
  width: 160rpx;
}
.footer .btns .all_sel .icon {
  width: 40rpx;
  margin-right: 18rpx;
}
.footer .btns .list {
  flex: 1;
  display: flex;
  align-items: center;
}
.footer .btns .list .item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 72rpx;
  width: 152rpx;
  font-weight: 500;
  color: #777777;
  border: 1rpx solid #999999;
  margin-left: 20rpx;
  font-style: 28rpx;
  border-radius: 8rpx;
}
.footer .btns .list .paina {
  color: var(--themeColor);
  border: 1rpx solid var(--themeColor);
}
.footer .btns .list .primary {
  color: #fff !important;
  border: 1rpx solid var(--themeColor);
  background-color: var(--themeColor);
}