juice-email-cli 2.0.5 → 2.1.1
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/README.md +3 -3
- package/bin/juice.js +40 -11
- package/edm/elabscience/elabscience-template.html +1966 -0
- package/edm/elabscience/favicon.ico +0 -0
- package/edm/elabscience/literature/juice.yaml +40 -0
- package/edm/elabscience/literature/snippet.html +145 -0
- package/edm/procell/favicon.ico +0 -0
- package/edm/procell/procell-template.html +1822 -0
- package/package.json +4 -3
- package/src/context-menu.js +20 -8
- package/src/index.js +1 -1
- package/src/snippet.js +524 -0
|
@@ -0,0 +1,1966 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta http-equiv="x-ua-compatible" content="IE=Edge,chrome=1" />
|
|
6
|
+
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no,viewport-fit=cover" />
|
|
7
|
+
<!-- 上述3个meta标签*必须*放在最前面,任何其他内容都*必须*跟随其后! -->
|
|
8
|
+
<meta name="render" content="webkit|ie-comp|ie-stand" />
|
|
9
|
+
|
|
10
|
+
<!-- 禁止页面缓存 -->
|
|
11
|
+
<meta http-equiv="Pragma" content="no-cache" />
|
|
12
|
+
<meta http-equiv="Cache-Control" content="no-cache" />
|
|
13
|
+
<meta http-equiv="Expires" content="0" />
|
|
14
|
+
|
|
15
|
+
<!-- IE10 and IE11 on Windows Phone have a small tap highlight when you tap an element. Adding this meta tag removes this. -->
|
|
16
|
+
<meta name="msapplication-tap-highlight" content="no" />
|
|
17
|
+
|
|
18
|
+
<title></title>
|
|
19
|
+
<meta name="keywords" content="" />
|
|
20
|
+
<meta name="description" content="" />
|
|
21
|
+
|
|
22
|
+
<link rel="shortcut icon" href="favicon.ico" />
|
|
23
|
+
|
|
24
|
+
<style>
|
|
25
|
+
/* 默认样式重置区,确保所有浏览器默认样式统一,没事别乱动 start */
|
|
26
|
+
html, body {
|
|
27
|
+
width: 100%;
|
|
28
|
+
height: 100%;
|
|
29
|
+
line-height: 1.5;
|
|
30
|
+
color: #000;
|
|
31
|
+
font-size: 16px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
*, *::before, *::after {
|
|
35
|
+
margin: 0;
|
|
36
|
+
padding: 0;
|
|
37
|
+
line-height: 1.5;
|
|
38
|
+
word-break: break-word;
|
|
39
|
+
box-sizing: border-box;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
table {
|
|
43
|
+
width: 100%;
|
|
44
|
+
table-layout: fixed;
|
|
45
|
+
border-collapse: collapse;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
span {
|
|
49
|
+
display: inline-block;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
img {
|
|
53
|
+
display: inline-block;
|
|
54
|
+
max-width: 100%;
|
|
55
|
+
max-height: 100%;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
a {
|
|
59
|
+
display: inline-block;
|
|
60
|
+
color: #000;
|
|
61
|
+
cursor: pointer;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
a:hover {
|
|
65
|
+
text-decoration: underline !important;
|
|
66
|
+
}
|
|
67
|
+
/* 默认样式重置区,确保所有浏览器默认样式统一,没事别乱动 end */
|
|
68
|
+
|
|
69
|
+
/* 公用样式区,模板样式,适合所有需求,三思而后行 start */
|
|
70
|
+
.app {
|
|
71
|
+
max-width: 750px;
|
|
72
|
+
min-width: 320px;
|
|
73
|
+
/*min-height: 100%;*/
|
|
74
|
+
margin: 0 auto;
|
|
75
|
+
box-shadow: 0.5px 0.666px 14.1px 0.9px rgba(13, 2, 3, 0.1);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.header {}
|
|
79
|
+
|
|
80
|
+
.header .banner {}
|
|
81
|
+
|
|
82
|
+
.header .banner img {
|
|
83
|
+
width: 100%;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.header .navigation {}
|
|
87
|
+
|
|
88
|
+
.header .navigation a {
|
|
89
|
+
color: #006DB8;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.header .navigation a:hover {}
|
|
93
|
+
|
|
94
|
+
.main {}
|
|
95
|
+
|
|
96
|
+
.footer {}
|
|
97
|
+
|
|
98
|
+
.footer .connect-us {}
|
|
99
|
+
|
|
100
|
+
.footer .connect-us-title {
|
|
101
|
+
padding-bottom: 5px;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.footer .connect-us-separator {
|
|
105
|
+
padding-top: 8px;
|
|
106
|
+
border-bottom: 1px dashed #828282;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.footer .contact-us {}
|
|
110
|
+
|
|
111
|
+
.footer .contact-us-qrcode {}
|
|
112
|
+
|
|
113
|
+
.footer .contact-us-qrcode img {
|
|
114
|
+
width: 60px;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.footer .contact-us-whatsApp {
|
|
118
|
+
padding: 5px 0;
|
|
119
|
+
margin-top: 6px;
|
|
120
|
+
color: #fff;
|
|
121
|
+
font-size: 12px;
|
|
122
|
+
border-radius: 12px;
|
|
123
|
+
background-color: rgb(43, 176, 181);
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.table-bordered {
|
|
127
|
+
border: 1px solid #DCEFF3;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.table-bordered thead {
|
|
131
|
+
color: #fff;
|
|
132
|
+
font-weight: bold;
|
|
133
|
+
background-color: #4389DE;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.table-bordered th, .table-bordered td {
|
|
137
|
+
padding: 10px;
|
|
138
|
+
border: 1px solid #DCEFF3;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.table-stripe {
|
|
142
|
+
border: 1px solid #6ca2e4;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.table-stripe thead {}
|
|
146
|
+
|
|
147
|
+
.table-stripe tbody tr:nth-child(2n) {
|
|
148
|
+
background-color: #ebf2fb;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.table-stripe th, .table-stripe td {
|
|
152
|
+
padding: 5px 8px;
|
|
153
|
+
border: 1px solid #6ca2e4;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.table-dashed {
|
|
157
|
+
border: 1px dashed #6ca2e4;
|
|
158
|
+
border-radius: 20px;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.title {
|
|
162
|
+
color: #2c2c2c;
|
|
163
|
+
font-size: 22px;
|
|
164
|
+
font-weight: bold;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.square-title {
|
|
168
|
+
font-size: 18px;
|
|
169
|
+
font-weight: bold;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.square-title::before {
|
|
173
|
+
content: '';
|
|
174
|
+
display: inline-block;
|
|
175
|
+
width: 16px;
|
|
176
|
+
height: 16px;
|
|
177
|
+
margin-right: 6px;
|
|
178
|
+
margin-bottom: -1px;
|
|
179
|
+
background-color: #3a82db;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.wifi-title {
|
|
183
|
+
padding-left: 32px;
|
|
184
|
+
color: #2c2c2c;
|
|
185
|
+
font-size: 22px;
|
|
186
|
+
font-weight: bold;
|
|
187
|
+
background: url(https://file.elabscience.com/edm/202603251412/title-icon.png) 0 6px / 21px 24px no-repeat scroll;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.gold-title {
|
|
191
|
+
padding-left: 75px;
|
|
192
|
+
color: #a26316;
|
|
193
|
+
font-size: 22px;
|
|
194
|
+
font-weight: bold;
|
|
195
|
+
background: url(https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202604071051/title-icon.png) 0 6px / 68px 24px no-repeat scroll;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.circle-title {
|
|
199
|
+
font-size: 22px;
|
|
200
|
+
font-weight: bolder;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.circle-title::before, .circle-title::after {
|
|
204
|
+
content: '';
|
|
205
|
+
display: inline-block;
|
|
206
|
+
width: 16px;
|
|
207
|
+
height: 16px;
|
|
208
|
+
margin-top: -2px;
|
|
209
|
+
vertical-align: middle;
|
|
210
|
+
border-radius: 50%;
|
|
211
|
+
border: 1px solid #1873C2;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.circle-title::before {
|
|
215
|
+
margin-top: -3px;
|
|
216
|
+
margin-right: 6px;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.circle-title::after {
|
|
220
|
+
margin-left: 6px;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.dot {
|
|
224
|
+
margin-top: -2px;
|
|
225
|
+
font-size: 12px;
|
|
226
|
+
vertical-align: middle;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.lamp {
|
|
230
|
+
padding-left: 28px;
|
|
231
|
+
background: url(https://elabcomfile.oss-us-west-1.aliyuncs.com/edm/202603251412/lamp.png) 0 4px / 18px 18px no-repeat scroll;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.truth {
|
|
235
|
+
padding-left: 28px;
|
|
236
|
+
background: url(https://elabcomfile.oss-us-west-1.aliyuncs.com/edm/202603251412/true.png) 0 5px / 20px 16px no-repeat scroll;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.circle {
|
|
240
|
+
padding-left: 28px;
|
|
241
|
+
background: url(https://elabcomfile.oss-us-west-1.aliyuncs.com/edm/202604231652/circle.webp) 0 4px / 18px 18px no-repeat scroll;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.gold-star {
|
|
245
|
+
padding-left: 30px;
|
|
246
|
+
background: url(https://elabcomfile.oss-us-west-1.aliyuncs.com/edm/202605201608/gold-star.webp) 0 3px / 20px 20px no-repeat scroll;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.star {
|
|
250
|
+
padding-left: 28px;
|
|
251
|
+
background: url(https://elabcomfile.oss-us-west-1.aliyuncs.com/edm/202604231652/star.webp) 0 0 / 20px 20px no-repeat scroll;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.image-box {
|
|
255
|
+
line-height: 0;
|
|
256
|
+
font-size: 0;
|
|
257
|
+
user-select: none;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.button {
|
|
261
|
+
padding: 6px 16px;
|
|
262
|
+
color: #fff;
|
|
263
|
+
font-size: 14px;
|
|
264
|
+
border-radius: 6px;
|
|
265
|
+
background-color: #006db8;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.button-orange {
|
|
269
|
+
padding: 8px 16px;
|
|
270
|
+
color: #fff;
|
|
271
|
+
font-size: 16px;
|
|
272
|
+
border-radius: 6px;
|
|
273
|
+
background-color: #f7750b;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.text-link {
|
|
277
|
+
color: #0365B0;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.text-link:hover, .text-link-hover:hover {
|
|
281
|
+
color: #0365B0 !important;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.bg-primary {
|
|
285
|
+
background-color: #3a82db;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.bg-light-primary {
|
|
289
|
+
background-color: #f0f6ff;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.bg-white {
|
|
293
|
+
background-color: #fff;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.bg-gray {
|
|
297
|
+
background-color: #f6f6f6;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.border {
|
|
301
|
+
border: 1px solid #DCEFF3;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.border-dashed {
|
|
305
|
+
border: 1px dashed #3a82db;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.border-gray {
|
|
309
|
+
border-color: #e0e0e0;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.relative {
|
|
313
|
+
position: relative;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.absolute {
|
|
317
|
+
position: absolute;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.table-auto {
|
|
321
|
+
table-layout: auto;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.border-separate {
|
|
325
|
+
border-collapse: separate;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.h-a {
|
|
329
|
+
height: auto;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.h-0 {
|
|
333
|
+
height: 0;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.h-12 {
|
|
337
|
+
height: 12px;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.h-16 {
|
|
341
|
+
height: 16px;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.h-18 {
|
|
345
|
+
height: 18px;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.h-24 {
|
|
349
|
+
height: 24px;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.h-32 {
|
|
353
|
+
height: 32px;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.h-36 {
|
|
357
|
+
height: 36px;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
.h-48 {
|
|
361
|
+
height: 48px;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.px-5 {
|
|
365
|
+
padding-inline: 5px !important;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.py-8 {
|
|
369
|
+
padding-block: 8px !important;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.pt-3 {
|
|
373
|
+
padding-top: 3px !important;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.pb-3 {
|
|
377
|
+
padding-bottom: 3px !important;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.pt-5 {
|
|
381
|
+
padding-top: 5px !important;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.pb-5 {
|
|
385
|
+
padding-bottom: 5px !important;
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
.pt-6 {
|
|
389
|
+
padding-top: 6px !important;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.pb-6 {
|
|
393
|
+
padding-bottom: 6px !important;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.pt-8 {
|
|
397
|
+
padding-top: 8px !important;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.pb-8 {
|
|
401
|
+
padding-bottom: 8px !important;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.pt-10 {
|
|
405
|
+
padding-top: 10px !important;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.pb-10 {
|
|
409
|
+
padding-bottom: 10px !important;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.pt-12 {
|
|
413
|
+
padding-top: 12px !important;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.pb-12 {
|
|
417
|
+
padding-bottom: 12px !important;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
.pt-16 {
|
|
421
|
+
padding-top: 16px !important;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.pb-16 {
|
|
425
|
+
padding-bottom: 16px !important;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
.pt-18 {
|
|
429
|
+
padding-top: 18px !important;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.pb-18 {
|
|
433
|
+
padding-bottom: 18px !important;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
.pt-20 {
|
|
437
|
+
padding-top: 20px !important;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.pb-20 {
|
|
441
|
+
padding-bottom: 20px !important;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
.pt-24 {
|
|
445
|
+
padding-top: 24px !important;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
.pb-24 {
|
|
449
|
+
padding-bottom: 24px !important;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.line-height-0 {
|
|
453
|
+
line-height: 0;
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
.align-top {
|
|
457
|
+
vertical-align: top;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
.align-text-top {
|
|
461
|
+
vertical-align: text-top;
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
.align-mid, .align-middle {
|
|
465
|
+
vertical-align: middle;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.align-bottom {
|
|
469
|
+
vertical-align: bottom;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
.align-text-bottom {
|
|
473
|
+
vertical-align: text-bottom;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.text-left {
|
|
477
|
+
text-align: left;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.text-center {
|
|
481
|
+
text-align: center;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.text-right {
|
|
485
|
+
text-align: right;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.color-primary {
|
|
489
|
+
color: #2c2c2c;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.color-333 {
|
|
493
|
+
color: #333;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
.color-white {
|
|
497
|
+
color: #fff;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
.color-blue {
|
|
501
|
+
color: #006db8;
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
.color-orange {
|
|
505
|
+
color: #f7750b;
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
.color-light-orange {
|
|
509
|
+
color: #f88634;
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
.color-red {
|
|
513
|
+
color: #ff0207;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.cursor-auto {
|
|
517
|
+
cursor: auto;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.cursor-default {
|
|
521
|
+
cursor: default;
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.cursor-pointer {
|
|
525
|
+
cursor: pointer;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
.cursor-not-allowed {
|
|
529
|
+
cursor: not-allowed;
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
.decoration-none {
|
|
533
|
+
text-decoration: none;
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
.decoration-underline {
|
|
537
|
+
text-decoration-line: underline;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
.font-bold {
|
|
541
|
+
font-weight: bold;
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
.text-size-0 {
|
|
545
|
+
font-size: 0;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
.text-size-\[10px\] {
|
|
549
|
+
font-size: 10px;
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
.text-size-\[12px\] {
|
|
553
|
+
font-size: 12px;
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
.text-size-\[14px\] {
|
|
557
|
+
font-size: 14px;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
.text-size-base {
|
|
561
|
+
font-size: 16px;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
.text-size-\[16px\] {
|
|
565
|
+
font-size: 16px;
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
.text-size-\[18px\] {
|
|
569
|
+
font-size: 18px;
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
.text-size-\[20px\] {
|
|
573
|
+
font-size: 20px;
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
.text-size-\[22px\] {
|
|
577
|
+
font-size: 22px;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
.text-size-\[24px\] {
|
|
581
|
+
font-size: 24px;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
.text-size-\[26px\] {
|
|
585
|
+
font-size: 26px;
|
|
586
|
+
}
|
|
587
|
+
/* 公用样式区,模板样式,适合所有需求,三思而后行 end */
|
|
588
|
+
|
|
589
|
+
/* 页面特定样式区,特定需求页面的定制样式,随便霍霍,满足需求即可 start */
|
|
590
|
+
.card {
|
|
591
|
+
height: 96px;
|
|
592
|
+
padding: 12px 16px;
|
|
593
|
+
border: 1px solid #fff;
|
|
594
|
+
border-radius: 10px;
|
|
595
|
+
box-shadow: 0 0 6px 3px #ebf3fe;
|
|
596
|
+
background-image: linear-gradient(180deg, #e7f1ff 0%, #ffffff 100%);
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.word-cloud-item {
|
|
600
|
+
margin: 0 6px;
|
|
601
|
+
line-height: 36px;
|
|
602
|
+
font-size: 20px;
|
|
603
|
+
/*font-weight: 500;*/
|
|
604
|
+
letter-spacing: 0;
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
.word-cloud-item a[href] {
|
|
608
|
+
text-decoration: underline;
|
|
609
|
+
cursor: pointer;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
.word-cloud-item a:hover:not([href]) {
|
|
613
|
+
text-decoration: none !important;
|
|
614
|
+
}
|
|
615
|
+
/* 页面特定样式区,特定需求页面的定制样式,随便霍霍,满足需求即可 end */
|
|
616
|
+
</style>
|
|
617
|
+
</head>
|
|
618
|
+
|
|
619
|
+
<body>
|
|
620
|
+
<table cellspacing="0" cellpadding="0" border="0" id="app" class="app">
|
|
621
|
+
<tbody>
|
|
622
|
+
<tr>
|
|
623
|
+
<td>
|
|
624
|
+
<!-- 页头 start -->
|
|
625
|
+
<table cellspacing="0" cellpadding="0" border="0" class="header">
|
|
626
|
+
<colgroup>
|
|
627
|
+
<col width="10px" />
|
|
628
|
+
<col />
|
|
629
|
+
<col />
|
|
630
|
+
<col width="10px" />
|
|
631
|
+
</colgroup>
|
|
632
|
+
|
|
633
|
+
<tbody>
|
|
634
|
+
<tr>
|
|
635
|
+
<td colspan="4">
|
|
636
|
+
<a href="https://www.elabscience.com/" class="banner image-box">
|
|
637
|
+
<img src="https://elabcomfile.oss-us-west-1.aliyuncs.com/edm/header.webp" alt="Elabscience" />
|
|
638
|
+
</a>
|
|
639
|
+
</td>
|
|
640
|
+
</tr>
|
|
641
|
+
|
|
642
|
+
<tr>
|
|
643
|
+
<td colspan="4" class="h-16"></td>
|
|
644
|
+
</tr>
|
|
645
|
+
|
|
646
|
+
<tr>
|
|
647
|
+
<td></td>
|
|
648
|
+
<td colspan="2">
|
|
649
|
+
<table cellspacing="0" cellpadding="0" border="0" class="navigation text-center table-auto">
|
|
650
|
+
<tbody>
|
|
651
|
+
<tr>
|
|
652
|
+
<td>
|
|
653
|
+
<a href="https://www.elabscience.com/products/flow-cytometry-antibodies" class="decoration-none">Flow Cytometry Antibodies</a>
|
|
654
|
+
</td>
|
|
655
|
+
<td>
|
|
656
|
+
<a href="https://www.elabscience.com/products/cell-function-assays" class="decoration-none">Apoptosis and Cell Health Detection</a>
|
|
657
|
+
</td>
|
|
658
|
+
<td>
|
|
659
|
+
<a href="https://www.elabscience.com/products/immunoassay-kits-and-reagents" class="decoration-none">Immunoassay Kits</a>
|
|
660
|
+
</td>
|
|
661
|
+
</tr>
|
|
662
|
+
</tbody>
|
|
663
|
+
</table>
|
|
664
|
+
</td>
|
|
665
|
+
<td></td>
|
|
666
|
+
</tr>
|
|
667
|
+
|
|
668
|
+
<tr>
|
|
669
|
+
<td colspan="4" class="h-16"></td>
|
|
670
|
+
</tr>
|
|
671
|
+
</tbody>
|
|
672
|
+
</table>
|
|
673
|
+
<!-- 页头 end -->
|
|
674
|
+
|
|
675
|
+
<!-- 主体 start -->
|
|
676
|
+
<table cellspacing="0" cellpadding="0" border="0" class="main">
|
|
677
|
+
<colgroup>
|
|
678
|
+
<col width="10px" />
|
|
679
|
+
<col />
|
|
680
|
+
<col />
|
|
681
|
+
<col width="10px" />
|
|
682
|
+
</colgroup>
|
|
683
|
+
|
|
684
|
+
<tbody id="content">
|
|
685
|
+
<tr>
|
|
686
|
+
<td colspan="4" class="image-box">
|
|
687
|
+
<a href="https://www.elabscience.com/about/promotions/39">
|
|
688
|
+
<img src="https://file.elabscience.com/edm/202605061010/banner.webp" />
|
|
689
|
+
</a>
|
|
690
|
+
</td>
|
|
691
|
+
</tr>
|
|
692
|
+
|
|
693
|
+
<tr>
|
|
694
|
+
<td colspan="4" class="h-16"></td>
|
|
695
|
+
</tr>
|
|
696
|
+
|
|
697
|
+
<tr>
|
|
698
|
+
<td></td>
|
|
699
|
+
<td colspan="2">Achieving high-purity neuronal cultures with long-term viability remains one of the most significant challenges in neuroscience. To support your research precision, we have refined our Neurobasal media series to cater to specific developmental stages of the central nervous system (CNS).</td>
|
|
700
|
+
<td></td>
|
|
701
|
+
</tr>
|
|
702
|
+
|
|
703
|
+
<tr>
|
|
704
|
+
<td colspan="4" class="h-16"></td>
|
|
705
|
+
</tr>
|
|
706
|
+
|
|
707
|
+
<tr>
|
|
708
|
+
<td></td>
|
|
709
|
+
<td colspan="2" class="text-center">
|
|
710
|
+
<a href="https://www.procellsystem.com/service/research" class="button-orange decoration-none text-center" style="min-width: 240px;">View Service Details</a>
|
|
711
|
+
</td>
|
|
712
|
+
<td></td>
|
|
713
|
+
</tr>
|
|
714
|
+
|
|
715
|
+
<tr>
|
|
716
|
+
<td colspan="4" class="h-16"></td>
|
|
717
|
+
</tr>
|
|
718
|
+
|
|
719
|
+
<tr>
|
|
720
|
+
<td></td>
|
|
721
|
+
<td colspan="2" class="pb-6">
|
|
722
|
+
<strong>Empower Your Research with Elabscience<sup>®</sup></strong>
|
|
723
|
+
</td>
|
|
724
|
+
<td></td>
|
|
725
|
+
</tr>
|
|
726
|
+
|
|
727
|
+
<tr>
|
|
728
|
+
<td></td>
|
|
729
|
+
<td colspan="2">From cell isolation and antibody solutions to functional assays, we provide tools that support every step of your cancer research workflow. We look forward to meeting you in person at AACR and discuss how we can support your research.</td>
|
|
730
|
+
<td></td>
|
|
731
|
+
</tr>
|
|
732
|
+
|
|
733
|
+
<tr>
|
|
734
|
+
<td colspan="4" class="h-24"></td>
|
|
735
|
+
</tr>
|
|
736
|
+
|
|
737
|
+
<tr>
|
|
738
|
+
<td colspan="4">
|
|
739
|
+
<table cellspacing="0" cellpadding="0" border="0" class="bg-light-primary">
|
|
740
|
+
<colgroup>
|
|
741
|
+
<col width="10px" />
|
|
742
|
+
<col />
|
|
743
|
+
<col width="10px" />
|
|
744
|
+
</colgroup>
|
|
745
|
+
|
|
746
|
+
<tbody>
|
|
747
|
+
<tr>
|
|
748
|
+
<td colspan="3" class="h-16"></td>
|
|
749
|
+
</tr>
|
|
750
|
+
|
|
751
|
+
<tr>
|
|
752
|
+
<td></td>
|
|
753
|
+
<td>Unreliable ELISA results? You're not alone. Small errors in pipetting, washing, or timing can ruin your entire assay. Watch step-by-step ELISA videos to improve accuracy and reproducibility.</td>
|
|
754
|
+
<td></td>
|
|
755
|
+
</tr>
|
|
756
|
+
|
|
757
|
+
<tr>
|
|
758
|
+
<td colspan="3" class="h-16"></td>
|
|
759
|
+
</tr>
|
|
760
|
+
|
|
761
|
+
<tr>
|
|
762
|
+
<td></td>
|
|
763
|
+
<td class="text-center">
|
|
764
|
+
<a href="https://www.elabscience.com/resources/elisa-research-videos" class="button-orange decoration-none text-center text-size-[14px] font-bold" style="min-width: 240px;">Watch & Fix My ELISA Workflow</a>
|
|
765
|
+
</td>
|
|
766
|
+
<td></td>
|
|
767
|
+
</tr>
|
|
768
|
+
|
|
769
|
+
<tr>
|
|
770
|
+
<td colspan="3" class="h-16"></td>
|
|
771
|
+
</tr>
|
|
772
|
+
</tbody>
|
|
773
|
+
</table>
|
|
774
|
+
</td>
|
|
775
|
+
</tr>
|
|
776
|
+
|
|
777
|
+
<tr>
|
|
778
|
+
<td colspan="4" class="h-16"></td>
|
|
779
|
+
</tr>
|
|
780
|
+
|
|
781
|
+
<tr>
|
|
782
|
+
<td></td>
|
|
783
|
+
<td colspan="2">
|
|
784
|
+
<table cellspacing="0" cellpadding="0" border="0">
|
|
785
|
+
<colgroup>
|
|
786
|
+
<col />
|
|
787
|
+
<col width="32px" />
|
|
788
|
+
<col />
|
|
789
|
+
</colgroup>
|
|
790
|
+
|
|
791
|
+
<tbody>
|
|
792
|
+
<tr>
|
|
793
|
+
<td colspan="3">
|
|
794
|
+
<p class="text-size-[22px]"><strong>Find Your ELISA Solution Faster</strong></p>
|
|
795
|
+
<p class="color-333">Used by thousands of researchers to improve ELISA consistency.</p>
|
|
796
|
+
</td>
|
|
797
|
+
</tr>
|
|
798
|
+
|
|
799
|
+
<tr>
|
|
800
|
+
<td colspan="3" class="h-16"></td>
|
|
801
|
+
</tr>
|
|
802
|
+
|
|
803
|
+
<tr>
|
|
804
|
+
<td class="card">
|
|
805
|
+
<p class="color-333 text-size-[20px]"><strong>Need faster results?</strong></p>
|
|
806
|
+
<p><a href="https://www.elabscience.com/search?category=quickey-pro-elisa-kits" class="text-link">Quickey Pro<sup>™</sup> ELISA (90 min assay)</a></p>
|
|
807
|
+
</td>
|
|
808
|
+
<td></td>
|
|
809
|
+
<td class="card">
|
|
810
|
+
<p class="color-333 text-size-[20px]"><strong>Limited sample volume?</strong></p>
|
|
811
|
+
<p><a href="https://www.elabscience.com/search?category=mini-sample-elisa-kits" class="text-link">Mini Sample Kits (25 μL)</a></p>
|
|
812
|
+
</td>
|
|
813
|
+
</tr>
|
|
814
|
+
|
|
815
|
+
<tr>
|
|
816
|
+
<td colspan="3" class="h-24"></td>
|
|
817
|
+
</tr>
|
|
818
|
+
|
|
819
|
+
<tr>
|
|
820
|
+
<td class="card">
|
|
821
|
+
<p class="color-333 text-size-[20px]"><strong>Detect ultra-low targets?</strong></p>
|
|
822
|
+
<p><a href="https://www.elabscience.com/search?category=high-sensitivity-elisa-kits" class="text-link">High Sensitivity Kits (fg level)</a></p>
|
|
823
|
+
</td>
|
|
824
|
+
<td></td>
|
|
825
|
+
<td class="card">
|
|
826
|
+
<p class="color-333 text-size-[20px]"><strong>Working with cell supernatants?</strong></p>
|
|
827
|
+
<p><a href="https://www.elabscience.com/products/cella-quant-elisa-kits" class="text-link">CellaQuant<sup>™</sup> ELISA</a></p>
|
|
828
|
+
</td>
|
|
829
|
+
</tr>
|
|
830
|
+
|
|
831
|
+
<tr>
|
|
832
|
+
<td colspan="3" class="h-24"></td>
|
|
833
|
+
</tr>
|
|
834
|
+
|
|
835
|
+
<tr>
|
|
836
|
+
<td class="card">
|
|
837
|
+
<p class="color-333 text-size-[20px]"><strong>Building your own assay?</strong></p>
|
|
838
|
+
<p><a href="https://www.elabscience.com/products/uncoated-elisa-kits" class="text-link">Uncoated Kits</a></p>
|
|
839
|
+
</td>
|
|
840
|
+
<td></td>
|
|
841
|
+
<td class="card">
|
|
842
|
+
<p class="color-333 text-size-[20px]"><strong>Routine protein detection?</strong></p>
|
|
843
|
+
<p><a href="https://www.elabscience.com/search?category=traditional-elisa-kits" class="text-link">Traditional ELISA</a></p>
|
|
844
|
+
</td>
|
|
845
|
+
</tr>
|
|
846
|
+
|
|
847
|
+
<tr>
|
|
848
|
+
<td colspan="3" class="h-24"></td>
|
|
849
|
+
</tr>
|
|
850
|
+
|
|
851
|
+
<tr>
|
|
852
|
+
<td class="card">
|
|
853
|
+
<p class="color-333 text-size-[20px]"><strong>Single-cell cytokine analysis?</strong></p>
|
|
854
|
+
<p><a href="https://www.elabscience.com/products/elispot-kits" class="text-link">ELISPOT Kits</a></p>
|
|
855
|
+
</td>
|
|
856
|
+
<td></td>
|
|
857
|
+
<td></td>
|
|
858
|
+
</tr>
|
|
859
|
+
</tbody>
|
|
860
|
+
</table>
|
|
861
|
+
</td>
|
|
862
|
+
<td></td>
|
|
863
|
+
</tr>
|
|
864
|
+
|
|
865
|
+
<tr>
|
|
866
|
+
<td colspan="4" class="h-36"></td>
|
|
867
|
+
</tr>
|
|
868
|
+
|
|
869
|
+
<tr>
|
|
870
|
+
<td></td>
|
|
871
|
+
<td colspan="2">
|
|
872
|
+
<span class="title color-blue">New Product Highlights</span>
|
|
873
|
+
</td>
|
|
874
|
+
<td></td>
|
|
875
|
+
</tr>
|
|
876
|
+
|
|
877
|
+
<tr>
|
|
878
|
+
<td colspan="4" class="h-16"></td>
|
|
879
|
+
</tr>
|
|
880
|
+
|
|
881
|
+
<tr>
|
|
882
|
+
<td></td>
|
|
883
|
+
<td colspan="2" class="bg-gray">
|
|
884
|
+
<table cellspacing="0" cellpadding="0" border="0">
|
|
885
|
+
<colgroup>
|
|
886
|
+
<col width="35%" />
|
|
887
|
+
<col />
|
|
888
|
+
</colgroup>
|
|
889
|
+
|
|
890
|
+
<tbody class="align-middle">
|
|
891
|
+
<tr>
|
|
892
|
+
<td colspan="2" style="padding: 3px 5px 8px;">
|
|
893
|
+
<p class="title color-light-orange"><strong style="display: inline-block; margin-top: -6px; margin-left: -12px; font-size: 36px; line-height: 0; vertical-align: middle; ">•</strong>Streamlined & High-Throughput</p>
|
|
894
|
+
<p class="title">Nitric Oxide (NO) Colorimetric Assay Kit (E-BC-K817-M)</p>
|
|
895
|
+
</td>
|
|
896
|
+
</tr>
|
|
897
|
+
|
|
898
|
+
<tr>
|
|
899
|
+
<td rowspan="2" style="padding-right: 12px;" class="image-box">
|
|
900
|
+
<a href="https://www.elabscience.com/p/nitric-oxide-no-colorimetric-assay-kit--e-bc-k817-m">
|
|
901
|
+
<img src="https://elabcomfile.oss-us-west-1.aliyuncs.com/edm/202605061010/Streamlined & High-Throughput.webp" />
|
|
902
|
+
</a>
|
|
903
|
+
</td>
|
|
904
|
+
<td>
|
|
905
|
+
Uses an innovative chemical reduction method enabling direct microplate reading, no transfer, no centrifugation. Ideal for high-throughput NO quantification in diverse samples.
|
|
906
|
+
</td>
|
|
907
|
+
</tr>
|
|
908
|
+
|
|
909
|
+
<tr>
|
|
910
|
+
<td class="text-right pt-18" style="padding: 12px 24px 12px 0;">
|
|
911
|
+
<a href="https://www.elabscience.com/p/nitric-oxide-no-colorimetric-assay-kit--e-bc-k817-m" class="button font-bold decoration-none py-8">Get More Details</a>
|
|
912
|
+
</td>
|
|
913
|
+
</tr>
|
|
914
|
+
</tbody>
|
|
915
|
+
</table>
|
|
916
|
+
</td>
|
|
917
|
+
<td></td>
|
|
918
|
+
</tr>
|
|
919
|
+
|
|
920
|
+
<tr>
|
|
921
|
+
<td colspan="4" class="h-24"></td>
|
|
922
|
+
</tr>
|
|
923
|
+
|
|
924
|
+
<tr>
|
|
925
|
+
<td></td>
|
|
926
|
+
<td colspan="2" class="bg-gray">
|
|
927
|
+
<table cellspacing="0" cellpadding="0" border="0">
|
|
928
|
+
<colgroup>
|
|
929
|
+
<col width="35%" />
|
|
930
|
+
<col />
|
|
931
|
+
</colgroup>
|
|
932
|
+
|
|
933
|
+
<tbody class="align-middle">
|
|
934
|
+
<tr>
|
|
935
|
+
<td colspan="2" style="padding: 3px 5px 8px;">
|
|
936
|
+
<p class="title color-light-orange"><strong style="display: inline-block; margin-top: -6px; margin-left: -12px; font-size: 36px; line-height: 0; vertical-align: middle; ">•</strong>Live-Cell Real-Time Monitoring</p>
|
|
937
|
+
<p class="title">Nitric Oxide (NO) Fluorometric Assay Kit (E-BC-F021)</p>
|
|
938
|
+
</td>
|
|
939
|
+
</tr>
|
|
940
|
+
|
|
941
|
+
<tr>
|
|
942
|
+
<td rowspan="2" style="padding-right: 12px;" class="image-box">
|
|
943
|
+
<a href="https://www.elabscience.com/p/nitric-oxide-no-fluorometric-assay-kit--e-bc-f021">
|
|
944
|
+
<img src="https://elabcomfile.oss-us-west-1.aliyuncs.com/edm/202605061010/Live-Cell Real-Time Monitoring.webp" />
|
|
945
|
+
</a>
|
|
946
|
+
</td>
|
|
947
|
+
<td>
|
|
948
|
+
Features DAF-FM DA fluorescent probe to directly detect intracellular NO in living cells, perfect for dynamic cell biology studies.
|
|
949
|
+
</td>
|
|
950
|
+
</tr>
|
|
951
|
+
|
|
952
|
+
<tr>
|
|
953
|
+
<td class="text-right pt-18" style="padding: 12px 24px 12px 0;">
|
|
954
|
+
<a href="https://www.elabscience.com/p/nitric-oxide-no-fluorometric-assay-kit--e-bc-f021" class="button font-bold decoration-none py-8">Get More Details</a>
|
|
955
|
+
</td>
|
|
956
|
+
</tr>
|
|
957
|
+
</tbody>
|
|
958
|
+
</table>
|
|
959
|
+
</td>
|
|
960
|
+
<td></td>
|
|
961
|
+
</tr>
|
|
962
|
+
|
|
963
|
+
<tr>
|
|
964
|
+
<td colspan="4" class="h-32"></td>
|
|
965
|
+
</tr>
|
|
966
|
+
|
|
967
|
+
<tr>
|
|
968
|
+
<td></td>
|
|
969
|
+
<td colspan="2">
|
|
970
|
+
<table cellspacing="0" cellpadding="0" border="0">
|
|
971
|
+
<colgroup>
|
|
972
|
+
<col />
|
|
973
|
+
</colgroup>
|
|
974
|
+
|
|
975
|
+
<tbody class="align-middle">
|
|
976
|
+
<tr>
|
|
977
|
+
<td><span class="title">Product Features</span></td>
|
|
978
|
+
</tr>
|
|
979
|
+
|
|
980
|
+
<tr>
|
|
981
|
+
<td class="h-16"></td>
|
|
982
|
+
</tr>
|
|
983
|
+
|
|
984
|
+
<tr>
|
|
985
|
+
<td>
|
|
986
|
+
<p class="pb-5"><strong>• Simple & Efficient:</strong> One-step microplate assay</p>
|
|
987
|
+
<p class="pb-5"><strong>• High Sensitivity & Wide Linear Range:</strong> 0.46–100 μmol/L</p>
|
|
988
|
+
<p class="pb-5"><strong>• Broad Sample Compatibility:</strong> Serum, plasma, urine, tissue, cells</p>
|
|
989
|
+
<p><strong>• Total NO Measurement:</strong> Quantifies NO<sub>3</sub><sup>-</sup>+NO<sub>2</sub><sup>-</sup> for complete metabolic insight</p>
|
|
990
|
+
</td>
|
|
991
|
+
</tr>
|
|
992
|
+
</tbody>
|
|
993
|
+
</table>
|
|
994
|
+
</td>
|
|
995
|
+
<td></td>
|
|
996
|
+
</tr>
|
|
997
|
+
|
|
998
|
+
<tr>
|
|
999
|
+
<td colspan="4" class="h-32"></td>
|
|
1000
|
+
</tr>
|
|
1001
|
+
|
|
1002
|
+
<tr>
|
|
1003
|
+
<td></td>
|
|
1004
|
+
<td colspan="2">
|
|
1005
|
+
<table cellspacing="0" cellpadding="0" border="0">
|
|
1006
|
+
<colgroup>
|
|
1007
|
+
<col />
|
|
1008
|
+
<col width="8px" />
|
|
1009
|
+
<col />
|
|
1010
|
+
<col width="8px" />
|
|
1011
|
+
<col />
|
|
1012
|
+
</colgroup>
|
|
1013
|
+
|
|
1014
|
+
<tbody class="align-top">
|
|
1015
|
+
<tr>
|
|
1016
|
+
<td colspan="5"><span class="title">Data Demonstration</span></td>
|
|
1017
|
+
</tr>
|
|
1018
|
+
|
|
1019
|
+
<tr>
|
|
1020
|
+
<td colspan="5" class="h-16"></td>
|
|
1021
|
+
</tr>
|
|
1022
|
+
|
|
1023
|
+
<tr>
|
|
1024
|
+
<td>
|
|
1025
|
+
<div class="border border-gray">
|
|
1026
|
+
<div class="image-box">
|
|
1027
|
+
<img src="https://elabcomfile.oss-us-west-1.aliyuncs.com/edm/202605061010/Data Demonstration-01.webp" alt="" />
|
|
1028
|
+
</div>
|
|
1029
|
+
|
|
1030
|
+
<p class="bg-light-primary" style="min-height: 54px; padding: 3px 8px;">Excellent Standard Curve</p>
|
|
1031
|
+
</div>
|
|
1032
|
+
</td>
|
|
1033
|
+
|
|
1034
|
+
<td></td>
|
|
1035
|
+
|
|
1036
|
+
<td>
|
|
1037
|
+
<div class="border border-gray">
|
|
1038
|
+
<div class="image-box">
|
|
1039
|
+
<img src="https://elabcomfile.oss-us-west-1.aliyuncs.com/edm/202605061010/Data Demonstration-02.webp" alt="" />
|
|
1040
|
+
</div>
|
|
1041
|
+
|
|
1042
|
+
<p class="bg-light-primary" style="min-height: 54px; padding: 3px 8px;">Accurate Recovery of Nitrate & Nitrite Standards</p>
|
|
1043
|
+
</div>
|
|
1044
|
+
</td>
|
|
1045
|
+
|
|
1046
|
+
<td></td>
|
|
1047
|
+
|
|
1048
|
+
<td>
|
|
1049
|
+
<div class="border border-gray">
|
|
1050
|
+
<div class="image-box">
|
|
1051
|
+
<img src="https://elabcomfile.oss-us-west-1.aliyuncs.com/edm/202605061010/Data Demonstration-03.webp" alt="" />
|
|
1052
|
+
</div>
|
|
1053
|
+
|
|
1054
|
+
<p class="bg-light-primary" style="min-height: 54px; padding: 3px 8px;">Reliable Detection in <br />Raw 264.7 Cells (M1 vs M0)</p>
|
|
1055
|
+
</div>
|
|
1056
|
+
</td>
|
|
1057
|
+
</tr>
|
|
1058
|
+
|
|
1059
|
+
<tr>
|
|
1060
|
+
<td colspan="5" class="h-16"></td>
|
|
1061
|
+
</tr>
|
|
1062
|
+
|
|
1063
|
+
<tr>
|
|
1064
|
+
<td colspan="5">We offer more NO detection products with high sensitivity and specificity, covering various sample types and platforms.</td>
|
|
1065
|
+
</tr>
|
|
1066
|
+
|
|
1067
|
+
<tr>
|
|
1068
|
+
<td colspan="5" class="text-center pt-18">
|
|
1069
|
+
<a href="https://www.elabscience.com/search?category=metabolism-assays&keywords=NO" class="button font-bold decoration-none py-8">Discover More NO Detection Products</a>
|
|
1070
|
+
</td>
|
|
1071
|
+
</tr>
|
|
1072
|
+
</tbody>
|
|
1073
|
+
</table>
|
|
1074
|
+
</td>
|
|
1075
|
+
<td></td>
|
|
1076
|
+
</tr>
|
|
1077
|
+
|
|
1078
|
+
<tr>
|
|
1079
|
+
<td colspan="4" class="h-24"></td>
|
|
1080
|
+
</tr>
|
|
1081
|
+
|
|
1082
|
+
<tr>
|
|
1083
|
+
<td></td>
|
|
1084
|
+
<td colspan="2">
|
|
1085
|
+
<table cellspacing="0" cellpadding="0" border="0">
|
|
1086
|
+
<colgroup>
|
|
1087
|
+
<col width="40%" />
|
|
1088
|
+
<col />
|
|
1089
|
+
</colgroup>
|
|
1090
|
+
|
|
1091
|
+
<tbody class="align-middle">
|
|
1092
|
+
<tr>
|
|
1093
|
+
<td colspan="2" class="pb-16">
|
|
1094
|
+
<span class="title">Recombinant Proteins for Functional Research</span>
|
|
1095
|
+
</td>
|
|
1096
|
+
</tr>
|
|
1097
|
+
|
|
1098
|
+
<tr>
|
|
1099
|
+
<td style="padding-right: 12px;" class="image-box">
|
|
1100
|
+
<a href="https://www.elabscience.com/products/recombinant-proteins">
|
|
1101
|
+
<img src="https://elabcomfile.oss-us-west-1.aliyuncs.com/edm/202604231652/Recombinant Proteins for Functional Research.webp" />
|
|
1102
|
+
</a>
|
|
1103
|
+
</td>
|
|
1104
|
+
<td>
|
|
1105
|
+
<p class="circle pb-6">4,000+ high-quality proteins across key research areas</p>
|
|
1106
|
+
<p class="circle pb-6">Includes cytokines, growth factors, immune checkpoints, CD antigens & more</p>
|
|
1107
|
+
<p class="circle pb-6">High bioactivity for cell culture, signaling, and assay development</p>
|
|
1108
|
+
<p class="circle">Reliable supply for screening, validation, and translational research</p>
|
|
1109
|
+
</td>
|
|
1110
|
+
</tr>
|
|
1111
|
+
|
|
1112
|
+
<tr>
|
|
1113
|
+
<td colspan="2" class="pt-16">
|
|
1114
|
+
<span class="star color-orange text-size-[14px]">Designed for immunology, oncology, stem cell, and drug discovery studies.</span>
|
|
1115
|
+
</td>
|
|
1116
|
+
</tr>
|
|
1117
|
+
|
|
1118
|
+
<tr>
|
|
1119
|
+
<td colspan="2" class="text-right pt-18">
|
|
1120
|
+
<a href="https://www.elabscience.com/products/recombinant-proteins" class="button font-bold decoration-none py-8">Explore 4,000+ Recombinant Proteins Now</a>
|
|
1121
|
+
</td>
|
|
1122
|
+
</tr>
|
|
1123
|
+
</tbody>
|
|
1124
|
+
</table>
|
|
1125
|
+
</td>
|
|
1126
|
+
<td></td>
|
|
1127
|
+
</tr>
|
|
1128
|
+
|
|
1129
|
+
<tr>
|
|
1130
|
+
<td colspan="4" class="h-36"></td>
|
|
1131
|
+
</tr>
|
|
1132
|
+
|
|
1133
|
+
<tr>
|
|
1134
|
+
<td></td>
|
|
1135
|
+
<td colspan="2">
|
|
1136
|
+
<table cellspacing="0" cellpadding="0" border="0">
|
|
1137
|
+
<colgroup>
|
|
1138
|
+
<col width="40%" />
|
|
1139
|
+
<col />
|
|
1140
|
+
</colgroup>
|
|
1141
|
+
|
|
1142
|
+
<tbody class="align-middle">
|
|
1143
|
+
<tr>
|
|
1144
|
+
<td colspan="2" class="pb-16">
|
|
1145
|
+
<span class="title">Purified Antibodies for Flow Cytometry</span>
|
|
1146
|
+
</td>
|
|
1147
|
+
</tr>
|
|
1148
|
+
|
|
1149
|
+
<tr>
|
|
1150
|
+
<td style="padding-right: 12px;" class="image-box">
|
|
1151
|
+
<a href="https://www.elabscience.com/search?keywords=purified">
|
|
1152
|
+
<img src="https://elabcomfile.oss-us-west-1.aliyuncs.com/edm/202604231652/Purified Antibodies for Flow Cytometry.webp" />
|
|
1153
|
+
</a>
|
|
1154
|
+
</td>
|
|
1155
|
+
<td>
|
|
1156
|
+
<p class="circle pb-6">Amplify weak signals via indirect staining for low-abundance targets & rare cells</p>
|
|
1157
|
+
<p class="circle pb-6">Enables user-defined fluorophore conjugation for flexible multicolor panel design</p>
|
|
1158
|
+
<p class="circle pb-6">Preserve cell health in live cell sorting & functional assays</p>
|
|
1159
|
+
<p class="circle">Delivers high specificity, high sensitivity, and excellent lot-to-lot consistency</p>
|
|
1160
|
+
</td>
|
|
1161
|
+
</tr>
|
|
1162
|
+
|
|
1163
|
+
<tr>
|
|
1164
|
+
<td colspan="2" class="pt-16">
|
|
1165
|
+
<p class="text-size-[18px] font-bold">Backed by Elabscience quality:</p>
|
|
1166
|
+
<p class="color-primary">>98% purity | High specificity | Exceptional consistency & stability</p>
|
|
1167
|
+
</td>
|
|
1168
|
+
</tr>
|
|
1169
|
+
|
|
1170
|
+
<tr>
|
|
1171
|
+
<td colspan="2" class="pt-12">
|
|
1172
|
+
<span class="star color-orange text-size-[14px]">Built for complex panels, novel targets, and high-throughput workflows.</span>
|
|
1173
|
+
</td>
|
|
1174
|
+
</tr>
|
|
1175
|
+
|
|
1176
|
+
<tr>
|
|
1177
|
+
<td colspan="2" class="text-right pt-18">
|
|
1178
|
+
<a href="https://www.elabscience.com/search?keywords=purified" class="button font-bold decoration-none py-8">Upgrade Your Flow Cytometry Performance</a>
|
|
1179
|
+
</td>
|
|
1180
|
+
</tr>
|
|
1181
|
+
</tbody>
|
|
1182
|
+
</table>
|
|
1183
|
+
</td>
|
|
1184
|
+
<td></td>
|
|
1185
|
+
</tr>
|
|
1186
|
+
|
|
1187
|
+
<tr>
|
|
1188
|
+
<td colspan="4" class="h-36"></td>
|
|
1189
|
+
</tr>
|
|
1190
|
+
|
|
1191
|
+
<tr>
|
|
1192
|
+
<td></td>
|
|
1193
|
+
<td colspan="2">
|
|
1194
|
+
<table cellspacing="0" cellpadding="0" border="0">
|
|
1195
|
+
<colgroup>
|
|
1196
|
+
<col width="40%" />
|
|
1197
|
+
<col />
|
|
1198
|
+
</colgroup>
|
|
1199
|
+
|
|
1200
|
+
<tbody class="align-middle">
|
|
1201
|
+
<tr>
|
|
1202
|
+
<td colspan="2" class="pb-16">
|
|
1203
|
+
<span class="title">Rabbit Monoclonal Antibodies</span>
|
|
1204
|
+
</td>
|
|
1205
|
+
</tr>
|
|
1206
|
+
|
|
1207
|
+
<tr>
|
|
1208
|
+
<td style="padding-right: 12px;" class="image-box">
|
|
1209
|
+
<a href="https://www.elabscience.com/products/rabbit-monoclonal-antibodies">
|
|
1210
|
+
<img src="https://elabcomfile.oss-us-west-1.aliyuncs.com/edm/202604231652/Rabbit Monoclonal Antibodies.webp" />
|
|
1211
|
+
</a>
|
|
1212
|
+
</td>
|
|
1213
|
+
<td>
|
|
1214
|
+
<p class="circle pb-6">Detect challenging & low-abundance targets with high-affinity binding</p>
|
|
1215
|
+
<p class="circle pb-6">Recognize unique epitopes often missed by mouse mAbs</p>
|
|
1216
|
+
<p class="circle pb-6">Achieve ultra-low cross-reactivity in complex samples</p>
|
|
1217
|
+
<p class="circle">Sequence-verified antibodies ensure lot-to-lot consistency and reproducibility</p>
|
|
1218
|
+
</td>
|
|
1219
|
+
</tr>
|
|
1220
|
+
|
|
1221
|
+
<tr>
|
|
1222
|
+
<td colspan="2" class="pt-16">
|
|
1223
|
+
<p class="text-size-[18px] font-bold">Backed by advanced rabbit monoclonal technology:</p>
|
|
1224
|
+
<p class="color-primary">High specificity | Superior signal-to-noise | 100% lot consistency | Ethical in vitro production</p>
|
|
1225
|
+
</td>
|
|
1226
|
+
</tr>
|
|
1227
|
+
|
|
1228
|
+
<tr>
|
|
1229
|
+
<td colspan="2" class="pt-12">
|
|
1230
|
+
<span class="star color-orange text-size-[14px]">Ideal for IHC, IF, IP, FCM and research requiring high sensitivity & precision.</span>
|
|
1231
|
+
</td>
|
|
1232
|
+
</tr>
|
|
1233
|
+
|
|
1234
|
+
<tr>
|
|
1235
|
+
<td colspan="2" class="text-right pt-18">
|
|
1236
|
+
<a href="https://www.elabscience.com/products/rabbit-monoclonal-antibodies" class="button-orange font-bold decoration-none text-size-[14px]">Explore Rabbit Monoclonal Antibodies Now</a>
|
|
1237
|
+
</td>
|
|
1238
|
+
</tr>
|
|
1239
|
+
</tbody>
|
|
1240
|
+
</table>
|
|
1241
|
+
</td>
|
|
1242
|
+
<td></td>
|
|
1243
|
+
</tr>
|
|
1244
|
+
|
|
1245
|
+
<tr>
|
|
1246
|
+
<td colspan="4" class="h-24"></td>
|
|
1247
|
+
</tr>
|
|
1248
|
+
|
|
1249
|
+
<tr>
|
|
1250
|
+
<td></td>
|
|
1251
|
+
<td colspan="2">
|
|
1252
|
+
<table cellspacing="0" cellpadding="0" border="0">
|
|
1253
|
+
<colgroup>
|
|
1254
|
+
<col width="25%" />
|
|
1255
|
+
<col />
|
|
1256
|
+
</colgroup>
|
|
1257
|
+
|
|
1258
|
+
<tbody class="align-top">
|
|
1259
|
+
<tr>
|
|
1260
|
+
<td rowspan="2" style="padding-right: 12px;" class="image-box">
|
|
1261
|
+
<img src="https://elabcomfile.oss-us-west-1.aliyuncs.com/edm/202604211539/Cyclic guanosine.webp" />
|
|
1262
|
+
</td>
|
|
1263
|
+
<td style="padding-bottom: 24px;" class="h-0">
|
|
1264
|
+
<a href="https://www.nature.com/articles/s41392-026-02624-5" class="decoration-none">
|
|
1265
|
+
<strong>Cyclic guanosine monophosphate-protein kinase G signaling attenuates aortic valve calcification through ULK1-mediated autophagy</strong>
|
|
1266
|
+
</a>
|
|
1267
|
+
</td>
|
|
1268
|
+
</tr>
|
|
1269
|
+
|
|
1270
|
+
<tr>
|
|
1271
|
+
<td>
|
|
1272
|
+
<p style="margin-bottom: 12px;"><strong>Publication Date:</strong> March 12 2026</p>
|
|
1273
|
+
<p style="margin-bottom: 12px;"><strong>Journal:</strong> <i>Signal Transduction and Targeted Therapy</i></p>
|
|
1274
|
+
<p style="margin-bottom: 12px;"><strong>Impact Factor:</strong> 52.7</p>
|
|
1275
|
+
<p><strong>DOI:</strong> 10.1038/s41392-026-02624-5</p>
|
|
1276
|
+
</td>
|
|
1277
|
+
</tr>
|
|
1278
|
+
</tbody>
|
|
1279
|
+
</table>
|
|
1280
|
+
</td>
|
|
1281
|
+
<td></td>
|
|
1282
|
+
</tr>
|
|
1283
|
+
|
|
1284
|
+
<tr>
|
|
1285
|
+
<td colspan="4" class="h-24"></td>
|
|
1286
|
+
</tr>
|
|
1287
|
+
|
|
1288
|
+
<tr>
|
|
1289
|
+
<td></td>
|
|
1290
|
+
<td colspan="2"><strong>Keywords:</strong> Calcific Aortic Valve Disease(CAVD), cGMP-PKG Signaling, ULK1-mediated Autophagy</td>
|
|
1291
|
+
<td></td>
|
|
1292
|
+
</tr>
|
|
1293
|
+
|
|
1294
|
+
<tr>
|
|
1295
|
+
<td colspan="4" class="h-24"></td>
|
|
1296
|
+
</tr>
|
|
1297
|
+
|
|
1298
|
+
<tr>
|
|
1299
|
+
<td></td>
|
|
1300
|
+
<td colspan="2">
|
|
1301
|
+
<table cellspacing="0" cellpadding="0" border="0" class="table-dashed border-separate" style="padding: 16px;">
|
|
1302
|
+
<colgroup>
|
|
1303
|
+
<col width="40%" />
|
|
1304
|
+
<col />
|
|
1305
|
+
</colgroup>
|
|
1306
|
+
|
|
1307
|
+
<tbody class="align-top">
|
|
1308
|
+
<tr>
|
|
1309
|
+
<td colspan="2"></td>
|
|
1310
|
+
</tr>
|
|
1311
|
+
|
|
1312
|
+
<tr>
|
|
1313
|
+
<td rowspan="2" style="padding-right: 12px;" class="image-box align-middle">
|
|
1314
|
+
<img src="https://elabcomfile.oss-us-west-1.aliyuncs.com/edm/202604211539/Serum cGMP.webp" />
|
|
1315
|
+
</td>
|
|
1316
|
+
<td style="padding-bottoms: 24px;" class="h-0">
|
|
1317
|
+
<p>
|
|
1318
|
+
This study first demonstrates the protective role of the cGMP-PKG pathway in calcific aortic valve disease (CAVD). CAVD patients show reduced serum cGMP and suppressed PKG signaling. Activating cGMP-PKG, especially with vericiguat, alleviates valve calcification, while PKGI loss aggravates it. Mechanistically, PKGI directly phosphorylates ULK1 at Ser556 to activate autophagy, improving mitochondrial function and inhibiting osteogenic differentiation. These findings suggest that vericiguat, an oral drug already used for heart failure, could be repurposed for CAVD treatment.
|
|
1319
|
+
</p>
|
|
1320
|
+
</td>
|
|
1321
|
+
</tr>
|
|
1322
|
+
|
|
1323
|
+
<tr>
|
|
1324
|
+
<td>
|
|
1325
|
+
<!-- <a href="https://www.procellsystem.com/resources/publications" class="button decoration-none">View More Publications</a> -->
|
|
1326
|
+
</td>
|
|
1327
|
+
</tr>
|
|
1328
|
+
|
|
1329
|
+
<tr>
|
|
1330
|
+
<td colspan="2"></td>
|
|
1331
|
+
</tr>
|
|
1332
|
+
</tbody>
|
|
1333
|
+
</table>
|
|
1334
|
+
</td>
|
|
1335
|
+
<td></td>
|
|
1336
|
+
</tr>
|
|
1337
|
+
|
|
1338
|
+
<tr>
|
|
1339
|
+
<td colspan="4" class="h-24"></td>
|
|
1340
|
+
</tr>
|
|
1341
|
+
|
|
1342
|
+
<tr>
|
|
1343
|
+
<td></td>
|
|
1344
|
+
<td colspan="2">Serum cGMP, VIC mitochondrial membrane potential (JC-1), and ATP content were measured using Elabscience<sup>®</sup> cGMP(Cyclic GMP) ELISA Kit, Mitochondrial Membrane Potential Assay Kit (with JC-1), and ATP Colorimetric Assay Kit (Enzyme Method), respectively.</td>
|
|
1345
|
+
<td></td>
|
|
1346
|
+
</tr>
|
|
1347
|
+
|
|
1348
|
+
<tr>
|
|
1349
|
+
<td colspan="4" class="h-24"></td>
|
|
1350
|
+
</tr>
|
|
1351
|
+
|
|
1352
|
+
<tr>
|
|
1353
|
+
<td></td>
|
|
1354
|
+
<td colspan="2">
|
|
1355
|
+
<span class="gold-title">Must-Read Cancer Research Insights for AACR 2026</span>
|
|
1356
|
+
</td>
|
|
1357
|
+
<td></td>
|
|
1358
|
+
</tr>
|
|
1359
|
+
|
|
1360
|
+
<tr>
|
|
1361
|
+
<td colspan="4" class="h-24"></td>
|
|
1362
|
+
</tr>
|
|
1363
|
+
|
|
1364
|
+
<tr>
|
|
1365
|
+
<td></td>
|
|
1366
|
+
<td colspan="2">
|
|
1367
|
+
<table cellspacing="0" cellpadding="0" border="0">
|
|
1368
|
+
<colgroup>
|
|
1369
|
+
<col width="35%" />
|
|
1370
|
+
<col />
|
|
1371
|
+
</colgroup>
|
|
1372
|
+
|
|
1373
|
+
<tbody class="align-top">
|
|
1374
|
+
<tr>
|
|
1375
|
+
<td rowspan="2" style="padding-right: 12px;" class="image-box">
|
|
1376
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/edm202604011140/one.jpg" />
|
|
1377
|
+
</td>
|
|
1378
|
+
<td style="padding-bottom: 24px;" class="h-0"><strong>Why Subset Precision Matters?</strong></td>
|
|
1379
|
+
</tr>
|
|
1380
|
+
|
|
1381
|
+
<tr>
|
|
1382
|
+
<td>
|
|
1383
|
+
<p>Precision where it counts. Whether you are studying functional differentiation, cell exhaustion, or memory persistence, the purity of your starting population dictates the integrity of your results. EasySort™ cell isolation kits ensures your downstream data reflects true cellular biology.</p>
|
|
1384
|
+
</td>
|
|
1385
|
+
</tr>
|
|
1386
|
+
</tbody>
|
|
1387
|
+
</table>
|
|
1388
|
+
</td>
|
|
1389
|
+
<td></td>
|
|
1390
|
+
</tr>
|
|
1391
|
+
|
|
1392
|
+
<tr>
|
|
1393
|
+
<td colspan="4" class="h-48"></td>
|
|
1394
|
+
</tr>
|
|
1395
|
+
|
|
1396
|
+
<tr>
|
|
1397
|
+
<td></td>
|
|
1398
|
+
<td colspan="2">
|
|
1399
|
+
<table cellspacing="0" cellpadding="0" border="0">
|
|
1400
|
+
<colgroup>
|
|
1401
|
+
<col width="35%" />
|
|
1402
|
+
<col />
|
|
1403
|
+
</colgroup>
|
|
1404
|
+
|
|
1405
|
+
<tbody class="align-top">
|
|
1406
|
+
<tr>
|
|
1407
|
+
<td rowspan="3" style="padding-right: 12px;" class="image-box">
|
|
1408
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/edm202604011140/two.jpg" />
|
|
1409
|
+
</td>
|
|
1410
|
+
<td style="padding-bottom: 24px;" class="h-0"><strong>Advantages of EasySort™ Cell Isolation Kits</strong></td>
|
|
1411
|
+
</tr>
|
|
1412
|
+
|
|
1413
|
+
<tr>
|
|
1414
|
+
<td>
|
|
1415
|
+
<p>Engineered for speed and cell viability, EasySort™ cell isolation kits provide:</p>
|
|
1416
|
+
<p><strong><span class="color-orange">●</span> Superior Purity & Recovery:</strong> Optimized for consistent, high-yield results across diverse subsets.</p>
|
|
1417
|
+
<p><strong><span class="color-orange">●</span> Rapid Workflow:</strong> Go from sample to isolated cells in just 14–18 minutes.</p>
|
|
1418
|
+
<p><strong><span class="color-orange">●</span> Physiological Integrity:</strong> Gentle, nagative</p>
|
|
1419
|
+
<p>isolation-based processing keeps cells "experment-ready" for sensitive functional assays and flow cytometry.</p>
|
|
1420
|
+
</td>
|
|
1421
|
+
</tr>
|
|
1422
|
+
|
|
1423
|
+
<tr>
|
|
1424
|
+
<td style="padding-top: 24px;" class="text-right">
|
|
1425
|
+
<a href="https://www.elabscience.com/products/cell-isolation-products" class="button font-bold decoration-none">Learn More</a>
|
|
1426
|
+
</td>
|
|
1427
|
+
</tr>
|
|
1428
|
+
</tbody>
|
|
1429
|
+
</table>
|
|
1430
|
+
</td>
|
|
1431
|
+
<td></td>
|
|
1432
|
+
</tr>
|
|
1433
|
+
|
|
1434
|
+
<tr>
|
|
1435
|
+
<td colspan="4" class="h-48"></td>
|
|
1436
|
+
</tr>
|
|
1437
|
+
|
|
1438
|
+
<tr>
|
|
1439
|
+
<td></td>
|
|
1440
|
+
<td colspan="2">
|
|
1441
|
+
<table cellspacing="0" cellpadding="0" border="0">
|
|
1442
|
+
<colgroup>
|
|
1443
|
+
<col width="35%" />
|
|
1444
|
+
<col />
|
|
1445
|
+
</colgroup>
|
|
1446
|
+
|
|
1447
|
+
<tbody class="align-top">
|
|
1448
|
+
<tr>
|
|
1449
|
+
<td rowspan="3" style="padding-right: 12px;" class="image-box">
|
|
1450
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/edm202604011140/three.jpg" />
|
|
1451
|
+
</td>
|
|
1452
|
+
<td style="padding-bottom: 24px;" class="h-0"><strong>Claim Your Free EasySort™ Evaluation Kit</strong></td>
|
|
1453
|
+
</tr>
|
|
1454
|
+
|
|
1455
|
+
<tr>
|
|
1456
|
+
<td>
|
|
1457
|
+
<p>We are so confident in our performance that we're offering a complete trial package to help you upgrade your workflow:</p>
|
|
1458
|
+
<p><strong>1. Request Your Free Trial:</strong> Receive a 10-assay kit plus an EasySort™ -5 Magnet (EC001), an <span class="color-orange">$852 total value</span>.</p>
|
|
1459
|
+
<p><strong>2. Share Your Insights:</strong> Submit a brief feedback report and receive a <span class="color-orange">$50 voucher</span> for your next order.</p>
|
|
1460
|
+
<p><strong>3. Keep the Gear:</strong> Purchase 500+ assays and the <span class="color-orange">EasySort™ -5 Magnet is yours to keep</span>.</p>
|
|
1461
|
+
</td>
|
|
1462
|
+
</tr>
|
|
1463
|
+
|
|
1464
|
+
<tr>
|
|
1465
|
+
<td style="padding-top: 24px;" class="text-right">
|
|
1466
|
+
<a href="https://www.elabscience.com/about/promotions/39" class="button font-bold decoration-none">Start My Free Trial</a>
|
|
1467
|
+
</td>
|
|
1468
|
+
</tr>
|
|
1469
|
+
</tbody>
|
|
1470
|
+
</table>
|
|
1471
|
+
</td>
|
|
1472
|
+
<td></td>
|
|
1473
|
+
</tr>
|
|
1474
|
+
|
|
1475
|
+
<tr>
|
|
1476
|
+
<td colspan="4" class="h-24"></td>
|
|
1477
|
+
</tr>
|
|
1478
|
+
|
|
1479
|
+
<tr>
|
|
1480
|
+
<td></td>
|
|
1481
|
+
<td colspan="2" class="text-center">
|
|
1482
|
+
<span class="circle-title">Citations of Elabscience Products</span>
|
|
1483
|
+
</td>
|
|
1484
|
+
<td></td>
|
|
1485
|
+
</tr>
|
|
1486
|
+
|
|
1487
|
+
<tr>
|
|
1488
|
+
<td colspan="4" class="h-18"></td>
|
|
1489
|
+
</tr>
|
|
1490
|
+
|
|
1491
|
+
<tr>
|
|
1492
|
+
<td></td>
|
|
1493
|
+
<td colspan="2">
|
|
1494
|
+
<table cellspacing="0" cellpadding="0" border="0" class="table-bordered">
|
|
1495
|
+
<colgroup>
|
|
1496
|
+
<col />
|
|
1497
|
+
<col />
|
|
1498
|
+
<col />
|
|
1499
|
+
</colgroup>
|
|
1500
|
+
|
|
1501
|
+
<thead>
|
|
1502
|
+
<tr>
|
|
1503
|
+
<th>Product Name</th>
|
|
1504
|
+
<th>
|
|
1505
|
+
<a href="https://www.procellsystem.com/p/neurobasal-medium-pm151223-69253" class="decoration-none text-link-hover color-white">Neurobasal Medium</a>
|
|
1506
|
+
</th>
|
|
1507
|
+
<th>
|
|
1508
|
+
<a href="https://www.procellsystem.com/p/neurobasal-a-medium-pm151236-96788" class="decoration-none color-white">Neurobasal-A Medium</a>
|
|
1509
|
+
</th>
|
|
1510
|
+
</tr>
|
|
1511
|
+
</thead>
|
|
1512
|
+
|
|
1513
|
+
<tbody>
|
|
1514
|
+
<tr>
|
|
1515
|
+
<td>Primary Application</td>
|
|
1516
|
+
<td>Short-term or long-term maintenance and cultivation of neuronal cells in <strong>pre-production and embryonic.</strong></td>
|
|
1517
|
+
<td>Short-term or long-term maintenance and culture of both <strong>newly generated and mature neuronal cells.</strong></td>
|
|
1518
|
+
</tr>
|
|
1519
|
+
|
|
1520
|
+
<tr>
|
|
1521
|
+
<td>Supplements</td>
|
|
1522
|
+
<td colspan="2">Does not contain L-glutamine and requires the addition of <a href="https://www.procellsystem.com/p/b-27-neuron-supplement-with-vitamin-a-50-pb180637-69953" class="decoration-none font-bold text-link">B-27 neuron Supplement with vitamin A, 50×</a></td>
|
|
1523
|
+
</tr>
|
|
1524
|
+
|
|
1525
|
+
<tr>
|
|
1526
|
+
<td>Quality Control</td>
|
|
1527
|
+
<td colspan="2">Sterilized by 0.1 μm filtration, Endotoxin Content < 3 EU/mL.</td>
|
|
1528
|
+
</tr>
|
|
1529
|
+
</tbody>
|
|
1530
|
+
</table>
|
|
1531
|
+
</td>
|
|
1532
|
+
<td></td>
|
|
1533
|
+
</tr>
|
|
1534
|
+
|
|
1535
|
+
<tr>
|
|
1536
|
+
<td colspan="4" class="h-16"></td>
|
|
1537
|
+
</tr>
|
|
1538
|
+
|
|
1539
|
+
<tr>
|
|
1540
|
+
<td></td>
|
|
1541
|
+
<td colspan="2">
|
|
1542
|
+
<span class="wifi-title">Cited Product</span>
|
|
1543
|
+
</td>
|
|
1544
|
+
<td></td>
|
|
1545
|
+
</tr>
|
|
1546
|
+
|
|
1547
|
+
<tr>
|
|
1548
|
+
<td colspan="4" class="h-12"></td>
|
|
1549
|
+
</tr>
|
|
1550
|
+
|
|
1551
|
+
<tr>
|
|
1552
|
+
<td></td>
|
|
1553
|
+
<td colspan="2">
|
|
1554
|
+
<table cellspacing="0" cellpadding="0" border="0" class="table-stripe text-center">
|
|
1555
|
+
<colgroup>
|
|
1556
|
+
<col />
|
|
1557
|
+
<col />
|
|
1558
|
+
<col />
|
|
1559
|
+
</colgroup>
|
|
1560
|
+
|
|
1561
|
+
<thead>
|
|
1562
|
+
<tr>
|
|
1563
|
+
<th>Product Name</th>
|
|
1564
|
+
<th>Cat. No.</th>
|
|
1565
|
+
<th>Product Type</th>
|
|
1566
|
+
</tr>
|
|
1567
|
+
</thead>
|
|
1568
|
+
|
|
1569
|
+
<tbody>
|
|
1570
|
+
<tr>
|
|
1571
|
+
<td>
|
|
1572
|
+
<a href="" class="text-link">MEM (with NEAA)</a>
|
|
1573
|
+
</td>
|
|
1574
|
+
<td>
|
|
1575
|
+
<a href="" class="text-link">PM150410</a>
|
|
1576
|
+
</td>
|
|
1577
|
+
<td rowspan="3">
|
|
1578
|
+
<a href="" class="text-link">Liquid Basal Medium</a>
|
|
1579
|
+
</td>
|
|
1580
|
+
</tr>
|
|
1581
|
+
|
|
1582
|
+
<tr>
|
|
1583
|
+
<td>
|
|
1584
|
+
<a href="" class="text-link">MEM (with NEAA)</a>
|
|
1585
|
+
</td>
|
|
1586
|
+
<td>
|
|
1587
|
+
<a href="" class="text-link">PM150410</a>
|
|
1588
|
+
</td>
|
|
1589
|
+
</tr>
|
|
1590
|
+
|
|
1591
|
+
<tr>
|
|
1592
|
+
<td>
|
|
1593
|
+
<a href="" class="text-link">MEM (with NEAA)</a>
|
|
1594
|
+
</td>
|
|
1595
|
+
<td>
|
|
1596
|
+
<a href="" class="text-link">PM150410</a>
|
|
1597
|
+
</td>
|
|
1598
|
+
</tr>
|
|
1599
|
+
|
|
1600
|
+
<tr>
|
|
1601
|
+
<td>
|
|
1602
|
+
<a href="" class="text-link">MEM (with NEAA)</a>
|
|
1603
|
+
</td>
|
|
1604
|
+
<td>
|
|
1605
|
+
<a href="" class="text-link">PM150410</a>
|
|
1606
|
+
</td>
|
|
1607
|
+
<td>
|
|
1608
|
+
<a href="" class="text-link">Liquid Basal Medium</a>
|
|
1609
|
+
</td>
|
|
1610
|
+
</tr>
|
|
1611
|
+
</tbody>
|
|
1612
|
+
</table>
|
|
1613
|
+
</td>
|
|
1614
|
+
<td></td>
|
|
1615
|
+
</tr>
|
|
1616
|
+
|
|
1617
|
+
<tr>
|
|
1618
|
+
<td colspan="4" class="h-16"></td>
|
|
1619
|
+
</tr>
|
|
1620
|
+
|
|
1621
|
+
<tr>
|
|
1622
|
+
<td></td>
|
|
1623
|
+
<td colspan="2">
|
|
1624
|
+
<span class="square-title">Recommended for you</span>
|
|
1625
|
+
</td>
|
|
1626
|
+
<td></td>
|
|
1627
|
+
</tr>
|
|
1628
|
+
|
|
1629
|
+
<tr>
|
|
1630
|
+
<td colspan="4" class="h-16"></td>
|
|
1631
|
+
</tr>
|
|
1632
|
+
|
|
1633
|
+
<tr>
|
|
1634
|
+
<td></td>
|
|
1635
|
+
<td colspan="2">
|
|
1636
|
+
<table cellspacing="0" cellpadding="0" border="0" class="table-stripe text-center">
|
|
1637
|
+
<colgroup>
|
|
1638
|
+
<col />
|
|
1639
|
+
<col />
|
|
1640
|
+
<col />
|
|
1641
|
+
</colgroup>
|
|
1642
|
+
|
|
1643
|
+
<tbody>
|
|
1644
|
+
<tr>
|
|
1645
|
+
<td><strong>Product Name</strong></td>
|
|
1646
|
+
<td><strong>Cat. No.</strong></td>
|
|
1647
|
+
<td><strong>Product Type</strong></td>
|
|
1648
|
+
</tr>
|
|
1649
|
+
|
|
1650
|
+
<tr>
|
|
1651
|
+
<td>
|
|
1652
|
+
<a href="" class="text-link">MEM (with NEAA)</a>
|
|
1653
|
+
</td>
|
|
1654
|
+
<td>
|
|
1655
|
+
<a href="" class="text-link">PM150410</a>
|
|
1656
|
+
</td>
|
|
1657
|
+
<td rowspan="3">
|
|
1658
|
+
<a href="" class="text-link">Liquid Basal Medium</a>
|
|
1659
|
+
</td>
|
|
1660
|
+
</tr>
|
|
1661
|
+
|
|
1662
|
+
<tr>
|
|
1663
|
+
<td>
|
|
1664
|
+
<a href="" class="text-link">MEM (with NEAA)</a>
|
|
1665
|
+
</td>
|
|
1666
|
+
<td>
|
|
1667
|
+
<a href="" class="text-link">PM150410</a>
|
|
1668
|
+
</td>
|
|
1669
|
+
</tr>
|
|
1670
|
+
|
|
1671
|
+
<tr>
|
|
1672
|
+
<td>
|
|
1673
|
+
<a href="" class="text-link">MEM (with NEAA)</a>
|
|
1674
|
+
</td>
|
|
1675
|
+
<td>
|
|
1676
|
+
<a href="" class="text-link">PM150410</a>
|
|
1677
|
+
</td>
|
|
1678
|
+
</tr>
|
|
1679
|
+
|
|
1680
|
+
<tr>
|
|
1681
|
+
<td>
|
|
1682
|
+
<a href="" class="text-link">MEM (with NEAA)</a>
|
|
1683
|
+
</td>
|
|
1684
|
+
<td>
|
|
1685
|
+
<a href="" class="text-link">PM150410</a>
|
|
1686
|
+
</td>
|
|
1687
|
+
<td>
|
|
1688
|
+
<a href="" class="text-link">Liquid Basal Medium</a>
|
|
1689
|
+
</td>
|
|
1690
|
+
</tr>
|
|
1691
|
+
</tbody>
|
|
1692
|
+
</table>
|
|
1693
|
+
</td>
|
|
1694
|
+
<td></td>
|
|
1695
|
+
</tr>
|
|
1696
|
+
|
|
1697
|
+
<tr>
|
|
1698
|
+
<td colspan="4" class="h-24"></td>
|
|
1699
|
+
</tr>
|
|
1700
|
+
|
|
1701
|
+
<tr>
|
|
1702
|
+
<td></td>
|
|
1703
|
+
<td colspan="2">
|
|
1704
|
+
<span class="square-title">Elabscience<sup>®</sup> Product Cited in This Literature</span>
|
|
1705
|
+
</td>
|
|
1706
|
+
<td></td>
|
|
1707
|
+
</tr>
|
|
1708
|
+
|
|
1709
|
+
<tr>
|
|
1710
|
+
<td colspan="4" class="h-12"></td>
|
|
1711
|
+
</tr>
|
|
1712
|
+
|
|
1713
|
+
<tr>
|
|
1714
|
+
<td></td>
|
|
1715
|
+
<td colspan="2">
|
|
1716
|
+
<table cellspacing="0" cellpadding="0" border="0" class="table-stripe text-center">
|
|
1717
|
+
<colgroup>
|
|
1718
|
+
<col />
|
|
1719
|
+
<col width="30%" />
|
|
1720
|
+
</colgroup>
|
|
1721
|
+
|
|
1722
|
+
<tbody>
|
|
1723
|
+
<tr>
|
|
1724
|
+
<td>Product</td>
|
|
1725
|
+
<td>Cat. No.</td>
|
|
1726
|
+
</tr>
|
|
1727
|
+
|
|
1728
|
+
<tr>
|
|
1729
|
+
<td>
|
|
1730
|
+
<a href="https://www.elabscience.com/p/atp-colorimetric-assay-kit-enzyme-method--e-bc-k774-m" class="text-link">ATP Colorimetric Assay Kit (Enzyme Method)</a>
|
|
1731
|
+
</td>
|
|
1732
|
+
<td>
|
|
1733
|
+
<a href="https://www.elabscience.com/p/atp-colorimetric-assay-kit-enzyme-method--e-bc-k774-m" class="text-link">E-BC-K774-M</a>
|
|
1734
|
+
</td>
|
|
1735
|
+
</tr>
|
|
1736
|
+
|
|
1737
|
+
<tr>
|
|
1738
|
+
<td>
|
|
1739
|
+
<a href="https://www.elabscience.com/p/cgmp-cyclic-gmp-elisa-kit--e-el-0083" class="text-link">cGMP(Cyclic GMP) ELISA Kit</a>
|
|
1740
|
+
</td>
|
|
1741
|
+
<td>
|
|
1742
|
+
<a href="https://www.elabscience.com/p/cgmp-cyclic-gmp-elisa-kit--e-el-0083" class="text-link">E-EL-0083</a>
|
|
1743
|
+
</td>
|
|
1744
|
+
</tr>
|
|
1745
|
+
|
|
1746
|
+
<tr>
|
|
1747
|
+
<td>
|
|
1748
|
+
<a href="https://www.elabscience.com/p/mitochondrial-membrane-potential-assay-kit-with-jc-1--e-ck-a301" class="text-link">Mitochondrial Membrane Potential Assay Kit (with JC-1)</a>
|
|
1749
|
+
</td>
|
|
1750
|
+
<td>
|
|
1751
|
+
<a href="https://www.elabscience.com/p/mitochondrial-membrane-potential-assay-kit-with-jc-1--e-ck-a301" class="text-link">E-CK-A301</a>
|
|
1752
|
+
</td>
|
|
1753
|
+
</tr>
|
|
1754
|
+
</tbody>
|
|
1755
|
+
</table>
|
|
1756
|
+
</td>
|
|
1757
|
+
<td></td>
|
|
1758
|
+
</tr>
|
|
1759
|
+
|
|
1760
|
+
<tr>
|
|
1761
|
+
<td colspan="4" class="h-24"></td>
|
|
1762
|
+
</tr>
|
|
1763
|
+
|
|
1764
|
+
<tr>
|
|
1765
|
+
<td></td>
|
|
1766
|
+
<td colspan="2">
|
|
1767
|
+
<span class="square-title">Recommended for you</span>
|
|
1768
|
+
</td>
|
|
1769
|
+
<td></td>
|
|
1770
|
+
</tr>
|
|
1771
|
+
|
|
1772
|
+
<tr>
|
|
1773
|
+
<td colspan="4" class="h-12"></td>
|
|
1774
|
+
</tr>
|
|
1775
|
+
|
|
1776
|
+
<tr>
|
|
1777
|
+
<td></td>
|
|
1778
|
+
<td colspan="2">
|
|
1779
|
+
<table cellspacing="0" cellpadding="0" border="0" class="table-stripe text-center">
|
|
1780
|
+
<colgroup>
|
|
1781
|
+
<col />
|
|
1782
|
+
<col />
|
|
1783
|
+
<col />
|
|
1784
|
+
</colgroup>
|
|
1785
|
+
|
|
1786
|
+
<tbody>
|
|
1787
|
+
<tr>
|
|
1788
|
+
<td>
|
|
1789
|
+
<a href="https://www.procellsystem.com/p/dmem-f12-pm150312-68139" class="decoration-none text-link-hover">
|
|
1790
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202604211419/PM150312-500mL-cropped.webp" style="height: 108px;" />
|
|
1791
|
+
<p>DMEM/F12</p>
|
|
1792
|
+
<p>Cat. No.: PM150312</p>
|
|
1793
|
+
</a>
|
|
1794
|
+
</td>
|
|
1795
|
+
|
|
1796
|
+
<td>
|
|
1797
|
+
<a href="https://www.procellsystem.com/p/dmem-low-glucose-pm150220-70471" class="decoration-none text-link-hover">
|
|
1798
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202604211419/PM150220-500mL-cropped.webp" style="height: 108px;" />
|
|
1799
|
+
<p>DMEM (Low glucose)</p>
|
|
1800
|
+
<p>Cat. No.: PM150220</p>
|
|
1801
|
+
</a>
|
|
1802
|
+
</td>
|
|
1803
|
+
|
|
1804
|
+
<td>
|
|
1805
|
+
<a href="https://www.procellsystem.com/p/mem-with-neaa-pm150410-71162" class="decoration-none text-link-hover">
|
|
1806
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202604211419/PM150410-500mL-cropped.webp" style="height: 108px;" />
|
|
1807
|
+
<p>MEM, with NEAA</p>
|
|
1808
|
+
<p>Cat. No.: PM150410</p>
|
|
1809
|
+
</a>
|
|
1810
|
+
</td>
|
|
1811
|
+
</tr>
|
|
1812
|
+
</tbody>
|
|
1813
|
+
</table>
|
|
1814
|
+
</td>
|
|
1815
|
+
<td></td>
|
|
1816
|
+
</tr>
|
|
1817
|
+
</tbody>
|
|
1818
|
+
</table>
|
|
1819
|
+
<!-- 主体 end -->
|
|
1820
|
+
|
|
1821
|
+
<!-- 页尾 start -->
|
|
1822
|
+
<table cellspacing="0" cellpadding="0" border="0" class="footer">
|
|
1823
|
+
<colgroup>
|
|
1824
|
+
<col width="10px" />
|
|
1825
|
+
<col />
|
|
1826
|
+
<col />
|
|
1827
|
+
<col width="10px" />
|
|
1828
|
+
</colgroup>
|
|
1829
|
+
|
|
1830
|
+
<tbody>
|
|
1831
|
+
<tr>
|
|
1832
|
+
<td colspan="4" class="h-24"></td>
|
|
1833
|
+
</tr>
|
|
1834
|
+
|
|
1835
|
+
<tr>
|
|
1836
|
+
<td></td>
|
|
1837
|
+
<td colspan="2">
|
|
1838
|
+
<table cellspacing="0" cellpadding="0" border="0" class="connect-us text-center">
|
|
1839
|
+
<colgroup>
|
|
1840
|
+
<col width="20%" />
|
|
1841
|
+
<col />
|
|
1842
|
+
<col />
|
|
1843
|
+
<col />
|
|
1844
|
+
<col />
|
|
1845
|
+
<!-- <col /> -->
|
|
1846
|
+
<col />
|
|
1847
|
+
<col />
|
|
1848
|
+
<col width="20%" />
|
|
1849
|
+
</colgroup>
|
|
1850
|
+
|
|
1851
|
+
<tbody>
|
|
1852
|
+
<tr>
|
|
1853
|
+
<td></td>
|
|
1854
|
+
<td colspan="6" class="connect-us-title font-bold text-size-[14px]">Connect with us</td>
|
|
1855
|
+
<td></td>
|
|
1856
|
+
</tr>
|
|
1857
|
+
|
|
1858
|
+
<tr>
|
|
1859
|
+
<td></td>
|
|
1860
|
+
<td class="line-height-0 font-size-0">
|
|
1861
|
+
<a href="https://www.youtube.com/c/Elabscience_Bio" class="image-box">
|
|
1862
|
+
<img src="https://oss.pri-cella.com/edm/edmfooter/1.png" alt="" />
|
|
1863
|
+
</a>
|
|
1864
|
+
</td>
|
|
1865
|
+
<td class="line-height-0 font-size-0">
|
|
1866
|
+
<a href="https://www.linkedin.com/company/elabscience" class="image-box">
|
|
1867
|
+
<img src="https://oss.pri-cella.com/edm/edmfooter/2.png" alt="" />
|
|
1868
|
+
</a>
|
|
1869
|
+
</td>
|
|
1870
|
+
<td class="line-height-0 font-size-0">
|
|
1871
|
+
<a href="https://www.facebook.com/elabscience.bionovation" class="image-box">
|
|
1872
|
+
<img src="https://oss.pri-cella.com/edm/edmfooter/3.png" alt="" />
|
|
1873
|
+
</a>
|
|
1874
|
+
</td>
|
|
1875
|
+
<td class="line-height-0 font-size-0">
|
|
1876
|
+
<a href="https://www.instagram.com/elabscience_bionovation/" class="image-box">
|
|
1877
|
+
<img src="https://oss.pri-cella.com/edm/edmfooter/5.png" alt="" />
|
|
1878
|
+
</a>
|
|
1879
|
+
</td>
|
|
1880
|
+
<!-- <td class="line-height-0 font-size-0">
|
|
1881
|
+
<a href="https://www.pinterest.com/elabscience/" class="image-box">
|
|
1882
|
+
<img src="https://oss.pri-cella.com/edm/edmfooter/6.png" alt="" />
|
|
1883
|
+
</a>
|
|
1884
|
+
</td> -->
|
|
1885
|
+
<td class="line-height-0 font-size-0">
|
|
1886
|
+
<a href="https://www.tiktok.com/@elabscience" class="image-box">
|
|
1887
|
+
<img src="https://oss.pri-cella.com/edm/edmfooter/7.png" alt="" />
|
|
1888
|
+
</a>
|
|
1889
|
+
</td>
|
|
1890
|
+
<td class="line-height-0 font-size-0">
|
|
1891
|
+
<a href="https://wa.me/13468889004" class="image-box">
|
|
1892
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/edmfooter/what'sup.webp" alt="" />
|
|
1893
|
+
</a>
|
|
1894
|
+
</td>
|
|
1895
|
+
<td></td>
|
|
1896
|
+
</tr>
|
|
1897
|
+
|
|
1898
|
+
<tr>
|
|
1899
|
+
<td></td>
|
|
1900
|
+
<td colspan="6" class="connect-us-separator"></td>
|
|
1901
|
+
<td></td>
|
|
1902
|
+
</tr>
|
|
1903
|
+
</tbody>
|
|
1904
|
+
</table>
|
|
1905
|
+
</td>
|
|
1906
|
+
<td></td>
|
|
1907
|
+
</tr>
|
|
1908
|
+
|
|
1909
|
+
<tr>
|
|
1910
|
+
<td colspan="4" class="h-24"></td>
|
|
1911
|
+
</tr>
|
|
1912
|
+
|
|
1913
|
+
<tr>
|
|
1914
|
+
<td></td>
|
|
1915
|
+
<td colspan="2">
|
|
1916
|
+
<table cellspacing="0" cellpadding="0" border="0" class="contact-us text-center align-middle">
|
|
1917
|
+
<colgroup>
|
|
1918
|
+
<col />
|
|
1919
|
+
</colgroup>
|
|
1920
|
+
|
|
1921
|
+
<tbody>
|
|
1922
|
+
<tr>
|
|
1923
|
+
<td>
|
|
1924
|
+
<strong>Elabscience Bionovation Inc.</strong>
|
|
1925
|
+
</td>
|
|
1926
|
+
</tr>
|
|
1927
|
+
|
|
1928
|
+
<tr>
|
|
1929
|
+
<td>
|
|
1930
|
+
<img src="https://file.elabscience.com/edm/demimg2024428/电话.png" alt="" class="align-middle" />
|
|
1931
|
+
<span class="align-middle">Toll-free: <a href="tel:1-888-852-8623" class="decoration-none">1-888-852-8623</a></span>
|
|
1932
|
+
</td>
|
|
1933
|
+
</tr>
|
|
1934
|
+
<tr>
|
|
1935
|
+
<td>
|
|
1936
|
+
<img src="https://file.elabscience.com/edm/demimg2024428/地球.png" alt="" class="align-middle" />
|
|
1937
|
+
<span class="align-middle">Web: <a href=" https://www.elabscience.com" class="decoration-none">www.elabscience.com</a></span>
|
|
1938
|
+
</td>
|
|
1939
|
+
</tr>
|
|
1940
|
+
<tr>
|
|
1941
|
+
<td>
|
|
1942
|
+
<img src="https://file.elabscience.com/edm/demimg2024428/邮件.png" alt="" class="align-middle" />
|
|
1943
|
+
<span class="align-middle">Email: <a href="mailto:orders@elabscience.com" class="decoration-none">orders@elabscience.com</a>;<a href="mailto:techsupport@elabscience.com" class="decoration-none" style="padding-left: 10px;">techsupport@elabscience.com</a></span>
|
|
1944
|
+
</td>
|
|
1945
|
+
</tr>
|
|
1946
|
+
<tr>
|
|
1947
|
+
<td>14780 Memorial Drive, Suite 105, Houston, Texas, 77079, USA</td>
|
|
1948
|
+
</tr>
|
|
1949
|
+
</tbody>
|
|
1950
|
+
</table>
|
|
1951
|
+
</td>
|
|
1952
|
+
<td></td>
|
|
1953
|
+
</tr>
|
|
1954
|
+
|
|
1955
|
+
<tr>
|
|
1956
|
+
<td colspan="4" class="h-32"></td>
|
|
1957
|
+
</tr>
|
|
1958
|
+
</tbody>
|
|
1959
|
+
</table>
|
|
1960
|
+
<!-- 页尾 end -->
|
|
1961
|
+
</td>
|
|
1962
|
+
</tr>
|
|
1963
|
+
</tbody>
|
|
1964
|
+
</table>
|
|
1965
|
+
</body>
|
|
1966
|
+
</html>
|