') center/contain no-repeat; } .hero-content { position: relative; z-index: 2; max-width: 650px; } .hero h1 { color: white; margin-bottom: 20px; } .hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; } .hero-stats { display: flex; flex-wrap: wrap; margin-top: 50px; gap: 30px; } .stat-box { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 20px; min-width: 180px; backdrop-filter: blur(5px); } .stat-value { font-size: 2rem; font-weight: 700; margin-bottom: 5px; } .stat-label { font-size: 0.9rem; opacity: 0.8; } /* About Section */ .about { background-color: white; } .section-header { margin-bottom: 50px; } .section-header p { max-width: 700px; font-size: 1.1rem; color: var(--gray); } .about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; } .about-card { background: white; border-radius: 8px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; border: 1px solid #eee; } .about-card:hover { transform: translateY(-10px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .about-card h3 { font-size: 1.4rem; margin-bottom: 15px; display: flex; align-items: center; } .about-icon { width: 50px; height: 50px; background: rgba(26, 58, 108, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; } /* Team Section */ .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 40px; } .team-item { text-align: center; } .team-icon { width: 100px; height: 100px; background: rgba(26, 58, 108, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; color: var(--primary); } .team-number { font-size: 2.5rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; } /* Products Section */ .products { background-color: #f8f9fa; } .product-categories { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 40px; } .category-btn { padding: 10px 25px; background: white; border: 1px solid #ddd; border-radius: 30px; font-weight: 600; cursor: pointer; transition: all 0.3s; } .category-btn.active, .category-btn:hover { background: var(--primary); color: white; border-color: var(--primary); } .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .product-img { height: 200px; background: linear-gradient(45deg, #e0e7ff, #d1e0fd); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--primary); } .product-info { padding: 20px; } .product-info h3 { font-size: 1.3rem; margin-bottom: 10px; } .product-specs { display: flex; justify-content: space-between; margin: 15px 0; padding: 10px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; } .spec-item { text-align: center; } .spec-label { font-size: 0.85rem; color: var(--gray); margin-bottom: 5px; } .spec-value { font-weight: 600; color: var(--primary); } /* Advantages Section */ .advantages { background: linear-gradient(135deg, var(--primary) 0%, #234b8d 100%); color: white; } .advantages h2 { color: white; } .advantages h2:after { background: var(--accent); } .section-header p { color: rgba(255,255,255,0.8); } .advantage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .advantage-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 30px; backdrop-filter: blur(5px); } .advantage-card h3 { color: white; margin-bottom: 20px; font-size: 1.5rem; display: flex; align-items: center; } .advantage-icon { margin-right: 15px; font-size: 1.8rem; } /* Certifications */ .certifications { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 50px; } .cert-item { background: white; padding: 15px 25px; border-radius: 8px; display: flex; align-items: center; font-weight: 600; } /* Contact Section */ .contact { background-color: white; } .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 50px; } .contact-info { display: flex; flex-direction: column; gap: 25px; } .contact-item { display: flex; align-items: flex-start; } .contact-icon { font-size: 1.5rem; color: var(--primary); margin-right: 15px; } .contact-text h3 { margin-bottom: 5px; } .contact-form { background: #f8f9fa; padding: 30px; border-radius: 8px; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; } .form-control { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; } textarea.form-control { min-height: 150px; resize: vertical; } /* Footer */ footer { background: var(--dark); color: white; padding: 60px 0 30px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-col h3 { color: white; font-size: 1.3rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-col h3:after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: var(--accent); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 10px; } .footer-links a { color: #aaa; 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: #aaa; font-size: 0.9rem; } /* Responsive */ @media (max-width: 768px) { .header-container { flex-direction: column; text-align: center; } .logo { margin-bottom: 15px; } nav ul { margin-top: 15px; } nav ul li { margin: 0 10px; } h1 { font-size: 2.2rem; } h2 { font-size: 1.8rem; } section { padding: 60px 0; } .hero { padding: 70px 0; } .hero:before { display: none; } .stat-box { min-width: 140px; } }
Hangzhou Jiefa Materials Co., Ltd. is a SGS-verified supplier specializing in custom stationery, water bottles, umbrellas, and promotional products for global markets.
Request a QuoteEstablished in 2007, Hangzhou Jiefa Materials Co., Ltd. has grown into a leading manufacturer of custom promotional products, stationery, and seasonal decorations with extensive export experience.
Based in Zhejiang, China - the heart of China's manufacturing hub with excellent logistics and supply chain infrastructure.
1,193m² modern manufacturing facility equipped with advanced production equipment and quality control stations.
Products exported worldwide with special expertise in meeting EU and North American quality standards.
18-hour daily service
Product innovation specialists
Patterns & graphics experts
Manufacturing specialists
Full-process quality control
Export compliance experts
We offer a comprehensive selection of high-quality products across multiple categories with customization options.
Available in 18Oz to 64Oz sizes with excellent thermal performance and logo customization.
Straw lid design with double-wall vacuum insulation for maximum temperature retention.
Wind-resistant design with premium pongee fabric, ideal for outdoor events and promotions.
Portable 5-fold design with UV protection, perfect for promotional giveaways and events.
We stand out in the competitive market through our commitment to quality, innovation, and customer satisfaction.
With 19 years of manufacturing expertise and 7 years of export experience, we've served thousands of clients worldwide. Our deep industry knowledge ensures we understand your needs and deliver solutions that enhance your business performance.
We release 200+ new products annually through our dedicated R&D team. Our commitment to innovation keeps our product offerings fresh and competitive, ensuring you always have access to the latest market trends.
Our comprehensive QC process covers every stage from raw materials to finished products. We strictly adhere to international standards and welcome third-party inspections to guarantee product excellence.
Our multilingual export team provides 18-hour daily support with average response times under 6 hours. We simplify your workflow by handling complex requirements and ensuring seamless communication.
We specialize in creating tailored products that perfectly match your brand identity and requirements.
We offer comprehensive customization including logo printing, color matching, pattern design, and size modifications. Our design team works closely with you to create products that perfectly represent your brand.
We provide FREE samples to ensure our products meet your expectations before full production. Our rapid prototyping service allows you to review physical samples quickly.
Significant discounts available for large quantity orders. Our flexible pricing structure makes it cost-effective to order promotional products in bulk for events, giveaways, or retail.
Whether you need manufacturing of existing designs or completely original product development, our team has the expertise to deliver.
Reach out to our team for quotes, samples, or any inquiries. We're available daily from 9:30 AM to 10:00 PM (GMT+8).
Cindy, Echo, Ivy, Leo, Owen, Sophie
Monday-Sunday: 9:30 AM - 10:00 PM (GMT+8)
Zhejiang, China
Average response time: < 6 hours