'); background-size: cover; background-position: center; color: white; padding: 120px 0; text-align: center; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h2 { font-size: 3rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; } .hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; } .hero-btns { display: flex; justify-content: center; gap: 20px; margin-top: 30px; } .btn-secondary { background: transparent; border: 2px solid white; } .btn-secondary:hover { background: white; color: var(--primary); } /* Promotion Banner */ .promotion-banner { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; padding: 20px 0; text-align: center; } .promotion-content { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 15px; } .promotion-content h3 { font-size: 1.4rem; margin: 0; } .promotion-timer { background: rgba(255,255,255,0.2); padding: 8px 15px; border-radius: 30px; font-weight: 600; } /* Products Section */ .products { background-color: var(--light); } .product-categories { display: flex; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; gap: 10px; } .category-btn { padding: 10px 20px; background: white; border: 1px solid #ddd; border-radius: 4px; cursor: pointer; transition: all 0.3s; font-weight: 600; } .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.08); transition: transform 0.3s, box-shadow 0.3s; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); } .product-image { height: 200px; background: linear-gradient(45deg, #f3e5f5, #e1bee7); display: flex; align-items: center; justify-content: center; color: var(--secondary); font-weight: bold; } .product-info { padding: 20px; } .product-title { font-size: 1.1rem; margin-bottom: 10px; color: var(--dark); font-weight: 600; } .product-meta { display: flex; justify-content: space-between; margin-bottom: 10px; } .product-price { color: var(--primary); font-weight: 700; font-size: 1.1rem; } .product-moq { color: #666; font-size: 0.9rem; } .product-features { font-size: 0.9rem; color: #666; margin-top: 10px; } .feature-list { list-style: none; } .feature-list li { margin-bottom: 5px; position: relative; padding-left: 20px; } .feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--success); } /* About Section */ .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; } .about-text h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--dark); } .about-text p { margin-bottom: 15px; } .about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .stat-box { background: var(--light); padding: 20px; border-radius: 8px; text-align: center; } .stat-value { font-size: 2.5rem; font-weight: 700; color: var(--primary); line-height: 1; } .stat-label { color: #666; font-size: 0.9rem; margin-top: 5px; } /* Advantages Section */ .advantages { background: linear-gradient(to bottom, #f9f9f9, #fff); } .advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .advantage-card { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; transition: transform 0.3s; } .advantage-card:hover { transform: translateY(-10px); } .advantage-icon { width: 70px; height: 70px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.8rem; } .advantage-title { font-size: 1.3rem; margin-bottom: 15px; color: var(--dark); } /* Certification Section */ .certification-content { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; } .certificate-card { background: white; border-radius: 8px; padding: 25px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); flex: 1; min-width: 250px; max-width: 400px; text-align: center; } .certificate-icon { font-size: 3rem; color: var(--primary); margin-bottom: 20px; } /* Contact Section */ .contact { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; } .contact .section-title h2 { color: white; } .contact .section-title::after { background: white; } .contact-content { max-width: 700px; margin: 0 auto; text-align: center; } .contact-info { margin-bottom: 30px; font-size: 1.1rem; } .contact-form { display: grid; gap: 20px; max-width: 500px; margin: 0 auto; } .form-group { text-align: left; } .form-group label { display: block; margin-bottom: 8px; font-weight: 500; } .form-control { width: 100%; padding: 12px 15px; border: none; border-radius: 4px; font-size: 1rem; } textarea.form-control { height: 150px; resize: vertical; } .contact-btn { background: white; color: var(--primary); font-weight: 700; margin-top: 10px; } .contact-btn:hover { background: var(--light); } /* Footer */ footer { background: var(--dark); color: white; padding: 50px 0 20px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; 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: 50px; height: 2px; background: var(--primary); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 10px; } .footer-links a { color: #ddd; text-decoration: none; transition: color 0.3s; } .footer-links a:hover { color: var(--primary); } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid #444; font-size: 0.9rem; color: #aaa; } /* Responsive Design */ @media (max-width: 992px) { .about-content { grid-template-columns: 1fr; } .about-image { order: -1; } } @media (max-width: 768px) { .header-container { flex-direction: column; padding: 15px 0; } nav ul { margin-top: 20px; flex-wrap: wrap; justify-content: center; } nav ul li { margin: 0 10px 10px; } .hero h2 { font-size: 2.2rem; } .hero-btns { flex-direction: column; gap: 10px; } .product-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); } } @media (max-width: 576px) { section { padding: 40px 0; } .section-title h2 { font-size: 1.8rem; } .promotion-content { flex-direction: column; gap: 10px; } .stat-box { padding: 15px; } .stat-value { font-size: 2rem; } }
Foshan Xinzhiyan Garments Co., Ltd. specializes in high-quality kids clothes, girls dresses, children shoes, and accessories. With over 1 year of expertise, we deliver exceptional OEM/ODM services with fast global shipping.
High-quality children's wear with competitive pricing and low MOQ
Quality manufacturing with customer-focused approach
We are a China-based manufacturer specializing in children's clothing, including girls dresses, boys outfits, children shoes, and accessories. With our headquarters in Guangdong, China, we combine traditional craftsmanship with modern production techniques.
Our mission is to provide high-quality, competitively priced children's garments that meet international standards while maintaining flexibility to accommodate our clients' specific requirements.
Customer satisfaction is at the core of our business model. We pride ourselves on our exceptional service performance with a 98.35% response rate and ≤2 hour response time, ensuring seamless communication throughout our partnership.
Why Global Brands Choose Xinzhiyan
Products ready to ship within 3-7 days with efficient global distribution networks ensuring timely delivery worldwide.
Extensive experience supplying international markets with products that meet diverse regional requirements and preferences.
Comprehensive OEM & ODM capabilities including custom patterns, logos, and designs with new models introduced monthly.
Dedicated support for private labeling and brand development including custom logo implementation and packaging.
Wide range of industry-popular designs across children's clothing categories with quick 3-7 day availability.
Efficient logistics system that guarantees prompt delivery to meet urgent procurement requirements.
Competitive market pricing offering exceptional value without compromising on quality standards.
Personalized customer support throughout the partnership journey ensuring a seamless experience.
Commitment to Quality and Compliance
Our state-of-the-art manufacturing workshop utilizes advanced equipment and follows strict quality control protocols to ensure consistent product excellence.
All products undergo rigorous testing with comprehensive TEST REPORTS available to verify compliance with international safety and quality standards.
Multi-stage inspection system implemented throughout production, from material sourcing to final packaging, ensuring flawless garments.
We'd love to hear from you
Foshan Xinzhiyan Garments Co., Ltd.
Guangdong, China
Send us your inquiry anytime for prompt assistance and quotes