'); background-size: cover; background-position: center; color: white; text-align: center; padding: 100px 20px; position: relative; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h2 { font-size: 2.8rem; margin-bottom: 20px; text-shadow: 1px 1px 3px rgba(0,0,0,0.3); } .hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; } .btn { display: inline-block; background-color: var(--secondary); color: white; padding: 12px 30px; border-radius: 4px; text-decoration: none; font-weight: 600; transition: all 0.3s; border: none; cursor: pointer; font-size: 1rem; } .btn:hover { background-color: #b91c1c; transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.2); } .btn-outline { background: transparent; border: 2px solid white; margin-left: 15px; } .btn-outline:hover { background-color: rgba(255,255,255,0.1); } /* Section Styles */ section { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 50px; } .section-title h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 15px; position: relative; display: inline-block; } .section-title h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 70px; height: 3px; background-color: var(--secondary); } .section-title p { color: var(--gray); max-width: 700px; margin: 20px auto 0; } /* About Section */ .about-content { display: flex; align-items: center; gap: 40px; } .about-text { flex: 1; } .about-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; margin-top: 30px; } .stat-box { background-color: white; border-radius: 8px; padding: 20px; text-align: center; box-shadow: 0 4px 6px rgba(0,0,0,0.05); transition: transform 0.3s; } .stat-box:hover { transform: translateY(-5px); box-shadow: 0 6px 12px rgba(0,0,0,0.1); } .stat-box h3 { font-size: 2rem; color: var(--secondary); margin-bottom: 5px; } .stat-box p { color: var(--gray); font-size: 0.9rem; } /* Products Section */ .product-categories { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 40px; } .category-btn { padding: 10px 20px; background-color: white; border: 1px solid #e2e8f0; border-radius: 30px; cursor: pointer; transition: all 0.3s; font-weight: 500; } .category-btn.active, .category-btn:hover { background-color: var(--primary); color: white; border-color: var(--primary); } .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background-color: white; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s; } .product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); } .product-image { height: 200px; background-color: #edf2f7; display: flex; align-items: center; justify-content: center; color: var(--gray); } .product-info { padding: 20px; } .product-info h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--dark); } .product-meta { display: flex; justify-content: space-between; margin-top: 15px; font-size: 0.9rem; } .price { color: var(--secondary); font-weight: 600; } .tags { display: flex; gap: 5px; margin-top: 10px; flex-wrap: wrap; } .tag { background-color: #ebf8ff; color: #3182ce; font-size: 0.75rem; padding: 3px 8px; border-radius: 4px; } /* Advantages Section */ .advantages { background-color: var(--light); } .advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .advantage-card { background-color: white; border-radius: 8px; padding: 30px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); text-align: center; transition: transform 0.3s; } .advantage-card:hover { transform: translateY(-5px); } .advantage-icon { width: 70px; height: 70px; background-color: rgba(197, 48, 48, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--secondary); font-size: 1.8rem; } .advantage-card h3 { margin-bottom: 15px; color: var(--primary); } /* Contact Section */ .contact-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; } .contact-info { background-color: var(--primary); color: white; border-radius: 8px; padding: 30px; } .contact-info h3 { margin-bottom: 20px; font-size: 1.5rem; } .contact-detail { display: flex; align-items: flex-start; margin-bottom: 20px; } .contact-icon { margin-right: 15px; font-size: 1.2rem; color: var(--accent); } .contact-form { background-color: white; border-radius: 8px; padding: 30px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 500; } .form-control { width: 100%; padding: 12px; border: 1px solid #e2e8f0; border-radius: 4px; font-size: 1rem; } .form-control:focus { outline: none; border-color: var(--primary); } /* Footer */ footer { background-color: 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-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: 40px; height: 2px; background-color: var(--secondary); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 12px; } .footer-links a { color: #cbd5e0; text-decoration: none; transition: color 0.3s; } .footer-links a:hover { color: var(--accent); } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: #a0aec0; font-size: 0.9rem; } .certificate-placeholder { background-color: white; padding: 30px; border-radius: 8px; text-align: center; max-width: 800px; margin: 0 auto; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .events-placeholder { background-color: white; padding: 40px; border-radius: 8px; text-align: center; max-width: 800px; margin: 0 auto; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .events-placeholder p { margin-bottom: 20px; } /* Responsive */ @media (max-width: 768px) { .main-header { flex-direction: column; text-align: center; } nav ul { margin-top: 20px; justify-content: center; } .hero h2 { font-size: 2.2rem; } .about-content { flex-direction: column; } .contact-container { grid-template-columns: 1fr; } .product-categories { flex-wrap: wrap; } }
Design, R&D, production, quality inspection, and packaging - all under one roof with over 2 years of industry excellence
Explore Our Products Contact UsYour trusted partner for quality accessories and equipment
Yiwu Yongchang Trading Co., Ltd., based in the global commodity hub of Yiwu City, Zhejiang, China, specializes in manufacturing and exporting a wide range of accessories and heat transfer equipment. With a 4.5/5 customer rating, we pride ourselves on delivering exceptional quality and service.
Our integrated approach encompasses the entire production process from design and R&D to production, quality inspection, and packaging. This vertical integration allows us to maintain strict quality control while ensuring competitive pricing.
As an environmentally conscious manufacturer, we prioritize eco-friendly materials and processes across our product lines. Our commitment to sustainability extends from our stainless steel jewelry to our packaging solutions.
Years Experience
Product Designs
Global Partners
Customer Rating
High-quality accessories and equipment for diverse markets
Titanium steel gold-plated necklace with zircon inlay, durable and elegant.
Personalized gold-plated stainless steel initial pendant necklace.
New candy-colored cloud-shaped hair clips with flower/carrot designs.
Elegant snowflake design hair clips with crystal accents.
Elegant crystal tiara for weddings, proms, birthdays and cosplay.
Necklace, bracelet, ring and earrings set with premium zircon stones.
Polished heart, circle, oval, and diamond shaped pendants for custom jewelry.
Professional heat transfer equipment for garment customization.
Why global partners choose to work with us
Full control over design, R&D, production, quality inspection, and packaging ensures consistent quality and faster turnaround times.
Strategic partnerships with Alibaba Logistics, FedEx, UPS, and major couriers guarantee timely worldwide shipping.
Commitment to sustainable materials and processes across all product lines, with customizable eco-packaging options.
Extensive experience in creating customized products and packaging to meet specific market requirements.
Active participation in global trade shows ensures we stay ahead of fashion trends and market demands.
Rigorous multi-stage inspections throughout production process to guarantee product excellence.
Commitment to quality and industry standards
Yiwu Yongchang Trading maintains current certifications for manufacturing standards, materials safety, and export compliance. Our certificates are currently being updated and will be displayed here shortly.
For specific certification inquiries, please contact our quality assurance team.
Where we showcase our latest products
Yiwu Yongchang Trading regularly participates in major international trade shows and exhibitions. Our upcoming event schedule is being finalized and will be published here soon.
To receive notifications about our exhibition participation and new product launches, please subscribe to our newsletter or follow us on social media.
Contact Us for Event InfoWe're ready to answer your questions and discuss partnerships
Yiwu City, Zhejiang Province, China
Tina Xu
Customer service available around the clock
+86 18438072789