lx
yfx
2026-04-01 a596066968e625bd39a79f4d15635e50659512cd
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
.search{
    width: 100%;
    height: 90upx;
    background-color: #f5f5f5;
    z-index: 999;
    position: fixed;
    left: 0;
    top: var(--status-bar-height);
}
.searchView{
    width: 90%;
    margin: 15upx 5%;
    display: flex;
    position: relative;
    align-items: center;
}
.back{
    width: 100upx;
    font-size: 28upx;
}
.searchView image{
    width: 36upx;
    height: 36upx;
    position: absolute;
    left: 110upx;
    top: 14upx;
}
.searchView input{
    width: 58%;
    height: 60upx;
    background-color: #ffffff;
    font-size: 26upx;
    border-radius: 50upx;
    padding-left: 70upx;
}
.searchBtn{
    margin-left: 30upx;
    font-size: 26upx;
}
.searchKey{
    margin-top: 120upx;
    padding: 0 30upx;
}
.searchKey .title{
    font-weight: 700;
    font-size: 26upx;
    color: #333333;
    margin-bottom: 20upx;
}
.searchKey .item{
}
.searchKey .item view{
    float: left;
    background-color: #e7e7e7;
    color: #7f6a6a;
    font-size: 24upx;
    margin-bottom: 20upx;
    padding: 8upx 16upx;
    border-radius: 6upx;
    margin-right: 20upx;
}
.goodsData{
    margin-top: 120upx;
}
.goods-icon{
    width: 400upx;
    height: 400upx;
}
.goods-list{
    width: 96%;
    display: flex;
    margin-left: 2%;
    flex-wrap: wrap;
    justify-content: space-between;
}
.goods-item{
    width: 48%;
    border-radius: 18upx;
    background-color: #fbf8f8;
    margin-bottom: 30upx;
}
.goods-icon{
    width: 100%;
    border-radius: 10upx;
    margin-bottom: 20upx;
}
.goods-price{
    margin-top: 16upx;
    display: flex;
    align-items: center;
    color: #F75451;
    font-size: 26upx;
    padding: 0 14upx;
    padding-bottom: 20upx;
}
.goods-price .red{
    margin-left: 10upx;
    font-size: 32upx !important;
    font-weight: 600;
}
.goods-title{
    padding: 0 14upx;
    font-size: 26upx;
    line-height: 42upx;
    font-weight: 700;
    color: #333;
    display: -webkit-box; /* 设置为WebKit内核的弹性盒子模型 */
    -webkit-box-orient: vertical; /* 垂直排列 */
    -webkit-line-clamp: 1; /* 限制显示两行 */
    overflow: hidden; /* 隐藏超出范围的内容 */
    text-overflow: ellipsis; /* 使用省略号 */
}