'); background-size: cover; color: white; padding: 5rem 0; text-align: center; } .hero h1 { font-size: 3.2rem; margin-bottom: 1.5rem; max-width: 800px; margin-left: auto; margin-right: auto; } .hero p { font-size: 1.4rem; max-width: 700px; margin: 0 auto 2rem; opacity: 0.9; } .hero-buttons { display: flex; justify-content: center; gap: 20px; margin-top: 30px; } /* Section Styling */ section { padding: 5rem 0; } .section-header { text-align: center; margin-bottom: 3.5rem; } .section-header h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; position: relative; display: inline-block; } .section-header h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--secondary); border-radius: 2px; } .section-header p { max-width: 700px; margin: 20px auto 0; color: var(--gray); } /* About Section */ .about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .about-card { background: white; border-radius: var(--border-radius); box-shadow: var(--box-shadow); padding: 30px; transition: var(--transition); } .about-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); } .about-card h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--primary); display: flex; align-items: center; gap: 10px; } .about-card h3 i { font-size: 1.5rem; } .card-highlight { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; } .card-highlight h3 { color: white; } /* Advantages Section */ .advantages { background-color: var(--light-gray); } .advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; } .advantage-card { background: white; padding: 30px; border-radius: var(--border-radius); box-shadow: var(--box-shadow); text-align: center; transition: var(--transition); } .advantage-card:hover { transform: scale(1.03); } .advantage-icon { font-size: 3.5rem; color: var(--primary); margin-bottom: 20px; } .advantage-card h3 { font-size: 1.5rem; margin-bottom: 15px; } /* Products Section */ .tabs { display: flex; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; gap: 10px; } .tab-btn { padding: 12px 25px; background: white; border: 2px solid var(--light-gray); border-radius: 30px; cursor: pointer; font-weight: 600; transition: var(--transition); } .tab-btn.active, .tab-btn:hover { background: var(--primary); color: white; border-color: var(--primary); } .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background: white; border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--box-shadow); transition: var(--transition); } .product-card:hover { transform: translateY(-10px); } .product-img { height: 220px; background: linear-gradient(45deg, var(--light-gray), #dfe6e9); display: flex; align-items: center; justify-content: center; color: var(--dark); font-weight: bold; } .product-info { padding: 20px; } .product-title { font-size: 1.3rem; margin-bottom: 10px; color: var(--dark); } .product-price { color: var(--accent); font-weight: 700; font-size: 1.2rem; margin-bottom: 10px; } .product-moq { background: var(--light); padding: 5px 10px; border-radius: 4px; display: inline-block; font-size: 0.9rem; margin-bottom: 15px; } .product-features { list-style-type: none; margin-top: 15px; } .product-features li { padding: 5px 0; display: flex; align-items: flex-start; gap: 8px; } .product-features li::before { content: "✓"; color: var(--primary); font-weight: bold; } /* Promotions Section */ .promotions { background: linear-gradient(135deg, var(--secondary), var(--primary)); color: white; } .promo-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 900px; margin: 0 auto; } .promo-card { background: rgba(255,255,255,0.1); border-radius: var(--border-radius); padding: 30px; text-align: center; backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.2); } .promo-value { font-size: 3.5rem; font-weight: 800; line-height: 1; margin: 15px 0; color: #ffd700; } .promo-details { background: rgba(0,0,0,0.2); padding: 15px; border-radius: var(--border-radius); margin-top: 20px; } .timer { font-size: 1.8rem; font-weight: 700; margin-top: 25px; color: #ffd700; } /* Certificates Section */ .certificates-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .certificate-card { background: white; border-radius: var(--border-radius); box-shadow: var(--box-shadow); padding: 30px; text-align: center; } .certificate-icon { font-size: 3.5rem; color: var(--primary); margin-bottom: 20px; } /* Footer */ footer { background: var(--dark); color: white; padding: 4rem 0 2rem; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; } .footer-column h3 { font-size: 1.5rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; } .footer-column h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: var(--secondary); } .contact-info { list-style: none; } .contact-info li { margin-bottom: 15px; display: flex; align-items: flex-start; gap: 12px; } .copyright { text-align: center; padding-top: 30px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; opacity: 0.7; } /* Responsive Design */ @media (max-width: 768px) { .header-container { flex-direction: column; gap: 20px; } nav ul { flex-wrap: wrap; justify-content: center; } .hero h1 { font-size: 2.5rem; } .hero p { font-size: 1.2rem; } .hero-buttons { flex-direction: column; align-items: center; } section { padding: 3rem 0; } }
Your trusted B2B partner for high-quality wigs, toppers, and extensions with flexible MOQs and OEM/ODM capabilities
Chongqing Lanling Technology Co., Ltd. is a leading manufacturer and global supplier of premium human hair products
Established: 2021 (4 Years Experience)
Location: Chongqing, China
Business Type: Manufacturing & Trading
Core Brand: LLBeauty
Positioning: "Quality and Innovation Partner" integrating professional craftsmanship and advanced technology
We source premium human hair from around the world:
Our products are exported worldwide to:
Integrated team approach:
Why global businesses choose Lanling Tech as their hair products supplier
Minimum order quantity as low as 1 piece for selected products, making us accessible to businesses of all sizes
We use only the highest quality Remy/Virgin human hair and maintain strict production standards
Customize product design, materials, and packaging to meet your specific business requirements
Efficient supply chain management ensures on-time delivery of all orders
Comprehensive technical assistance for product usage and maintenance
99.56% response rate with ≤4 hour response time ensuring smooth communication
Comprehensive selection of premium human hair products for various needs
Special discounts for wholesale buyers - valid until October 31, 2025
Minimum spend: $200.00
Maximum discount: $5.00
Excluding shipping costs
Minimum spend: $1,000.00
Direct price reduction
Excluding shipping costs
Commitment to quality and industry standards
Comprehensive product quality testing and certification documentation ensuring all hair products meet international standards.
Official registration certificates for Chongqing Lanling Tech Co., Ltd. confirming our legal business operations.
LLBeauty brand registration and intellectual property protection documentation for our core product line.