'); background-size: cover; background-position: center; color: white; padding: 5rem 0; text-align: center; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h2 { font-size: 2.5rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; } .hero p { font-size: 1.2rem; margin-bottom: 2rem; } .cta-button { display: inline-block; background: var(--secondary); color: white; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; } .cta-button:hover { background: #e0005e; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); } /* Stats Section */ .stats { background: white; padding: 3rem 0; box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05); } .stats-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; } .stat-item { text-align: center; } .stat-number { font-size: 2.5rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; } .stat-label { font-size: 1rem; color: var(--dark); text-transform: uppercase; letter-spacing: 1px; } /* About Section */ .about { padding: 5rem 0; } .section-title { text-align: center; margin-bottom: 3rem; position: relative; } .section-title h2 { font-size: 2rem; color: var(--dark); display: inline-block; padding-bottom: 10px; } .section-title h2:after { content: ''; position: absolute; width: 80px; height: 3px; background: var(--secondary); bottom: 0; left: 50%; transform: translateX(-50%); } .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; } .about-image { background: #e9ecef; height: 400px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #6c757d; font-size: 1.2rem; } .about-content h3 { font-size: 1.8rem; margin-bottom: 1.5rem; color: var(--accent); } .highlight { color: var(--secondary); font-weight: 600; } /* Services Section */ .services { background: #f1f5f9; padding: 5rem 0; } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .service-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); transition: all 0.3s ease; } .service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); } .service-icon { height: 150px; background: linear-gradient(135deg, var(--primary), var(--accent)); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: white; } .service-content { padding: 2rem; } .service-content h3 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--dark); } /* Process Section */ .process { padding: 5rem 0; background: white; } .process-steps { position: relative; margin-top: 3rem; } .process-steps:before { content: ''; position: absolute; height: 100%; width: 2px; background: var(--primary); left: 50%; transform: translateX(-50%); } .process-step { display: flex; margin-bottom: 3rem; position: relative; } .process-step:nth-child(even) { flex-direction: row-reverse; } .step-number { background: var(--primary); color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; position: absolute; left: 50%; transform: translateX(-50%); z-index: 2; } .step-content { width: calc(50% - 30px); background: #f8f9fa; padding: 1.5rem; border-radius: 8px; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05); } .step-content h4 { color: var(--accent); margin-bottom: 0.5rem; } /* Products Section */ .products { padding: 5rem 0; background: #f1f5f9; } .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; } .product-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); } .product-image { height: 200px; background: #e9ecef; display: flex; align-items: center; justify-content: center; color: #6c757d; } .product-info { padding: 1.5rem; } .product-title { font-size: 1.1rem; margin-bottom: 0.5rem; } .product-price { color: var(--secondary); font-weight: 700; font-size: 1.2rem; margin-bottom: 0.5rem; } .product-moq { color: var(--dark); font-size: 0.9rem; margin-bottom: 1rem; } /* Clients Section */ .clients { padding: 5rem 0; background: white; } .client-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin-top: 2rem; } .client-logo { background: #f8f9fa; height: 80px; width: 150px; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-weight: 600; color: var(--dark); box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05); } /* Languages Section */ .languages { background: linear-gradient(135deg, var(--accent), var(--primary)); padding: 3rem 0; color: white; } .language-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 1.5rem; } .language-item { background: rgba(255, 255, 255, 0.15); padding: 0.5rem 1rem; border-radius: 30px; font-size: 0.9rem; } /* Footer */ footer { background: var(--dark); color: white; padding: 3rem 0 1.5rem; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; } .footer-column h3 { font-size: 1.2rem; margin-bottom: 1.5rem; position: relative; padding-bottom: 10px; } .footer-column h3:after { content: ''; position: absolute; width: 40px; height: 2px; background: var(--secondary); bottom: 0; left: 0; } .footer-column ul { list-style: none; } .footer-column li { margin-bottom: 0.8rem; } .footer-column a { color: #adb5bd; text-decoration: none; transition: color 0.3s ease; } .footer-column a:hover { color: white; } .copyright { text-align: center; padding-top: 1.5rem; border-top: 1px solid #495057; color: #adb5bd; font-size: 0.9rem; } /* Responsive Design */ @media (max-width: 768px) { .header-container { flex-direction: column; } nav ul { margin-top: 1rem; } .about-grid { grid-template-columns: 1fr; } .process-steps:before { display: none; } .process-step, .process-step:nth-child(even) { flex-direction: column; align-items: center; text-align: center; } .step-number { position: static; transform: none; margin-bottom: 1rem; } .step-content { width: 100%; } }
Since 2009, we've been creating high-quality, fashionable children's jewelry and backpacks with fast production, low MOQ, and exceptional OEM/ODM services.
Request a QuoteEstablished in 2009 and located in the heart of Yiwu, China, Yiwu Trendz Jewelry Co., Ltd. is a distinguished creator of children's accessories and backpacks. With over 13 years of expertise, we combine traditional craftsmanship with innovative technologies to produce fun, fashionable products that delight children worldwide.
As a direct factory, we eliminate middlemen to offer competitive prices while maintaining strict quality control through full inspection processes. Our commitment to excellence has earned us partnerships with over 200 global brands, helping them elevate their product lines.
We specialize in both OEM ("You design, we manufacture") and ODM ("We design, we manufacture with your logo") services, as well as wholesale of our in-stock designs. With production capabilities of 100,000+ units monthly and a showroom featuring 3,000+ styles, we offer unparalleled variety and flexibility.
You provide the designs, we handle the production. Our expertise ensures accurate reproduction of your specifications with strict quality control.
Benefits: Maintain your design confidentiality, leverage our manufacturing expertise, ensure consistent quality.
We design and manufacture unique products with your branding. Choose from our extensive catalog or request custom development.
Benefits: Access to 2000+ existing designs, custom design development, lower development costs, faster time-to-market.
Purchase our ready-made designs directly from stock. Perfect for retailers looking to expand their inventory quickly.
Benefits: Low MOQ starting from 100pcs (some items from 3pcs), fast shipping, no design fees, competitive pricing.
We maintain a 24-step quality control process ensuring every product meets international standards.
Customer design input or our ODM creation, followed by artwork preparation and plate making.
Digital printing, material confirmation, division cutting, and laser cutting precision.
Mold making, ultrasonic embossing, injection molding casting, and specialized forming techniques.
Micro-setting, grinding, polishing, and specialized treatments like eddy polishing.
Full product inspection, manual assembly verification, and packaging quality control.
Colorful girls' necklaces with trendy resin beads
Women's bohemian necklaces perfect for gifts
Chunky bead collar sets for hip-hop fashion
2023 nylon backpacks for girls with ergonomic design
We provide professional service in your language: