'); background-size: cover; background-position: center; color: white; text-align: center; padding: 80px 20px; position: relative; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h2 { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; } .hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; } .hero-stats { display: flex; justify-content: center; gap: 40px; margin-top: 40px; flex-wrap: wrap; } .stat-item { background: rgba(255, 255, 255, 0.1); padding: 20px 30px; border-radius: 10px; min-width: 180px; } .stat-item .number { font-size: 2.5rem; font-weight: 700; color: var(--secondary); line-height: 1; } .btn { display: inline-block; background: var(--secondary); color: var(--dark); padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s; border: 2px solid var(--secondary); } .btn:hover { background: transparent; color: var(--secondary); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); } /* Section Common Styles */ section { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 50px; } .section-title h2 { font-size: 2.5rem; color: var(--primary); position: relative; display: inline-block; padding-bottom: 15px; } .section-title h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--secondary); } /* Products Section */ .products-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 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, box-shadow 0.3s; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); } .product-image { height: 250px; background: linear-gradient(45deg, #e0e0e0, #f5f5f5); display: flex; align-items: center; justify-content: center; color: var(--dark); font-weight: 700; position: relative; } .hot-tag { position: absolute; top: 15px; right: 15px; background: var(--highlight); color: white; padding: 5px 15px; border-radius: 20px; font-weight: 700; font-size: 0.9rem; } .product-content { padding: 20px; } .product-title { font-size: 1.3rem; margin-bottom: 10px; color: var(--dark); } .product-price { font-size: 1.4rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; } .product-details { margin: 15px 0; } .product-details li { margin-bottom: 8px; display: flex; } .product-details li::before { content: '✓'; color: var(--secondary); font-weight: bold; margin-right: 10px; } /* About Section */ .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } .about-text { padding-right: 20px; } .about-text h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--dark); } .about-features { margin-top: 30px; } .feature-item { display: flex; gap: 15px; margin-bottom: 20px; } .feature-icon { min-width: 50px; height: 50px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; } .feature-content h4 { font-size: 1.2rem; margin-bottom: 5px; color: var(--dark); } .world-map { position: relative; height: 350px; background: linear-gradient(45deg, #e0f7fa, #bbdefb); border-radius: 10px; display: flex; align-items: center; justify-content: center; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } .market-point { position: absolute; width: 15px; height: 15px; background: var(--primary); border-radius: 50%; transform: translate(-50%, -50%); animation: pulse 2s infinite; } .market-point::after { content: ''; position: absolute; width: 100%; height: 100%; border: 1px solid var(--primary); border-radius: 50%; animation: ripple 2s infinite; top: 0; left: 0; } @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(142, 68, 173, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(142, 68, 173, 0); } 100% { box-shadow: 0 0 0 0 rgba(142, 68, 173, 0); } } @keyframes ripple { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(2.5); opacity: 0; } } /* Process Section */ .process-steps { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; flex-wrap: wrap; } .step-card { background: white; border-radius: 10px; padding: 30px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.08); flex: 1; min-width: 200px; position: relative; transition: transform 0.3s; } .step-card:hover { transform: translateY(-10px); } .step-number { width: 50px; height: 50px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; margin: 0 auto 20px; } .step-card h4 { font-size: 1.3rem; margin-bottom: 15px; color: var(--dark); } .step-card p { margin-bottom: 20px; } /* Contact Section */ .contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } .contact-info { padding: 50px; background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%); color: white; } .contact-info h3 { font-size: 1.8rem; margin-bottom: 30px; position: relative; padding-bottom: 15px; } .contact-info h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 3px; background: var(--secondary); } .contact-detail { display: flex; gap: 15px; margin-bottom: 25px; align-items: flex-start; } .contact-icon { font-size: 1.5rem; color: var(--secondary); min-width: 40px; } .contact-text h4 { font-size: 1.2rem; margin-bottom: 5px; } .certificate-badge { background: rgba(255, 255, 255, 0.1); padding: 20px; border-radius: 10px; margin-top: 30px; } .certificate-badge h4 { font-size: 1.2rem; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; } .contact-form { padding: 50px; } .contact-form h3 { font-size: 1.8rem; color: var(--dark); margin-bottom: 30px; position: relative; padding-bottom: 15px; } .contact-form h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 3px; background: var(--primary); } .form-group { margin-bottom: 25px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--dark); } .form-control { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; transition: border-color 0.3s; } .form-control:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.1); } textarea.form-control { min-height: 150px; resize: vertical; } /* Footer */ footer { background: var(--dark); color: white; padding: 50px 0 20px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-column h4 { font-size: 1.3rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-column h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--secondary); } .footer-column ul { list-style: none; } .footer-column ul li { margin-bottom: 12px; } .footer-column ul li a { color: #ddd; text-decoration: none; transition: color 0.3s; } .footer-column ul li a:hover { color: var(--secondary); } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; color: #aaa; } /* Responsive Design */ @media (max-width: 768px) { .header-content { flex-direction: column; gap: 15px; } nav ul { gap: 15px; flex-wrap: wrap; justify-content: center; } .hero h2 { font-size: 2rem; } .about-content, .contact-container { grid-template-columns: 1fr; } .about-text { padding-right: 0; } .process-steps { flex-direction: column; } .section-title h2 { font-size: 2rem; } .stat-item { min-width: 140px; padding: 15px; } .stat-item .number { font-size: 2rem; } }
As a leading wig manufacturer with over 10 years of expertise, we provide 1000+ styles of premium human hair wigs to global customers. Our commitment: lower costs, higher quality, greater value.
Explore Our ProductsGuangzhou Yuexiu District Zhuangjiayuan Wig Products Trading Firm leverages over a decade of manufacturing excellence to deliver premium human hair wigs and extensions worldwide. With a diverse portfolio of 1000+ styles, we've become a trusted partner for clients across the globe.
We use 100% human hair (Vietnamese, Indian, Brazilian) ensuring natural look and durability.
Most orders ship within 2 days with worldwide delivery to USA, Europe, Africa, and Asia.
Minimum order quantity of just 1 piece with easy return policy for your peace of mind.
Exporting to 20+ countries worldwide
Specify product color, size, and quantity
Secure payment via our platform (link valid for 3 days)
Our factory crafts your order with precision
100% QC check before shipping
Most orders ship within 2 business days
During peak seasons, please complete payment promptly as payment links expire in 3 days. All products have 1 piece MOQ and come with our "Easy Return" guarantee.
Meibo City A Zone A03 Shop, Yuexiu District, Guangzhou, Guangdong, China
Monday-Saturday: 9:00 AM - 6:00 PM (GMT+8)
Response Time: ≤6 hours
100% Quality Control Inspection
Strong Production Capacity
We hold a "Certificate of Completion" and maintain partnerships with suppliers and clients across the globe, ensuring premium quality at every step.