'); background-size: 100% 100%; } .hero-content { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; } .hero h1 { font-size: 2.8rem; margin-bottom: 20px; line-height: 1.2; } .hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; } .stats-container { display: flex; justify-content: center; gap: 30px; margin-top: 40px; flex-wrap: wrap; } .stat-card { background: rgba(255, 255, 255, 0.1); border-radius: 8px; padding: 20px; min-width: 180px; backdrop-filter: blur(5px); border: 1px solid rgba(255, 255, 255, 0.2); } .stat-value { font-size: 2.2rem; font-weight: 700; margin-bottom: 5px; color: white; } .stat-label { font-size: 0.95rem; opacity: 0.8; } .btn { display: inline-block; background-color: var(--accent); color: white; padding: 12px 30px; border-radius: 4px; text-decoration: none; font-weight: 600; transition: var(--transition); border: none; cursor: pointer; font-size: 1rem; } .btn:hover { background-color: #c53030; 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: white; color: var(--primary); } /* About Section */ .section { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 50px; } .section-title h2 { font-size: 2.2rem; color: var(--primary-dark); position: relative; display: inline-block; margin-bottom: 15px; } .section-title h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 60px; height: 4px; background-color: var(--accent); border-radius: 2px; } .section-title p { color: var(--gray); max-width: 700px; margin: 20px auto 0; } .about-content { display: flex; gap: 50px; align-items: center; } .about-text { flex: 1; } .about-text h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--primary); } .about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .feature-card { background: white; border-radius: 8px; padding: 20px; box-shadow: var(--shadow); transition: var(--transition); } .feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); } .feature-icon { font-size: 2rem; color: var(--accent); margin-bottom: 15px; } .feature-card h4 { margin-bottom: 10px; color: var(--primary-dark); } .about-image { flex: 1; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); background: linear-gradient(45deg, var(--primary-light), var(--accent-light)); height: 400px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; font-weight: bold; text-align: center; padding: 20px; } /* Products Section */ .products { background-color: var(--light); } .categories { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 40px; } .category-btn { background: white; border: 1px solid var(--light-gray); padding: 10px 25px; border-radius: 30px; cursor: pointer; transition: var(--transition); font-weight: 500; } .category-btn.active, .category-btn:hover { background: 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: white; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); } .product-image { height: 220px; background: linear-gradient(45deg, #e2e8f0, #cbd5e0); display: flex; align-items: center; justify-content: center; color: var(--gray); font-weight: 500; } .product-details { padding: 20px; } .product-category { color: var(--accent); font-size: 0.85rem; font-weight: 600; margin-bottom: 5px; } .product-title { font-size: 1.1rem; margin-bottom: 10px; color: var(--primary-dark); height: 60px; overflow: hidden; } .product-price { color: var(--success); font-weight: 700; font-size: 1.2rem; margin-bottom: 5px; } .product-moq { color: var(--gray); font-size: 0.9rem; margin-bottom: 15px; } .product-specs { display: flex; justify-content: space-between; border-top: 1px solid var(--light-gray); padding-top: 15px; margin-top: 15px; } .spec-item { display: flex; flex-direction: column; align-items: center; } .spec-label { font-size: 0.8rem; color: var(--gray); } .spec-value { font-weight: 600; margin-top: 3px; } .view-more { text-align: center; margin-top: 50px; } /* EEAT Section */ .eeat-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; } .eeat-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .eeat-card { background: rgba(255, 255, 255, 0.1); border-radius: 8px; padding: 30px; text-align: center; backdrop-filter: blur(5px); border: 1px solid rgba(255, 255, 255, 0.2); transition: var(--transition); } .eeat-card:hover { transform: translateY(-10px); background: rgba(255, 255, 255, 0.15); } .eeat-icon { font-size: 3rem; margin-bottom: 20px; color: var(--accent-light); } .eeat-card h3 { font-size: 1.5rem; margin-bottom: 15px; position: relative; padding-bottom: 15px; } .eeat-card h3::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 3px; background-color: var(--accent-light); } /* Contact Section */ .contact-container { display: flex; gap: 50px; } .contact-info-section { flex: 1; } .contact-info-section h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--primary); } .contact-details { margin-top: 30px; } .contact-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; } .contact-icon { font-size: 1.5rem; color: var(--primary); min-width: 30px; } .contact-map { flex: 1; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); background: linear-gradient(45deg, #e2e8f0, #cbd5e0); height: 350px; display: flex; align-items: center; justify-content: center; color: var(--gray); font-weight: 500; } /* Footer */ footer { background: var(--primary-dark); color: white; padding: 60px 0 30px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-column h3 { position: relative; padding-bottom: 15px; margin-bottom: 20px; font-size: 1.3rem; } .footer-column h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background-color: var(--accent); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 12px; } .footer-links a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: var(--transition); display: flex; align-items: center; gap: 10px; } .footer-links a:hover { color: white; padding-left: 5px; } .footer-links a::before { content: '➤'; font-size: 0.7rem; opacity: 0; transition: var(--transition); } .footer-links a:hover::before { opacity: 1; } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; } /* Responsive Styles */ @media (max-width: 992px) { .about-content { flex-direction: column; } .contact-container { flex-direction: column; } .hero h1 { font-size: 2.3rem; } .main-header { flex-direction: column; gap: 20px; } } @media (max-width: 768px) { .top-bar-content { flex-direction: column; gap: 10px; align-items: flex-start; } nav ul { flex-wrap: wrap; justify-content: center; } .feature-card { grid-column: span 2; } .product-title { height: auto; } }
Your trusted wholesale partner for high-quality watches, hair accessories, and women's apparel since 2017. Serving global markets with competitive pricing and exceptional service.
Established in 2017, we've built a reputation for quality and reliability in the global fashion accessories market
Yiwu Chernliy Trade Co., Ltd. specializes in the wholesale distribution of high-quality fashion accessories and women's apparel. Based in Yiwu, China - the world's largest wholesale market - we leverage our strategic location and extensive supply chain network to deliver exceptional value to our global clientele.
With over 8 years of industry experience, we've cultivated strong relationships with manufacturers, ensuring our products meet international quality standards while maintaining competitive pricing. Our core focus is on watches, hair accessories, and women's apparel, with continuous expansion into complementary fashion categories.
Based in Yiwu, China - the world's largest wholesale market center with unparalleled access to manufacturers
90.3% response rate with under 7-hour average response time to all business inquiries
Low minimum order quantities starting from just 10 pieces per design
Multilingual support serving clients in over 100 countries worldwide
Discover our extensive collection of premium fashion accessories and apparel
Our commitment to excellence in every aspect of our business
With 8+ years in the fashion accessories industry, we've developed deep expertise in global market trends, quality manufacturing, and efficient supply chain management.
Our team comprises industry veterans with specialized knowledge in product development, quality control, and international trade compliance.
Recognized as a trusted supplier by retailers worldwide, we maintain partnerships with over 200 clients across 50+ countries.
We prioritize transparency in all business dealings, with clear communication, reliable shipping, and consistent product quality.
Reach out to start your wholesale partnership today
Have questions about our products or services? Our team is ready to assist you with any inquiries. With a 90.3% response rate and average response time under 7 hours, you can expect prompt and helpful assistance.
No. 888 Shangcheng Avenue, Yiwu City, Zhejiang Province, China 322000
[email protected]@chernliytrade.com
+86 579 8555 1234+86 139 1234 5678 (WhatsApp)
Monday-Friday: 8:30 AM - 5:30 PM (GMT+8)Saturday: 9:00 AM - 12:00 PM