'); background-size: cover; background-position: center; color: white; padding: 100px 0; text-align: center; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h2 { font-size: 2.8rem; margin-bottom: 20px; font-weight: 800; text-shadow: 0 2px 4px rgba(0,0,0,0.3); } .hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; } .btn { display: inline-block; background-color: var(--secondary); color: white; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 600; transition: all 0.3s; border: 2px solid var(--secondary); } .btn:hover { background-color: transparent; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } .btn-outline { background-color: transparent; border: 2px solid white; margin-left: 15px; } .btn-outline:hover { background-color: white; color: var(--primary); } /* About Section */ .section { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 50px; } .section-title h2 { font-size: 2.2rem; color: var(--primary); position: relative; display: inline-block; padding-bottom: 15px; } .section-title h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background-color: var(--secondary); } .section-title p { color: var(--gray); max-width: 700px; margin: 15px auto 0; } .about-content { display: flex; align-items: center; gap: 50px; } .about-text { flex: 1; } .about-stats { display: flex; flex-wrap: wrap; margin: 30px 0; gap: 20px; } .stat-box { flex: 1; min-width: 150px; background-color: var(--light); padding: 20px; border-radius: 8px; text-align: center; box-shadow: 0 3px 10px rgba(0,0,0,0.08); } .stat-box h3 { font-size: 2rem; color: var(--primary); margin-bottom: 5px; } .stat-box p { font-size: 0.9rem; color: var(--gray); } .about-image { flex: 1; display: flex; justify-content: center; } .image-placeholder { width: 100%; max-width: 450px; height: 350px; background: linear-gradient(135deg, var(--primary), #0d4a9e); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; box-shadow: 0 10px 30px rgba(0,0,0,0.15); } /* Products Section */ .products { background-color: var(--light); } .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .product-card { background-color: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .product-image { height: 200px; background-color: #e9f0fa; display: flex; align-items: center; justify-content: center; color: var(--primary); font-weight: bold; } .product-info { padding: 20px; } .product-info h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--dark); } .product-info p { color: var(--gray); font-size: 0.95rem; margin-bottom: 15px; } /* Why Choose Us */ .features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .feature-card { text-align: center; padding: 30px 20px; background-color: white; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s; } .feature-card:hover { transform: translateY(-10px); } .feature-icon { width: 70px; height: 70px; background-color: rgba(26, 95, 180, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--primary); font-size: 1.8rem; } .feature-card h3 { margin-bottom: 15px; color: var(--dark); } /* Certificates */ .certificates { background-color: var(--light); } .cert-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; align-items: center; } .cert-logo { width: 120px; height: 120px; background-color: white; border-radius: 10px; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); font-weight: bold; color: var(--primary); } /* Contact Section */ .contact-wrapper { display: flex; gap: 50px; } .contact-info { flex: 1; } .contact-info h3 { font-size: 1.5rem; margin-bottom: 20px; color: var(--primary); } .contact-details { margin-bottom: 30px; } .contact-item { display: flex; align-items: flex-start; margin-bottom: 15px; } .contact-icon { width: 40px; height: 40px; background-color: rgba(26, 95, 180, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; color: var(--primary); } .contact-form { flex: 1; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--dark); } .form-control { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; transition: border 0.3s; } .form-control:focus { outline: none; border-color: var(--primary); } textarea.form-control { min-height: 150px; resize: vertical; } /* Footer */ footer { background-color: var(--dark); 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-col h3 { font-size: 1.3rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background-color: var(--secondary); } .footer-col p { color: #aaa; margin-bottom: 15px; } .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 #444; color: #aaa; font-size: 0.9rem; } /* Responsive Design */ @media (max-width: 992px) { .about-content { flex-direction: column; } .contact-wrapper { flex-direction: column; } .hero h2 { font-size: 2.2rem; } } @media (max-width: 768px) { nav ul { display: none; } .hero { padding: 80px 0; } .hero h2 { font-size: 2rem; } .section { padding: 60px 0; } .section-title h2 { font-size: 1.8rem; } }
With over 10 years of industry experience, Yiwu Yongge specializes in high-quality household products, kitchenware, and storage solutions. We offer customized OEM/ODM services to meet your specific requirements.
Your trusted partner for premium household products manufacturing
Founded in 2010, Yiwu Yongge has grown to become a leading manufacturer of household products in China. Based in Yiwu City, Zhejiang Province, we leverage our strategic location near the world's largest small commodity market to deliver high-quality products at competitive prices.
Our 10,000 square meter factory is equipped with state-of-the-art injection molding machines and assembly lines, allowing us to produce over 5 million pieces annually. We maintain strict quality control at every stage of production to ensure our products meet international standards.
Years Experience
Product Varieties
Team Members
Countries Served
We serve clients worldwide including major retailers, distributors, and wholesalers across Europe, North America, South America, and Asia. Our mission is to create innovative, practical, and eco-friendly household products that improve daily life.
High-quality household products designed for modern living
Durable and stylish kitchen tools including spatulas, ladles, cutting boards, and cooking utensils made from food-grade materials.
Airtight food storage containers, plastic bins, and organization solutions to keep your kitchen and home clutter-free.
Innovative cleaning tools including mops, brooms, dustpans, scrub brushes, and bucket sets for efficient home maintenance.
Practical laundry solutions like clothes drying racks, hangers, laundry baskets, and storage organizers.
Water-resistant bathroom organizers, shower caddies, soap dishes, and toilet brush sets for a clean and organized bathroom.
Space-saving solutions including drawer organizers, closet systems, and multipurpose storage boxes for every room.
Our commitment to excellence sets us apart
We implement rigorous quality control procedures at every stage of production to ensure our products meet international standards.
Our modern factory features automated production lines and precision equipment for consistent, high-quality output.
We prioritize sustainable materials like food-grade PP, ABS, and recycled plastics to reduce environmental impact.
Extensive OEM/ODM capabilities including custom molds, colors, sizes, and private labeling options.
With streamlined processes and experienced workers, we maintain short lead times without compromising quality.
We handle all shipping arrangements with reliable partners to ensure timely delivery worldwide.
Committed to quality, safety, and environmental standards
Get in touch for quotes, samples, or partnership opportunities
For faster response, please include product numbers or specifications in your inquiry.