k94314517
2024-07-25 a75b18a4157ab486e0b51c438ac165ab3a08e3e0
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
/* pages/userinfo/favorite.wxss */
.tabs {
  background-color: #fff;
  padding: 0 40rpx;
  height: 88rpx;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.tabs .item {
  font-size: 30rpx;
  color: #666666;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.tabs .item .border {
  width: 40rpx;
  height: 6rpx;
  background-color: #fff;
  margin-top: 16rpx;
  border-radius: 3rpx;
}
.tabs .active {
  font-weight: 600;
  font-size: 34rpx;
  color: #222222;
}
.tabs .active .border {
  background: #F4CA1C;
}
.list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40rpx;
  width: 100%;
}
.list .item {
  flex-shrink: 0;
  margin-bottom: 60rpx;
  width: 324rpx;
}
.list .item .img_wrap {
  width: 324rpx;
  height: 182rpx;
  border-radius: 8rpx;
  overflow: hidden;
  position: relative;
}
.list .item .img_wrap .img {
  width: 100%;
  height: 100%;
}
.list .item .img_wrap .new {
  width: 72rpx;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.list .item .name {
  margin: 26rpx 0 14rpx;
}
.list .item .info {
  display: flex;
  align-items: center;
  color: #666666;
}
.list .item .info .icon {
  width: 28rpx;
  margin-right: 8rpx;
}
.list .item .info .num {
  margin-right: 16rpx;
}
.list .item .info .primary {
  color: var(--themeColor);
}