'); background-size: cover; color: white; text-align: center; padding: 5rem 1rem; margin-bottom: 3rem; } .hero h1 { font-size: 2.8rem; margin-bottom: 1rem; max-width: 800px; margin-left: auto; margin-right: auto; } .hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 2rem; } .cta-button { display: inline-block; background-color: var(--secondary); color: white; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 600; transition: var(--transition); border: 2px solid var(--secondary); } .cta-button:hover { background-color: transparent; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } /* Section Styles */ section { padding: 4rem 0; } section:nth-child(even) { background-color: var(--light); } .section-header { text-align: center; margin-bottom: 3rem; } .section-header h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 1rem; position: relative; display: inline-block; } .section-header h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--accent); border-radius: 2px; } .section-header p { max-width: 700px; margin: 1rem auto 0; color: #666; } /* About Section */ .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; } .company-info { background: white; border-radius: 10px; padding: 2rem; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; } .info-item h4 { color: var(--primary); margin-bottom: 0.5rem; font-size: 1.1rem; } .mission { background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; padding: 2rem; border-radius: 10px; text-align: center; margin-top: 2rem; } .mission h3 { font-size: 1.8rem; margin-bottom: 1rem; } /* Stats Section */ .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } .stat-card { background: white; border-radius: 10px; padding: 2rem 1.5rem; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); } .stat-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); } .stat-card .number { font-size: 2.5rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; } .stat-card .label { font-size: 1.1rem; color: #555; } /* Certification Section */ .certification { display: flex; align-items: center; background: white; border-radius: 10px; padding: 2rem; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .cert-badge { background-color: var(--accent); color: white; width: 120px; height: 120px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-right: 2rem; text-align: center; padding: 1rem; font-weight: 700; } .cert-content h3 { font-size: 1.8rem; color: var(--primary); margin-bottom: 1rem; } .cert-content p { margin-bottom: 1.5rem; } /* Products Section */ .products-intro { text-align: center; max-width: 800px; margin: 0 auto 3rem; } .product-categories { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 3rem; flex-wrap: wrap; } .category-card { background: white; border-radius: 10px; padding: 2rem 1.5rem; text-align: center; width: 180px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); } .category-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); } .category-card h4 { margin-top: 1rem; color: var(--primary); } .products-table { width: 100%; border-collapse: collapse; margin-top: 2rem; background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .products-table th { background-color: var(--primary); color: white; padding: 1rem; text-align: left; } .products-table td { padding: 1rem; border-bottom: 1px solid #eee; } .products-table tr:last-child td { border-bottom: none; } .products-table tr:hover { background-color: #f8f5ff; } .price-range { color: var(--secondary); font-weight: 600; } /* Strengths Section */ .strengths-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; } .strength-card { background: white; border-radius: 10px; padding: 2rem; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); } .strength-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); } .strength-card h3 { color: var(--primary); margin: 1.5rem 0 1rem; } .markets { background: linear-gradient(135deg, var(--primary), #6a0dad); color: white; padding: 3rem 2rem; border-radius: 10px; margin-top: 3rem; } .markets h3 { text-align: center; font-size: 1.8rem; margin-bottom: 1.5rem; } .market-list { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; max-width: 800px; margin: 0 auto; } .market-item { background: rgba(255,255,255,0.1); padding: 0.8rem 1.5rem; border-radius: 30px; font-weight: 500; } /* Contact Section */ .contact-wrapper { background: white; border-radius: 10px; padding: 3rem; box-shadow: 0 5px 15px rgba(0,0,0,0.05); max-width: 700px; margin: 0 auto; text-align: center; } .contact-wrapper h3 { font-size: 1.8rem; color: var(--primary); margin-bottom: 1.5rem; } .contact-info { display: flex; justify-content: center; gap: 2rem; margin: 2rem 0; flex-wrap: wrap; } .contact-item { display: flex; align-items: center; gap: 0.8rem; font-size: 1.1rem; } /* Footer */ footer { background: var(--dark); color: white; padding: 3rem 0 1.5rem; } .footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; } .footer-about h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--accent); } .footer-links h3 { font-size: 1.2rem; margin-bottom: 1rem; color: var(--accent); } .footer-links ul { list-style: none; } .footer-links ul li { margin-bottom: 0.5rem; } .footer-links ul li a { color: #ddd; text-decoration: none; transition: var(--transition); } .footer-links ul li a:hover { color: var(--accent); } .copyright { text-align: center; padding-top: 1.5rem; border-top: 1px solid #444; color: #aaa; font-size: 0.9rem; } /* Responsive */ @media (max-width: 992px) { .stats-grid, .strengths-grid { grid-template-columns: repeat(2, 1fr); } .about-content { grid-template-columns: 1fr; } .footer-content { grid-template-columns: 1fr; } } @media (max-width: 768px) { .header-content { flex-direction: column; text-align: center; } nav ul { margin-top: 1rem; justify-content: center; } .stats-grid, .strengths-grid { grid-template-columns: 1fr; } .certification { flex-direction: column; text-align: center; } .cert-badge { margin-right: 0; margin-bottom: 1.5rem; } }
Yiwu Jiangjiangjiang Trading Co., Ltd. specializes in designing and producing high-quality hair clips, headbands, and crowns for worldwide markets
Explore Our ProductsTrusted supplier of hair accessories with a commitment to quality and service excellence
Established in 2023 and based in Zhejiang, China, we are a professional trading company specializing in hair accessories. With 2 years of successful operation on Alibaba, we've built a reputation for reliability and quality.
Trading Company
Zhejiang, China
2023
2 Years on Alibaba
"GREAT SERVICE IS OUR MISSION!" - We are committed to providing exceptional service and building lasting relationships with our global partners.
As an Assessed Supplier independently verified through on-site inspection, we meet the highest standards of business integrity and product quality.
Our certification includes comprehensive on-site verification of company qualifications, manufacturing facilities, and business operations.
We prioritize compliance and security in all our business relationships to ensure a safe and reliable partnership.
Demonstrated excellence in customer service and business operations
Premium quality hair clips designed for various styles and occasions
We specialize in three main categories of hair accessories: Hair Clips, Headbands, and Crowns. Our hair clips collection features diverse designs, materials, and styles suitable for women, ladies, and children.
Product Name | Size | Material | Features | Price Range | Min. Order |
---|---|---|---|---|---|
Elegant Multicolor Acetate Hair Clip | 11.5 cm | Acetate | Multi-functional design for outdoor travel | ¥10.65 - 11.36 | 12 pieces |
Korean Style Matte Hair Clip | 12.5 cm | Plastic | Rectangular shape, solid colors for practical use | ¥3.34 - 3.70 | 50 pieces |
Elegant Floral Hair Clip (Wholesale) | 8.7 cm | Plastic | Semi-circular design with floral patterns for ponytails | ¥6.04 - 6.75 | 12 pieces |
Colorful Parrot Design Creative Clip | - | Acetate | Vibrant parrot shape for playful styles | ¥19.17 - 19.88 | 12 pieces |
Pink Rose & Cute Strawberry Hair Clip | - | - | Double style, fashionable for girls | ¥5.40 - 6.25 | 12 pieces |
Custom Cartoon Dog Hair Clip | - | Plastic | Custom designs, high quality for ponytails | ¥6.04 - 6.53 | 12 pieces |
JJJ New Elegant Blue-Brown Check Clip | - | - | Plaid pattern, minimalist style | ¥5.33 - 6.82 | 12 pieces |
Elegant Acetate Flower Clip with Rhinestones | - | Acetate | Floral design with sparkling crystals for special occasions | ¥22.01 - 22.57 | 6 pieces |
What makes us a preferred supplier in the global market
With 5+ years of specialized experience in hair accessory design, we create products that blend fashion trends with functionality.
Our own factory enables rapid prototyping, sample production, and flexible manufacturing to meet your specific requirements.
With 97.1% reply rate and ≤1 hour response time, combined with verified supplier status, we ensure secure and efficient partnerships.
We serve customers worldwide with focus on these key regions:
Ready to partner with us? Get in touch today!
As a professional hair accessories manufacturer and supplier, we welcome bulk orders, custom designs, and long-term business relationships.
Our customer service team is ready to assist you with product inquiries, customization requests, and wholesale orders. With our fast response time and extensive industry experience, we'll help you find the perfect hair accessory solutions.