'); background-size: cover; background-position: center; color: var(--white); text-align: center; padding: 100px 0; margin-bottom: 60px; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h2 { font-size: 3rem; margin-bottom: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); } .hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; } .btn { display: inline-block; background-color: var(--primary); color: var(--white); padding: 12px 30px; border-radius: 4px; text-decoration: none; font-weight: 600; transition: var(--transition); border: 2px solid var(--primary); } .btn:hover { background-color: transparent; color: var(--white); } .btn-secondary { background-color: transparent; border-color: var(--white); margin-left: 15px; } .btn-secondary:hover { background-color: var(--white); color: var(--primary); } /* Sections */ 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: 100px; height: 3px; background-color: var(--primary); } /* About Section */ .about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .about-card { background-color: var(--white); border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); padding: 30px; transition: var(--transition); text-align: center; } .about-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .about-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; } .about-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--dark); } /* Stats */ .stats { background-color: var(--primary); color: var(--white); padding: 60px 0; } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; text-align: center; } .stat-item h3 { font-size: 2.5rem; margin-bottom: 10px; } /* Products */ .product-categories { display: flex; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; gap: 15px; } .category-btn { padding: 10px 20px; background-color: var(--light); border: none; border-radius: 30px; cursor: pointer; transition: var(--transition); font-weight: 500; } .category-btn.active, .category-btn:hover { background-color: var(--primary); color: var(--white); } .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background-color: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .product-image { height: 220px; background-color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 4rem; color: var(--primary); } .product-info { padding: 20px; } .product-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 15px; } .product-tag { background-color: var(--light); padding: 5px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: 500; } .product-tag.hot { background-color: #ffebee; color: #c62828; } .product-tag.new { background-color: #e8f5e9; color: #2e7d32; } .product-tag.recommended { background-color: #e3f2fd; color: #1565c0; } .product-title { font-size: 1.2rem; margin-bottom: 10px; color: var(--dark); } .product-price { font-weight: 700; color: var(--primary); margin-bottom: 15px; font-size: 1.1rem; } .product-specs div { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #eee; } .product-specs div:last-child { border-bottom: none; } /* Contact */ .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; } .contact-info h3 { font-size: 1.5rem; margin-bottom: 20px; color: var(--primary); } .contact-details { margin-bottom: 30px; } .contact-item { display: flex; align-items: flex-start; margin-bottom: 20px; } .contact-icon { font-size: 1.2rem; color: var(--primary); min-width: 30px; margin-top: 5px; } .contact-text { flex: 1; } .markets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; } .market-item { background-color: var(--light); padding: 10px; text-align: center; border-radius: 4px; font-weight: 500; } .contact-form .form-group { margin-bottom: 20px; } .contact-form label { display: block; margin-bottom: 8px; font-weight: 500; } .contact-form input, .contact-form textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; font-family: inherit; font-size: 1rem; } .contact-form textarea { min-height: 150px; resize: vertical; } /* Footer */ footer { background-color: var(--dark); color: var(--light); padding: 60px 0 30px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-col h3 { font-size: 1.3rem; margin-bottom: 20px; color: var(--white); position: relative; padding-bottom: 10px; } .footer-col h3:after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 2px; background-color: var(--accent); } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 12px; } .footer-col ul li a { color: var(--accent); text-decoration: none; transition: var(--transition); } .footer-col ul li a:hover { color: var(--white); padding-left: 5px; } .cert-badge { background-color: rgba(255,255,255,0.1); padding: 15px; border-radius: 8px; margin-top: 20px; } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; color: var(--accent); } /* Responsive */ @media screen and (max-width: 768px) { .header-container { flex-direction: column; text-align: center; } nav ul { margin-top: 20px; flex-wrap: wrap; justify-content: center; } nav li { margin: 5px 10px; } .hero { padding: 60px 0; } .hero h2 { font-size: 2.2rem; } .btn { display: block; width: max-content; margin: 10px auto; } .section-title h2 { font-size: 2rem; } .markets-grid { grid-template-columns: repeat(2, 1fr); } }
Xuchang Sifan Crafts Co., Ltd. is a leading manufacturer of high-quality human hair wigs, synthetic wigs, and hair accessories. With over 15 years of expertise, we serve global markets with innovative hair solutions.
Established in 2023, we operate from a modern 1,000m² facility in Henan, China. Our skilled workforce of 51-100 professionals ensures quality production.
We serve diverse markets including North America, Africa, Eastern Europe, South America, and Southeast Asia with tailored hair solutions.
"Customer First, Forge Ahead" - This principle drives our 15 years of expertise in wig design, development, and manufacturing excellence.
Response Rate
Response Time
Annual Output Value
Years of Experience
Alibaba Gold Supplier with 2 years verified history
Verification Type: Onsite Check