xiaoe_mp_npm 0.5.35 → 0.5.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/miniprogram_dist/GoodsItem/index.less +18 -15
- package/miniprogram_dist/GoodsItem/index.wxml +7 -6
- package/miniprogram_dist/GoodsItem/index.wxss +22 -20
- package/package.json +2 -2
- package/src/GoodsItem/index.less +18 -15
- package/src/GoodsItem/index.wxml +7 -6
- package/src/GoodsItem/index.wxss +1 -277
|
@@ -21,25 +21,25 @@
|
|
|
21
21
|
flex-direction: row;
|
|
22
22
|
.left {
|
|
23
23
|
position: relative;
|
|
24
|
+
width: 32vmin;
|
|
24
25
|
height: 24vmin;
|
|
25
|
-
.goods-img {
|
|
26
|
-
width: 32vmin;
|
|
27
|
-
border-radius: 2.13vmin;
|
|
28
|
-
height: 24vmin;
|
|
29
|
-
background: rgba(0,0,0,0.04);
|
|
30
|
-
}
|
|
31
26
|
.index {
|
|
32
27
|
border-radius: 2.13vmin 0 2.13vmin 0;
|
|
33
28
|
position: absolute;
|
|
29
|
+
top: 0;
|
|
34
30
|
left: 0;
|
|
35
|
-
display: inline-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
31
|
+
display: inline-flex;
|
|
32
|
+
align-items: center;
|
|
33
|
+
justify-content: center;
|
|
34
|
+
min-width: 4.8vmin;
|
|
35
|
+
height: 3.73vmin;
|
|
36
|
+
padding: 0.13vmin 0.8vmin;
|
|
37
|
+
font-size: 2.66vmin;
|
|
38
|
+
background: rgba(0,0,0,0.6);
|
|
42
39
|
color: #FFFFFF;
|
|
40
|
+
}
|
|
41
|
+
.ios-index {
|
|
42
|
+
background: rgba(0,0,0,0.25);
|
|
43
43
|
backdrop-filter: blur(3.2vmin);
|
|
44
44
|
}
|
|
45
45
|
.goods-type {
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
right: calc(100% - 30.67vmin);
|
|
48
48
|
bottom: 1.07vmin;
|
|
49
49
|
padding: 1.07vmin 1.33vmin;
|
|
50
|
-
background: rgba(0,0,0,0.
|
|
50
|
+
background: rgba(0,0,0,0.4);
|
|
51
51
|
border-radius: 1.07vmin;
|
|
52
52
|
color: #fff;
|
|
53
53
|
font-size: 2.67vmin;
|
|
@@ -56,9 +56,12 @@
|
|
|
56
56
|
justify-content: center;
|
|
57
57
|
align-items: center;
|
|
58
58
|
height: 2.67vmin;
|
|
59
|
-
backdrop-filter: blur(3.2vmin);
|
|
60
59
|
font-weight: 500;
|
|
61
60
|
}
|
|
61
|
+
.ios-goods-type {
|
|
62
|
+
background: rgba(0,0,0,0.25) !important;
|
|
63
|
+
backdrop-filter: blur(3.2vmin);
|
|
64
|
+
}
|
|
62
65
|
}
|
|
63
66
|
.right {
|
|
64
67
|
flex: 1;
|
|
@@ -12,12 +12,13 @@
|
|
|
12
12
|
<view class="goods-item" bindtap="cardToDetails" style="{{style}}">
|
|
13
13
|
<view class="main-card">
|
|
14
14
|
<view class="left">
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
<text class="
|
|
15
|
+
<!-- 该封面组件是鹅直播上的全局组件 -->
|
|
16
|
+
<imagePoster
|
|
17
|
+
borderRadius="{{'2.13vmin'}}"
|
|
18
|
+
src="{{filterSrc}}"
|
|
19
|
+
/>
|
|
20
|
+
<text class="index {{isIOS && 'ios-index'}}" style="{{!isStudent ? 'border-radius: 1.07vmin 0 1.07vmin 0;' : ''}}">{{index + 1}}</text>
|
|
21
|
+
<text class="goods-type {{isIOS && 'ios-goods-type'}}">{{goodsItem.resource_type_name}}</text>
|
|
21
22
|
<image wx:if="{{ isShowExamplaining }}" class="goods-explaining" src="../../common/assets/images/liveGoodsList/explaining.png" />
|
|
22
23
|
</view>
|
|
23
24
|
<view class="right">
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/* 主题色 */
|
|
2
1
|
.theme-customize-bg {
|
|
3
2
|
background: linear-gradient(180.25deg, #fe6500 0%, #ff4102 100%) !important;
|
|
4
3
|
}
|
|
@@ -36,26 +35,26 @@
|
|
|
36
35
|
}
|
|
37
36
|
.goods-item .main-card .left {
|
|
38
37
|
position: relative;
|
|
39
|
-
height: 24vmin;
|
|
40
|
-
}
|
|
41
|
-
.goods-item .main-card .left .goods-img {
|
|
42
38
|
width: 32vmin;
|
|
43
|
-
border-radius: 2.13vmin;
|
|
44
39
|
height: 24vmin;
|
|
45
|
-
background: rgba(0, 0, 0, 0.04);
|
|
46
40
|
}
|
|
47
41
|
.goods-item .main-card .left .index {
|
|
48
42
|
border-radius: 2.13vmin 0 2.13vmin 0;
|
|
49
43
|
position: absolute;
|
|
44
|
+
top: 0;
|
|
50
45
|
left: 0;
|
|
51
|
-
display: inline-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
46
|
+
display: inline-flex;
|
|
47
|
+
align-items: center;
|
|
48
|
+
justify-content: center;
|
|
49
|
+
min-width: 4.8vmin;
|
|
50
|
+
height: 3.73vmin;
|
|
51
|
+
padding: 0.13vmin 0.8vmin;
|
|
52
|
+
font-size: 2.66vmin;
|
|
53
|
+
background: rgba(0, 0, 0, 0.6);
|
|
58
54
|
color: #FFFFFF;
|
|
55
|
+
}
|
|
56
|
+
.goods-item .main-card .left .ios-index {
|
|
57
|
+
background: rgba(0, 0, 0, 0.25);
|
|
59
58
|
backdrop-filter: blur(3.2vmin);
|
|
60
59
|
}
|
|
61
60
|
.goods-item .main-card .left .goods-type {
|
|
@@ -63,7 +62,7 @@
|
|
|
63
62
|
right: calc(100% - 30.67vmin);
|
|
64
63
|
bottom: 1.07vmin;
|
|
65
64
|
padding: 1.07vmin 1.33vmin;
|
|
66
|
-
background: rgba(0, 0, 0, 0.
|
|
65
|
+
background: rgba(0, 0, 0, 0.4);
|
|
67
66
|
border-radius: 1.07vmin;
|
|
68
67
|
color: #fff;
|
|
69
68
|
font-size: 2.67vmin;
|
|
@@ -72,9 +71,12 @@
|
|
|
72
71
|
justify-content: center;
|
|
73
72
|
align-items: center;
|
|
74
73
|
height: 2.67vmin;
|
|
75
|
-
backdrop-filter: blur(3.2vmin);
|
|
76
74
|
font-weight: 500;
|
|
77
75
|
}
|
|
76
|
+
.goods-item .main-card .left .ios-goods-type {
|
|
77
|
+
background: rgba(0, 0, 0, 0.25) !important;
|
|
78
|
+
backdrop-filter: blur(3.2vmin);
|
|
79
|
+
}
|
|
78
80
|
.goods-item .main-card .right {
|
|
79
81
|
flex: 1;
|
|
80
82
|
display: flex;
|
|
@@ -92,7 +94,7 @@
|
|
|
92
94
|
.goods-item .main-card .right .line-one .activity-type {
|
|
93
95
|
background-color: #FFF3EB;
|
|
94
96
|
color: #FF781F;
|
|
95
|
-
padding:
|
|
97
|
+
padding: 0 1.07vmin;
|
|
96
98
|
font-size: 2.67vmin;
|
|
97
99
|
height: 4.27vmin;
|
|
98
100
|
line-height: 4.8vmin;
|
|
@@ -105,7 +107,7 @@
|
|
|
105
107
|
font-weight: 500;
|
|
106
108
|
}
|
|
107
109
|
.goods-item .main-card .right .line-one .super-activity-type {
|
|
108
|
-
background: linear-gradient(180.25deg, #
|
|
110
|
+
background: linear-gradient(180.25deg, #333 0%, #525252 68%, #333 100%);
|
|
109
111
|
color: #ff781f;
|
|
110
112
|
padding: 0.53vmin 1.07vmin;
|
|
111
113
|
font-size: 2.67vmin;
|
|
@@ -254,12 +256,12 @@
|
|
|
254
256
|
font-weight: 500;
|
|
255
257
|
}
|
|
256
258
|
.goods-item .main-card .right .line-three .buy-btn-preferential .preferential-flow {
|
|
257
|
-
color: #
|
|
259
|
+
color: #fff;
|
|
258
260
|
font-size: 2.67vmin;
|
|
259
261
|
}
|
|
260
262
|
.goods-item .main-card .right .line-three .buy-btn-preferential .preferential-show {
|
|
261
263
|
font-size: 3.73vmin;
|
|
262
|
-
color: #
|
|
264
|
+
color: #fff;
|
|
263
265
|
}
|
|
264
266
|
.teacher-switch {
|
|
265
267
|
height: 4.27vmin;
|
|
@@ -269,7 +271,7 @@
|
|
|
269
271
|
}
|
|
270
272
|
.teacher-switch .switch-txt {
|
|
271
273
|
opacity: 1;
|
|
272
|
-
color: #
|
|
274
|
+
color: #333;
|
|
273
275
|
font-size: 3.2vmin;
|
|
274
276
|
font-weight: 400;
|
|
275
277
|
font-family: "PingFang SC";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xiaoe_mp_npm",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.36",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "miniprogram_dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -75,4 +75,4 @@
|
|
|
75
75
|
"miniprogram-computed": "4.2.1",
|
|
76
76
|
"mp-plugins-info-collection": "1.1.2"
|
|
77
77
|
}
|
|
78
|
-
}
|
|
78
|
+
}
|
package/src/GoodsItem/index.less
CHANGED
|
@@ -21,25 +21,25 @@
|
|
|
21
21
|
flex-direction: row;
|
|
22
22
|
.left {
|
|
23
23
|
position: relative;
|
|
24
|
+
width: 32vmin;
|
|
24
25
|
height: 24vmin;
|
|
25
|
-
.goods-img {
|
|
26
|
-
width: 32vmin;
|
|
27
|
-
border-radius: 2.13vmin;
|
|
28
|
-
height: 24vmin;
|
|
29
|
-
background: rgba(0,0,0,0.04);
|
|
30
|
-
}
|
|
31
26
|
.index {
|
|
32
27
|
border-radius: 2.13vmin 0 2.13vmin 0;
|
|
33
28
|
position: absolute;
|
|
29
|
+
top: 0;
|
|
34
30
|
left: 0;
|
|
35
|
-
display: inline-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
31
|
+
display: inline-flex;
|
|
32
|
+
align-items: center;
|
|
33
|
+
justify-content: center;
|
|
34
|
+
min-width: 4.8vmin;
|
|
35
|
+
height: 3.73vmin;
|
|
36
|
+
padding: 0.13vmin 0.8vmin;
|
|
37
|
+
font-size: 2.66vmin;
|
|
38
|
+
background: rgba(0,0,0,0.6);
|
|
42
39
|
color: #FFFFFF;
|
|
40
|
+
}
|
|
41
|
+
.ios-index {
|
|
42
|
+
background: rgba(0,0,0,0.25);
|
|
43
43
|
backdrop-filter: blur(3.2vmin);
|
|
44
44
|
}
|
|
45
45
|
.goods-type {
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
right: calc(100% - 30.67vmin);
|
|
48
48
|
bottom: 1.07vmin;
|
|
49
49
|
padding: 1.07vmin 1.33vmin;
|
|
50
|
-
background: rgba(0,0,0,0.
|
|
50
|
+
background: rgba(0,0,0,0.4);
|
|
51
51
|
border-radius: 1.07vmin;
|
|
52
52
|
color: #fff;
|
|
53
53
|
font-size: 2.67vmin;
|
|
@@ -56,9 +56,12 @@
|
|
|
56
56
|
justify-content: center;
|
|
57
57
|
align-items: center;
|
|
58
58
|
height: 2.67vmin;
|
|
59
|
-
backdrop-filter: blur(3.2vmin);
|
|
60
59
|
font-weight: 500;
|
|
61
60
|
}
|
|
61
|
+
.ios-goods-type {
|
|
62
|
+
background: rgba(0,0,0,0.25) !important;
|
|
63
|
+
backdrop-filter: blur(3.2vmin);
|
|
64
|
+
}
|
|
62
65
|
}
|
|
63
66
|
.right {
|
|
64
67
|
flex: 1;
|
package/src/GoodsItem/index.wxml
CHANGED
|
@@ -12,12 +12,13 @@
|
|
|
12
12
|
<view class="goods-item" bindtap="cardToDetails" style="{{style}}">
|
|
13
13
|
<view class="main-card">
|
|
14
14
|
<view class="left">
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
<text class="
|
|
15
|
+
<!-- 该封面组件是鹅直播上的全局组件 -->
|
|
16
|
+
<imagePoster
|
|
17
|
+
borderRadius="{{'2.13vmin'}}"
|
|
18
|
+
src="{{filterSrc}}"
|
|
19
|
+
/>
|
|
20
|
+
<text class="index {{isIOS && 'ios-index'}}" style="{{!isStudent ? 'border-radius: 1.07vmin 0 1.07vmin 0;' : ''}}">{{index + 1}}</text>
|
|
21
|
+
<text class="goods-type {{isIOS && 'ios-goods-type'}}">{{goodsItem.resource_type_name}}</text>
|
|
21
22
|
<image wx:if="{{ isShowExamplaining }}" class="goods-explaining" src="../../common/assets/images/liveGoodsList/explaining.png" />
|
|
22
23
|
</view>
|
|
23
24
|
<view class="right">
|
package/src/GoodsItem/index.wxss
CHANGED
|
@@ -1,277 +1 @@
|
|
|
1
|
-
|
|
2
|
-
.theme-customize-bg {
|
|
3
|
-
background: linear-gradient(180.25deg, #fe6500 0%, #ff4102 100%) !important;
|
|
4
|
-
}
|
|
5
|
-
.theme-customize-font {
|
|
6
|
-
color: #1472FF !important;
|
|
7
|
-
}
|
|
8
|
-
.theme-customize-light-new {
|
|
9
|
-
background-color: #9db8f1 !important;
|
|
10
|
-
}
|
|
11
|
-
.theme-customize-bg-light {
|
|
12
|
-
background-color: #fff3eb !important;
|
|
13
|
-
}
|
|
14
|
-
.theme-customize-border {
|
|
15
|
-
border-color: #FF781F !important;
|
|
16
|
-
}
|
|
17
|
-
.goods-explaining {
|
|
18
|
-
position: absolute;
|
|
19
|
-
width: 32vmin;
|
|
20
|
-
height: 4.8vmin;
|
|
21
|
-
bottom: 0vmin;
|
|
22
|
-
left: 0vmin;
|
|
23
|
-
}
|
|
24
|
-
.goods-item {
|
|
25
|
-
display: flex;
|
|
26
|
-
min-height: 24vmin;
|
|
27
|
-
background: #ffffff;
|
|
28
|
-
margin: 0 4.27vmin 0 4.27vmin;
|
|
29
|
-
border-radius: 2.13vmin;
|
|
30
|
-
padding: 2.13vmin;
|
|
31
|
-
flex-direction: column;
|
|
32
|
-
}
|
|
33
|
-
.goods-item .main-card {
|
|
34
|
-
display: flex;
|
|
35
|
-
flex-direction: row;
|
|
36
|
-
}
|
|
37
|
-
.goods-item .main-card .left {
|
|
38
|
-
position: relative;
|
|
39
|
-
height: 24vmin;
|
|
40
|
-
}
|
|
41
|
-
.goods-item .main-card .left .goods-img {
|
|
42
|
-
width: 32vmin;
|
|
43
|
-
border-radius: 2.13vmin;
|
|
44
|
-
height: 24vmin;
|
|
45
|
-
background: rgba(0, 0, 0, 0.04);
|
|
46
|
-
}
|
|
47
|
-
.goods-item .main-card .left .index {
|
|
48
|
-
border-radius: 2.13vmin 0 2.13vmin 0;
|
|
49
|
-
position: absolute;
|
|
50
|
-
left: 0;
|
|
51
|
-
display: inline-block;
|
|
52
|
-
text-align: center;
|
|
53
|
-
width: 6.4vmin;
|
|
54
|
-
height: 5.33vmin;
|
|
55
|
-
line-height: 5.33vmin;
|
|
56
|
-
font-size: 3.2vmin;
|
|
57
|
-
background: rgba(0, 0, 0, 0.25);
|
|
58
|
-
color: #FFFFFF;
|
|
59
|
-
backdrop-filter: blur(3.2vmin);
|
|
60
|
-
}
|
|
61
|
-
.goods-item .main-card .left .goods-type {
|
|
62
|
-
position: absolute;
|
|
63
|
-
right: calc(100% - 30.67vmin);
|
|
64
|
-
bottom: 1.07vmin;
|
|
65
|
-
padding: 1.07vmin 1.33vmin;
|
|
66
|
-
background: rgba(0, 0, 0, 0.25);
|
|
67
|
-
border-radius: 1.07vmin;
|
|
68
|
-
color: #fff;
|
|
69
|
-
font-size: 2.67vmin;
|
|
70
|
-
width: fit-content;
|
|
71
|
-
display: flex;
|
|
72
|
-
justify-content: center;
|
|
73
|
-
align-items: center;
|
|
74
|
-
height: 2.67vmin;
|
|
75
|
-
backdrop-filter: blur(3.2vmin);
|
|
76
|
-
font-weight: 500;
|
|
77
|
-
}
|
|
78
|
-
.goods-item .main-card .right {
|
|
79
|
-
flex: 1;
|
|
80
|
-
display: flex;
|
|
81
|
-
flex-direction: column;
|
|
82
|
-
justify-content: space-between;
|
|
83
|
-
margin-left: 2.13vmin;
|
|
84
|
-
height: 24vmin;
|
|
85
|
-
width: calc(100% - 34.13vmin);
|
|
86
|
-
}
|
|
87
|
-
.goods-item .main-card .right .line-one {
|
|
88
|
-
display: flex;
|
|
89
|
-
align-items: center;
|
|
90
|
-
height: 4.8vmin;
|
|
91
|
-
}
|
|
92
|
-
.goods-item .main-card .right .line-one .activity-type {
|
|
93
|
-
background-color: #FFF3EB;
|
|
94
|
-
color: #FF781F;
|
|
95
|
-
padding: 0vmin 1.07vmin;
|
|
96
|
-
font-size: 2.67vmin;
|
|
97
|
-
height: 4.27vmin;
|
|
98
|
-
line-height: 4.8vmin;
|
|
99
|
-
flex-shrink: 0;
|
|
100
|
-
margin-right: 1.07vmin;
|
|
101
|
-
border-radius: 0.53vmin;
|
|
102
|
-
display: flex;
|
|
103
|
-
width: max-content;
|
|
104
|
-
align-items: center;
|
|
105
|
-
font-weight: 500;
|
|
106
|
-
}
|
|
107
|
-
.goods-item .main-card .right .line-one .super-activity-type {
|
|
108
|
-
background: linear-gradient(180.25deg, #333333 0%, #525252 68%, #333333 100%);
|
|
109
|
-
color: #ff781f;
|
|
110
|
-
padding: 0.53vmin 1.07vmin;
|
|
111
|
-
font-size: 2.67vmin;
|
|
112
|
-
height: 4.27vmin;
|
|
113
|
-
width: max-content;
|
|
114
|
-
line-height: 4.8vmin;
|
|
115
|
-
flex-shrink: 0;
|
|
116
|
-
margin-right: 1.07vmin;
|
|
117
|
-
border-radius: 0.53vmin;
|
|
118
|
-
display: flex;
|
|
119
|
-
font-weight: 500;
|
|
120
|
-
align-items: center;
|
|
121
|
-
}
|
|
122
|
-
.goods-item .main-card .right .line-one .super-activity-type .super-activity-txt {
|
|
123
|
-
background: linear-gradient(to right, #FFE4AD, #FFC266);
|
|
124
|
-
-webkit-background-clip: text;
|
|
125
|
-
color: transparent;
|
|
126
|
-
}
|
|
127
|
-
.goods-item .main-card .right .line-one .goods-title {
|
|
128
|
-
font-size: 3.73vmin;
|
|
129
|
-
color: #333333;
|
|
130
|
-
word-break: break-all;
|
|
131
|
-
overflow: hidden;
|
|
132
|
-
text-overflow: ellipsis;
|
|
133
|
-
white-space: nowrap;
|
|
134
|
-
display: inline-block;
|
|
135
|
-
vertical-align: middle;
|
|
136
|
-
line-height: 4.8vmin;
|
|
137
|
-
font-weight: 500;
|
|
138
|
-
}
|
|
139
|
-
.goods-item .main-card .right .sec-kill {
|
|
140
|
-
color: #FF781F;
|
|
141
|
-
font-size: 2.67vmin;
|
|
142
|
-
line-height: 4.27vmin;
|
|
143
|
-
margin: 1.07vmin 0;
|
|
144
|
-
}
|
|
145
|
-
.goods-item .main-card .right .left-stock {
|
|
146
|
-
color: #999999;
|
|
147
|
-
font-size: 2.67vmin;
|
|
148
|
-
height: 3.2vmin;
|
|
149
|
-
display: flex;
|
|
150
|
-
align-items: center;
|
|
151
|
-
}
|
|
152
|
-
.goods-item .main-card .right .left-stock .split {
|
|
153
|
-
display: inline-block;
|
|
154
|
-
border-left: 0.13vmin solid #999999;
|
|
155
|
-
width: 0.27vmin;
|
|
156
|
-
height: 3.2vmin;
|
|
157
|
-
margin: 0 1.6vmin;
|
|
158
|
-
}
|
|
159
|
-
.goods-item .main-card .right .line-three {
|
|
160
|
-
display: flex;
|
|
161
|
-
justify-content: space-between;
|
|
162
|
-
align-items: flex-end;
|
|
163
|
-
}
|
|
164
|
-
.goods-item .main-card .right .line-three .price {
|
|
165
|
-
position: relative;
|
|
166
|
-
min-height: 5.33vmin;
|
|
167
|
-
font-weight: 500;
|
|
168
|
-
}
|
|
169
|
-
.goods-item .main-card .right .line-three .price .price-flow {
|
|
170
|
-
color: #FF5429;
|
|
171
|
-
font-size: 3.2vmin;
|
|
172
|
-
}
|
|
173
|
-
.goods-item .main-card .right .line-three .price .price-show {
|
|
174
|
-
color: #FF5429;
|
|
175
|
-
font-size: 4.8vmin;
|
|
176
|
-
}
|
|
177
|
-
.goods-item .main-card .right .line-three .price .price-line {
|
|
178
|
-
font-size: 2.67vmin;
|
|
179
|
-
text-decoration: line-through;
|
|
180
|
-
color: #999999;
|
|
181
|
-
margin-left: 1.07vmin;
|
|
182
|
-
}
|
|
183
|
-
.goods-item .main-card .right .line-three .buy-btn {
|
|
184
|
-
font-size: 3.2vmin;
|
|
185
|
-
border-radius: 5.33vmin;
|
|
186
|
-
width: 21.33vmin;
|
|
187
|
-
height: 7.47vmin;
|
|
188
|
-
display: flex;
|
|
189
|
-
justify-content: center;
|
|
190
|
-
align-items: center;
|
|
191
|
-
color: white;
|
|
192
|
-
line-height: 7.47vmin;
|
|
193
|
-
font-weight: 500;
|
|
194
|
-
background: linear-gradient(270deg, #fe6500 0%, #ff4102 100%);
|
|
195
|
-
}
|
|
196
|
-
.goods-item .main-card .right .line-three .buy-btn-teacher {
|
|
197
|
-
font-size: 3.2vmin;
|
|
198
|
-
border-radius: 5.33vmin;
|
|
199
|
-
width: 18.13vmin;
|
|
200
|
-
height: 6.4vmin;
|
|
201
|
-
display: flex;
|
|
202
|
-
justify-content: center;
|
|
203
|
-
align-items: center;
|
|
204
|
-
color: white;
|
|
205
|
-
line-height: 7.47vmin;
|
|
206
|
-
font-weight: 500;
|
|
207
|
-
background: linear-gradient(270deg, #fe6500 0%, #ff4102 100%);
|
|
208
|
-
}
|
|
209
|
-
.goods-item .main-card .right .line-three .no-stock-btn {
|
|
210
|
-
font-size: 3.2vmin;
|
|
211
|
-
border-radius: 5.33vmin;
|
|
212
|
-
width: 21.33vmin;
|
|
213
|
-
height: 7.47vmin;
|
|
214
|
-
display: flex;
|
|
215
|
-
justify-content: center;
|
|
216
|
-
align-items: center;
|
|
217
|
-
color: white;
|
|
218
|
-
line-height: 7.47vmin;
|
|
219
|
-
font-weight: 500;
|
|
220
|
-
opacity: 40%;
|
|
221
|
-
background: linear-gradient(270deg, #fe6500 0%, #ff4102 100%);
|
|
222
|
-
}
|
|
223
|
-
.goods-item .main-card .right .line-three .see-btn {
|
|
224
|
-
font-size: 3.2vmin;
|
|
225
|
-
border-radius: 5.33vmin;
|
|
226
|
-
width: 21.33vmin;
|
|
227
|
-
height: 7.47vmin;
|
|
228
|
-
display: flex;
|
|
229
|
-
justify-content: center;
|
|
230
|
-
align-items: center;
|
|
231
|
-
color: white;
|
|
232
|
-
line-height: 7.47vmin;
|
|
233
|
-
font-weight: 500;
|
|
234
|
-
margin-left: inherit;
|
|
235
|
-
margin-right: inherit;
|
|
236
|
-
background: linear-gradient(270deg, #fe6500 0%, #ff4102 100%);
|
|
237
|
-
}
|
|
238
|
-
.goods-item .main-card .right .line-three .buy-btn-preferential {
|
|
239
|
-
font-size: 3.2vmin;
|
|
240
|
-
border-radius: 5.33vmin;
|
|
241
|
-
padding: 0 1.33vmin;
|
|
242
|
-
min-width: 21.33vmin;
|
|
243
|
-
height: 9.07vmin;
|
|
244
|
-
display: flex;
|
|
245
|
-
justify-content: center;
|
|
246
|
-
align-items: center;
|
|
247
|
-
color: white;
|
|
248
|
-
flex-flow: column;
|
|
249
|
-
line-height: 4.27vmin;
|
|
250
|
-
background: linear-gradient(270deg, #fe6500 0%, #ff4102 100%);
|
|
251
|
-
}
|
|
252
|
-
.goods-item .main-card .right .line-three .buy-btn-preferential .go-buy {
|
|
253
|
-
font-size: 3.2vmin;
|
|
254
|
-
font-weight: 500;
|
|
255
|
-
}
|
|
256
|
-
.goods-item .main-card .right .line-three .buy-btn-preferential .preferential-flow {
|
|
257
|
-
color: #ffffff;
|
|
258
|
-
font-size: 2.67vmin;
|
|
259
|
-
}
|
|
260
|
-
.goods-item .main-card .right .line-three .buy-btn-preferential .preferential-show {
|
|
261
|
-
font-size: 3.73vmin;
|
|
262
|
-
color: #ffffff;
|
|
263
|
-
}
|
|
264
|
-
.teacher-switch {
|
|
265
|
-
height: 4.27vmin;
|
|
266
|
-
background: #fff;
|
|
267
|
-
display: flex;
|
|
268
|
-
margin-top: 2.13vmin;
|
|
269
|
-
}
|
|
270
|
-
.teacher-switch .switch-txt {
|
|
271
|
-
opacity: 1;
|
|
272
|
-
color: #333333;
|
|
273
|
-
font-size: 3.2vmin;
|
|
274
|
-
font-weight: 400;
|
|
275
|
-
font-family: "PingFang SC";
|
|
276
|
-
margin-left: 2.13vmin;
|
|
277
|
-
}
|
|
1
|
+
.theme-customize-bg{background:linear-gradient(180.25deg, #fe6500 0%, #ff4102 100%) !important}.theme-customize-font{color:#1472FF !important}.theme-customize-light-new{background-color:#9db8f1 !important}.theme-customize-bg-light{background-color:#fff3eb !important}.theme-customize-border{border-color:#FF781F !important}.goods-explaining{position:absolute;width:32vmin;height:4.8vmin;bottom:0vmin;left:0vmin}.goods-item{display:flex;min-height:24vmin;background:#ffffff;margin:0 4.27vmin 0 4.27vmin;border-radius:2.13vmin;padding:2.13vmin;flex-direction:column}.goods-item .main-card{display:flex;flex-direction:row}.goods-item .main-card .left{position:relative;width:32vmin;height:24vmin}.goods-item .main-card .left .index{border-radius:2.13vmin 0 2.13vmin 0;position:absolute;top:0;left:0;display:inline-flex;align-items:center;justify-content:center;min-width:4.8vmin;height:3.73vmin;padding:.13vmin .8vmin;font-size:2.66vmin;background:rgba(0,0,0,0.6);color:#FFFFFF}.goods-item .main-card .left .ios-index{background:rgba(0,0,0,0.25);backdrop-filter:blur(3.2vmin)}.goods-item .main-card .left .goods-type{position:absolute;right:calc(100% - 30.67vmin);bottom:1.07vmin;padding:1.07vmin 1.33vmin;background:rgba(0,0,0,0.4);border-radius:1.07vmin;color:#fff;font-size:2.67vmin;width:fit-content;display:flex;justify-content:center;align-items:center;height:2.67vmin;font-weight:500}.goods-item .main-card .left .ios-goods-type{background:rgba(0,0,0,0.25) !important;backdrop-filter:blur(3.2vmin)}.goods-item .main-card .right{flex:1;display:flex;flex-direction:column;justify-content:space-between;margin-left:2.13vmin;height:24vmin;width:calc(100% - 34.13vmin)}.goods-item .main-card .right .line-one{display:flex;align-items:center;height:4.8vmin}.goods-item .main-card .right .line-one .activity-type{background-color:#FFF3EB;color:#FF781F;padding:0 1.07vmin;font-size:2.67vmin;height:4.27vmin;line-height:4.8vmin;flex-shrink:0;margin-right:1.07vmin;border-radius:.53vmin;display:flex;width:max-content;align-items:center;font-weight:500}.goods-item .main-card .right .line-one .super-activity-type{background:linear-gradient(180.25deg, #333 0%, #525252 68%, #333 100%);color:#ff781f;padding:.53vmin 1.07vmin;font-size:2.67vmin;height:4.27vmin;width:max-content;line-height:4.8vmin;flex-shrink:0;margin-right:1.07vmin;border-radius:.53vmin;display:flex;font-weight:500;align-items:center}.goods-item .main-card .right .line-one .super-activity-type .super-activity-txt{background:linear-gradient(to right, #FFE4AD, #FFC266);-webkit-background-clip:text;color:transparent}.goods-item .main-card .right .line-one .goods-title{font-size:3.73vmin;color:#333333;word-break:break-all;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:inline-block;vertical-align:middle;line-height:4.8vmin;font-weight:500}.goods-item .main-card .right .sec-kill{color:#FF781F;font-size:2.67vmin;line-height:4.27vmin;margin:1.07vmin 0}.goods-item .main-card .right .left-stock{color:#999999;font-size:2.67vmin;height:3.2vmin;display:flex;align-items:center}.goods-item .main-card .right .left-stock .split{display:inline-block;border-left:.13vmin solid #999999;width:.27vmin;height:3.2vmin;margin:0 1.6vmin}.goods-item .main-card .right .line-three{display:flex;justify-content:space-between;align-items:flex-end}.goods-item .main-card .right .line-three .price{position:relative;min-height:5.33vmin;font-weight:500}.goods-item .main-card .right .line-three .price .price-flow{color:#FF5429;font-size:3.2vmin}.goods-item .main-card .right .line-three .price .price-show{color:#FF5429;font-size:4.8vmin}.goods-item .main-card .right .line-three .price .price-line{font-size:2.67vmin;text-decoration:line-through;color:#999999;margin-left:1.07vmin}.goods-item .main-card .right .line-three .buy-btn{font-size:3.2vmin;border-radius:5.33vmin;width:21.33vmin;height:7.47vmin;display:flex;justify-content:center;align-items:center;color:white;line-height:7.47vmin;font-weight:500;background:linear-gradient(270deg, #fe6500 0%, #ff4102 100%)}.goods-item .main-card .right .line-three .buy-btn-teacher{font-size:3.2vmin;border-radius:5.33vmin;width:18.13vmin;height:6.4vmin;display:flex;justify-content:center;align-items:center;color:white;line-height:7.47vmin;font-weight:500;background:linear-gradient(270deg, #fe6500 0%, #ff4102 100%)}.goods-item .main-card .right .line-three .no-stock-btn{font-size:3.2vmin;border-radius:5.33vmin;width:21.33vmin;height:7.47vmin;display:flex;justify-content:center;align-items:center;color:white;line-height:7.47vmin;font-weight:500;opacity:40%;background:linear-gradient(270deg, #fe6500 0%, #ff4102 100%)}.goods-item .main-card .right .line-three .see-btn{font-size:3.2vmin;border-radius:5.33vmin;width:21.33vmin;height:7.47vmin;display:flex;justify-content:center;align-items:center;color:white;line-height:7.47vmin;font-weight:500;margin-left:inherit;margin-right:inherit;background:linear-gradient(270deg, #fe6500 0%, #ff4102 100%)}.goods-item .main-card .right .line-three .buy-btn-preferential{font-size:3.2vmin;border-radius:5.33vmin;padding:0 1.33vmin;min-width:21.33vmin;height:9.07vmin;display:flex;justify-content:center;align-items:center;color:white;flex-flow:column;line-height:4.27vmin;background:linear-gradient(270deg, #fe6500 0%, #ff4102 100%)}.goods-item .main-card .right .line-three .buy-btn-preferential .go-buy{font-size:3.2vmin;font-weight:500}.goods-item .main-card .right .line-three .buy-btn-preferential .preferential-flow{color:#fff;font-size:2.67vmin}.goods-item .main-card .right .line-three .buy-btn-preferential .preferential-show{font-size:3.73vmin;color:#fff}.teacher-switch{height:4.27vmin;background:#fff;display:flex;margin-top:2.13vmin}.teacher-switch .switch-txt{opacity:1;color:#333;font-size:3.2vmin;font-weight:400;font-family:"PingFang SC";margin-left:2.13vmin}
|