@conecli/cone-render 0.10.1-beta.6 → 0.10.1-beta.8

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.
Files changed (65) hide show
  1. package/dist/api/index.ts +1 -1
  2. package/dist/common/const.ts +1 -1
  3. package/dist/common/index.h5.ts +1 -1
  4. package/dist/common/index.jd.ts +1 -1
  5. package/dist/common/index.ts +1 -1
  6. package/dist/common/index.weapp.ts +1 -1
  7. package/dist/common/jssdk.ts +1 -1
  8. package/dist/common/token/index.h5.ts +1 -1
  9. package/dist/common/token/token.jd.ts +1 -1
  10. package/dist/common/wxappApi.ts +1 -1
  11. package/dist/components/base/CommonFloorHead/index.module.scss +126 -111
  12. package/dist/components/base/CommonFloorHead/index.tsx +1 -1
  13. package/dist/components/base/CustomScrollView/index-back.tsx +1 -0
  14. package/dist/components/base/CustomScrollView/index.tsx +1 -1
  15. package/dist/components/base/Dialog/index.module.scss +11 -0
  16. package/dist/components/base/ExposureSmart/index.h5.module.scss +12 -2
  17. package/dist/components/base/ExposureSmart/index.h5.tsx +1 -1
  18. package/dist/components/base/ExposureSmart/reporter.tsx +1 -1
  19. package/dist/components/base/InViewRender/index.tsx +1 -1
  20. package/dist/components/base/ItemViewExposureSmart/index.module.scss +2 -2
  21. package/dist/components/base/ItemViewExposureSmart/index.tsx +1 -1
  22. package/dist/components/debug/DebugLayout/index.module.scss +2 -2
  23. package/dist/components/floorItem.weapp.tsx +1 -1
  24. package/dist/interface/common.ts +1 -1
  25. package/dist/interface/jumpEventReport.ts +1 -1
  26. package/dist/interface/service.ts +1 -1
  27. package/dist/jumpEventReport/base.ts +1 -1
  28. package/dist/jumpEventReport/const.ts +1 -1
  29. package/dist/jumpEventReport/index.weapp.ts +1 -1
  30. package/dist/jumpEventReport/jdJumpJdApp.ts +1 -1
  31. package/dist/jumpEventReport/jumpUrlConfig/base.ts +1 -1
  32. package/dist/jumpEventReport/logEventConfig.ts +1 -1
  33. package/dist/jumpEventReport/web/report.ts +1 -1
  34. package/dist/jumpEventReport/web.base.ts +1 -1
  35. package/dist/jumpEventReport/web.jd.ts +1 -1
  36. package/dist/jumpEventReport/web.wxapp.ts +1 -1
  37. package/dist/libs/taroAppReport.js +2 -2
  38. package/dist/modules/ContainerFloorList/index.h5.module.scss +66 -53
  39. package/dist/modules/ContainerFloorList/index.h5.tsx +1 -1
  40. package/dist/modules/ContainerFloorList/index.tsx +1 -1
  41. package/dist/open/api/environment.ts +1 -1
  42. package/dist/open/api/shopMember.ts +1 -1
  43. package/dist/open/api/util.ts +1 -1
  44. package/dist/sass/app.h5.scss +273 -224
  45. package/dist/service/fetchGateway.ts +1 -1
  46. package/dist/service/fetchGateway.weapp.ts +1 -0
  47. package/dist/service/http/colorSign.ts +1 -1
  48. package/dist/service/http/const.ts +1 -1
  49. package/dist/service/http/h5Http.ts +1 -1
  50. package/dist/service/requestServer.h5.ts +1 -1
  51. package/dist/service/requestServer.ts +1 -1
  52. package/dist/service/requestServer.weapp.ts +1 -0
  53. package/dist/utils/connectNativeJsBridge.ts +1 -1
  54. package/dist/utils/h5Utils.ts +1 -1
  55. package/dist/utils/index.h5.ts +1 -1
  56. package/dist/utils/index.ts +1 -1
  57. package/dist/utils/index.weapp.ts +1 -1
  58. package/dist/utils/jumpExtMapUtil.h5.ts +1 -0
  59. package/dist/utils/jumpExtMapUtil.ts +1 -0
  60. package/dist/utils/log.ts +1 -0
  61. package/dist/utils/sColor.js +1 -0
  62. package/dist/utils/utils.ts +1 -1
  63. package/dist/wxapp/common/address_api/address_api_v2.js +1 -0
  64. package/dist/wxapp/common/user_info.js +1 -1
  65. package/package.json +158 -141
@@ -1 +1 @@
1
- import ready from '../utils/ready'
2
1
  return new Promise((resolve, reject) => {
3
2
  ready('jmfe', timeout)
4
3
  .then(() => {
5
4
  registerCode(JSSDK_APP_WEBVIEW_CODE)
6
5
  resolve(window['jmfe'])
7
6
  })
8
7
  .catch(() => {
9
8
  console.log('window.jmfe不存在')
10
9
  reject(null)
11
10
  })
12
11
  })
13
12
  if (window['jmfe']) {
14
13
  console.log('registerCode:', code)
15
14
  window['jmfe'].registerCode(code)
16
15
  } else {
17
16
  console.warn('jmfe对象不存在,可能没有提前引入jd-jssdk.js')
18
17
  }
18
+ import ready from '../utils/ready';
19
19
  return new Promise((resolve, reject) => {
20
20
  ready('jmfe', timeout)
21
21
  .then(() => {
22
22
  registerCode(JSSDK_APP_WEBVIEW_CODE);
23
23
  resolve(window['jmfe']);
24
24
  })
25
25
  .catch(() => {
26
26
  console.log('window.jmfe不存在');
27
27
  reject(null);
28
28
  });
29
29
  });
30
30
  if (window['jmfe']) {
31
31
  console.log('registerCode:', code);
32
32
  window['jmfe'].registerCode(code);
33
33
  } else {
34
34
  console.warn('jmfe对象不存在,可能没有提前引入jd-jssdk.js');
35
35
  }
@@ -1 +1 @@
1
- import { isApp } from '../../utils/jm-common'
2
1
  return new Promise((resolve, reject) => {
3
2
  let platform: string = getPlatform()
4
3
  if (platform === TokenPlatform.TYPE_JDAPP) {
5
4
  ready('jmfe', 3000)
6
5
  .then(() => {
7
6
  console.log('window.jmfe已经存在:', window['jmfe'])
8
7
  import('./token.jd')
9
8
  .then((data) => {
10
9
  console.log('data:', data)
11
10
  resolve(data)
12
11
  })
13
12
  .catch((err) => {
14
13
  reject(err)
15
14
  })
16
15
  })
17
16
  .catch((e) => {
18
17
  console.log('window.jmfe不存在')
19
18
  reject(e)
20
19
  })
21
20
  }
22
21
  else if (platform === TokenPlatform.TYPE_WQ) {
23
22
  import('./token.wxapp')
24
23
  .then((data) => {
25
24
  console.log('data:', data)
26
25
  resolve(data)
27
26
  })
28
27
  .catch((err) => {
29
28
  reject(err)
30
29
  })
31
30
  } else {
32
31
  import('./token')
33
32
  .then((data) => {
34
33
  console.log('data:', data)
35
34
  resolve(data)
36
35
  })
37
36
  .catch((err) => {
38
37
  reject(err)
39
38
  })
40
39
  }
41
40
  })
42
41
  console.log(e)
43
42
  return {}
44
43
  return new Promise((resolve) => {
45
44
  loadTokenPromise
46
45
  .then((proxy: any) => {
47
46
  if (proxy?.isLogin) {
48
47
  proxy?.isLogin().then((data: boolean) => {
49
48
  resolve(data)
50
49
  })
51
50
  } else {
52
51
  resolve(false)
53
52
  }
54
53
  })
55
54
  .catch((err) => {
56
55
  resolve(false)
57
56
  })
58
57
  })
59
58
  return new Promise((resolve) => {
60
59
  loadTokenPromise
61
60
  .then((proxy: any) => {
62
61
  if (proxy?.getIsvToken) {
63
62
  proxy?.getIsvToken().then((data: string) => {
64
63
  resolve(data)
65
64
  })
66
65
  } else {
67
66
  resolve('')
68
67
  }
69
68
  })
70
69
  .catch((err) => {
71
70
  resolve('')
72
71
  })
73
72
  })
74
73
  return new Promise((resolve) => {
75
74
  loadTokenPromise
76
75
  .then((proxy: any) => {
77
76
  if (proxy?.toLogin) {
78
77
  proxy?.toLogin(options)
79
78
  resolve(true)
80
79
  } else {
81
80
  resolve(false)
82
81
  }
83
82
  })
84
83
  .catch((err) => {
85
84
  resolve(false)
86
85
  })
87
86
  })
88
87
  let platform = TokenPlatform.TYPE_M
89
88
  if (isApp('jd')) {
90
89
  platform = TokenPlatform.TYPE_JDAPP
91
90
  }
92
91
  else if (isApp('wx') && isApp('mp')) {
93
92
  platform = TokenPlatform.TYPE_WQ
94
93
  }
95
94
  return platform
96
95
  let platform = getPlatform()
97
96
  let source = platform
98
97
  if (platform === TokenPlatform.TYPE_M || platform === TokenPlatform.TYPE_WQ) {
99
98
  source = TokenPlatform.TYPE_JDAPP
100
99
  }
101
100
  return source
102
101
  return window?.page_data?.pageChannel || ''
102
+ import global from '../../common';
103
103
  return new Promise((resolve, reject) => {
104
104
  let platform: string = getPlatform();
105
105
  if (platform === TokenPlatform.TYPE_JDAPP) {
106
106
  global
107
107
  .jmfeReayPromise()
108
108
  .then(() => {
109
109
  console.log(
110
110
  'loadTokenAsync window.jmfe已经存在:',
111
111
  window?.jmfe,
112
112
  '当前版本',
113
113
  window?.jmfe?.VERSION,
114
114
  );
115
115
  import('./token.jd')
116
116
  .then((data) => {
117
117
  console.log('data:', data);
118
118
  resolve(data);
119
119
  })
120
120
  .catch((err) => {
121
121
  reject(err);
122
122
  });
123
123
  })
124
124
  .catch((e) => {
125
125
  console.log('window.jmfe不存在');
126
126
  reject(e);
127
127
  });
128
128
  }
129
129
  else if (platform === TokenPlatform.TYPE_WQ) {
130
130
  import('./token.wxapp')
131
131
  .then((data) => {
132
132
  console.log('data:', data);
133
133
  resolve(data);
134
134
  })
135
135
  .catch((err) => {
136
136
  reject(err);
137
137
  });
138
138
  } else {
139
139
  import('./token')
140
140
  .then((data) => {
141
141
  console.log('data:', data);
142
142
  resolve(data);
143
143
  })
144
144
  .catch((err) => {
145
145
  reject(err);
146
146
  });
147
147
  }
148
148
  });
149
149
  console.log(e);
150
150
  return {};
151
151
  return new Promise((resolve) => {
152
152
  loadTokenPromise
153
153
  .then((proxy: any) => {
154
154
  if (proxy?.isLogin) {
155
155
  proxy?.isLogin().then((data: boolean) => {
156
156
  resolve(data);
157
157
  });
158
158
  } else {
159
159
  resolve(false);
160
160
  }
161
161
  })
162
162
  .catch((err) => {
163
163
  console.log(err);
164
164
  resolve(false);
165
165
  });
166
166
  });
167
167
  return new Promise((resolve) => {
168
168
  loadTokenPromise
169
169
  .then((proxy: any) => {
170
170
  if (proxy?.getIsvToken) {
171
171
  proxy?.getIsvToken().then((data: string) => {
172
172
  resolve(data);
173
173
  });
174
174
  } else {
175
175
  resolve('');
176
176
  }
177
177
  })
178
178
  .catch((err) => {
179
179
  console.log(err);
180
180
  resolve('');
181
181
  });
182
182
  });
183
183
  return new Promise((resolve) => {
184
184
  loadTokenPromise
185
185
  .then((proxy: any) => {
186
186
  if (proxy?.toLogin) {
187
187
  proxy?.toLogin(options);
188
188
  resolve(true);
189
189
  } else {
190
190
  resolve(false);
191
191
  }
192
192
  })
193
193
  .catch((err) => {
194
194
  console.log(err);
195
195
  resolve(false);
196
196
  });
197
197
  });
198
198
  let platform = TokenPlatform.TYPE_M;
199
199
  if (isApp('jd')) {
200
200
  platform = TokenPlatform.TYPE_JDAPP;
201
201
  }
202
202
  else if (isApp('wx') && isApp('mp')) {
203
203
  platform = TokenPlatform.TYPE_WQ;
204
204
  }
205
205
  return platform;
206
206
  let platform = getPlatform();
207
207
  let source = platform;
208
208
  if (platform === TokenPlatform.TYPE_M || platform === TokenPlatform.TYPE_WQ) {
209
209
  source = TokenPlatform.TYPE_JDAPP;
210
210
  }
211
211
  return source;
212
212
  return window?.page_data?.pageChannel || '';
@@ -1 +1 @@
1
- console.log('load token.jd')
2
1
  return new Promise((resolve) => {
3
2
  if (window['jmfe']) {
4
3
  window['jmfe'].isJDAppLogin().then(({ data }) => {
5
4
  if (data === '1') {
6
5
  resolve(true)
7
6
  } else if (data === '0') {
8
7
  resolve(false)
9
8
  }
10
9
  })
11
10
  } else {
12
11
  console.warn('jmfe对象不存在,可能没有提前动态引入jd-jssdk.js')
13
12
  resolve(false)
14
13
  }
15
14
  })
16
15
  return requestIsvToken(window.location.href)
17
16
  if (window['jmfe']) {
18
17
  window['jmfe'].toLogin(options)
19
18
  } else {
20
19
  console.warn('jmfe对象不存在,可能没有提前动态引入jd-jssdk.js')
21
20
  }
22
21
  if (window['jmfe']) {
23
22
  console.log('registerCode:', code)
24
23
  window['jmfe'].registerCode(code)
25
24
  } else {
26
25
  console.warn('jmfe对象不存在,可能没有提前引入jd-jssdk.js')
27
26
  }
28
27
  return new Promise((resolve) => {
29
28
  console.log('requestIsvToken:', url)
30
29
  if (window['jmfe']) {
31
30
  window['jmfe']
32
31
  .requestIsvToken(url)
33
32
  .then((result: any) => {
34
33
  console.log('requestIsvToken result:' + JSON.stringify(result))
35
34
  const { status, data, msg } = result
36
35
  if (status === '0') {
37
36
  resolve(data || '')
38
37
  } else {
39
38
  resolve('')
40
39
  }
41
40
  })
42
41
  .catch((e: any) => {
43
42
  console.log('requestIsvToken error:' + JSON.stringify(e))
44
43
  resolve('')
45
44
  })
46
45
  } else {
47
46
  console.warn('jmfe对象不存在,可能没有提前引入jd-jssdk.js')
48
47
  resolve('')
49
48
  }
50
49
  })
50
+ import { isJdAndHarmonyDevice, draBusinessCustomReport } from '../../utils/h5Utils';
51
51
  draBusinessCustomReport({
52
52
  type,
53
53
  errMsg,
54
54
  data,
55
55
  });
56
56
  return new Promise((resolve) => {
57
57
  if (window['jmfe']) {
58
58
  window['jmfe'].isJDAppLogin().then(({ data }) => {
59
59
  if (data === '1') {
60
60
  resolve(true);
61
61
  } else if (data === '0') {
62
62
  resolve(false);
63
63
  }
64
64
  });
65
65
  } else {
66
66
  console.warn('jmfe对象不存在,可能没有提前动态引入jd-jssdk.js');
67
67
  resolve(false);
68
68
  }
69
69
  });
70
70
  return requestIsvToken(window.location.href);
71
71
  if (window['jmfe']) {
72
72
  window['jmfe'].toLogin(options);
73
73
  } else {
74
74
  console.warn('jmfe对象不存在,可能没有提前动态引入jd-jssdk.js');
75
75
  }
76
76
  if (window['jmfe']) {
77
77
  console.log('registerCode:', code);
78
78
  window['jmfe'].registerCode(code);
79
79
  } else {
80
80
  console.warn('jmfe对象不存在,可能没有提前引入jd-jssdk.js');
81
81
  }
82
82
  const plugin = 'JDHybridLoginPlugin';
83
83
  const action = 'requestIsvToken';
84
84
  const params = { url };
85
85
  return jmfe.callNative(plugin, action, params);
86
86
  return new Promise((resolve) => {
87
87
  console.log('requestIsvToken:', url);
88
88
  if (window['jmfe']) {
89
89
  const jmfeVersion = window['jmfe'].VERSION || 'unknow';
90
90
  try {
91
91
  (isJdAndHarmonyDevice
92
92
  ? requestIsvTokenHarmony(url)
93
93
  : window['jmfe'].requestIsvToken(url)
94
94
  ).then((result: any) => {
95
95
  console.log('requestIsvToken result:' + JSON.stringify(result));
96
96
  const { status, data } = result;
97
97
  if (status === '0') {
98
98
  resolve(data || '');
99
99
  } else {
100
100
  resolve('');
101
101
  }
102
102
  if (!data) {
103
103
  exceptionReport({
104
104
  data: {
105
105
  desc: '调用API有返回,但token值为空',
106
106
  jmfeVersion,
107
107
  originResult: result,
108
108
  url,
109
109
  },
110
110
  });
111
111
  }
112
112
  });
113
113
  } catch (error) {
114
114
  resolve('');
115
115
  const errorInfo = {
116
116
  name: error?.name,
117
117
  message: error?.message,
118
118
  stack: error?.stack,
119
119
  };
120
120
  exceptionReport({
121
121
  data: {
122
122
  desc: '调用API发生异常',
123
123
  jmfeVersion,
124
124
  error: errorInfo,
125
125
  url,
126
126
  },
127
127
  });
128
128
  }
129
129
  } else {
130
130
  resolve('');
131
131
  exceptionReport({
132
132
  data: {
133
133
  desc: '前置依赖window.jmfe不存在',
134
134
  },
135
135
  });
136
136
  }
137
137
  });
@@ -1 +1 @@
1
- import * as WXAPP_LOGIN from '../wxapp/common/login/login.js'
1
+ import * as WXAPP_LOGIN from '../wxapp/common/login/login.js';
2
2
  WXAPP_LOGIN,
3
3
  WXAPP_BIZ,
4
4
  WXAPP_USER_INFO,
5
5
  WXAPP_NAVIGATOR,
6
6
  WXAPP_REPORT_GDT,
7
7
  WXAPP_PARAMS_SIGN,
8
8
  WXAPP_FINGER_REPORT,
9
9
  WXAPP_REPORT_MANAGE,
10
10
  WXAPP_SUBS_GUIDER,
11
11
  WXAPP_ADDRESS_V2_API,
@@ -1,148 +1,163 @@
1
1
  .d-root {
2
- position: relative;
3
- width: 100%;
4
- margin-bottom: -24px;
5
- background-color: #ffffff;
2
+ position: relative;
3
+ width: 100%;
4
+ margin-bottom: -24px;
5
+ background-color: #ffffff;
6
6
  }
7
7
 
8
8
  .d-content-wrap {
9
- position: absolute;
10
- // display: flex;
11
- // align-items: center;
12
- top: 0;
13
- left: 0;
14
- width: 100%;
15
- height: 96px;
16
- // height: 100%;
17
-
18
- &.d-has-title-bg {
19
- background-size: cover;
20
-
21
- .d-text {
22
- // margin-top: -14px;
23
- color: #ffffff;
24
- }
25
-
26
- .d-sub-text {
27
- // margin-top: -8px;
28
- color: #ffffff;
29
- }
30
-
31
- .d-content {
32
- bottom: 40px;
33
- }
34
- }
35
-
36
- &.d-type-is-img {
37
- .d-content {
38
- bottom: 44%; // 当图片标题类型渲染时,兼容新老数据,下发的图片高度会有几个尺寸,所以这里改成百分比
39
- }
40
- }
41
-
42
- .d-text {
43
- // margin-top: 16px;
44
- margin-left: 20px;
45
- font-family: 'PingFang SC';
46
- font-size: 32px;
47
- // line-height: 32px;
48
- font-weight: bold;
49
- color: #1a1a1a;
50
-
51
- // hack修复在使用overflowhidden(为了实现过长自动出现省略号)前提下,某些字体,例如PingFang SC,默认行高时,基线和底线部分的字体内容(例如:jpqy)有可能显示不完整的问题
52
- position: relative;
53
- top: 2px;
54
- padding-bottom: 2px;
9
+ position: absolute;
10
+ // display: flex;
11
+ // align-items: center;
12
+ top: 0;
13
+ left: 0;
14
+ width: 100%;
15
+ height: 96px;
16
+ // height: 100%;
17
+
18
+ &.d-has-title-bg {
19
+ background-size: cover;
20
+
21
+ .d-text {
22
+ // margin-top: -14px;
23
+ color: #ffffff;
24
+ }
25
+
26
+ .d-sub-text {
27
+ // margin-top: -8px;
28
+ color: #ffffff;
29
+ }
30
+
31
+ .d-content {
32
+ bottom: 40px;
33
+ }
34
+ }
35
+
36
+ &.d-type-is-img {
37
+ .d-content {
38
+ bottom: 44%; // 当图片标题类型渲染时,兼容新老数据,下发的图片高度会有几个尺寸,所以这里改成百分比
39
+ }
40
+ }
41
+
42
+ .d-text {
43
+ // margin-top: 16px;
44
+ margin-left: 20px;
45
+ font-family: 'PingFang SC';
46
+ font-size: 32px;
47
+ // line-height: 32px;
48
+ font-weight: bold;
49
+ color: #1a1a1a;
50
+
51
+ // hack修复在使用overflowhidden(为了实现过长自动出现省略号)前提下,某些字体,例如PingFang SC,默认行高时,基线和底线部分的字体内容(例如:jpqy)有可能显示不完整的问题
52
+ position: relative;
53
+ top: 2px;
54
+ padding-bottom: 2px;
55
55
  // 文字titile行高不够被遮盖问题 比如“g”字母
56
56
  line-height: 1.3;
57
- }
58
-
59
- .d-vertical-line {
60
- position: relative;
61
- top: -4px;
62
- width: 1px;
63
- height: 24px;
64
- margin-left: 12px;
65
- opacity: 0.3;
66
- background: #ffffff;
67
- }
68
-
69
- .d-sub-text {
70
- position: relative;
71
- top: -2px;
72
- margin-left: 12px;
73
- font-family: 'PingFang SC';
74
- font-size: 24px;
75
- color: #808080;
76
- }
57
+ }
58
+
59
+ .d-vertical-line {
60
+ position: relative;
61
+ top: -4px;
62
+ width: 1px;
63
+ height: 24px;
64
+ margin-left: 12px;
65
+ opacity: 0.3;
66
+ background: #ffffff;
67
+ }
68
+
69
+ .d-sub-text {
70
+ position: relative;
71
+ top: -2px;
72
+ margin-left: 12px;
73
+ font-family: 'PingFang SC';
74
+ font-size: 24px;
75
+ color: #808080;
76
+ }
77
77
  }
78
78
 
79
79
  .d-content-wrap-relative {
80
- position: relative;
80
+ position: relative;
81
81
  }
82
82
 
83
83
  .d-content {
84
- position: absolute;
85
- bottom: 22px;
86
- width: 100%;
87
- display: flex;
88
- justify-content: space-between;
89
- align-items: flex-end;
84
+ position: absolute;
85
+ bottom: 22px;
86
+ width: 100%;
87
+ display: flex;
88
+ justify-content: space-between;
89
+ align-items: flex-end;
90
90
  }
91
91
 
92
92
  .d-content-left {
93
- flex: 1;
94
- display: flex;
95
- justify-content: flex-start;
96
- align-items: flex-end;
97
- max-width: calc(100% - 108px);
93
+ flex: 1;
94
+ display: flex;
95
+ justify-content: flex-start;
96
+ align-items: flex-end;
97
+ max-width: calc(100% - 108px);
98
98
  }
99
99
 
100
100
  .d-content-right {
101
- display: flex;
102
- align-items: flex-end;
103
- flex-shrink: 0;
101
+ display: flex;
102
+ align-items: flex-end;
103
+ flex-shrink: 0;
104
104
  }
105
105
 
106
106
  .d-title-more {
107
- position: relative;
108
- top: 16px;
109
- display: flex;
110
- align-items: flex-end;
111
- height: 56px;
112
- padding-bottom: 20px;
113
- padding-left: 20px;
114
- padding-right: 20px;
107
+ position: relative;
108
+ top: 16px;
109
+ display: flex;
110
+ align-items: flex-end;
111
+ height: 56px;
112
+ padding-bottom: 20px;
113
+ padding-left: 20px;
114
+ padding-right: 20px;
115
115
  }
116
116
 
117
117
  .d-title-more-text {
118
- font-family: 'PingFang SC';
119
- font-size: 24px;
120
- color: #808080;
121
- display: flex;
122
- align-items: center;
123
- font-weight: normal;
118
+ font-family: 'PingFang SC';
119
+ font-size: 24px;
120
+ color: #808080;
121
+ display: flex;
122
+ align-items: center;
123
+ font-weight: normal;
124
124
  }
125
125
 
126
126
  .d-title-more-text-white {
127
- color: #ffffff;
127
+ color: #ffffff;
128
128
  }
129
129
 
130
130
  .d-title-more-arrow {
131
- position: relative;
132
- top: -4px;
133
- width: 12px;
134
- height: 20px;
135
- margin-left: 10px;
131
+ position: relative;
132
+ top: -4px;
133
+ width: 12px;
134
+ height: 20px;
135
+ margin-left: 10px;
136
136
  }
137
137
 
138
138
  .d-img {
139
- width: 100%;
140
- display: block;
141
- // height: auto;
142
- height: 96px;
143
- background: no-repeat top/100% auto;
139
+ width: 100%;
140
+ display: block;
141
+ // height: auto;
142
+ height: 96px;
143
+ background: no-repeat top/100% auto;
144
144
  }
145
145
 
146
146
  .d-place-holder {
147
- height: 24px;
147
+ height: 24px;
148
+ }
149
+
150
+ :global {
151
+ .d-shop-pad {
152
+ :local {
153
+ .d-root {
154
+ .d-content-wrap-for-img {
155
+ height: 164px;
156
+ }
157
+ .d-img-bg {
158
+ height: 164px;
159
+ }
160
+ }
161
+ }
162
+ }
148
163
  }