'); background-size: cover; background-position: center; color: white; padding: 180px 0 100px; text-align: center; } .hero h1 { font-size: 3.5rem; color: white; margin-bottom: 20px; animation: fadeInDown 1s ease; } .hero p { font-size: 1.5rem; max-width: 800px; margin: 0 auto 30px; animation: fadeInUp 1s ease 0.3s; animation-fill-mode: both; } /* About Section */ .about-content { display: flex; align-items: center; gap: 50px; } .about-text { flex: 1; } .about-image { flex: 1; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 30px; } .stat-card { background: var(--light); padding: 25px; border-radius: 8px; text-align: center; box-shadow: 0 4px 12px rgba(0,0,0,0.05); } .stat-card h3 { font-size: 2.5rem; color: var(--secondary); margin-bottom: 5px; } /* Products Section */ .section-title { text-align: center; margin-bottom: 50px; } .section-title h2 { font-size: 2.5rem; position: relative; display: inline-block; } .section-title h2::after { content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--secondary); } .categories { display: flex; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; gap: 15px; } .category-btn { background: var(--light); padding: 10px 25px; border-radius: 30px; cursor: pointer; transition: all 0.3s; font-weight: 600; } .category-btn.active, .category-btn:hover { background: var(--secondary); color: white; } .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: transform 0.3s; } .product-card:hover { transform: translateY(-10px); } .product-image { height: 200px; background-color: #f5f7fa; display: flex; align-items: center; justify-content: center; position: relative; } .product-badge { position: absolute; top: 15px; right: 15px; background: var(--accent); color: white; padding: 5px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: 600; } .product-info { padding: 20px; } .product-title { font-size: 1.2rem; margin-bottom: 10px; color: var(--dark); } .product-price { font-weight: 700; color: var(--secondary); font-size: 1.1rem; margin-bottom: 10px; } .product-moq { color: #666; font-size: 0.9rem; margin-bottom: 15px; } .product-features { font-size: 0.9rem; color: #555; } /* Markets Section */ .markets { background-color: var(--light); } .market-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; text-align: center; } .market-item { background: white; padding: 20px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); } .market-icon { font-size: 2rem; margin-bottom: 10px; color: var(--secondary); } /* Services Section */ .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .service-card { background: white; padding: 40px 30px; border-radius: 10px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: all 0.3s; } .service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .service-icon { font-size: 3rem; color: var(--secondary); margin-bottom: 20px; } /* Contact Section */ .contact { background: linear-gradient(to right, var(--primary), var(--dark)); color: white; } .contact h2, .contact h3 { color: white; } .contact-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 50px; } .contact-info h3 { margin-bottom: 30px; } .contact-detail { display: flex; margin-bottom: 20px; align-items: flex-start; } .contact-icon { margin-right: 15px; font-size: 1.5rem; color: var(--secondary); } .contact-form .form-group { margin-bottom: 20px; } .contact-form input, .contact-form textarea { width: 100%; padding: 12px 15px; border: none; border-radius: 4px; background: rgba(255,255,255,0.1); color: white; } .contact-form textarea { height: 150px; resize: vertical; } .contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.7); } /* Footer */ footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 50px 0 20px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 40px; } .footer-logo { font-size: 1.8rem; font-weight: 700; color: white; margin-bottom: 15px; } .footer-logo span { color: var(--secondary); } .footer-links h4 { color: white; margin-bottom: 20px; } .footer-links ul { list-style: none; } .footer-links li { margin-bottom: 10px; } .footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; } .footer-links a:hover { color: var(--secondary); } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); } /* Animations */ @keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } /* Responsive */ @media (max-width: 768px) { .header-container { flex-direction: column; padding: 15px 0; } nav ul { margin-top: 15px; flex-wrap: wrap; justify-content: center; } nav ul li { margin: 5px 10px; } .hero { padding: 150px 0 80px; } .hero h1 { font-size: 2.5rem; } .hero p { font-size: 1.2rem; } .about-content { flex-direction: column; } .section-title h2 { font-size: 2rem; } }
Sanming Jiamu Trading: Your Trusted Partner for Quality Hair Accessories Since 2023
Explore ProductsFounded in 2023, Sanming Jiamu Trading Co., Ltd. is a professional manufacturer and trading company based in Fujian, China. We specialize in designing and producing high-quality hair accessories that combine fashion with functionality.
As both a manufacturer and trader, we maintain strict quality control throughout the production process, ensuring every product meets international standards. Our designs are well-received in global markets for their unique styles and durability.
With a dedicated team of 5-10 professionals and a 100m² facility, we've built a reputation for reliability and excellence in the hair accessories industry.
Years Experience
Quality Assurance
Response Rate
Response Time
Premium Hair Accessories for Global Markets
Material: Acrylic
Style: Korean, Christmas theme
For: Women & Girls
Material: Silicone
Features: Unbreakable, Big size
Style: Korean
Set: 2 small + 1 large
Material: Acrylic
Style: Korean Ins, Flower design
Material: Plush/Faux Fur
Style: Korean, Winter
Design: Shark shape
Our Products Are Well-Received Worldwide
Comprehensive Solutions for Your Business
Custom design and production according to your specifications and branding requirements.
Bulk orders with competitive pricing for retailers and distributors worldwide.
Multiple payment options: T/T, L/C, D/P, D/A, Credit Card, PayPal, Western Union, Cash, Escrow.
Get in Touch for Business Inquiries
Sanming Jiamu Trading Co., Ltd. Fujian, China
Monday - Friday: 8:00 AM - 5:00 PM (GMT+8) Response Time: ≤5 hours
Onsite Check Completed Response Rate: 93.79%