.cc-page {
--blue: #6082B6; --navy: #1a2b42; --dark: #0f172a; --white: #ffffff;
--text: #64748b; --line: #e2e8f0; --bg: #f8fafc;
--shadow: rgba(30,41,59,.10);
--glass: rgba(255,255,255,.06); --glass-b: rgba(255,255,255,.15);
--blue-dim: rgba(96,130,182,.08);
--font: 'Manrope', system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
--ease: cubic-bezier(.16,1,.3,1); --ease-out: cubic-bezier(.33,1,.68,1);
--spring: cubic-bezier(.34,1.56,.64,1);
display: block; width: 100%; font-family: var(--font); color: var(--dark);
line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: clip;
}
.cc-page *, .cc-page *::before, .cc-page *::after { box-sizing: border-box; margin: 0; padding: 0; }
.cc-page img { max-width: 100%; height: auto; display: block; }
.cc-page a { text-decoration: none; color: inherit; }
.cc-page:not(.js-ready) [data-reveal] { opacity: 1!important; transform: none!important; }
.cc-page [data-reveal] { opacity: 0; transition: opacity .35s var(--ease-out), transform .35s var(--ease-out); }
.cc-page [data-reveal="up"] { transform: translateY(24px); }
.cc-page [data-reveal].is-visible { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); }
.cc-page .cc-progress { position: fixed; top: 0; left: 0; width: 0%; height: 2px; background: linear-gradient(90deg, var(--blue), var(--navy)); z-index: 9999; pointer-events: none; will-change: width; }
.cc-page .cc-divider { width: 100%; max-width: 1280px; margin: 0 auto; height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); position: relative; overflow: hidden; }
.cc-page .cc-divider::after { content: ''; position: absolute; inset: 0; left: -100%; background: linear-gradient(90deg, transparent, var(--blue), transparent); }
.cc-page .cc-divider.is-visible::after { animation: ccShimmer 1.4s var(--ease) forwards; }
@keyframes ccZoomOut { from { transform: scale(1.1); } to { transform: scale(1); } }
@keyframes ccSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes ccShimmer { 0% { left: -100%; opacity: 1; } 100% { left: 100%; opacity: 0; } }
.cc-page #biz-hero { position: relative; width: 100%; height: 60vh; min-height: 500px; display: flex; justify-content: center; align-items: center; overflow: hidden; color: var(--white); background: var(--dark); }
.cc-page #biz-hero .hero-bg { position: absolute; inset: 0; z-index: 1; background: url('https://www.can-chem.com/wp-content/uploads/2026/01/Background_JH_Site-e1769640028170.webp') center/cover no-repeat; animation: ccZoomOut 10s ease-out forwards; filter: saturate(.4) brightness(.85); will-change: transform; }
.cc-page #biz-hero .hero-dim { position: absolute; inset: 0; z-index: 2; background: radial-gradient(ellipse 80% 70% at 50% 45%, rgba(15,23,42,.5), rgba(15,23,42,.85)); }
.cc-page #biz-hero .hero-card { position: relative; z-index: 3; width: 90%; max-width: 700px; padding: clamp(40px, 6vw, 60px) clamp(24px, 5vw, 40px); background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-b); border-radius: 20px; box-shadow: 0 24px 48px rgba(0,0,0,.2); text-align: center; opacity: 0; transform: translateY(30px); animation: ccSlideUp 1s var(--ease) .3s forwards; }
.cc-page #biz-hero .hero-tag { font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 12px; display: block; }
.cc-page #biz-hero h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); font-weight: 800; letter-spacing: -.03em; margin: 0 0 16px; color: var(--white); line-height: 1; }
.cc-page #biz-hero .hero-desc { font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 400; line-height: 1.5; color: rgba(255,255,255,.85); margin: 0 auto; max-width: 90%; }
@media(max-width:1024px) { .cc-page #biz-hero { height: auto; min-height: 50vh; padding: 100px 0 60px; } }
.cc-page #biz-pillars { padding: clamp(5rem, 8vw, 8rem) clamp(1.5rem, 4vw, 4rem); background: var(--white); }
.cc-page #biz-pillars .pillars-inner { max-width: 1200px; margin: 0 auto; }
.cc-page #biz-pillars .pillars-header { margin-bottom: clamp(3rem, 5vw, 4rem); }
.cc-page #biz-pillars .pillars-tag { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: var(--blue); margin-bottom: 1rem; display: block; opacity: .7; }
.cc-page #biz-pillars .pillars-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--navy); letter-spacing: -.02em; line-height: 1.1; }
.cc-page #biz-pillars .pillars-title strong { font-weight: 700; }
.cc-page .pillar-row { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 2.5rem); padding: clamp(2rem, 4vw, 3rem) 0; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; transition: all .5s var(--ease); cursor: pointer; }
.cc-page .pillar-row:first-of-type { border-top: 1px solid var(--line); }
.cc-page .pillar-row::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--blue-dim), transparent 70%); opacity: 0; transition: opacity .5s var(--ease); z-index: 0; }
.cc-page .pillar-row:hover::before { opacity: 1; }
.cc-page .pillar-row:hover { padding-left: clamp(1rem, 2vw, 2rem); }
.cc-page .pillar-row > * { position: relative; z-index: 1; }
.cc-page .pillar-idx { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 300; color: var(--line); letter-spacing: -.02em; line-height: 1; min-width: 70px; transition: color .4s var(--ease); font-variant-numeric: tabular-nums; }
.cc-page .pillar-row:hover .pillar-idx { color: var(--blue); }
.cc-page .pillar-body { flex: 1; }
.cc-page .pillar-name { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1.1; margin-bottom: .4rem; transition: color .4s var(--ease); }
.cc-page .pillar-row:hover .pillar-name { color: var(--blue); }
.cc-page .pillar-desc { font-size: clamp(.88rem, 1.2vw, 1rem); color: var(--text); line-height: 1.6; max-width: 560px; }
.cc-page .pillar-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; opacity: 0; transform: translateX(-12px); transition: all .4s var(--spring); }
.cc-page .pillar-arrow svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s var(--spring); }
.cc-page .pillar-row:hover .pillar-arrow { opacity: 1; transform: none; border-color: var(--blue); box-shadow: 0 4px 12px rgba(96,130,182,.15); }
.cc-page .pillar-row:hover .pillar-arrow svg { transform: translateX(2px); }
@media(max-width:600px) { .cc-page .pillar-idx { font-size: 2rem; min-width: 40px; } .cc-page .pillar-arrow { display: none; } }
.cc-page #biz-stats { padding: clamp(4rem, 6vw, 6rem) clamp(1.5rem, 4vw, 4rem); background: var(--white); }
.cc-page #biz-stats .stats-inner { max-width: 1200px; margin: 0 auto; }
.cc-page #biz-stats .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.cc-page #biz-stats .stat-cell { padding: clamp(2rem, 3vw, 3rem) clamp(1rem, 2vw, 2rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; transition: background .3s; }
.cc-page #biz-stats .stat-cell:hover { background: rgba(96,130,182,.02); }
.cc-page #biz-stats .stat-num { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 300; color: var(--navy); line-height: 1; margin-bottom: .5rem; font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.cc-page #biz-stats .stat-suffix { color: var(--blue); font-size: .4em; margin-left: 2px; vertical-align: super; font-weight: 500; }
.cc-page #biz-stats .stat-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--text); font-weight: 700; }
@media(max-width:900px) { .cc-page #biz-stats .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:600px) { .cc-page #biz-stats .stats-grid { grid-template-columns: 1fr; border: none; } .cc-page #biz-stats .stat-cell { border: 1px solid var(--line); border-radius: 10px; margin-bottom: .75rem; display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 2rem; text-align: left; } .cc-page #biz-stats .stat-num { margin: 0; font-size: 2rem; } .cc-page #biz-stats .stat-label { text-align: right; } }
.cc-page #biz-edge { padding: clamp(5rem, 8vw, 8rem) clamp(1.5rem, 4vw, 4rem); background: var(--white); }
.cc-page #biz-edge .edge-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(3rem, 6vw, 5rem); align-items: start; }
.cc-page #biz-edge .edge-sticky { position: sticky; top: 100px; }
.cc-page #biz-edge .edge-tag { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: var(--blue); display: block; margin-bottom: 1rem; opacity: .7; }
.cc-page #biz-edge .edge-title { font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1.08; font-weight: 800; color: var(--navy); letter-spacing: -.03em; }
.cc-page #biz-edge .edge-intro { margin-bottom: 2.5rem; border-bottom: 1px solid var(--line); padding-bottom: 2rem; }
.cc-page #biz-edge .edge-intro h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); font-weight: 700; color: var(--blue); margin: 0 0 .8rem; line-height: 1.2; }
.cc-page #biz-edge .edge-intro p { font-size: 1.05rem; line-height: 1.7; color: var(--text); max-width: 90%; }
.cc-page #biz-edge .edge-cards { display: flex; flex-direction: column; gap: 1.2rem; }
.cc-page #biz-edge .edge-card { padding: clamp(1.5rem, 3vw, 2rem); background: var(--white); border: 1px solid var(--line); border-radius: 10px; position: relative; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
.cc-page #biz-edge .edge-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--blue); opacity: .2; transition: opacity .3s; }
.cc-page #biz-edge .edge-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px -10px var(--shadow); border-color: rgba(96,130,182,.2); }
.cc-page #biz-edge .edge-card:hover::before { opacity: 1; }
.cc-page #biz-edge .edge-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 0 0 .5rem; line-height: 1.3; }
.cc-page #biz-edge .edge-card p { font-size: .9rem; line-height: 1.65; color: var(--text); margin: 0; }
@media(max-width:900px) { .cc-page #biz-edge .edge-inner { grid-template-columns: 1fr; } .cc-page #biz-edge .edge-sticky { position: static; margin-bottom: 1rem; } .cc-page #biz-edge .edge-intro p { max-width: 100%; } }
/* ── FAQ CSS (Enhanced) ── */
.cc-page #biz-faq { padding: clamp(5rem, 8vw, 8rem) clamp(1.5rem, 4vw, 4rem); background: var(--bg); position: relative; overflow: hidden; }
.cc-page #biz-faq::before { content: ''; position: absolute; top: -200px; right: -200px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(96,130,182,.06) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.cc-page #biz-faq::after { content: ''; position: absolute; bottom: -150px; left: -150px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(96,130,182,.04) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.cc-page #biz-faq .faq-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.8fr; gap: clamp(3rem, 6vw, 5rem); align-items: start; position: relative; z-index: 1; }
.cc-page #biz-faq .faq-header { text-align: left; position: sticky; top: 100px; }
.cc-page #biz-faq .faq-tag { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: var(--blue); display: block; margin-bottom: .75rem; opacity: .7; }
.cc-page #biz-faq .faq-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--navy); letter-spacing: -.02em; line-height: 1.1; margin-bottom: 1rem; }
.cc-page #biz-faq .faq-subtitle { font-size: 1rem; line-height: 1.65; color: var(--text); margin-bottom: 2rem; max-width: 320px; }
.cc-page #biz-faq .faq-cta { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.6rem; background: var(--navy); color: var(--white); font-size: .85rem; font-weight: 600; border-radius: 8px; letter-spacing: .02em; transition: all .3s var(--ease); box-shadow: 0 4px 12px rgba(26,43,66,.15); }
.cc-page #biz-faq .faq-cta:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(96,130,182,.25); }
.cc-page #biz-faq .faq-cta svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform .3s var(--spring); }
.cc-page #biz-faq .faq-cta:hover svg { transform: translateX(3px); }
.cc-page #biz-faq .faq-list { display: flex; flex-direction: column; gap: .75rem; }
.cc-page #biz-faq .faq-item { border: 1px solid var(--line); border-radius: 12px; background: var(--white); overflow: hidden; transition: all .4s var(--ease); box-shadow: 0 1px 3px rgba(30,41,59,.04); }
.cc-page #biz-faq .faq-item:first-of-type { border-top: 1px solid var(--line); }
.cc-page #biz-faq .faq-item:hover { border-color: rgba(96,130,182,.25); box-shadow: 0 8px 24px -6px rgba(96,130,182,.1); }
.cc-page #biz-faq .faq-item[open] { border-color: rgba(96,130,182,.3); box-shadow: 0 12px 32px -8px rgba(96,130,182,.12); background: linear-gradient(135deg, var(--white) 0%, rgba(96,130,182,.02) 100%); }
.cc-page #biz-faq .faq-q { padding: 1.4rem 1.6rem; font-size: 1.05rem; font-weight: 700; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; list-style: none; transition: color .3s; }
.cc-page #biz-faq .faq-q::-webkit-details-marker { display: none; }
.cc-page #biz-faq .faq-q:hover { color: var(--blue); }
.cc-page #biz-faq .faq-q-text { display: flex; align-items: center; gap: 1rem; flex: 1; }
.cc-page #biz-faq .faq-num { font-size: .7rem; font-weight: 700; color: var(--blue); background: var(--blue-dim); width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; letter-spacing: 0; transition: all .3s var(--ease); }
.cc-page #biz-faq .faq-item[open] .faq-num { background: var(--blue); color: var(--white); }
.cc-page #biz-faq .faq-icon-wrap { width: 32px; height: 32px; border-radius: 50%; background: var(--bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .3s var(--ease); }
.cc-page #biz-faq .faq-item[open] .faq-icon-wrap { background: var(--blue-dim); }
.cc-page #biz-faq .faq-icon { width: 16px; height: 16px; stroke: var(--navy); fill: none; stroke-width: 2.5; transition: transform .4s var(--spring), stroke .3s; flex-shrink: 0; }
.cc-page #biz-faq .faq-item[open] .faq-icon { transform: rotate(45deg); stroke: var(--blue); }
.cc-page #biz-faq .faq-item[open] .faq-q { color: var(--blue); }
.cc-page #biz-faq .faq-a { padding: 0 1.6rem 1.6rem 4.4rem; font-size: .95rem; line-height: 1.7; color: var(--text); animation: ccFaqReveal .4s var(--ease-out); }
.cc-page #biz-faq .faq-a p { margin: 0; }
@keyframes ccFaqReveal { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@media(max-width:900px) { .cc-page #biz-faq .faq-inner { grid-template-columns: 1fr; } .cc-page #biz-faq .faq-header { position: static; text-align: center; margin-bottom: .5rem; } .cc-page #biz-faq .faq-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; } .cc-page #biz-faq .faq-cta { margin: 0 auto; } }
@media(max-width:600px) { .cc-page #biz-faq .faq-q { padding: 1.2rem 1.2rem; font-size: .95rem; } .cc-page #biz-faq .faq-a { padding: 0 1.2rem 1.4rem 1.2rem; } .cc-page #biz-faq .faq-num { width: 24px; height: 24px; font-size: .65rem; border-radius: 6px; } }
.cc-page a:focus-visible, .cc-page button:focus-visible, .cc-page summary:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 3px; }
@media(prefers-reduced-motion:reduce) { .cc-page [data-reveal] { opacity: 1!important; transform: none!important; transition: none!important; } .cc-page *, .cc-page *::before, .cc-page *::after { animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; } .cc-page .cc-progress { display: none; } }
我们做什么
我们注重高质量
一对一高级服务
CanChem 专门为半导体和电子行业提供高质量的电子化学品和先进材料。
符合GMP认证的生产
我们的 GMP 设施可处理复杂的反应,包括铃木偶联反应、霍夫曼重排反应、高温工艺(>250℃)和超低温反应(-78℃)。
广泛的供应网络
我们拥有遍布中国的完善供应商网络,能够快速采购产品以满足您的特定要求,确保及时交货和具有竞争力的价格。
流动化学与定制解决方案
我们拥有先进的流动化学系统和内部实验室,可提供从概念到商业化的端到端定制项目开发服务。
01
你们主要服务于哪些行业?
我们主要服务于半导体、电子和制药行业,为他们提供符合严格标准的高品质化学中间体和先进材料。.
02
你们提供定制合成服务吗?
是的,我们的 CDMO 部门提供从实验室发现和概念开发到采用先进流动化学技术进行商业规模生产的全流程合成工艺。.
03
你们的生产设施是否获得认证?
当然。我们拥有2500平方米的GMP认证厂房,设备齐全,能够安全高效地处理复杂的反应,包括-78℃至250℃以上的极端温度工艺。.
04
如何确保全球可靠交付?
我们利用遍布中国的高度整合的供应链网络,能够快速采购并扩大原材料规模。结合我们专业的物流能力,这确保了全球范围内的及时交付和具有竞争力的价格。.
(function(){
'use strict';
var P = document.querySelector('.cc-page');
if(!P || P.dataset.ccInit) return;
P.dataset.ccInit = 'true';
function init(){
P.classList.add('js-ready');
var isReduced = window.matchMedia('(prefers-reduced-motion:reduce)').matches;
if(isReduced){
P.querySelectorAll('[data-reveal]').forEach(function(el){ el.classList.add('is-visible'); });
return;
}
/* ── 1. Scroll Reveal ── */
var io = new IntersectionObserver(function(entries){
entries.forEach(function(e){
if(e.isIntersecting){
if(e.target.classList.contains('cc-divider')){
e.target.classList.remove('is-visible');
void e.target.offsetWidth;
}
e.target.classList.add('is-visible');
}
});
}, { threshold: 0, rootMargin: '0px 0px -60px 0px' });
P.querySelectorAll('[data-reveal]').forEach(function(el){ io.observe(el); });
/* ── 2. Progress Bar ── */
var bar = P.querySelector('.cc-progress');
if(bar){
var bT = false;
window.addEventListener('scroll', function(){
if(!bT){
requestAnimationFrame(function(){
var m = document.documentElement.scrollHeight - window.innerHeight;
bar.style.width = m > 0 ? (window.scrollY / m * 100) + '%' : '0%';
bT = false;
});
bT = true;
}
}, { passive: true });
}
}
if(document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', init); }
else { setTimeout(init, 0); }
})();
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "杭州Canchem化工有限公司 - 医药及化工中间体供应商", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "中文", "日文"] }, "地址": { "@type": "邮政地址", "街道地址": "杭州市商城区仙兴路88号2号楼608室", "地址所在地": "杭州", "地址区域": "浙江", "邮政编码": "310000", "地址国家": "中国" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "常见问题解答页面", "@id": "https://www.can-chem.com/our-business/#faq", "主要实体": [ { "@type": "问题", "名称": "CanChem供应哪些产品?", "已接受的答案": { "@type": "答案", "文本": "CanChem供应医药中间体、原料药、营养成分、精细化学品和CDMO产品。"为全球制药和生物技术公司提供服务。" } }, { "@type": "问题", "name": "CanChem 的地址在哪里?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 总部位于中国杭州,并在美国和日本设有办事处。" } }, { "@type": "问题", "name": "CanChem 提供定制合成服务吗?", "acceptedAnswer": { "@type": "答案", "text": "是的,CanChem 提供从实验室规模到商业化生产的定制合成和 CDMO 服务。" } }, { "@type": "问题", "name": "CanChem 遵循哪些质量标准?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 的设施已通过 ISO 9001、ISO 14001 和 ISO 45001 认证,产品符合 USP、EP 和 AJI 标准。" } } ] } ] }
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "杭州Canchem化工有限公司 - 医药及化工中间体供应商", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "中文", "日文"] }, "地址": { "@type": "邮政地址", "街道地址": "杭州市商城区仙兴路88号2号楼608室", "地址所在地": "杭州", "地址区域": "浙江", "邮政编码": "310000", "地址国家": "中国" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "常见问题解答页面", "@id": "https://www.can-chem.com/our-business/#faq", "主要实体": [ { "@type": "问题", "名称": "CanChem供应哪些产品?", "已接受的答案": { "@type": "答案", "文本": "CanChem供应医药中间体、原料药、营养成分、精细化学品和CDMO产品。"为全球制药和生物技术公司提供服务。" } }, { "@type": "问题", "name": "CanChem 的地址在哪里?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 总部位于中国杭州,并在美国和日本设有办事处。" } }, { "@type": "问题", "name": "CanChem 提供定制合成服务吗?", "acceptedAnswer": { "@type": "答案", "text": "是的,CanChem 提供从实验室规模到商业化生产的定制合成和 CDMO 服务。" } }, { "@type": "问题", "name": "CanChem 遵循哪些质量标准?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 的设施已通过 ISO 9001、ISO 14001 和 ISO 45001 认证,产品符合 USP、EP 和 AJI 标准。" } } ] } ] }
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "杭州Canchem化工有限公司 - 医药及化工中间体供应商", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "中文", "日文"] }, "地址": { "@type": "邮政地址", "街道地址": "杭州市商城区仙兴路88号2号楼608室", "地址所在地": "杭州", "地址区域": "浙江", "邮政编码": "310000", "地址国家": "中国" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "常见问题解答页面", "@id": "https://www.can-chem.com/our-business/#faq", "主要实体": [ { "@type": "问题", "名称": "CanChem供应哪些产品?", "已接受的答案": { "@type": "答案", "文本": "CanChem供应医药中间体、原料药、营养成分、精细化学品和CDMO产品。"为全球制药和生物技术公司提供服务。" } }, { "@type": "问题", "name": "CanChem 的地址在哪里?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 总部位于中国杭州,并在美国和日本设有办事处。" } }, { "@type": "问题", "name": "CanChem 提供定制合成服务吗?", "acceptedAnswer": { "@type": "答案", "text": "是的,CanChem 提供从实验室规模到商业化生产的定制合成和 CDMO 服务。" } }, { "@type": "问题", "name": "CanChem 遵循哪些质量标准?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 的设施已通过 ISO 9001、ISO 14001 和 ISO 45001 认证,产品符合 USP、EP 和 AJI 标准。" } } ] } ] }
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "杭州Canchem化工有限公司 - 医药及化工中间体供应商", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "中文", "日文"] }, "地址": { "@type": "邮政地址", "街道地址": "杭州市商城区仙兴路88号2号楼608室", "地址所在地": "杭州", "地址区域": "浙江", "邮政编码": "310000", "地址国家": "中国" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "常见问题解答页面", "@id": "https://www.can-chem.com/our-business/#faq", "主要实体": [ { "@type": "问题", "名称": "CanChem供应哪些产品?", "已接受的答案": { "@type": "答案", "文本": "CanChem供应医药中间体、原料药、营养成分、精细化学品和CDMO产品。"为全球制药和生物技术公司提供服务。" } }, { "@type": "问题", "name": "CanChem 的地址在哪里?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 总部位于中国杭州,并在美国和日本设有办事处。" } }, { "@type": "问题", "name": "CanChem 提供定制合成服务吗?", "acceptedAnswer": { "@type": "答案", "text": "是的,CanChem 提供从实验室规模到商业化生产的定制合成和 CDMO 服务。" } }, { "@type": "问题", "name": "CanChem 遵循哪些质量标准?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 的设施已通过 ISO 9001、ISO 14001 和 ISO 45001 认证,产品符合 USP、EP 和 AJI 标准。" } } ] } ] }
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "杭州Canchem化工有限公司 - 医药及化工中间体供应商", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "中文", "日文"] }, "地址": { "@type": "邮政地址", "街道地址": "杭州市商城区仙兴路88号2号楼608室", "地址所在地": "杭州", "地址区域": "浙江", "邮政编码": "310000", "地址国家": "中国" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "常见问题解答页面", "@id": "https://www.can-chem.com/our-business/#faq", "主要实体": [ { "@type": "问题", "名称": "CanChem供应哪些产品?", "已接受的答案": { "@type": "答案", "文本": "CanChem供应医药中间体、原料药、营养成分、精细化学品和CDMO产品。"为全球制药和生物技术公司提供服务。" } }, { "@type": "问题", "name": "CanChem 的地址在哪里?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 总部位于中国杭州,并在美国和日本设有办事处。" } }, { "@type": "问题", "name": "CanChem 提供定制合成服务吗?", "acceptedAnswer": { "@type": "答案", "text": "是的,CanChem 提供从实验室规模到商业化生产的定制合成和 CDMO 服务。" } }, { "@type": "问题", "name": "CanChem 遵循哪些质量标准?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 的设施已通过 ISO 9001、ISO 14001 和 ISO 45001 认证,产品符合 USP、EP 和 AJI 标准。" } } ] } ] }
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "杭州Canchem化工有限公司 - 医药及化工中间体供应商", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "中文", "日文"] }, "地址": { "@type": "邮政地址", "街道地址": "杭州市商城区仙兴路88号2号楼608室", "地址所在地": "杭州", "地址区域": "浙江", "邮政编码": "310000", "地址国家": "中国" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "常见问题解答页面", "@id": "https://www.can-chem.com/our-business/#faq", "主要实体": [ { "@type": "问题", "名称": "CanChem供应哪些产品?", "已接受的答案": { "@type": "答案", "文本": "CanChem供应医药中间体、原料药、营养成分、精细化学品和CDMO产品。"为全球制药和生物技术公司提供服务。" } }, { "@type": "问题", "name": "CanChem 的地址在哪里?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 总部位于中国杭州,并在美国和日本设有办事处。" } }, { "@type": "问题", "name": "CanChem 提供定制合成服务吗?", "acceptedAnswer": { "@type": "答案", "text": "是的,CanChem 提供从实验室规模到商业化生产的定制合成和 CDMO 服务。" } }, { "@type": "问题", "name": "CanChem 遵循哪些质量标准?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 的设施已通过 ISO 9001、ISO 14001 和 ISO 45001 认证,产品符合 USP、EP 和 AJI 标准。" } } ] } ] }
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "杭州Canchem化工有限公司 - 医药及化工中间体供应商", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "中文", "日文"] }, "地址": { "@type": "邮政地址", "街道地址": "杭州市商城区仙兴路88号2号楼608室", "地址所在地": "杭州", "地址区域": "浙江", "邮政编码": "310000", "地址国家": "中国" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "常见问题解答页面", "@id": "https://www.can-chem.com/our-business/#faq", "主要实体": [ { "@type": "问题", "名称": "CanChem供应哪些产品?", "已接受的答案": { "@type": "答案", "文本": "CanChem供应医药中间体、原料药、营养成分、精细化学品和CDMO产品。"为全球制药和生物技术公司提供服务。" } }, { "@type": "问题", "name": "CanChem 的地址在哪里?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 总部位于中国杭州,并在美国和日本设有办事处。" } }, { "@type": "问题", "name": "CanChem 提供定制合成服务吗?", "acceptedAnswer": { "@type": "答案", "text": "是的,CanChem 提供从实验室规模到商业化生产的定制合成和 CDMO 服务。" } }, { "@type": "问题", "name": "CanChem 遵循哪些质量标准?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 的设施已通过 ISO 9001、ISO 14001 和 ISO 45001 认证,产品符合 USP、EP 和 AJI 标准。" } } ] } ] }
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "杭州Canchem化工有限公司 - 医药及化工中间体供应商", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "中文", "日文"] }, "地址": { "@type": "邮政地址", "街道地址": "杭州市商城区仙兴路88号2号楼608室", "地址所在地": "杭州", "地址区域": "浙江", "邮政编码": "310000", "地址国家": "中国" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "常见问题解答页面", "@id": "https://www.can-chem.com/our-business/#faq", "主要实体": [ { "@type": "问题", "名称": "CanChem供应哪些产品?", "已接受的答案": { "@type": "答案", "文本": "CanChem供应医药中间体、原料药、营养成分、精细化学品和CDMO产品。"为全球制药和生物技术公司提供服务。" } }, { "@type": "问题", "name": "CanChem 的地址在哪里?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 总部位于中国杭州,并在美国和日本设有办事处。" } }, { "@type": "问题", "name": "CanChem 提供定制合成服务吗?", "acceptedAnswer": { "@type": "答案", "text": "是的,CanChem 提供从实验室规模到商业化生产的定制合成和 CDMO 服务。" } }, { "@type": "问题", "name": "CanChem 遵循哪些质量标准?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 的设施已通过 ISO 9001、ISO 14001 和 ISO 45001 认证,产品符合 USP、EP 和 AJI 标准。" } } ] } ] }
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "杭州Canchem化工有限公司 - 医药及化工中间体供应商", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "中文", "日文"] }, "地址": { "@type": "邮政地址", "街道地址": "杭州市商城区仙兴路88号2号楼608室", "地址所在地": "杭州", "地址区域": "浙江", "邮政编码": "310000", "地址国家": "中国" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "常见问题解答页面", "@id": "https://www.can-chem.com/our-business/#faq", "主要实体": [ { "@type": "问题", "名称": "CanChem供应哪些产品?", "已接受的答案": { "@type": "答案", "文本": "CanChem供应医药中间体、原料药、营养成分、精细化学品和CDMO产品。"为全球制药和生物技术公司提供服务。" } }, { "@type": "问题", "name": "CanChem 的地址在哪里?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 总部位于中国杭州,并在美国和日本设有办事处。" } }, { "@type": "问题", "name": "CanChem 提供定制合成服务吗?", "acceptedAnswer": { "@type": "答案", "text": "是的,CanChem 提供从实验室规模到商业化生产的定制合成和 CDMO 服务。" } }, { "@type": "问题", "name": "CanChem 遵循哪些质量标准?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 的设施已通过 ISO 9001、ISO 14001 和 ISO 45001 认证,产品符合 USP、EP 和 AJI 标准。" } } ] } ] }
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "杭州Canchem化工有限公司 - 医药及化工中间体供应商", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "中文", "日文"] }, "地址": { "@type": "邮政地址", "街道地址": "杭州市商城区仙兴路88号2号楼608室", "地址所在地": "杭州", "地址区域": "浙江", "邮政编码": "310000", "地址国家": "中国" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "常见问题解答页面", "@id": "https://www.can-chem.com/our-business/#faq", "主要实体": [ { "@type": "问题", "名称": "CanChem供应哪些产品?", "已接受的答案": { "@type": "答案", "文本": "CanChem供应医药中间体、原料药、营养成分、精细化学品和CDMO产品。"为全球制药和生物技术公司提供服务。" } }, { "@type": "问题", "name": "CanChem 的地址在哪里?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 总部位于中国杭州,并在美国和日本设有办事处。" } }, { "@type": "问题", "name": "CanChem 提供定制合成服务吗?", "acceptedAnswer": { "@type": "答案", "text": "是的,CanChem 提供从实验室规模到商业化生产的定制合成和 CDMO 服务。" } }, { "@type": "问题", "name": "CanChem 遵循哪些质量标准?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 的设施已通过 ISO 9001、ISO 14001 和 ISO 45001 认证,产品符合 USP、EP 和 AJI 标准。" } } ] } ] }
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "杭州Canchem化工有限公司 - 医药及化工中间体供应商", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "中文", "日文"] }, "地址": { "@type": "邮政地址", "街道地址": "杭州市商城区仙兴路88号2号楼608室", "地址所在地": "杭州", "地址区域": "浙江", "邮政编码": "310000", "地址国家": "中国" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "常见问题解答页面", "@id": "https://www.can-chem.com/our-business/#faq", "主要实体": [ { "@type": "问题", "名称": "CanChem供应哪些产品?", "已接受的答案": { "@type": "答案", "文本": "CanChem供应医药中间体、原料药、营养成分、精细化学品和CDMO产品。"为全球制药和生物技术公司提供服务。" } }, { "@type": "问题", "name": "CanChem 的地址在哪里?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 总部位于中国杭州,并在美国和日本设有办事处。" } }, { "@type": "问题", "name": "CanChem 提供定制合成服务吗?", "acceptedAnswer": { "@type": "答案", "text": "是的,CanChem 提供从实验室规模到商业化生产的定制合成和 CDMO 服务。" } }, { "@type": "问题", "name": "CanChem 遵循哪些质量标准?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 的设施已通过 ISO 9001、ISO 14001 和 ISO 45001 认证,产品符合 USP、EP 和 AJI 标准。" } } ] } ] }
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "杭州Canchem化工有限公司 - 医药及化工中间体供应商", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "中文", "日文"] }, "地址": { "@type": "邮政地址", "街道地址": "杭州市商城区仙兴路88号2号楼608室", "地址所在地": "杭州", "地址区域": "浙江", "邮政编码": "310000", "地址国家": "中国" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "常见问题解答页面", "@id": "https://www.can-chem.com/our-business/#faq", "主要实体": [ { "@type": "问题", "名称": "CanChem供应哪些产品?", "已接受的答案": { "@type": "答案", "文本": "CanChem供应医药中间体、原料药、营养成分、精细化学品和CDMO产品。"为全球制药和生物技术公司提供服务。" } }, { "@type": "问题", "name": "CanChem 的地址在哪里?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 总部位于中国杭州,并在美国和日本设有办事处。" } }, { "@type": "问题", "name": "CanChem 提供定制合成服务吗?", "acceptedAnswer": { "@type": "答案", "text": "是的,CanChem 提供从实验室规模到商业化生产的定制合成和 CDMO 服务。" } }, { "@type": "问题", "name": "CanChem 遵循哪些质量标准?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 的设施已通过 ISO 9001、ISO 14001 和 ISO 45001 认证,产品符合 USP、EP 和 AJI 标准。" } } ] } ] }
{ "@context": "https://schema.org", "@graph": [ { "@type": "Organization", "@id": "https://www.can-chem.com/#organization", "name": "CanChem", "url": "https://www.can-chem.com", "logo": { "@type": "ImageObject", "url": "https://www.can-chem.com/wp-content/uploads/2025/01/canchem-logo.png", "width": 200, "height": 60 }, "description": "杭州Canchem化工有限公司 - 医药及化工中间体供应商", "foundingDate": "2019", "contactPoint": { "@type": "ContactPoint", "telephone": "+86-15372011997", "email": "
[email protected]", "contactType": "sales", "availableLanguage": ["English", "中文", "日文"] }, "地址": { "@type": "邮政地址", "街道地址": "杭州市商城区仙兴路88号2号楼608室", "地址所在地": "杭州", "地址区域": "浙江", "邮政编码": "310000", "地址国家": "中国" }, "sameAs": [ "https://www.linkedin.com/company/canchem", "https://x.com/CanchemInfo" ] }, { "@type": "常见问题解答页面", "@id": "https://www.can-chem.com/our-business/#faq", "主要实体": [ { "@type": "问题", "名称": "CanChem供应哪些产品?", "已接受的答案": { "@type": "答案", "文本": "CanChem供应医药中间体、原料药、营养成分、精细化学品和CDMO产品。"为全球制药和生物技术公司提供服务。" } }, { "@type": "问题", "name": "CanChem 的地址在哪里?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 总部位于中国杭州,并在美国和日本设有办事处。" } }, { "@type": "问题", "name": "CanChem 提供定制合成服务吗?", "acceptedAnswer": { "@type": "答案", "text": "是的,CanChem 提供从实验室规模到商业化生产的定制合成和 CDMO 服务。" } }, { "@type": "问题", "name": "CanChem 遵循哪些质量标准?", "acceptedAnswer": { "@type": "答案", "text": "CanChem 的设施已通过 ISO 9001、ISO 14001 和 ISO 45001 认证,产品符合 USP、EP 和 AJI 标准。" } } ] } ] }