juice-email-cli 2.0.6 → 2.1.2
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/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,1822 @@
|
|
|
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: #2ebac0;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.header .navigation a:hover {
|
|
93
|
+
color: #1f7e82 !important;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.main {}
|
|
97
|
+
|
|
98
|
+
.footer {}
|
|
99
|
+
|
|
100
|
+
.footer .connect-us {}
|
|
101
|
+
|
|
102
|
+
.footer .connect-us-title {
|
|
103
|
+
padding-bottom: 5px;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.footer .connect-us-separator {
|
|
107
|
+
padding-top: 8px;
|
|
108
|
+
border-bottom: 1px dashed #828282;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.footer .contact-us {}
|
|
112
|
+
|
|
113
|
+
.footer .contact-us-qrcode {}
|
|
114
|
+
|
|
115
|
+
.footer .contact-us-qrcode img {
|
|
116
|
+
width: 60px;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.footer .contact-us-whatsApp {
|
|
120
|
+
padding: 5px 0;
|
|
121
|
+
margin-top: 6px;
|
|
122
|
+
color: #fff;
|
|
123
|
+
font-size: 12px;
|
|
124
|
+
border-radius: 12px;
|
|
125
|
+
background-color: rgb(43, 176, 181);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.table-bordered {
|
|
129
|
+
color: #2c2c2c;
|
|
130
|
+
border: 1px solid #dedede;
|
|
131
|
+
border-radius: 3px;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.table-bordered.no-border {
|
|
135
|
+
border-color: transparent;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.table-bordered thead {
|
|
139
|
+
border-radius: 3px 3px 0 0;
|
|
140
|
+
background-color: #eaeaea;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.table-bordered th, .table-bordered td {
|
|
144
|
+
padding: 16px;
|
|
145
|
+
border: 1px solid #dedede;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.table-bordered.no-border th, .table-bordered.no-border td {
|
|
149
|
+
border-color: transparent;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.table-bordered.condensed th, .table-bordered.condensed td {
|
|
153
|
+
padding: 5px 8px;
|
|
154
|
+
/*border: 1px solid #dedede;*/
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.table-stripe {
|
|
158
|
+
border: 1px solid #7dc0bb;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.table-stripe thead {}
|
|
162
|
+
|
|
163
|
+
.table-stripe tbody tr:nth-child(2n) {
|
|
164
|
+
background-color: #e6f3f2;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.table-stripe th, .table-stripe td {
|
|
168
|
+
padding: 5px 8px;
|
|
169
|
+
border: 1px solid #7dc0bb;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.table-dashed {
|
|
173
|
+
border: 1px dashed #5AAFA9;
|
|
174
|
+
border-radius: 20px;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.square-title {
|
|
178
|
+
font-size: 18px;
|
|
179
|
+
font-weight: bold;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.square-title::before {
|
|
183
|
+
content: '';
|
|
184
|
+
display: inline-block;
|
|
185
|
+
width: 16px;
|
|
186
|
+
height: 16px;
|
|
187
|
+
margin-right: 6px;
|
|
188
|
+
margin-bottom: -1px;
|
|
189
|
+
background-color: #5AAFA9;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.rectangle-title {
|
|
193
|
+
color: #16585d;
|
|
194
|
+
font-size: 24px;
|
|
195
|
+
font-weight: bold;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.rectangle-title::before {
|
|
199
|
+
content: '';
|
|
200
|
+
display: inline-block;
|
|
201
|
+
width: 8px;
|
|
202
|
+
height: 22px;
|
|
203
|
+
margin-right: 8px;
|
|
204
|
+
margin-bottom: -2px;
|
|
205
|
+
background-color: #fd8b37;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.title-slash {
|
|
209
|
+
/*line-height: 42px;*/
|
|
210
|
+
line-height: 1.3;
|
|
211
|
+
padding-top: 6px;
|
|
212
|
+
padding-bottom: 6px;
|
|
213
|
+
padding-right: 81px;
|
|
214
|
+
color: #fff;
|
|
215
|
+
font-size: 20px;
|
|
216
|
+
font-weight: bold;
|
|
217
|
+
background: #32afb4 url('https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202603301420/slash-bg.jpg') no-repeat scroll right center / 49px 100%;
|
|
218
|
+
/*background: #32afb4 url('https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202603301420/title-icon.png') no-repeat scroll right center / auto 100%;*/
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.dot {
|
|
222
|
+
margin-top: -2px;
|
|
223
|
+
font-size: 12px;
|
|
224
|
+
vertical-align: middle;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.image-box {
|
|
228
|
+
line-height: 0;
|
|
229
|
+
font-size: 0;
|
|
230
|
+
user-select: none;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.button {
|
|
234
|
+
padding: 6px 16px;
|
|
235
|
+
color: #fff;
|
|
236
|
+
font-size: 16px;
|
|
237
|
+
border-radius: 6px;
|
|
238
|
+
background-color: #32afb4;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.button-orange {
|
|
242
|
+
padding: 8px 16px;
|
|
243
|
+
color: #fff;
|
|
244
|
+
font-size: 16px;
|
|
245
|
+
border-radius: 6px;
|
|
246
|
+
background-color: #fd8b37;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.text-link {
|
|
250
|
+
color: #32afb4;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.text-link:hover, .text-link-hover:hover {
|
|
254
|
+
color: #1f7e82 !important;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.text-link-light {
|
|
258
|
+
color: #18c0b0;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.text-link-light:hover, .text-link-light-hover:hover {
|
|
262
|
+
color: #18c0b0 !important;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.bg-primary {
|
|
266
|
+
background-color: #32afb4;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.bg-light-primary {
|
|
270
|
+
background-color: #3ac2c5;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.bg-secondary {
|
|
274
|
+
background-color: #18c0b0;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.bg-white {
|
|
278
|
+
background-color: #fff;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.border {
|
|
282
|
+
border: 1px solid #dedede;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.border-dashed {
|
|
286
|
+
border: 1px dashed #5AAFA9;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.relative {
|
|
290
|
+
position: relative;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.absolute {
|
|
294
|
+
position: absolute;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.table-auto {
|
|
298
|
+
table-layout: auto;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.border-separate {
|
|
302
|
+
border-collapse: separate;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.h-a {
|
|
306
|
+
height: auto;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.h-0 {
|
|
310
|
+
height: 0;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.h-12 {
|
|
314
|
+
height: 12px;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.h-16 {
|
|
318
|
+
height: 16px;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.h-18 {
|
|
322
|
+
height: 18px;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.h-24 {
|
|
326
|
+
height: 24px;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.h-32 {
|
|
330
|
+
height: 32px;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.h-36 {
|
|
334
|
+
height: 36px;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.h-48 {
|
|
338
|
+
height: 48px;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.px-5 {
|
|
342
|
+
padding-inline: 5px !important;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.py-8 {
|
|
346
|
+
padding-block: 8px !important;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.pt-3 {
|
|
350
|
+
padding-top: 3px !important;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.pb-3 {
|
|
354
|
+
padding-bottom: 3px !important;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.pt-5 {
|
|
358
|
+
padding-top: 5px !important;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.pb-5 {
|
|
362
|
+
padding-bottom: 5px !important;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.pt-6 {
|
|
366
|
+
padding-top: 6px !important;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.pb-6 {
|
|
370
|
+
padding-bottom: 6px !important;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.pt-8 {
|
|
374
|
+
padding-top: 8px !important;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.pb-8 {
|
|
378
|
+
padding-bottom: 8px !important;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.pt-10 {
|
|
382
|
+
padding-top: 10px !important;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.pb-10 {
|
|
386
|
+
padding-bottom: 10px !important;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.pt-12 {
|
|
390
|
+
padding-top: 12px !important;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
.pb-12 {
|
|
394
|
+
padding-bottom: 12px !important;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.pt-16 {
|
|
398
|
+
padding-top: 16px !important;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.pb-16 {
|
|
402
|
+
padding-bottom: 16px !important;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.pt-18 {
|
|
406
|
+
padding-top: 18px !important;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.pb-18 {
|
|
410
|
+
padding-bottom: 18px !important;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.pt-20 {
|
|
414
|
+
padding-top: 20px !important;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
.pb-20 {
|
|
418
|
+
padding-bottom: 20px !important;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
.pt-24 {
|
|
422
|
+
padding-top: 24px !important;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.pb-24 {
|
|
426
|
+
padding-bottom: 24px !important;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.line-height-0 {
|
|
430
|
+
line-height: 0;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
.align-top {
|
|
434
|
+
vertical-align: top;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
.align-text-top {
|
|
438
|
+
vertical-align: text-top;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
.align-mid, .align-middle {
|
|
442
|
+
vertical-align: middle;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
.align-bottom {
|
|
446
|
+
vertical-align: bottom;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.align-text-bottom {
|
|
450
|
+
vertical-align: text-bottom;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
.text-left {
|
|
454
|
+
text-align: left;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
.text-center {
|
|
458
|
+
text-align: center;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
.text-right {
|
|
462
|
+
text-align: right;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
.color-primary {
|
|
466
|
+
color: #32afb4;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
.color-secondary {
|
|
470
|
+
color: #18c0b0;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.color-white {
|
|
474
|
+
color: #fff;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.color-orange {
|
|
478
|
+
color: #f7750b;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
.color-red {
|
|
482
|
+
color: #ff0207;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.cursor-auto {
|
|
486
|
+
cursor: auto;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.cursor-default {
|
|
490
|
+
cursor: default;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
.cursor-pointer {
|
|
494
|
+
cursor: pointer;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
.cursor-not-allowed {
|
|
498
|
+
cursor: not-allowed;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
.decoration-none {
|
|
502
|
+
text-decoration: none;
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
.decoration-underline {
|
|
506
|
+
text-decoration-line: underline;
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
.font-bold {
|
|
510
|
+
font-weight: bold;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
.text-size-0 {
|
|
514
|
+
font-size: 0;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
.text-size-\[10px\] {
|
|
518
|
+
font-size: 10px;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
.text-size-\[12px\] {
|
|
522
|
+
font-size: 12px;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.text-size-\[14px\] {
|
|
526
|
+
font-size: 14px;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
.text-size-base {
|
|
530
|
+
font-size: 16px;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
.text-size-\[16px\] {
|
|
534
|
+
font-size: 16px;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
.text-size-\[18px\] {
|
|
538
|
+
font-size: 18px;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
.text-size-\[20px\] {
|
|
542
|
+
font-size: 20px;
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
.text-size-\[22px\] {
|
|
546
|
+
font-size: 22px;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
.text-size-\[24px\] {
|
|
550
|
+
font-size: 24px;
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
.text-size-\[26px\] {
|
|
554
|
+
font-size: 26px;
|
|
555
|
+
}
|
|
556
|
+
/* 公用样式区,模板样式,适合所有需求,三思而后行 end */
|
|
557
|
+
|
|
558
|
+
/* 页面特定样式区,特定需求页面的定制样式,随便霍霍,满足需求即可 start */
|
|
559
|
+
/* TODO */
|
|
560
|
+
/* 页面特定样式区,特定需求页面的定制样式,随便霍霍,满足需求即可 end */
|
|
561
|
+
</style>
|
|
562
|
+
</head>
|
|
563
|
+
|
|
564
|
+
<body>
|
|
565
|
+
<table cellspacing="0" cellpadding="0" border="0" id="app" class="app">
|
|
566
|
+
<tbody>
|
|
567
|
+
<tr>
|
|
568
|
+
<td>
|
|
569
|
+
<!-- 页头 start -->
|
|
570
|
+
<table cellspacing="0" cellpadding="0" border="0" class="header">
|
|
571
|
+
<colgroup>
|
|
572
|
+
<col width="10px" />
|
|
573
|
+
<col />
|
|
574
|
+
<col />
|
|
575
|
+
<col width="10px" />
|
|
576
|
+
</colgroup>
|
|
577
|
+
|
|
578
|
+
<tbody>
|
|
579
|
+
<tr>
|
|
580
|
+
<td colspan="4" class="banner image-box">
|
|
581
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/header.webp" alt="Procell" />
|
|
582
|
+
</td>
|
|
583
|
+
</tr>
|
|
584
|
+
|
|
585
|
+
<tr>
|
|
586
|
+
<td colspan="4" class="h-16"></td>
|
|
587
|
+
</tr>
|
|
588
|
+
|
|
589
|
+
<tr>
|
|
590
|
+
<td></td>
|
|
591
|
+
<td colspan="2">
|
|
592
|
+
<table cellspacing="0" cellpadding="0" border="0" class="navigation text-center">
|
|
593
|
+
<tbody>
|
|
594
|
+
<tr>
|
|
595
|
+
<td>
|
|
596
|
+
<a href="https://www.procellsystem.com/search-category=cell-culture-media">Cell Culture Media</a>
|
|
597
|
+
</td>
|
|
598
|
+
<td>
|
|
599
|
+
<a href="https://www.procellsystem.com/search-category=auxiliary-reagents">Auxiliary Reagents</a>
|
|
600
|
+
</td>
|
|
601
|
+
<td>
|
|
602
|
+
<a href="https://www.procellsystem.com/search-category=cell-function-research-kits">Cell Function Research Kits</a>
|
|
603
|
+
</td>
|
|
604
|
+
</tr>
|
|
605
|
+
</tbody>
|
|
606
|
+
</table>
|
|
607
|
+
</td>
|
|
608
|
+
<td></td>
|
|
609
|
+
</tr>
|
|
610
|
+
|
|
611
|
+
<tr>
|
|
612
|
+
<td colspan="4" class="h-16"></td>
|
|
613
|
+
</tr>
|
|
614
|
+
</tbody>
|
|
615
|
+
</table>
|
|
616
|
+
<!-- 页头 end -->
|
|
617
|
+
|
|
618
|
+
<!-- 主体 start -->
|
|
619
|
+
<table cellspacing="0" cellpadding="0" border="0" class="main">
|
|
620
|
+
<colgroup>
|
|
621
|
+
<col width="10px" />
|
|
622
|
+
<col />
|
|
623
|
+
<col />
|
|
624
|
+
<col width="10px" />
|
|
625
|
+
</colgroup>
|
|
626
|
+
|
|
627
|
+
<tbody id="content">
|
|
628
|
+
<tr>
|
|
629
|
+
<td colspan="4" class="image-box">
|
|
630
|
+
<a href="https://www.procellsystem.com/service/research">
|
|
631
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202605061643/banner.webp" />
|
|
632
|
+
</a>
|
|
633
|
+
</td>
|
|
634
|
+
</tr>
|
|
635
|
+
|
|
636
|
+
<tr>
|
|
637
|
+
<td colspan="4" class="h-16"></td>
|
|
638
|
+
</tr>
|
|
639
|
+
|
|
640
|
+
<tr>
|
|
641
|
+
<td></td>
|
|
642
|
+
<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>
|
|
643
|
+
<td></td>
|
|
644
|
+
</tr>
|
|
645
|
+
|
|
646
|
+
<tr>
|
|
647
|
+
<td colspan="4" class="h-16"></td>
|
|
648
|
+
</tr>
|
|
649
|
+
|
|
650
|
+
<tr>
|
|
651
|
+
<td></td>
|
|
652
|
+
<td colspan="2" class="text-center">
|
|
653
|
+
<a href="https://www.procellsystem.com/service/research" class="button-orange decoration-none text-center" style="min-width: 240px;">View Service Details</a>
|
|
654
|
+
</td>
|
|
655
|
+
<td></td>
|
|
656
|
+
</tr>
|
|
657
|
+
|
|
658
|
+
<tr>
|
|
659
|
+
<td colspan="4" class="h-24"></td>
|
|
660
|
+
</tr>
|
|
661
|
+
|
|
662
|
+
<tr>
|
|
663
|
+
<td></td>
|
|
664
|
+
<td colspan="2">
|
|
665
|
+
<table cellspacing="0" cellpadding="0" border="0" class="table-bordered condensed no-border text-center text-size-[14px]">
|
|
666
|
+
<colgroup>
|
|
667
|
+
<col />
|
|
668
|
+
<col />
|
|
669
|
+
</colgroup>
|
|
670
|
+
|
|
671
|
+
<tbody>
|
|
672
|
+
<tr>
|
|
673
|
+
<td colspan="2" class="text-left">
|
|
674
|
+
<span class="rectangle-title">Technical Insight: Optimizing Your MSC Workflow</span>
|
|
675
|
+
</td>
|
|
676
|
+
</tr>
|
|
677
|
+
|
|
678
|
+
<tr>
|
|
679
|
+
<td colspan="2" class="h-16"></td>
|
|
680
|
+
</tr>
|
|
681
|
+
|
|
682
|
+
<tr>
|
|
683
|
+
<td class="image-box">
|
|
684
|
+
<a href="https://www.procellsystem.com/resources/cell-culture-academy/unlocking-the-hidden-potential-of-mesenchymal-stem-cells-efficient-culture-and-stable-expansion-2137">
|
|
685
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202605141323/Advanced Expansion.webp" />
|
|
686
|
+
</a>
|
|
687
|
+
</td>
|
|
688
|
+
<td class="image-box">
|
|
689
|
+
<a href="https://www.procellsystem.com/resources/cell-culture-academy/unlocking-the-hidden-potential-of-mesenchymal-stem-cells-decoding-the-trilineage-differentiation-and-key-applications-2139">
|
|
690
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202605141323/Multipotency Mastery.webp" />
|
|
691
|
+
</a>
|
|
692
|
+
</td>
|
|
693
|
+
</tr>
|
|
694
|
+
|
|
695
|
+
<tr>
|
|
696
|
+
<td>
|
|
697
|
+
<strong>Advanced Expansion:<br />Maximizing Yield while Preserving Stemness</strong>
|
|
698
|
+
</td>
|
|
699
|
+
<td>
|
|
700
|
+
<strong>Multipotency Mastery:<br />Decoding Trilineage Differentiation</strong>
|
|
701
|
+
</td>
|
|
702
|
+
</tr>
|
|
703
|
+
|
|
704
|
+
<tr>
|
|
705
|
+
<td>
|
|
706
|
+
Achieve robust, large-scale expansion through optimized media formulations that maintain stable growth kinetics and phenotypic integrity.
|
|
707
|
+
</td>
|
|
708
|
+
<td>
|
|
709
|
+
Explore standardized protocols and validation methods for adipogenic, osteogenic, and chondrogenic induction to confirm functional potency.
|
|
710
|
+
</td>
|
|
711
|
+
</tr>
|
|
712
|
+
|
|
713
|
+
<tr>
|
|
714
|
+
<td style="padding-top: 12px; padding-bottom: 12px;">
|
|
715
|
+
<a href="https://www.procellsystem.com/resources/cell-culture-academy/unlocking-the-hidden-potential-of-mesenchymal-stem-cells-efficient-culture-and-stable-expansion-2137" class="decoration-none font-bold color-secondary text-size-[14px]">Read more</a>
|
|
716
|
+
</td>
|
|
717
|
+
<td style="padding-top: 12px; padding-bottom: 12px;">
|
|
718
|
+
<a href="https://www.procellsystem.com/resources/cell-culture-academy/unlocking-the-hidden-potential-of-mesenchymal-stem-cells-decoding-the-trilineage-differentiation-and-key-applications-2139" class="decoration-none font-bold color-secondary text-size-[14px]">Read more</a>
|
|
719
|
+
</td>
|
|
720
|
+
</tr>
|
|
721
|
+
</tbody>
|
|
722
|
+
</table>
|
|
723
|
+
</td>
|
|
724
|
+
<td></td>
|
|
725
|
+
</tr>
|
|
726
|
+
|
|
727
|
+
<tr>
|
|
728
|
+
<td colspan="4" class="h-24"></td>
|
|
729
|
+
</tr>
|
|
730
|
+
|
|
731
|
+
<tr>
|
|
732
|
+
<td></td>
|
|
733
|
+
<td colspan="2">
|
|
734
|
+
<table cellspacing="0" cellpadding="0" border="0" class="table-bordered condensed no-border text-center text-size-[14px]">
|
|
735
|
+
<colgroup>
|
|
736
|
+
<col />
|
|
737
|
+
<col />
|
|
738
|
+
<col />
|
|
739
|
+
<col />
|
|
740
|
+
</colgroup>
|
|
741
|
+
|
|
742
|
+
<tbody>
|
|
743
|
+
<tr>
|
|
744
|
+
<td colspan="4" class="text-left">
|
|
745
|
+
<span class="rectangle-title">Recommended Solutions for Your Lab</span>
|
|
746
|
+
</td>
|
|
747
|
+
</tr>
|
|
748
|
+
|
|
749
|
+
<tr>
|
|
750
|
+
<td colspan="4" class="h-16"></td>
|
|
751
|
+
</tr>
|
|
752
|
+
|
|
753
|
+
<tr class="align-top">
|
|
754
|
+
<td>
|
|
755
|
+
<a href="https://www.procellsystem.com/search-category=complete-growth-media&keywords=Mesenchymal Stem" class="decoration-none color-secondary">
|
|
756
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202605141323/Complete Growth Media.webp" style="height: 120px;" />
|
|
757
|
+
|
|
758
|
+
<p class="color-secondary font-bold pt-8">Complete Growth Media</p>
|
|
759
|
+
</a>
|
|
760
|
+
</td>
|
|
761
|
+
<td>
|
|
762
|
+
<a href="https://www.procellsystem.com/search-category=serum-free-media&keywords=Mesenchymal Stem" class="decoration-none color-secondary">
|
|
763
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202605141323/Serum-free Media.webp" style="height: 120px;" />
|
|
764
|
+
|
|
765
|
+
<p class="color-secondary font-bold pt-8">Serum-free Media</p>
|
|
766
|
+
</a>
|
|
767
|
+
</td>
|
|
768
|
+
<td>
|
|
769
|
+
<a href="https://www.procellsystem.com/search-category=serums&keywords=Mesenchymal Stem" class="decoration-none color-secondary">
|
|
770
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202605141323/Fetal Bovine Serum for Mesenchymal Stem Cells.webp" style="height: 120px;" />
|
|
771
|
+
|
|
772
|
+
<p class="color-secondary font-bold pt-8">Fetal Bovine Serum for Mesenchymal Stem Cells</p>
|
|
773
|
+
</a>
|
|
774
|
+
</td>
|
|
775
|
+
<td>
|
|
776
|
+
<a href="https://www.procellsystem.com/search-category=induced-differentiation-media&keywords=Mesenchymal Stem" class="decoration-none color-secondary">
|
|
777
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202605141323/Induced Differentiation Media.webp" style="height: 120px;" />
|
|
778
|
+
|
|
779
|
+
<p class="color-secondary font-bold pt-8">Induced Differentiation Media</p>
|
|
780
|
+
</a>
|
|
781
|
+
</td>
|
|
782
|
+
</tr>
|
|
783
|
+
</tbody>
|
|
784
|
+
</table>
|
|
785
|
+
</td>
|
|
786
|
+
<td></td>
|
|
787
|
+
</tr>
|
|
788
|
+
|
|
789
|
+
<tr>
|
|
790
|
+
<td colspan="4" class="h-24"></td>
|
|
791
|
+
</tr>
|
|
792
|
+
|
|
793
|
+
<tr>
|
|
794
|
+
<td></td>
|
|
795
|
+
<td colspan="2">
|
|
796
|
+
<table cellspacing="0" cellpadding="0" border="0">
|
|
797
|
+
<colgroup>
|
|
798
|
+
<col width="40%" />
|
|
799
|
+
<col />
|
|
800
|
+
</colgroup>
|
|
801
|
+
|
|
802
|
+
<tbody>
|
|
803
|
+
<tr>
|
|
804
|
+
<td colspan="2">
|
|
805
|
+
<span class="rectangle-title">Ready to Upgrade Your Culture? Get a Free Sample</span>
|
|
806
|
+
</td>
|
|
807
|
+
</tr>
|
|
808
|
+
|
|
809
|
+
<tr>
|
|
810
|
+
<td colspan="2" class="h-12"></td>
|
|
811
|
+
</tr>
|
|
812
|
+
|
|
813
|
+
<tr>
|
|
814
|
+
<td rowspan="2" class="image-box" style="padding-right: 12px;">
|
|
815
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202605141323/Claim My Free Sample.webp" />
|
|
816
|
+
</td>
|
|
817
|
+
<td class="h-0 text-size-[14px]" style="padding-bottom: 16px;">See how our media and serum can enhance your results. Validate the performance in your own lab.</td>
|
|
818
|
+
</tr>
|
|
819
|
+
|
|
820
|
+
<tr>
|
|
821
|
+
<td class="text-right h-0" style="padding: 12px 24px 12px 0;">
|
|
822
|
+
<a href="https://www.procellsystem.com/promotions/get-free-sample" class="button-orange decoration-none text-center text-size-[14px] bg-secondary">Claim My Free Sample</a>
|
|
823
|
+
</td>
|
|
824
|
+
</tr>
|
|
825
|
+
</tbody>
|
|
826
|
+
</table>
|
|
827
|
+
</td>
|
|
828
|
+
<td></td>
|
|
829
|
+
</tr>
|
|
830
|
+
|
|
831
|
+
<tr>
|
|
832
|
+
<td colspan="4" class="h-24"></td>
|
|
833
|
+
</tr>
|
|
834
|
+
|
|
835
|
+
<tr>
|
|
836
|
+
<td></td>
|
|
837
|
+
<td colspan="2">
|
|
838
|
+
<table cellspacing="0" cellpadding="0" border="0">
|
|
839
|
+
<colgroup>
|
|
840
|
+
<col width="18%" />
|
|
841
|
+
<col />
|
|
842
|
+
<col width="18%" />
|
|
843
|
+
<col />
|
|
844
|
+
</colgroup>
|
|
845
|
+
|
|
846
|
+
<tbody>
|
|
847
|
+
<tr>
|
|
848
|
+
<td colspan="4">
|
|
849
|
+
<span class="rectangle-title">Why Partner with Procell for Custom Media?</span>
|
|
850
|
+
</td>
|
|
851
|
+
</tr>
|
|
852
|
+
|
|
853
|
+
<tr>
|
|
854
|
+
<td colspan="4" class="h-12"></td>
|
|
855
|
+
</tr>
|
|
856
|
+
|
|
857
|
+
<tr>
|
|
858
|
+
<td rowspan="2" class="image-box" style="padding-right: 12px;">
|
|
859
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202605061643/Low MOQ.webp" />
|
|
860
|
+
</td>
|
|
861
|
+
<td class="h-0"><strong>Low MOQ</strong></td>
|
|
862
|
+
|
|
863
|
+
<td rowspan="2" class="image-box" style="padding-right: 12px;">
|
|
864
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202605061643/Flexible Formats.webp" />
|
|
865
|
+
</td>
|
|
866
|
+
<td class="h-0"><strong>Flexible Formats</strong></td>
|
|
867
|
+
</tr>
|
|
868
|
+
|
|
869
|
+
<tr>
|
|
870
|
+
<td class="h-0 text-size-[14px]" style="padding-right: 16px;">Only 2 bottles (500 mL) to start, ideal for pilot studies.</td>
|
|
871
|
+
<td class="h-0 text-size-[14px]">Choose between Ready-to-use Liquid or Dry Powder.</td>
|
|
872
|
+
</tr>
|
|
873
|
+
|
|
874
|
+
<tr>
|
|
875
|
+
<td colspan="4" class="h-24"></td>
|
|
876
|
+
</tr>
|
|
877
|
+
|
|
878
|
+
<tr>
|
|
879
|
+
<td rowspan="2" class="image-box" style="padding-right: 12px;">
|
|
880
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202605061643/Certified Quality.webp" />
|
|
881
|
+
</td>
|
|
882
|
+
<td class="h-0"><strong>Certified Quality</strong></td>
|
|
883
|
+
|
|
884
|
+
<td rowspan="2" class="image-box" style="padding-right: 12px;">
|
|
885
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202605061643/Rapid Response.webp" />
|
|
886
|
+
</td>
|
|
887
|
+
<td class="h-0"><strong>Rapid Response</strong></td>
|
|
888
|
+
</tr>
|
|
889
|
+
|
|
890
|
+
<tr>
|
|
891
|
+
<td class="h-0 text-size-[14px]" style="padding-right: 16px;">10+ years of expertise with ISO 9001: 2015 & 13485 compliance.</td>
|
|
892
|
+
<td class="h-0 text-size-[14px]">Get a technical review and quote within 24 hours.</td>
|
|
893
|
+
</tr>
|
|
894
|
+
</tbody>
|
|
895
|
+
</table>
|
|
896
|
+
</td>
|
|
897
|
+
<td></td>
|
|
898
|
+
</tr>
|
|
899
|
+
|
|
900
|
+
<tr>
|
|
901
|
+
<td colspan="4" class="h-36"></td>
|
|
902
|
+
</tr>
|
|
903
|
+
|
|
904
|
+
<tr>
|
|
905
|
+
<td></td>
|
|
906
|
+
<td colspan="2">
|
|
907
|
+
<table cellspacing="0" cellpadding="0" border="0">
|
|
908
|
+
<colgroup>
|
|
909
|
+
<col width="40%" />
|
|
910
|
+
<col />
|
|
911
|
+
</colgroup>
|
|
912
|
+
|
|
913
|
+
<tbody>
|
|
914
|
+
<tr>
|
|
915
|
+
<td colspan="2">
|
|
916
|
+
<span class="rectangle-title">Streamline Your Workflow with Our Online Tool</span>
|
|
917
|
+
</td>
|
|
918
|
+
</tr>
|
|
919
|
+
|
|
920
|
+
<tr>
|
|
921
|
+
<td colspan="2" class="h-12"></td>
|
|
922
|
+
</tr>
|
|
923
|
+
|
|
924
|
+
<tr>
|
|
925
|
+
<td rowspan="2" class="image-box" style="padding-right: 12px;">
|
|
926
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202605061643/Streamline Your Workflow.webp" />
|
|
927
|
+
</td>
|
|
928
|
+
<td class="h-0 text-size-[14px]" style="padding-bottom: 16px;">Our Online Formulation Tool allows you to select a basal media (e.g., DMEM, RPMI-1640, Ham's F-12) and modify its components directly on our platform.</td>
|
|
929
|
+
</tr>
|
|
930
|
+
|
|
931
|
+
<tr>
|
|
932
|
+
<td class="text-right h-0" style="padding: 12px 24px 12px 0;">
|
|
933
|
+
<a href="https://www.procellsystem.com/service/custom" class="button-orange decoration-none text-center text-size-[14px]">Start Your Formula Design</a>
|
|
934
|
+
</td>
|
|
935
|
+
</tr>
|
|
936
|
+
</tbody>
|
|
937
|
+
</table>
|
|
938
|
+
</td>
|
|
939
|
+
<td></td>
|
|
940
|
+
</tr>
|
|
941
|
+
|
|
942
|
+
<tr>
|
|
943
|
+
<td colspan="4" class="h-24"></td>
|
|
944
|
+
</tr>
|
|
945
|
+
|
|
946
|
+
<tr>
|
|
947
|
+
<td></td>
|
|
948
|
+
<td colspan="2">
|
|
949
|
+
<table cellspacing="0" cellpadding="0" border="0">
|
|
950
|
+
<colgroup>
|
|
951
|
+
<col width="25%" />
|
|
952
|
+
<col />
|
|
953
|
+
</colgroup>
|
|
954
|
+
|
|
955
|
+
<tbody class="align-top">
|
|
956
|
+
<tr>
|
|
957
|
+
<td rowspan="2" style="padding-right: 12px;" class="image-box">
|
|
958
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202604211419/Ischemic stroke.webp" />
|
|
959
|
+
</td>
|
|
960
|
+
<td style="padding-bottom: 24px;" class="h-0">
|
|
961
|
+
<a href="https://www.nature.com/articles/s41467-026-70340-3" class="decoration-none">
|
|
962
|
+
<strong>Dual-stiffness nanoparticles for compartment-specific drug delivery in stroke</strong>
|
|
963
|
+
</a>
|
|
964
|
+
</td>
|
|
965
|
+
</tr>
|
|
966
|
+
|
|
967
|
+
<tr>
|
|
968
|
+
<td>
|
|
969
|
+
<p style="margin-bottom: 12px;"><strong>Publication Date:</strong> 12 March 2026</p>
|
|
970
|
+
<p style="margin-bottom: 12px;"><strong>Journal:</strong> <i>Nature Communications</i></p>
|
|
971
|
+
<p style="margin-bottom: 12px;"><strong>Impact Factor:</strong> 15.7</p>
|
|
972
|
+
<p><strong>DOI:</strong> 10.1038/s41467-026-70340-3</p>
|
|
973
|
+
</td>
|
|
974
|
+
</tr>
|
|
975
|
+
</tbody>
|
|
976
|
+
</table>
|
|
977
|
+
</td>
|
|
978
|
+
<td></td>
|
|
979
|
+
</tr>
|
|
980
|
+
|
|
981
|
+
<tr>
|
|
982
|
+
<td colspan="4" class="h-24"></td>
|
|
983
|
+
</tr>
|
|
984
|
+
|
|
985
|
+
<tr>
|
|
986
|
+
<td></td>
|
|
987
|
+
<td colspan="2"><strong>Keywords:</strong> Ischemic stroke, Dual-stiffness nanoparticles, Systemic inflammation, Neural microenvironment</td>
|
|
988
|
+
<td></td>
|
|
989
|
+
</tr>
|
|
990
|
+
|
|
991
|
+
<tr>
|
|
992
|
+
<td colspan="4" class="h-24"></td>
|
|
993
|
+
</tr>
|
|
994
|
+
|
|
995
|
+
<tr>
|
|
996
|
+
<td></td>
|
|
997
|
+
<td colspan="2">
|
|
998
|
+
<table cellspacing="0" cellpadding="0" border="0" class="table-dashed border-separate" style="padding: 16px;">
|
|
999
|
+
<colgroup>
|
|
1000
|
+
<col width="40%" />
|
|
1001
|
+
<col />
|
|
1002
|
+
</colgroup>
|
|
1003
|
+
|
|
1004
|
+
<tbody class="align-top">
|
|
1005
|
+
<tr>
|
|
1006
|
+
<td colspan="2"></td>
|
|
1007
|
+
</tr>
|
|
1008
|
+
|
|
1009
|
+
<tr>
|
|
1010
|
+
<td rowspan="2" style="padding-right: 12px;" class="image-box align-middle">
|
|
1011
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202604211419/View More Publications.webp" />
|
|
1012
|
+
</td>
|
|
1013
|
+
<td style="padding-bottom: 24px;" class="h-0">
|
|
1014
|
+
<p>
|
|
1015
|
+
This study presents a spatially tiered drug delivery strategy using dual-stiffness nanoparticles (NPs) for compartment-specific therapy. Stiff NPs, loaded with the anti-inflammatory agent piceatannol (Pic), suppress systemic immune overactivation and limit neutrophil and monocyte infiltration into the brain. In contrast, soft NPs deliver the neuroprotective compound DL-3-n-butylphthalide (NBP), enabling efficient BBB penetration while promoting neural repair and local microenvironment restoration. This approach addresses the spatial heterogeneity of ischemic stroke and establishes a versatile, stiffness-graded platform for other spatially complex diseases, including Alzheimer's disease and cerebral gliomas.
|
|
1016
|
+
</p>
|
|
1017
|
+
</td>
|
|
1018
|
+
</tr>
|
|
1019
|
+
|
|
1020
|
+
<tr>
|
|
1021
|
+
<td>
|
|
1022
|
+
<a href="https://www.procellsystem.com/resources/publications" class="button decoration-none">View More Publications</a>
|
|
1023
|
+
</td>
|
|
1024
|
+
</tr>
|
|
1025
|
+
|
|
1026
|
+
<tr>
|
|
1027
|
+
<td colspan="2"></td>
|
|
1028
|
+
</tr>
|
|
1029
|
+
</tbody>
|
|
1030
|
+
</table>
|
|
1031
|
+
</td>
|
|
1032
|
+
<td></td>
|
|
1033
|
+
</tr>
|
|
1034
|
+
|
|
1035
|
+
<tr>
|
|
1036
|
+
<td colspan="4" class="h-24"></td>
|
|
1037
|
+
</tr>
|
|
1038
|
+
|
|
1039
|
+
<tr>
|
|
1040
|
+
<td class="bg-primary"></td>
|
|
1041
|
+
<td colspan="3">
|
|
1042
|
+
<span class="title-slash">Procell Featured Basal Media Solutions</span>
|
|
1043
|
+
</td>
|
|
1044
|
+
</tr>
|
|
1045
|
+
|
|
1046
|
+
<tr>
|
|
1047
|
+
<td colspan="4" class="h-16"></td>
|
|
1048
|
+
</tr>
|
|
1049
|
+
|
|
1050
|
+
<tr>
|
|
1051
|
+
<td></td>
|
|
1052
|
+
<td colspan="2">
|
|
1053
|
+
<table cellspacing="0" cellpadding="0" border="0" class="table-bordered condensed no-border text-center text-size-[14px]">
|
|
1054
|
+
<colgroup>
|
|
1055
|
+
<col />
|
|
1056
|
+
<col />
|
|
1057
|
+
</colgroup>
|
|
1058
|
+
|
|
1059
|
+
<tbody>
|
|
1060
|
+
<tr>
|
|
1061
|
+
<td class="image-box">
|
|
1062
|
+
<a href="https://www.procellsystem.com/products/liquid-basal-media">
|
|
1063
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202604201000/Liquid Basal Media.webp" />
|
|
1064
|
+
</a>
|
|
1065
|
+
</td>
|
|
1066
|
+
<td class="image-box">
|
|
1067
|
+
<a href="https://www.procellsystem.com/products/powder-basal-media">
|
|
1068
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202604201000/Powder Basal Media.webp" />
|
|
1069
|
+
</a>
|
|
1070
|
+
</td>
|
|
1071
|
+
</tr>
|
|
1072
|
+
|
|
1073
|
+
<tr>
|
|
1074
|
+
<td class="color-primary font-bold text-size-[18px]">Liquid Basal Media</td>
|
|
1075
|
+
<td class="color-primary font-bold text-size-[18px]">Powder Basal Media</td>
|
|
1076
|
+
</tr>
|
|
1077
|
+
|
|
1078
|
+
<tr>
|
|
1079
|
+
<td class="text-left">
|
|
1080
|
+
<p style="margin-bottom: 10px;"><span class="color-primary text-size-[12px]" style="margin-right: 6px;">●</span><strong>0.1μm Sterile Filtration:</strong> Pre-filtered through 0.1μm membranes to ensure sterility and minimize the risk of laboratory contamination.</p>
|
|
1081
|
+
|
|
1082
|
+
<p><span class="color-primary text-size-[12px]" style="margin-right: 6px;">●</span><strong>Comprehensive Portfolio:</strong> Includes 19 major categories and nearly 300 products, covering both classical and specialized formulations.</p>
|
|
1083
|
+
</td>
|
|
1084
|
+
<td class="text-left">
|
|
1085
|
+
<p style="margin-bottom: 10px;"><span class="color-primary text-size-[12px]" style="margin-right: 6px;">●</span><strong>Extended Storage Life:</strong> Offers 36 months stability, making it ideal for long-term research planning.</p>
|
|
1086
|
+
|
|
1087
|
+
<p><span class="color-primary text-size-[12px]" style="margin-right: 6px;">●</span><strong>Logistical Efficiency:</strong> Designed for easy storage and cost-effective shipping, maximizing laboratory space and budget.</p>
|
|
1088
|
+
</td>
|
|
1089
|
+
</tr>
|
|
1090
|
+
|
|
1091
|
+
<tr>
|
|
1092
|
+
<td style="padding-top: 12px; padding-bottom: 12px;">
|
|
1093
|
+
<a href="https://www.procellsystem.com/products/liquid-basal-media" class="button-orange decoration-none text-size-[14px]">View Liquid Media Specifications</a>
|
|
1094
|
+
</td>
|
|
1095
|
+
<td style="padding-top: 12px; padding-bottom: 12px;">
|
|
1096
|
+
<a href="https://www.procellsystem.com/products/powder-basal-media" class="button-orange decoration-none text-size-[14px]">View Powder Media Specifications</a>
|
|
1097
|
+
</td>
|
|
1098
|
+
</tr>
|
|
1099
|
+
</tbody>
|
|
1100
|
+
</table>
|
|
1101
|
+
</td>
|
|
1102
|
+
<td></td>
|
|
1103
|
+
</tr>
|
|
1104
|
+
|
|
1105
|
+
<tr>
|
|
1106
|
+
<td colspan="4" class="h-24"></td>
|
|
1107
|
+
</tr>
|
|
1108
|
+
|
|
1109
|
+
<tr>
|
|
1110
|
+
<td class="bg-primary"></td>
|
|
1111
|
+
<td colspan="3">
|
|
1112
|
+
<span class="title-slash">Performance Validation Data</span>
|
|
1113
|
+
</td>
|
|
1114
|
+
</tr>
|
|
1115
|
+
|
|
1116
|
+
<tr>
|
|
1117
|
+
<td colspan="4" class="h-16"></td>
|
|
1118
|
+
</tr>
|
|
1119
|
+
|
|
1120
|
+
<tr>
|
|
1121
|
+
<td></td>
|
|
1122
|
+
<td colspan="2">
|
|
1123
|
+
<table cellspacing="0" cellpadding="0" border="0" class="table-bordered condensed no-border text-center text-size-[14px]">
|
|
1124
|
+
<colgroup>
|
|
1125
|
+
<col width="60%" />
|
|
1126
|
+
<col />
|
|
1127
|
+
</colgroup>
|
|
1128
|
+
|
|
1129
|
+
<tbody>
|
|
1130
|
+
<tr>
|
|
1131
|
+
<td class="image-box">
|
|
1132
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202604201000/Proliferation of Renca cells.webp" />
|
|
1133
|
+
</td>
|
|
1134
|
+
<td class="image-box">
|
|
1135
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202604201000/Cell growth.webp" />
|
|
1136
|
+
</td>
|
|
1137
|
+
</tr>
|
|
1138
|
+
|
|
1139
|
+
<tr>
|
|
1140
|
+
<td class="text-left align-top">
|
|
1141
|
+
<p>Proliferation of Renca cells in Procell RPMI-1640 Medium over a 3-day culture period.</p>
|
|
1142
|
+
</td>
|
|
1143
|
+
<td class="text-left align-top">
|
|
1144
|
+
<p>Cell growth in Procell RPMI-1640 Medium</p>
|
|
1145
|
+
</td>
|
|
1146
|
+
</tr>
|
|
1147
|
+
</tbody>
|
|
1148
|
+
</table>
|
|
1149
|
+
</td>
|
|
1150
|
+
<td></td>
|
|
1151
|
+
</tr>
|
|
1152
|
+
|
|
1153
|
+
<tr>
|
|
1154
|
+
<td colspan="4" class="h-24"></td>
|
|
1155
|
+
</tr>
|
|
1156
|
+
|
|
1157
|
+
<tr>
|
|
1158
|
+
<td></td>
|
|
1159
|
+
<td colspan="2">
|
|
1160
|
+
<span class="rectangle-title">Selecting the Optimal Foundation for Your Cells</span>
|
|
1161
|
+
</td>
|
|
1162
|
+
<td></td>
|
|
1163
|
+
</tr>
|
|
1164
|
+
|
|
1165
|
+
<tr>
|
|
1166
|
+
<td colspan="4" class="h-16"></td>
|
|
1167
|
+
</tr>
|
|
1168
|
+
|
|
1169
|
+
<tr>
|
|
1170
|
+
<td></td>
|
|
1171
|
+
<td colspan="2">
|
|
1172
|
+
<table cellspacing="0" cellpadding="0" border="0" class="table-bordered condensed text-center text-size-[14px]">
|
|
1173
|
+
<colgroup>
|
|
1174
|
+
<col width="35%" />
|
|
1175
|
+
<col width="15%" />
|
|
1176
|
+
<col width="35%" />
|
|
1177
|
+
<col width="15%" />
|
|
1178
|
+
</colgroup>
|
|
1179
|
+
|
|
1180
|
+
<tbody>
|
|
1181
|
+
<tr>
|
|
1182
|
+
<td colspan="2" class="image-box">
|
|
1183
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202604100851/neural-basal-media.png" />
|
|
1184
|
+
</td>
|
|
1185
|
+
<td colspan="2" class="image-box">
|
|
1186
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202604100851/complete-growth-media.png" />
|
|
1187
|
+
</td>
|
|
1188
|
+
</tr>
|
|
1189
|
+
|
|
1190
|
+
<tr>
|
|
1191
|
+
<td colspan="2" class="bg-light-primary color-white font-bold text-size-[18px]">Neural Basal Media</td>
|
|
1192
|
+
<td colspan="2" class="bg-light-primary color-white font-bold text-size-[18px]">Complete Growth Media</td>
|
|
1193
|
+
</tr>
|
|
1194
|
+
|
|
1195
|
+
<tr>
|
|
1196
|
+
<td colspan="2" class="text-left">Basal media providing essential nutrients for neural cell cultivation.</td>
|
|
1197
|
+
<td colspan="2" class="text-left">Ready-to-use systems for stable proliferation and morphology.</td>
|
|
1198
|
+
</tr>
|
|
1199
|
+
|
|
1200
|
+
<tr>
|
|
1201
|
+
<td>Neurobasal medium</td>
|
|
1202
|
+
<td>PM151223</td>
|
|
1203
|
+
<td>Neuronal Medium (NM)</td>
|
|
1204
|
+
<td>CM-ZY003</td>
|
|
1205
|
+
</tr>
|
|
1206
|
+
|
|
1207
|
+
<tr>
|
|
1208
|
+
<td>Neurobasal-A medium</td>
|
|
1209
|
+
<td>PM151236</td>
|
|
1210
|
+
<td>Neural Stem Cell Medium (NSCM)</td>
|
|
1211
|
+
<td>CM-ZY004</td>
|
|
1212
|
+
</tr>
|
|
1213
|
+
|
|
1214
|
+
<tr>
|
|
1215
|
+
<td>DMEM/F12</td>
|
|
1216
|
+
<td>PM150312</td>
|
|
1217
|
+
<td>Rat Neural Stem Cell Complete Medium</td>
|
|
1218
|
+
<td>CM-R139</td>
|
|
1219
|
+
</tr>
|
|
1220
|
+
|
|
1221
|
+
<tr>
|
|
1222
|
+
<td colspan="2" style="padding-top: 12px; padding-bottom: 12px;">
|
|
1223
|
+
<a href="https://www.procellsystem.com/search-category=liquid-basal-media&product-series=neurobasal" class="button-orange decoration-none text-size-[14px]">Explore more Neural Basal Media</a>
|
|
1224
|
+
</td>
|
|
1225
|
+
<td colspan="2" style="padding-top: 12px; padding-bottom: 12px;">
|
|
1226
|
+
<a href="https://www.procellsystem.com/search-keywords=Neural" class="button-orange decoration-none text-size-[14px]">Explore more Complete Growth Media</a>
|
|
1227
|
+
</td>
|
|
1228
|
+
</tr>
|
|
1229
|
+
</tbody>
|
|
1230
|
+
</table>
|
|
1231
|
+
</td>
|
|
1232
|
+
<td></td>
|
|
1233
|
+
</tr>
|
|
1234
|
+
|
|
1235
|
+
<tr>
|
|
1236
|
+
<td colspan="4" class="h-24"></td>
|
|
1237
|
+
</tr>
|
|
1238
|
+
|
|
1239
|
+
<tr>
|
|
1240
|
+
<td></td>
|
|
1241
|
+
<td colspan="2">
|
|
1242
|
+
<span class="rectangle-title">Explore Our Neural Research Resources</span>
|
|
1243
|
+
</td>
|
|
1244
|
+
<td></td>
|
|
1245
|
+
</tr>
|
|
1246
|
+
|
|
1247
|
+
<tr>
|
|
1248
|
+
<td colspan="4" class="h-12"></td>
|
|
1249
|
+
</tr>
|
|
1250
|
+
|
|
1251
|
+
<tr>
|
|
1252
|
+
<td></td>
|
|
1253
|
+
<td colspan="2">
|
|
1254
|
+
<table cellspacing="0" cellpadding="0" border="0">
|
|
1255
|
+
<colgroup>
|
|
1256
|
+
<col />
|
|
1257
|
+
<col width="12px" />
|
|
1258
|
+
<col />
|
|
1259
|
+
<col width="12px" />
|
|
1260
|
+
<col />
|
|
1261
|
+
</colgroup>
|
|
1262
|
+
|
|
1263
|
+
<tbody>
|
|
1264
|
+
<tr>
|
|
1265
|
+
<td>
|
|
1266
|
+
<div class="bg-white" style="padding: 8px; box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.08);">
|
|
1267
|
+
<div class="image-box" style="padding-bottom: 10px; border-bottom: 1px solid #e8e8e8;">
|
|
1268
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202604100851/resource-01.png" />
|
|
1269
|
+
</div>
|
|
1270
|
+
<p class="text-size-[14px]" style="min-height: 59px; margin-top: 10px; line-height: 1.4;">Primary Brain Cell Isolation: From Neurons to Blood-brain Barrier Cells</p>
|
|
1271
|
+
<p style="margin-top: 5px;">
|
|
1272
|
+
<a href="https://www.procellsystem.com/resources/cell-culture-academy/primary-brain-cell-isolation-2179" class="decoration-none text-link-light text-size-[18px]">Read more</a>
|
|
1273
|
+
</p>
|
|
1274
|
+
</div>
|
|
1275
|
+
</td>
|
|
1276
|
+
|
|
1277
|
+
<td></td>
|
|
1278
|
+
|
|
1279
|
+
<td>
|
|
1280
|
+
<div class="bg-white" style="padding: 8px; box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.08);">
|
|
1281
|
+
<div class="image-box" style="padding-bottom: 10px; border-bottom: 1px solid #e8e8e8;">
|
|
1282
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202604100851/resource-02.png" />
|
|
1283
|
+
</div>
|
|
1284
|
+
<p class="text-size-[14px]" style="min-height: 59px; margin-top: 10px; line-height: 1.4;">A Practical Guide to Isolation and Culture of Rat Cortical Neurons</p>
|
|
1285
|
+
<p style="margin-top: 5px;">
|
|
1286
|
+
<a href="https://www.procellsystem.com/resources/cell-culture-academy/a-practical-guide-to-isolation-and-culture-of-rat-cortical-neurons-2162" class="decoration-none text-link-light text-size-[18px]">Read more</a>
|
|
1287
|
+
</p>
|
|
1288
|
+
</div>
|
|
1289
|
+
</td>
|
|
1290
|
+
|
|
1291
|
+
<td></td>
|
|
1292
|
+
|
|
1293
|
+
<td>
|
|
1294
|
+
<div class="bg-white" style="padding: 8px; box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.08);">
|
|
1295
|
+
<div class="image-box" style="padding-bottom: 10px; border-bottom: 1px solid #e8e8e8;">
|
|
1296
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202604100851/resource-03.png" />
|
|
1297
|
+
</div>
|
|
1298
|
+
<p class="text-size-[14px]" style="min-height: 59px; margin-top: 10px; line-height: 1.4;">From Challenges to Breakthroughs in Culturing Neurons</p>
|
|
1299
|
+
<p style="margin-top: 5px;">
|
|
1300
|
+
<a href="https://www.procellsystem.com/resources/cell-culture-academy/from-challenges-to-breakthroughs-in-culturing-neurons-2092" class="decoration-none text-link-light text-size-[18px]">Read more</a>
|
|
1301
|
+
</p>
|
|
1302
|
+
</div>
|
|
1303
|
+
</td>
|
|
1304
|
+
</tr>
|
|
1305
|
+
</tbody>
|
|
1306
|
+
</table>
|
|
1307
|
+
</td>
|
|
1308
|
+
<td></td>
|
|
1309
|
+
</tr>
|
|
1310
|
+
|
|
1311
|
+
<tr>
|
|
1312
|
+
<td colspan="4" class="h-24"></td>
|
|
1313
|
+
</tr>
|
|
1314
|
+
|
|
1315
|
+
<tr>
|
|
1316
|
+
<td></td>
|
|
1317
|
+
<td colspan="2">
|
|
1318
|
+
<span class="rectangle-title">Current Promotion</span>
|
|
1319
|
+
</td>
|
|
1320
|
+
<td></td>
|
|
1321
|
+
</tr>
|
|
1322
|
+
|
|
1323
|
+
<tr>
|
|
1324
|
+
<td colspan="4" class="h-12"></td>
|
|
1325
|
+
</tr>
|
|
1326
|
+
|
|
1327
|
+
<tr>
|
|
1328
|
+
<td></td>
|
|
1329
|
+
<td colspan="2">
|
|
1330
|
+
<table cellspacing="0" cellpadding="0" border="0">
|
|
1331
|
+
<colgroup>
|
|
1332
|
+
<col />
|
|
1333
|
+
<col />
|
|
1334
|
+
</colgroup>
|
|
1335
|
+
|
|
1336
|
+
<tbody>
|
|
1337
|
+
<tr>
|
|
1338
|
+
<td rowspan="3" class="image-box">
|
|
1339
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202604100851/current-promotion.png" />
|
|
1340
|
+
</td>
|
|
1341
|
+
<td class="h-0" style="padding-bottom: 16px;"><strong>Request Your Free Sample Today</strong></td>
|
|
1342
|
+
</tr>
|
|
1343
|
+
|
|
1344
|
+
<tr>
|
|
1345
|
+
<td class="h-0 text-size-[14px]">Validate our high-purity neural solutions in your own lab. Apply for a free sample to ensure consistent, reliable results for your next breakthrough.</td>
|
|
1346
|
+
</tr>
|
|
1347
|
+
|
|
1348
|
+
<tr>
|
|
1349
|
+
<td class="text-right">
|
|
1350
|
+
<a href="https://www.procellsystem.com/promotions/get-free-sample" class="button bg-light-primary decoration-none text-center">Request Free Samples</a>
|
|
1351
|
+
</td>
|
|
1352
|
+
</tr>
|
|
1353
|
+
</tbody>
|
|
1354
|
+
</table>
|
|
1355
|
+
</td>
|
|
1356
|
+
<td></td>
|
|
1357
|
+
</tr>
|
|
1358
|
+
|
|
1359
|
+
<tr>
|
|
1360
|
+
<td colspan="4" class="h-24"></td>
|
|
1361
|
+
</tr>
|
|
1362
|
+
|
|
1363
|
+
<tr>
|
|
1364
|
+
<td class="bg-primary"></td>
|
|
1365
|
+
<td colspan="3">
|
|
1366
|
+
<span class="title-slash">Current Promotion</span>
|
|
1367
|
+
</td>
|
|
1368
|
+
</tr>
|
|
1369
|
+
|
|
1370
|
+
<tr>
|
|
1371
|
+
<td colspan="4" class="h-16"></td>
|
|
1372
|
+
</tr>
|
|
1373
|
+
|
|
1374
|
+
<tr>
|
|
1375
|
+
<td colspan="4" class="image-box relative">
|
|
1376
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202603301420/current-promotion.jpg" />
|
|
1377
|
+
<a href="https://www.procellsystem.com/promotions/get-free-sample" class="button absolute decoration-none text-size-[14px]" style="left: 5%; bottom: 16px;">Request Free Samples</a>
|
|
1378
|
+
</td>
|
|
1379
|
+
</tr>
|
|
1380
|
+
|
|
1381
|
+
<tr>
|
|
1382
|
+
<td colspan="4" class="h-16"></td>
|
|
1383
|
+
</tr>
|
|
1384
|
+
|
|
1385
|
+
<tr>
|
|
1386
|
+
<td></td>
|
|
1387
|
+
<td colspan="2">
|
|
1388
|
+
<span class="square-title">Cited Product</span>
|
|
1389
|
+
</td>
|
|
1390
|
+
<td></td>
|
|
1391
|
+
</tr>
|
|
1392
|
+
|
|
1393
|
+
<tr>
|
|
1394
|
+
<td colspan="4" class="h-12"></td>
|
|
1395
|
+
</tr>
|
|
1396
|
+
|
|
1397
|
+
<tr>
|
|
1398
|
+
<td></td>
|
|
1399
|
+
<td colspan="2">
|
|
1400
|
+
<table cellspacing="0" cellpadding="0" border="0" class="table-stripe text-center">
|
|
1401
|
+
<colgroup>
|
|
1402
|
+
<col />
|
|
1403
|
+
<col />
|
|
1404
|
+
<col />
|
|
1405
|
+
</colgroup>
|
|
1406
|
+
|
|
1407
|
+
<thead>
|
|
1408
|
+
<tr>
|
|
1409
|
+
<th>Product Name</th>
|
|
1410
|
+
<th>Cat. No.</th>
|
|
1411
|
+
<th>Product Type</th>
|
|
1412
|
+
</tr>
|
|
1413
|
+
</thead>
|
|
1414
|
+
|
|
1415
|
+
<tbody>
|
|
1416
|
+
<tr>
|
|
1417
|
+
<td>
|
|
1418
|
+
<a href="" class="text-link">MEM (with NEAA)</a>
|
|
1419
|
+
</td>
|
|
1420
|
+
<td>
|
|
1421
|
+
<a href="" class="text-link">PM150410</a>
|
|
1422
|
+
</td>
|
|
1423
|
+
<td rowspan="3">
|
|
1424
|
+
<a href="" class="text-link">Liquid Basal Medium</a>
|
|
1425
|
+
</td>
|
|
1426
|
+
</tr>
|
|
1427
|
+
|
|
1428
|
+
<tr>
|
|
1429
|
+
<td>
|
|
1430
|
+
<a href="" class="text-link">MEM (with NEAA)</a>
|
|
1431
|
+
</td>
|
|
1432
|
+
<td>
|
|
1433
|
+
<a href="" class="text-link">PM150410</a>
|
|
1434
|
+
</td>
|
|
1435
|
+
</tr>
|
|
1436
|
+
|
|
1437
|
+
<tr>
|
|
1438
|
+
<td>
|
|
1439
|
+
<a href="" class="text-link">MEM (with NEAA)</a>
|
|
1440
|
+
</td>
|
|
1441
|
+
<td>
|
|
1442
|
+
<a href="" class="text-link">PM150410</a>
|
|
1443
|
+
</td>
|
|
1444
|
+
</tr>
|
|
1445
|
+
|
|
1446
|
+
<tr>
|
|
1447
|
+
<td>
|
|
1448
|
+
<a href="" class="text-link">MEM (with NEAA)</a>
|
|
1449
|
+
</td>
|
|
1450
|
+
<td>
|
|
1451
|
+
<a href="" class="text-link">PM150410</a>
|
|
1452
|
+
</td>
|
|
1453
|
+
<td>
|
|
1454
|
+
<a href="" class="text-link">Liquid Basal Medium</a>
|
|
1455
|
+
</td>
|
|
1456
|
+
</tr>
|
|
1457
|
+
</tbody>
|
|
1458
|
+
</table>
|
|
1459
|
+
</td>
|
|
1460
|
+
<td></td>
|
|
1461
|
+
</tr>
|
|
1462
|
+
|
|
1463
|
+
<tr>
|
|
1464
|
+
<td colspan="4" class="h-16"></td>
|
|
1465
|
+
</tr>
|
|
1466
|
+
|
|
1467
|
+
<tr>
|
|
1468
|
+
<td></td>
|
|
1469
|
+
<td colspan="2">
|
|
1470
|
+
<span class="square-title">Recommended for you</span>
|
|
1471
|
+
</td>
|
|
1472
|
+
<td></td>
|
|
1473
|
+
</tr>
|
|
1474
|
+
|
|
1475
|
+
<tr>
|
|
1476
|
+
<td colspan="4" class="h-16"></td>
|
|
1477
|
+
</tr>
|
|
1478
|
+
|
|
1479
|
+
<tr>
|
|
1480
|
+
<td></td>
|
|
1481
|
+
<td colspan="2">
|
|
1482
|
+
<table cellspacing="0" cellpadding="0" border="0" class="table-stripe text-center">
|
|
1483
|
+
<colgroup>
|
|
1484
|
+
<col />
|
|
1485
|
+
<col />
|
|
1486
|
+
<col />
|
|
1487
|
+
</colgroup>
|
|
1488
|
+
|
|
1489
|
+
<tbody>
|
|
1490
|
+
<tr>
|
|
1491
|
+
<td><strong>Product Name</strong></td>
|
|
1492
|
+
<td><strong>Cat. No.</strong></td>
|
|
1493
|
+
<td><strong>Product Type</strong></td>
|
|
1494
|
+
</tr>
|
|
1495
|
+
|
|
1496
|
+
<tr>
|
|
1497
|
+
<td>
|
|
1498
|
+
<a href="" class="text-link">MEM (with NEAA)</a>
|
|
1499
|
+
</td>
|
|
1500
|
+
<td>
|
|
1501
|
+
<a href="" class="text-link">PM150410</a>
|
|
1502
|
+
</td>
|
|
1503
|
+
<td rowspan="3">
|
|
1504
|
+
<a href="" class="text-link">Liquid Basal Medium</a>
|
|
1505
|
+
</td>
|
|
1506
|
+
</tr>
|
|
1507
|
+
|
|
1508
|
+
<tr>
|
|
1509
|
+
<td>
|
|
1510
|
+
<a href="" class="text-link">MEM (with NEAA)</a>
|
|
1511
|
+
</td>
|
|
1512
|
+
<td>
|
|
1513
|
+
<a href="" class="text-link">PM150410</a>
|
|
1514
|
+
</td>
|
|
1515
|
+
</tr>
|
|
1516
|
+
|
|
1517
|
+
<tr>
|
|
1518
|
+
<td>
|
|
1519
|
+
<a href="" class="text-link">MEM (with NEAA)</a>
|
|
1520
|
+
</td>
|
|
1521
|
+
<td>
|
|
1522
|
+
<a href="" class="text-link">PM150410</a>
|
|
1523
|
+
</td>
|
|
1524
|
+
</tr>
|
|
1525
|
+
|
|
1526
|
+
<tr>
|
|
1527
|
+
<td>
|
|
1528
|
+
<a href="" class="text-link">MEM (with NEAA)</a>
|
|
1529
|
+
</td>
|
|
1530
|
+
<td>
|
|
1531
|
+
<a href="" class="text-link">PM150410</a>
|
|
1532
|
+
</td>
|
|
1533
|
+
<td>
|
|
1534
|
+
<a href="" class="text-link">Liquid Basal Medium</a>
|
|
1535
|
+
</td>
|
|
1536
|
+
</tr>
|
|
1537
|
+
</tbody>
|
|
1538
|
+
</table>
|
|
1539
|
+
</td>
|
|
1540
|
+
<td></td>
|
|
1541
|
+
</tr>
|
|
1542
|
+
|
|
1543
|
+
<tr>
|
|
1544
|
+
<td colspan="4" class="h-24"></td>
|
|
1545
|
+
</tr>
|
|
1546
|
+
|
|
1547
|
+
<tr>
|
|
1548
|
+
<td></td>
|
|
1549
|
+
<td colspan="2">
|
|
1550
|
+
<span class="square-title">Cited Product</span>
|
|
1551
|
+
</td>
|
|
1552
|
+
<td></td>
|
|
1553
|
+
</tr>
|
|
1554
|
+
|
|
1555
|
+
<tr>
|
|
1556
|
+
<td colspan="4" class="h-12"></td>
|
|
1557
|
+
</tr>
|
|
1558
|
+
|
|
1559
|
+
<tr>
|
|
1560
|
+
<td></td>
|
|
1561
|
+
<td colspan="2">
|
|
1562
|
+
<table cellspacing="0" cellpadding="0" border="0" class="table-stripe text-center">
|
|
1563
|
+
<colgroup>
|
|
1564
|
+
<col />
|
|
1565
|
+
<col width="30%" />
|
|
1566
|
+
</colgroup>
|
|
1567
|
+
|
|
1568
|
+
<tbody>
|
|
1569
|
+
<tr>
|
|
1570
|
+
<td>Product Name</td>
|
|
1571
|
+
<td>Cat. No.</td>
|
|
1572
|
+
</tr>
|
|
1573
|
+
|
|
1574
|
+
<tr>
|
|
1575
|
+
<td>
|
|
1576
|
+
<a href="https://www.procellsystem.com/p/rpmi-1640-pm150110-71499" class="text-link">RPMI-1640</a>
|
|
1577
|
+
</td>
|
|
1578
|
+
<td>
|
|
1579
|
+
<a href="https://www.procellsystem.com/p/rpmi-1640-pm150110-71499" class="text-link">PM150110</a>
|
|
1580
|
+
</td>
|
|
1581
|
+
</tr>
|
|
1582
|
+
|
|
1583
|
+
<tr>
|
|
1584
|
+
<td>
|
|
1585
|
+
<a href="https://www.procellsystem.com/p/dmem-high-glucose-pm150210-69874" class="text-link">DMEM (High glucose)</a>
|
|
1586
|
+
</td>
|
|
1587
|
+
<td>
|
|
1588
|
+
<a href="https://www.procellsystem.com/p/dmem-high-glucose-pm150210-69874" class="text-link">PM150210</a>
|
|
1589
|
+
</td>
|
|
1590
|
+
</tr>
|
|
1591
|
+
</tbody>
|
|
1592
|
+
</table>
|
|
1593
|
+
</td>
|
|
1594
|
+
<td></td>
|
|
1595
|
+
</tr>
|
|
1596
|
+
|
|
1597
|
+
<tr>
|
|
1598
|
+
<td colspan="4" class="h-24"></td>
|
|
1599
|
+
</tr>
|
|
1600
|
+
|
|
1601
|
+
<tr>
|
|
1602
|
+
<td></td>
|
|
1603
|
+
<td colspan="2">
|
|
1604
|
+
<span class="square-title">Recommended for you</span>
|
|
1605
|
+
</td>
|
|
1606
|
+
<td></td>
|
|
1607
|
+
</tr>
|
|
1608
|
+
|
|
1609
|
+
<tr>
|
|
1610
|
+
<td colspan="4" class="h-12"></td>
|
|
1611
|
+
</tr>
|
|
1612
|
+
|
|
1613
|
+
<tr>
|
|
1614
|
+
<td></td>
|
|
1615
|
+
<td colspan="2">
|
|
1616
|
+
<table cellspacing="0" cellpadding="0" border="0" class="table-stripe text-center">
|
|
1617
|
+
<colgroup>
|
|
1618
|
+
<col />
|
|
1619
|
+
<col />
|
|
1620
|
+
<col />
|
|
1621
|
+
</colgroup>
|
|
1622
|
+
|
|
1623
|
+
<tbody>
|
|
1624
|
+
<tr>
|
|
1625
|
+
<td>
|
|
1626
|
+
<a href="https://www.procellsystem.com/p/dmem-f12-pm150312-68139" class="decoration-none text-link-hover">
|
|
1627
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202604211419/PM150312-500mL-cropped.webp" style="height: 108px;" />
|
|
1628
|
+
<p>DMEM/F12</p>
|
|
1629
|
+
<p>Cat. No.: PM150312</p>
|
|
1630
|
+
</a>
|
|
1631
|
+
</td>
|
|
1632
|
+
|
|
1633
|
+
<td>
|
|
1634
|
+
<a href="https://www.procellsystem.com/p/dmem-low-glucose-pm150220-70471" class="decoration-none text-link-hover">
|
|
1635
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202604211419/PM150220-500mL-cropped.webp" style="height: 108px;" />
|
|
1636
|
+
<p>DMEM (Low glucose)</p>
|
|
1637
|
+
<p>Cat. No.: PM150220</p>
|
|
1638
|
+
</a>
|
|
1639
|
+
</td>
|
|
1640
|
+
|
|
1641
|
+
<td>
|
|
1642
|
+
<a href="https://www.procellsystem.com/p/mem-with-neaa-pm150410-71162" class="decoration-none text-link-hover">
|
|
1643
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/202604211419/PM150410-500mL-cropped.webp" style="height: 108px;" />
|
|
1644
|
+
<p>MEM, with NEAA</p>
|
|
1645
|
+
<p>Cat. No.: PM150410</p>
|
|
1646
|
+
</a>
|
|
1647
|
+
</td>
|
|
1648
|
+
</tr>
|
|
1649
|
+
</tbody>
|
|
1650
|
+
</table>
|
|
1651
|
+
</td>
|
|
1652
|
+
<td></td>
|
|
1653
|
+
</tr>
|
|
1654
|
+
</tbody>
|
|
1655
|
+
</table>
|
|
1656
|
+
<!-- 主体 end -->
|
|
1657
|
+
|
|
1658
|
+
<!-- 页尾 start -->
|
|
1659
|
+
<table cellspacing="0" cellpadding="0" border="0" class="footer">
|
|
1660
|
+
<colgroup>
|
|
1661
|
+
<col width="10px" />
|
|
1662
|
+
<col />
|
|
1663
|
+
<col />
|
|
1664
|
+
<col width="10px" />
|
|
1665
|
+
</colgroup>
|
|
1666
|
+
|
|
1667
|
+
<tbody>
|
|
1668
|
+
<tr>
|
|
1669
|
+
<td colspan="4" class="h-24"></td>
|
|
1670
|
+
</tr>
|
|
1671
|
+
|
|
1672
|
+
<tr>
|
|
1673
|
+
<td></td>
|
|
1674
|
+
<td colspan="2">
|
|
1675
|
+
<table cellspacing="0" cellpadding="0" border="0" class="connect-us text-center">
|
|
1676
|
+
<colgroup>
|
|
1677
|
+
<col width="20%" />
|
|
1678
|
+
<col />
|
|
1679
|
+
<col />
|
|
1680
|
+
<col />
|
|
1681
|
+
<col />
|
|
1682
|
+
<!-- <col /> -->
|
|
1683
|
+
<col />
|
|
1684
|
+
<col />
|
|
1685
|
+
<col width="20%" />
|
|
1686
|
+
</colgroup>
|
|
1687
|
+
|
|
1688
|
+
<tbody>
|
|
1689
|
+
<tr>
|
|
1690
|
+
<td></td>
|
|
1691
|
+
<td colspan="6" class="connect-us-title font-bold text-size-[14px]">Connect with us</td>
|
|
1692
|
+
<td></td>
|
|
1693
|
+
</tr>
|
|
1694
|
+
|
|
1695
|
+
<tr>
|
|
1696
|
+
<td></td>
|
|
1697
|
+
<td class="line-height-0 font-size-0">
|
|
1698
|
+
<a href="https://www.linkedin.com/company/procellsystem" class="image-box">
|
|
1699
|
+
<img src="https://oss.pri-cella.com/edm/edmfooter/2.png" alt="" />
|
|
1700
|
+
</a>
|
|
1701
|
+
</td>
|
|
1702
|
+
<td class="line-height-0 font-size-0">
|
|
1703
|
+
<a href="https://www.youtube.com/channel/UCONFhi6cGpDFfZlKBG65J6g" class="image-box">
|
|
1704
|
+
<img src="https://oss.pri-cella.com/edm/edmfooter/1.png" alt="" />
|
|
1705
|
+
</a>
|
|
1706
|
+
</td>
|
|
1707
|
+
<td class="line-height-0 font-size-0">
|
|
1708
|
+
<a href="https://www.facebook.com/procellsystem" class="image-box">
|
|
1709
|
+
<img src="https://oss.pri-cella.com/edm/edmfooter/3.png" alt="" />
|
|
1710
|
+
</a>
|
|
1711
|
+
</td>
|
|
1712
|
+
<td class="line-height-0 font-size-0">
|
|
1713
|
+
<a href="https://www.instagram.com/procellsystem" class="image-box">
|
|
1714
|
+
<img src="https://oss.pri-cella.com/edm/edmfooter/5.png" alt="" />
|
|
1715
|
+
</a>
|
|
1716
|
+
</td>
|
|
1717
|
+
<!-- <td class="line-height-0 font-size-0">
|
|
1718
|
+
<a href="https://www.pinterest.com/procellsystem" class="image-box">
|
|
1719
|
+
<img src="https://oss.pri-cella.com/edm/edmfooter/6.png" alt="" />
|
|
1720
|
+
</a>
|
|
1721
|
+
</td> -->
|
|
1722
|
+
<td class="line-height-0 font-size-0">
|
|
1723
|
+
<a href="https://www.tiktok.com/@procellsystem" class="image-box">
|
|
1724
|
+
<img src="https://oss.pri-cella.com/edm/edmfooter/7.png" alt="" />
|
|
1725
|
+
</a>
|
|
1726
|
+
</td>
|
|
1727
|
+
<td class="line-height-0 font-size-0">
|
|
1728
|
+
<a href="https://wa.me/13466669098" class="image-box">
|
|
1729
|
+
<img src="https://pri-cella.oss-ap-southeast-1.aliyuncs.com/edm/edmfooter/what'sup.webp" alt="" />
|
|
1730
|
+
</a>
|
|
1731
|
+
</td>
|
|
1732
|
+
<td></td>
|
|
1733
|
+
</tr>
|
|
1734
|
+
|
|
1735
|
+
<tr>
|
|
1736
|
+
<td></td>
|
|
1737
|
+
<td colspan="6" class="connect-us-separator"></td>
|
|
1738
|
+
<td></td>
|
|
1739
|
+
</tr>
|
|
1740
|
+
</tbody>
|
|
1741
|
+
</table>
|
|
1742
|
+
</td>
|
|
1743
|
+
<td></td>
|
|
1744
|
+
</tr>
|
|
1745
|
+
|
|
1746
|
+
<tr>
|
|
1747
|
+
<td colspan="4" class="h-24"></td>
|
|
1748
|
+
</tr>
|
|
1749
|
+
|
|
1750
|
+
<tr>
|
|
1751
|
+
<td></td>
|
|
1752
|
+
<td colspan="2">
|
|
1753
|
+
<table cellspacing="0" cellpadding="0" border="0" class="contact-us text-center align-middle">
|
|
1754
|
+
<colgroup>
|
|
1755
|
+
<!-- <col width="25%" /> -->
|
|
1756
|
+
<col />
|
|
1757
|
+
<!-- <col width="25%" /> -->
|
|
1758
|
+
</colgroup>
|
|
1759
|
+
|
|
1760
|
+
<tbody>
|
|
1761
|
+
<tr>
|
|
1762
|
+
<!-- <td></td> -->
|
|
1763
|
+
<td>
|
|
1764
|
+
<strong>Procell Biotechnology Co.,Ltd.</strong>
|
|
1765
|
+
</td>
|
|
1766
|
+
<!-- <td rowspan="4">
|
|
1767
|
+
<div class="contact-us-qrcode image-box">
|
|
1768
|
+
<img src="https://oss.pri-cella.com/images/edmewm.png" alt="" />
|
|
1769
|
+
</div>
|
|
1770
|
+
<p class="contact-us-whatsApp">WhatsApp Business Account</p>
|
|
1771
|
+
</td> -->
|
|
1772
|
+
</tr>
|
|
1773
|
+
|
|
1774
|
+
<tr>
|
|
1775
|
+
<!-- <td></td> -->
|
|
1776
|
+
<td>
|
|
1777
|
+
<img src="https://file.elabscience.com/edm/edm2024491632/电话.png" alt="" class="align-middle" />
|
|
1778
|
+
<span class="align-middle">Toll-free: 1-888-852-8623</span>
|
|
1779
|
+
</td>
|
|
1780
|
+
</tr>
|
|
1781
|
+
<tr>
|
|
1782
|
+
<!-- <td></td> -->
|
|
1783
|
+
<td>
|
|
1784
|
+
<img src="https://file.elabscience.com/edm/edm2024491632/地球.png" alt="" class="align-middle" />
|
|
1785
|
+
<span class="align-middle">Web: <a href="https://www.procellsystem.com/">www.procellsystem.com</a></span>
|
|
1786
|
+
</td>
|
|
1787
|
+
</tr>
|
|
1788
|
+
<tr>
|
|
1789
|
+
<!-- <td></td> -->
|
|
1790
|
+
<td>
|
|
1791
|
+
<img src="https://file.elabscience.com/edm/edm2024491632/邮件.png" alt="" class="align-middle" />
|
|
1792
|
+
<span class="align-middle">Email: <a href="mailto:orders@procellsystem.com" class="decoration-none">orders@procellsystem.com</a>;</span>
|
|
1793
|
+
</td>
|
|
1794
|
+
</tr>
|
|
1795
|
+
<tr>
|
|
1796
|
+
<!-- <td></td> -->
|
|
1797
|
+
<td>
|
|
1798
|
+
<a href="mailto:techsupport@procellsystem.com" class="decoration-none" style="padding-left: 13px;">techsupport@procellsystem.com</a>
|
|
1799
|
+
</td>
|
|
1800
|
+
<!-- <td></td> -->
|
|
1801
|
+
</tr>
|
|
1802
|
+
<tr>
|
|
1803
|
+
<td colspan="1" style="padding-top: 12px;">14780 Memorial Drive, Suite 105, Houston, Texas, 77079, USA</td>
|
|
1804
|
+
</tr>
|
|
1805
|
+
</tbody>
|
|
1806
|
+
</table>
|
|
1807
|
+
</td>
|
|
1808
|
+
<td></td>
|
|
1809
|
+
</tr>
|
|
1810
|
+
|
|
1811
|
+
<tr>
|
|
1812
|
+
<td colspan="4" class="h-32"></td>
|
|
1813
|
+
</tr>
|
|
1814
|
+
</tbody>
|
|
1815
|
+
</table>
|
|
1816
|
+
<!-- 页尾 end -->
|
|
1817
|
+
</td>
|
|
1818
|
+
</tr>
|
|
1819
|
+
</tbody>
|
|
1820
|
+
</table>
|
|
1821
|
+
</body>
|
|
1822
|
+
</html>
|