'); background-size: cover; background-position: center; color: white; padding: 100px 0; text-align: center; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h2 { font-size: 2.8rem; margin-bottom: 20px; line-height: 1.2; } .hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; } .btn { display: inline-block; background: 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: #c0392b; transform: translateY(-3px); 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); } section { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 50px; position: relative; } .section-title h2 { font-size: 2.2rem; color: var(--primary); display: inline-block; padding-bottom: 15px; } .section-title h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background: var(--secondary); } .about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .about-card { background: white; border-radius: 8px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s; text-align: center; } .about-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .about-card h3 { color: var(--primary); margin-bottom: 15px; font-size: 1.4rem; } .about-card p { color: #666; } .stats { background: var(--primary); color: white; padding: 60px 0; } .stats-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; } .stat-item { text-align: center; padding: 20px; } .stat-number { font-size: 2.5rem; font-weight: 700; margin-bottom: 10px; color: var(--accent); } .stat-label { font-size: 1.1rem; opacity: 0.9; } .advantages { background: var(--light); } .tabs { display: flex; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; } .tab-btn { background: white; border: none; padding: 12px 25px; margin: 0 5px 10px; cursor: pointer; font-weight: 600; border-radius: 4px; transition: all 0.3s; box-shadow: 0 2px 5px rgba(0,0,0,0.1); } .tab-btn.active { background: var(--secondary); color: white; } .tab-content { background: white; border-radius: 8px; padding: 40px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .tab-pane { display: none; } .tab-pane.active { display: block; animation: fadeIn 0.5s ease; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } .categories { background: white; } .category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; } .category-card { border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s; } .category-card:hover { transform: translateY(-10px); } .category-header { background: var(--primary); color: white; padding: 15px 20px; } .category-body { padding: 20px; background: white; } .product-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed #eee; } .product-item:last-child { border-bottom: none; } .promotion { background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%); color: white; text-align: center; padding: 60px 0; } .promo-cards { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; margin-top: 40px; } .promo-card { background: rgba(255,255,255,0.1); border-radius: 8px; padding: 30px; width: 300px; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); } .promo-card h3 { font-size: 2rem; margin-bottom: 15px; color: var(--accent); } .partners { background: var(--light); } .partner-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 30px; } .partner-logo { background: white; padding: 20px; border-radius: 8px; width: 150px; height: 100px; display: flex; align-items: center; justify-content: center; box-shadow: 0 3px 10px rgba(0,0,0,0.05); font-weight: 700; color: var(--primary); } .certifications { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-top: 30px; } .cert-badge { background: var(--primary); color: white; padding: 15px 25px; border-radius: 30px; font-weight: 600; } .contact { background: white; } .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .contact-info { background: var(--light); padding: 30px; border-radius: 8px; } .contact-item { display: flex; margin-bottom: 20px; } .contact-icon { background: var(--primary); color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; flex-shrink: 0; } .payment-methods { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 20px; } .payment-method { background: #f0f0f0; padding: 8px 15px; border-radius: 4px; font-size: 0.9rem; } footer { background: var(--dark); color: white; padding: 40px 0 20px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 30px; } .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: 50px; height: 2px; background: var(--accent); } .footer-column ul { list-style: none; } .footer-column ul li { margin-bottom: 10px; } .footer-column ul li a { color: #ddd; text-decoration: none; transition: color 0.3s; } .footer-column ul li a:hover { color: var(--accent); } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; color: #aaa; } @media (max-width: 768px) { .header-content { flex-direction: column; text-align: center; } nav ul { margin-top: 20px; justify-content: center; } nav ul li { margin: 0 10px; } .hero h2 { font-size: 2rem; } .btn { display: block; margin: 10px auto; width: 80%; max-width: 250px; } .btn-outline { margin-left: 0; } }
Since 2005, we've specialized in high-quality hair accessories, jewelry, and beauty products with custom OEM/ODM solutions
Founded: 2005 (Factory), 2015 (Company)
Location: Hubei, China
Verification: On-site Check (Alibaba Certified)
Employees: 51-100 People
Factory Area: 5,000-10,000 m²
Annual Output: $1M-$2.5M USD
Production Lines: 6
R&D Staff: 50+ Professionals
Export Experience: 29 Years
Export Percentage: 81-90%
Trade Staff: 50+ Specialists
Annual Transactions: 80,000+ USD
Our professional technical team brings decades of industry experience:
We prioritize customer satisfaction through comprehensive support:
Our manufacturing capabilities ensure premium quality products:
Valid until October 31, 2025 - Special discounts for wholesale customers
Premium materials and craftsmanship
Responsive support and solutions
Competitive direct-from-factory pricing
"Our factory survives on high quality, reputation and development. We combine innovation and integrity with efficient operations to deliver exceptional products to our global partners."
+86-0714-6382001
+86-159 7254 2001
Huangshi City, Hubei Province, China
Visitors welcome by appointment
darlingparty.cn
We serve wholesale clients worldwide with focus on: