yfx
2026-03-17 257764a3650fc207db1c4396d531ba7ace91481c
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
.wallet-header{
    width: 100%;
    height: 400upx;
    background: linear-gradient(#b3a1cf 12%, #f8f8f8 96%);
    background-size: 100% 100%;
    background-position: 0% 0%;
    color: #ffffff;
}
.wallet-header-edu{
    padding: 70upx 0 50upx;
    text-align: center;
    font-size: 26upx;
}
.wallet-header-price{
    margin-bottom: 20upx;
    color: #ffffff;
}
.wallet-header-price text{
    font-size: 70upx;
    font-weight: 700;
    margin: 0 20upx;
    color: #ffffff;
}
.wallet-header-apply{
    width: 70%;
    margin: 0 15%;
    height: 80upx;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26upx;
    letter-spacing: 3upx;
    border-radius: 50upx;
    color: #ffffff;
    background-image: linear-gradient(to right, #ff6d07, #f98052);
    box-shadow: 1px 1px 1px 1px #f98052;
}
 
.wallet-goods-title{
    position: relative;
    padding-left: 40upx;
    font-size: 30upx;
    font-weight: 700;
    padding: 20upx 50upx;
    margin: 20upx 0;
}
.wallet-goods-title::after{
    content: '';
    position: absolute;
    left: 20upx;
    content: 0;
    width: 10upx;
    height: 55%;
    border-radius: 30upx;
    background-color: #FE8C1C;
}
.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;
    height: 350upx;
}
.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; /* 使用省略号 */
}