'); background-size: cover; background-position: center; color: white; padding: 80px 0; text-align: center; } .hero h2 { font-size: 2.8rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; } .hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; } .btn { display: inline-block; background-color: var(--accent); color: var(--dark); padding: 12px 30px; border-radius: 4px; text-decoration: none; font-weight: 600; transition: all 0.3s; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; border: none; cursor: pointer; } .btn:hover { background-color: #e0b542; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); } /* About Section */ .section { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 50px; } .section-title h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 15px; position: relative; display: inline-block; } .section-title h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background-color: var(--secondary); } .section-title p { color: var(--gray); max-width: 700px; margin: 20px auto 0; } .about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; } .about-card { background-color: white; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); padding: 30px; text-align: center; transition: transform 0.3s; } .about-card:hover { transform: translateY(-10px); } .about-card h3 { color: var(--primary); margin: 20px 0 15px; } .about-card p { color: var(--gray); } .icon { font-size: 2.5rem; color: var(--secondary); } /* Products Section */ .products { background-color: var(--light); } .product-categories { display: flex; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; gap: 10px; } .product-category { background-color: white; padding: 10px 25px; border-radius: 30px; cursor: pointer; transition: all 0.3s; border: 1px solid #e0e0e0; font-weight: 600; } .product-category.active, .product-category:hover { background-color: var(--primary); color: white; border-color: var(--primary); } .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background-color: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s; } .product-card:hover { transform: translateY(-10px); } .product-img { height: 220px; background-color: #f5f5f5; display: flex; align-items: center; justify-content: center; color: var(--gray); font-weight: 600; } .product-info { padding: 20px; } .product-info h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.1rem; } .product-meta { display: flex; justify-content: space-between; margin-top: 15px; font-size: 0.9rem; color: var(--secondary); font-weight: 600; } /* Advantages Section */ .advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .advantage-card { display: flex; background-color: white; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); padding: 25px; } .advantage-icon { font-size: 2rem; color: var(--primary); margin-right: 20px; min-width: 50px; } .advantage-content h3 { color: var(--primary); margin-bottom: 10px; } /* Stats Section */ .stats { background: linear-gradient(to right, var(--primary), #2c5282); color: white; text-align: center; padding: 60px 0; } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 40px; } .stat-item h3 { font-size: 2.5rem; margin-bottom: 10px; color: var(--accent); } .stat-item p { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; } /* Contact Section */ .contact { background-color: var(--light); } .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; } .contact-info { background-color: white; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .contact-info h3 { color: var(--primary); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--accent); } .contact-detail { display: flex; margin-bottom: 25px; } .contact-icon { font-size: 1.5rem; color: var(--secondary); min-width: 40px; } .contact-text h4 { margin-bottom: 5px; color: var(--dark); } .contact-form .form-group { margin-bottom: 20px; } .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 { height: 150px; resize: vertical; } /* Footer */ footer { background-color: var(--dark); color: white; padding: 60px 0 20px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-col h3 { color: var(--accent); margin-bottom: 20px; font-size: 1.3rem; } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 10px; } .footer-col a { color: #ddd; text-decoration: none; transition: color 0.3s; } .footer-col a:hover { color: var(--accent); } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid #444; color: #aaa; font-size: 0.9rem; } /* Responsive Design */ @media (max-width: 768px) { .header-main { flex-direction: column; text-align: center; } .logo { margin-bottom: 20px; justify-content: center; } nav ul { justify-content: center; } nav li { margin: 0 10px; } .hero h2 { font-size: 2.2rem; } .section { padding: 60px 0; } } @media (max-width: 480px) { .hero { padding: 60px 0; } .hero h2 { font-size: 1.8rem; } .section-title h2 { font-size: 1.8rem; } nav ul { flex-wrap: wrap; } nav li { margin: 5px 10px; } }
Manufacturer of premium wig stands, mannequin heads, wig caps, and salon tools with 10+ patents and global certifications
Explore Our ProductsXuchang Jianan District Liang Business Co., Ltd. (Brand: LEEONS) is a leading manufacturer of professional hair salon equipment and wig accessories based in Xuchang, China - the global hub of wig production.
3000㎡ warehouse facility supporting global distribution with 50+ professional staff ensuring quality at every step.
Serving 12,000+ customers across 65+ countries with focus on North America, Europe, and Africa.
10+ patented products focusing on wig tools and accessories innovation with TÜV Rheinland certification.
Established: 2016
Location: Xuchang, Henan, China
Business Type: Multispecialty Supplier & Trading Company
Product Range: 400+ wig accessories, 200+ synthetic hair products, 200+ wig tools
Partnerships: 20+ specialized factories
Certification: TÜV Rheinland
Quality Control: Dedicated QA/QC team and material traceability
Delivery Rate: 98.5% on-time delivery
Premium quality wig accessories and salon tools for professionals and wholesale buyers
Professional tripod with tool tray for wig making and styling
Height-adjustable metal stand for salon use
Ammonia net material with U-type/monocap styles
Glueless design with elastic band for invisible wear
African female style for wig display and hat presentation
100% human hair for professional styling practice
Carbon fiber comb with metal tail for parting
Copper heating element with hair clip for straightening
Consistent quality and service excellence
On-time Delivery
Customer Rating
Response Time
Countries Served
Why global customers choose LEEONS for their professional hair supplies
Complete range of wig making, styling, and presentation tools eliminating the need for multiple suppliers.
10+ patented products developed over 6 years with continuous innovation in wig tools and accessories.
Material traceability and dedicated QA/QC personnel ensuring consistent product quality.
OEM/ODM services with free packaging and custom logo printing available on multiple product lines.
Low MOQ starting from 1 piece on select items with volume discounts for bulk orders.
End-to-end visibility from consultation to delivery with easy return policy.
Get in touch for wholesale inquiries, custom orders, or partnership opportunities
Xuchang Jianan District Liang Business Co., Ltd.
Xuchang, Henan, China - Global wig production hub
leeons.en.alibaba.com
Contact us to expand your hair business!
Supporting bulk purchasing and custom development