'); 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 h1 { font-size: 3rem; color: white; margin-bottom: 20px; } .hero p { font-size: 1.2rem; margin-bottom: 30px; } .btn { display: inline-block; background-color: var(--secondary); color: white; padding: 12px 30px; border-radius: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; border: none; cursor: pointer; } .btn:hover { background-color: #c19b2e; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); } /* Stats Section */ .stats { background-color: var(--light); padding: 60px 0; } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; } .stat-item { padding: 20px; } .stat-number { font-size: 2.5rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; } .stat-label { font-size: 1rem; color: var(--gray); } /* About Section */ .about { padding: 80px 0; } .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } .about-text h2 { margin-bottom: 25px; } .quality-list { margin: 25px 0; } .quality-item { display: flex; align-items: flex-start; margin-bottom: 15px; } .quality-icon { background-color: var(--secondary); color: white; width: 25px; height: 25px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; flex-shrink: 0; } .about-image { background-color: #eee; border-radius: 10px; height: 400px; position: relative; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } .image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(45deg, #f5f1e8, #e8dfd1); color: var(--primary); font-weight: bold; } /* Certificates Section */ .certificates { background-color: var(--light); padding: 80px 0; } .cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; } .cert-card { background: white; border-radius: 8px; padding: 25px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; } .cert-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .cert-icon { font-size: 3rem; color: var(--secondary); margin-bottom: 15px; } /* Products Section */ .products { padding: 80px 0; } .section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; } .section-header h2 { padding-bottom: 15px; } .section-header h2:after { left: 50%; transform: translateX(-50%); } .product-categories { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; } .category-btn { background: white; border: 1px solid #ddd; padding: 8px 20px; border-radius: 30px; cursor: pointer; transition: all 0.3s ease; } .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(250px, 1fr)); gap: 30px; } .product-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; } .product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .product-img { height: 250px; background: #f9f9f9; display: flex; align-items: center; justify-content: center; color: var(--gray); font-weight: bold; } .product-info { padding: 20px; } .product-title { font-weight: 600; margin-bottom: 10px; font-size: 1.1rem; } .product-meta { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 0.9rem; } .price { color: var(--primary); font-weight: 700; } .moq { color: var(--gray); } /* Exhibition Section */ .exhibition { padding: 80px 0; background-color: var(--light); } .gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; } .gallery-item { height: 250px; border-radius: 8px; overflow: hidden; background: linear-gradient(45deg, #f5f1e8, #e8dfd1); display: flex; align-items: center; justify-content: center; color: var(--primary); font-weight: bold; } /* Contact Section */ .contact { padding: 80px 0; } .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; } .contact-form .form-group { margin-bottom: 20px; } .contact-form label { display: block; margin-bottom: 8px; font-weight: 600; } .contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; } .contact-form textarea { min-height: 150px; } .contact-info { background-color: var(--light); padding: 30px; border-radius: 8px; } .info-item { display: flex; margin-bottom: 25px; } .info-icon { font-size: 1.5rem; color: var(--secondary); margin-right: 15px; width: 40px; } /* Footer */ footer { background-color: var(--dark); color: white; padding: 60px 0 30px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-col h3 { color: white; margin-bottom: 25px; font-size: 1.3rem; position: relative; padding-bottom: 10px; } .footer-col h3:after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--secondary); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 12px; } .footer-links a { color: #ccc; } .footer-links a:hover { color: var(--secondary); } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: #aaa; font-size: 0.9rem; } /* Responsive Styles */ @media (max-width: 992px) { .about-content, .contact-grid { grid-template-columns: 1fr; } .hero h1 { font-size: 2.2rem; } } @media (max-width: 768px) { .mobile-menu-btn { display: block; } nav { position: fixed; top: 0; right: -300px; width: 300px; height: 100vh; background: white; box-shadow: -5px 0 15px rgba(0,0,0,0.1); transition: all 0.3s ease; padding-top: 80px; z-index: 999; } nav.active { right: 0; } nav ul { flex-direction: column; padding: 20px; } nav li { margin: 0 0 20px 0; } .hero { padding: 80px 20px; } .hero h1 { font-size: 1.8rem; } .hero p { font-size: 1rem; } }
ISO9001 Certified Supplier with Over 10 Years Experience in OEM Manufacturing of Quality Fashion Accessories
Request a QuoteYiwu Chentong Trading Co., Ltd., with its affiliated factory Yiwu Chentong Jewelry Co., Ltd., has been a leading manufacturer and supplier of high-quality fashion accessories since 2011. Our dedication to craftsmanship and innovation has made us a trusted partner for brands worldwide.
We specialize in the design, development, and manufacturing of premium fashion accessories:
We offer comprehensive OEM/ODM services with our in-house design team developing new collections weekly. Our manufacturing facilities can accommodate both small and large quantity orders with flexible MOQs.
We maintain the highest quality standards through rigorous testing and certification processes.
International product safety and quality verification
European conformity for product safety standards
Quality assurance for accessories and jewelry
Documentation of regulatory adherence
Environmental and safety compliance
Discover our best-selling fashion accessories crafted with premium materials and attention to detail.
Non-hurt design with rope headband and seamless elastic bands.
Adjustable red bracelet with Chinese knot design for protection.
Geometric shape star and heart snap clips for baby girls.
French satin scrunchies with letter elements in black and white.
We participate in major international trade shows and collaborate with brands worldwide.
Reach out to our sales team for quotes, samples, or partnership opportunities.
Yiwu City, Zhejiang Province, China
Monday-Friday: 8:30 AM - 5:30 PM (GMT+8)
6 dedicated sales representatives ready to assist
T/T, L/C, D/P, D/A, PayPal, Credit Card, Western Union