'); background-size: cover; background-position: center; color: white; padding: 180px 0 100px; text-align: center; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h1 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.2; } .hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; } .hero-btns { display: flex; justify-content: center; gap: 20px; margin-top: 30px; } /* 关于我们 */ .about { background-color: var(--light); } .about-content { display: flex; align-items: center; gap: 50px; } .about-text { flex: 1; } .about-text h3 { font-size: 1.8rem; color: var(--secondary); margin-bottom: 20px; } .about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .feature { display: flex; align-items: flex-start; gap: 15px; } .feature-icon { background: var(--primary); color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .about-image { flex: 1; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); } .about-image img { width: 100%; height: auto; display: block; } /* 产品展示 */ .products { background: white; } .product-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; } .filter-btn { padding: 8px 20px; background: var(--light); border: none; border-radius: 30px; cursor: pointer; transition: all 0.3s; } .filter-btn.active, .filter-btn:hover { background: var(--primary); color: white; } .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); transition: transform 0.3s ease; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); } .product-image { height: 220px; background: var(--light); display: flex; align-items: center; justify-content: center; } .product-info { padding: 20px; } .product-info h3 { margin-bottom: 10px; color: var(--secondary); } .product-info p { color: #666; margin-bottom: 15px; font-size: 0.95rem; } /* 认证和优势 */ .advantages { background: linear-gradient(to bottom right, var(--secondary), #0a1d3f); color: white; } .advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .advantage-card { background: rgba(255, 255, 255, 0.1); padding: 30px; border-radius: 10px; text-align: center; backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); } .advantage-card h3 { margin: 20px 0 15px; font-size: 1.5rem; } /* 服务流程 */ .process { background-color: var(--light); } .process-steps { display: flex; justify-content: space-between; position: relative; margin-top: 50px; } .process-steps::before { content: ''; position: absolute; top: 40px; left: 0; right: 0; height: 3px; background: var(--primary); z-index: 1; } .step { text-align: center; position: relative; z-index: 2; flex: 1; padding: 0 15px; } .step-icon { width: 80px; height: 80px; background: white; border: 3px solid var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.8rem; color: var(--primary); } .step h3 { margin-bottom: 10px; color: var(--secondary); } /* 联系表单 */ .contact { background: white; } .contact-wrapper { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; } .contact-info { padding-right: 30px; } .contact-info h3 { font-size: 1.8rem; color: var(--secondary); margin-bottom: 20px; } .contact-details { margin: 30px 0; } .contact-detail { display: flex; align-items: flex-start; margin-bottom: 20px; } .contact-detail i { font-size: 1.2rem; color: var(--primary); margin-right: 15px; margin-top: 5px; } .contact-form .form-group { margin-bottom: 20px; } .contact-form input, .contact-form textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; } .contact-form textarea { height: 150px; resize: vertical; } /* 页脚 */ footer { background: var(--secondary); color: white; padding: 60px 0 30px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-column h3 { font-size: 1.3rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-column h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--accent); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 10px; } .footer-links a { color: #a0aec0; text-decoration: none; transition: color 0.3s; } .footer-links a:hover { color: white; } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: #a0aec0; font-size: 0.9rem; } /* 响应式设计 */ @media (max-width: 992px) { .about-content { flex-direction: column; } .contact-wrapper { grid-template-columns: 1fr; } .hero h1 { font-size: 2.8rem; } } @media (max-width: 768px) { .hamburger { display: block; } .nav-links { position: fixed; top: 80px; right: -100%; width: 70%; height: calc(100vh - 80px); background: white; flex-direction: column; align-items: center; padding-top: 40px; transition: right 0.3s ease; box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1); } .nav-links.active { right: 0; } .nav-links li { margin: 20px 0; } .hero h1 { font-size: 2.3rem; } .section-title h2 { font-size: 2rem; } .process-steps { flex-direction: column; gap: 40px; } .process-steps::before { display: none; } }
Hangzhou Chenlan Trading offers high-quality, cost-effective laboratory solutions with ISO certification and strict quality control. Serving global research institutions and medical facilities.
Founded in 2019, Hangzhou Chenlan Trading Co., Ltd. specializes in manufacturing and supplying high-quality laboratory consumables and equipment. Based in Hangzhou, China, we serve clients worldwide with our commitment to excellence.
With our own manufacturing facilities and strict quality control processes, we ensure that every product meets international standards. Our team of experts combines technical expertise with industry knowledge to deliver solutions that exceed expectations.
ISO 13485 and ISO 9001 certified manufacturing
Products exported to 20+ countries worldwide
Rigorous quality testing at every production stage
Tailored products to meet specific requirements
High-performance consumables for research, diagnostics, and medical applications
High-quality conical tubes available in various sizes (15ml, 50ml) with excellent chemical resistance and durability.
DetailsSterile and non-sterile tips compatible with major pipette brands. Available in filtered and non-filtered options.
DetailsThin-walled PCR tubes and strips for optimal thermal transfer. Available in 0.2ml and 0.5ml sizes.
DetailsSterilized plastic petri dishes available in various diameters with excellent clarity for easy observation.
DetailsVented and sealed flasks with surface-treated for optimal cell attachment and growth.
DetailsHigh-performance centrifuges with multiple rotor options and programmable settings.
DetailsWhy choose Hangzhou Chenlan for your laboratory needs
In-house production facilities with vertically integrated manufacturing processes
Rigorous quality control at every stage from raw materials to finished products
Efficient logistics network enabling timely delivery to customers worldwide
OEM and ODM services to meet specific requirements and applications
Commitment to sustainable manufacturing and recyclable materials
Dedicated customer service team with technical expertise
From inquiry to delivery, we ensure a seamless experience
Discuss your requirements with our technical experts
Develop tailored solutions based on your specifications
Manufacture products adhering to strict quality standards
Thorough testing and verification before shipment
Efficient global logistics for timely arrival
Get in touch for quotes, product information, or technical support
We're committed to providing exceptional service and support for your laboratory needs. Contact us today to discuss how we can assist you.
Xihu District, Hangzhou, Zhejiang, China
+86 571 8500 0000
Monday-Friday: 8:30AM - 5:30PM (GMT+8)