'); 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.5rem; margin-bottom: 20px; line-height: 1.3; } .hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; } .btn { display: inline-block; background-color: var(--secondary); color: white; padding: 12px 30px; border-radius: 4px; text-decoration: none; font-weight: 600; transition: var(--transition); border: 2px solid var(--secondary); } .btn:hover { background-color: transparent; color: var(--secondary); } .btn-outline { background-color: transparent; color: var(--secondary); margin-left: 15px; } .btn-outline:hover { background-color: var(--secondary); color: white; } section { padding: 80px 0; } .section-header { text-align: center; margin-bottom: 50px; } .section-header h2 { font-size: 2rem; color: var(--primary); position: relative; display: inline-block; margin-bottom: 15px; } .section-header h2:after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background-color: var(--secondary); } .section-header p { max-width: 700px; margin: 20px auto 0; color: #666; } .about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; } .about-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); } .about-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .card-header { background-color: var(--primary); color: white; padding: 20px; text-align: center; } .card-body { padding: 25px; } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; } .stat-card { background: white; border-radius: 8px; padding: 25px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .stat-number { font-size: 2.5rem; font-weight: 700; color: var(--secondary); margin-bottom: 10px; } .stat-label { color: var(--primary); font-weight: 600; } .categories { background-color: #f0f4f8; } .tabs { display: flex; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; gap: 10px; } .tab-btn { padding: 12px 25px; background: white; border: 1px solid #ddd; border-radius: 30px; cursor: pointer; transition: var(--transition); font-weight: 500; } .tab-btn.active, .tab-btn:hover { background-color: var(--primary); color: white; border-color: var(--primary); } .tab-content { display: none; } .tab-content.active { display: block; } .product-table { width: 100%; border-collapse: collapse; background: white; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-radius: 8px; overflow: hidden; } .product-table th { background-color: var(--primary); color: white; padding: 15px; text-align: left; } .product-table td { padding: 12px 15px; border-bottom: 1px solid #eee; } .product-table tr:last-child td { border-bottom: none; } .product-table tr:nth-child(even) { background-color: #f9f9f9; } .product-table tr:hover { background-color: #f0f4ff; } .highlight { background-color: #fff8e1 !important; font-weight: 600; } .service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .service-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); } .service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .service-icon { height: 80px; display: flex; align-items: center; justify-content: center; background-color: var(--primary); color: white; font-size: 2.5rem; } .service-content { padding: 25px; } .service-content h3 { color: var(--primary); margin-bottom: 15px; } .certification { background-color: #e8f5e9; padding: 40px; border-radius: 8px; display: flex; align-items: center; max-width: 800px; margin: 0 auto; gap: 30px; } .cert-badge { background-color: var(--success); color: white; width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0; } .cert-content h3 { color: var(--primary); margin-bottom: 10px; } .cta-section { background: linear-gradient(135deg, var(--primary) 0%, #2b5876 100%); color: white; text-align: center; padding: 80px 0; } .cta-content { max-width: 700px; margin: 0 auto; } .cta-content h2 { font-size: 2.2rem; margin-bottom: 20px; } .contact-form { max-width: 600px; margin: 40px auto 0; background: white; padding: 30px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--dark); } .form-control { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; transition: var(--transition); } .form-control:focus { border-color: var(--secondary); outline: none; box-shadow: 0 0 0 3px rgba(201, 161, 122, 0.2); } .btn-block { display: block; width: 100%; padding: 14px; font-size: 1.1rem; } footer { background-color: var(--dark); color: white; padding: 50px 0 20px; } .footer-container { 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; position: relative; padding-bottom: 10px; } .footer-col h3:after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 2px; background-color: var(--secondary); } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 10px; } .footer-col ul li a { color: #bbb; text-decoration: none; transition: var(--transition); } .footer-col ul li a:hover { color: var(--secondary); padding-left: 5px; } .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); } @media (max-width: 768px) { .header-container { flex-direction: column; text-align: center; } nav ul { margin-top: 20px; justify-content: center; } nav li { margin: 0 10px; } .hero { padding: 60px 0; } .hero h2 { font-size: 2rem; } .certification { flex-direction: column; text-align: center; padding: 25px; } .section-header h2 { font-size: 1.8rem; } .btn { display: block; margin: 10px auto; width: 80%; max-width: 300px; } .btn-outline { margin-left: 0; } } @media (max-width: 480px) { .product-table { display: block; overflow-x: auto; } .hero h2 { font-size: 1.7rem; } nav li { margin: 0 5px; font-size: 0.9rem; } }
Dongguan Jiali Textile Embroidery Co., Ltd. specializes in high-quality water soluble embroidery lace, lace fabrics, and trims for fashion, bridal, and home textiles. With GRS certification and 15 years of expertise.
Established in 2017 with a heritage of craftsmanship dating back over 15 years
Name: Dongguan Jiali Textile Embroidery Co., Ltd.
Location: Humen Town, Dongguan City, Guangdong, China
Factory Area: 4,000 square meters
Employees: 51-100 skilled professionals
Business Type: Manufacturer + Trading Company
Annual Turnover: $1 Million - $2.5 Million
We specialize in high-end quality embroidery lace with a focus on:
Onsite Verification: Factory inspected and verified
GRS Certification: Global Recycled Standard certified
Quality Control: Stringent quality management system
Sustainable Practices: Eco-conscious manufacturing
Compliance: Meets international textile standards
Premium embroidery lace for fashion, bridal, home textiles, and specialty applications
Product Name | Price (USD) | MOQ | Features |
---|---|---|---|
White Embroidery Lace Trim (100% Polyester) | $0.08-0.13/yd | 1,000 yds | Water soluble, for skirt hems |
Milk Silk Embroidery Lace Trim | $0.09-0.13/yd | 1,000 yds | For nightwear & children's clothing |
French Chemical Lace Polyester Embroidery Fabric | $0.08-0.13/yd | 1,000 yds | Bestseller, Easy Return, water soluble |
High Quality Chemical Embroidery Lace Fabric | $0.13-0.28/yd | 1,000 yds | Premium finish, garment edges |
French 3D Floral Butterfly Lace Trim | $0.14-0.28/yd | 1,000 yds | Women's tops & dresses, 3D effect |
Mastering 12 specialized embroidery techniques for superior lace production
Comprehensive solutions to meet your textile embroidery needs
Flexible return options available for most products, especially our popular wedding and garment lace collections. Specific details available per product.
Selected products include complimentary samples (e.g., Lolita fashion milk silk embroidery lace) so you can evaluate quality before bulk orders.
Full customization services for all lace products. We can adjust patterns, dimensions, colors, and techniques to meet your specific requirements.
Our products meet the Global Recycled Standard for sustainable textile production. This certification verifies recycled content in our products and ensures responsible social, environmental, and chemical practices throughout our supply chain.
Contact us today to discuss your lace requirements. Our team responds within 4 hours to all inquiries.