Nanjing Taiye Chemical Industry Co., Ltd. established in 2001, is located in Nanjing city, Jiangsu Province, focus on manufacturing of lithium, cesium, rubidium, iodide series salts and other special high-purity inorganic salts, and with special advanced production technology of lithium bromide, lithium chloride, lithium acetate and lithium Iodide, provides customers integrated services including research, OEM production, distributing, and technical supports,etc. Nanjing Taiye has established deep and long-term cooperation relationship with a number of world's top 500 enterprises, with the products exported to more than 60 countries in Europe, the United States and Asia, covering the application areas including EV, medicine, building materials, catalysts and other front-edge industry fields. Nanjing Taiye adheres to the development concept of Specialty, Accuracy, Customer-Orientation, and Innovation, by dedicating to continuous progress on both technology and application researching, creating new value to foster new growth driver, to provide high-quality products and sustainable solutions to global customers for common development, and contribute to the global green energy and low-carbon transformation.
Ease Moment - Professional Makeup Bag & Mirror Manufacturer | OEM/ODM Services // Tailwind Configuration tailwind.config = { theme: { extend: { colors: { primary: '#2D3748', // Dark gray primary secondary: '#F5F0E6', // Beige secondary accent: '#D4AF37', // Gold accent green: '#4CAF50', // Eco green gray: { 100: '#F8F9FA', 200: '#E9ECEF', 300: '#DEE2E6', 800: '#343A40', 900: '#212529' } }, fontFamily: { sans: ['Inter', 'system-ui', 'sans-serif'], }, } } } @layer utilities { .content-auto { content-visibility: auto; } .text-shadow { text-shadow: 0 2px 4px rgba(0,0,0,0.1); } .hover-scale { transition: transform 0.3s ease; } .hover-scale:hover { transform: scale(1.03); } .section-padding { padding: clamp(3rem, 8vw, 6rem) 0; } } Ease Moment Jiangmen Makeup Bag & Mirror Factory About Us Core Advantages Quality Control Products About Us Core Advantages Quality Control Products About Ease Moment 20+ years focusing on R&D and production of makeup bags, vanity mirrors and leather products, building industry-leading supply chain system 2500㎡ Workshop Modern production workshop equipped with advanced manufacturing equipment for efficient large-scale production 120+ Stable Employees Core team with over 10 years of experience, regular skill training to ensure production efficiency and product quality BSCI Certified Strictly follow international social responsibility standards, production processes meet global trade requirements 50+ Countries Covered Products sold in North America, Europe, Southeast Asia and other regions with stable global cooperation network Our Commitment Located in Jiangmen with convenient transportation, Ease Moment adheres to the core values of "Quality, Service, Innovation". We provide flexible OEM/ODM services for both small-batch customization and bulk orders with timely delivery guaranteed. We prioritize sustainable development with all products made from eco-friendly materials that comply with EU RoHS and REACH standards. Our production process achieves low carbon emissions to provide high-quality and environmentally friendly products for customers. Core Competitive Advantages Full-process control from design to delivery, building a strong supply chain system for makeup bags and vanity mirrors Eco-Friendly Production Eco-Compliant Products Made from recyclable eco-friendly materials, compliant with EU RoHS, REACH and other international environmental standards, with third-party environmental testing certification. Professional Design Visionary Design Team Professional design team with 20+ years of experience, following international fashion trends, able to customize designs according to customer needs with complete design solutions from concept to finished product. Strict QC Full-Process Quality Control Established four-level quality inspection system (IQC, IPQC, FQC, OQC) with professional testing equipment and team, strict inspection standards for each process to ensure zero-defect products. Stable Team Stable Employee Team Core employees with over 10 years of service, employee turnover rate lower than industry average, regular skill training and performance evaluation to ensure production stability and consistency. Supply Chain Advantage Strong Supply Chain System Comprehensive upstream and downstream supply chain system, stable raw material procurement channels, quick response to bulk orders with monthly production capacity of 100,000 pieces of makeup bags/mirrors. Flexible Customization Flexible OEM/ODM Services Support small-batch customization and bulk order production, customizable materials, sizes, colors, LOGO, providing one-stop OEM/ODM services with fast sampling and on-time delivery. Strict Quality Control Process Strict control over every link from raw materials to finished product delivery to ensure stable product quality IQC - Incoming QC 100% inspection of incoming raw materials including environmental performance, wear resistance, color fastness testing. Non-conforming materials are directly returned to control quality from the source. IPQC - In-Process QC Patrol inspection every 2 hours during production to check process implementation and semi-finished product quality, promptly identify and solve quality issues in production. FQC - Final QC 100% inspection of finished products including appearance, size, function, packaging and all indicators to ensure every product meets customer requirements. OQC - Outgoing QC Random sampling inspection according to AQL standards before delivery, verifying quantity, packaging, labeling to ensure integrity and accuracy of delivered products. Professional QC Team & Equipment We have a professional QC team of 10 members, all strictly trained and certified. Equipped with high-precision measuring instruments, wear resistance testers, color fastness testers and other professional QC equipment to ensure accurate and reliable inspection results. Established a comprehensive quality traceability system with complete inspection records for each batch of products, enabling real-time traceability of production and quality inspection information for customer peace of mind. Our Products Diversified range of makeup bags and vanity mirrors with customizable production to meet different market needs Makeup Bags Series Including portable makeup bags, large-capacity cosmetic cases, travel makeup bags, silicone makeup bags, made of PU, canvas, nylon, eco-friendly silicone and other materials. Vanity Mirrors Series Including foldable vanity mirrors, tabletop makeup mirrors, portable pocket mirrors with customizable magnetic design and other functions. Leather Products Including leather storage bags, jewelry boxes, leather makeup brush holders made of eco-friendly leather with exquisite craftsmanship and customizable LOGO. Global Cooperation & Win-Win Future Our products are sold in more than 50 countries and regions worldwide, looking forward to establishing long-term and stable cooperative relationships with you North America Europe Southeast Asia Middle East Australia South America Our Philosophy Ease Moment adheres to the core values of "Quality, Service, Innovation", customer-oriented, product quality-based, and innovation-driven development. We are committed to providing high-quality makeup bags and vanity mirrors for global customers, building an industry-leading supply chain system, and achieving mutually beneficial and win-win long-term cooperation. // Navbar Scroll Effect const navbar = document.getElementById('navbar'); window.addEventListener('scroll', () => { if (window.scrollY > 50) { navbar.classList.add('py-2', 'shadow-md'); navbar.classList.remove('py-4', 'shadow-sm'); } else { navbar.classList.add('py-4', 'shadow-sm'); navbar.classList.remove('py-2', 'shadow-md'); } }); // Mobile Menu const menuBtn = document.getElementById('menuBtn'); const mobileMenu = document.getElementById('mobileMenu'); menuBtn.addEventListener('click', () => { mobileMenu.classList.toggle('hidden'); menuBtn.innerHTML = mobileMenu.classList.contains('hidden') ? '' : ''; }); // Smooth Scrolling document.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener('click', function (e) { e.preventDefault(); const targetId = this.getAttribute('href'); const targetElement = document.querySelector(targetId); if (targetElement) { // Close mobile menu if (!mobileMenu.classList.contains('hidden')) { mobileMenu.classList.add('hidden'); menuBtn.innerHTML = ''; } // Scroll to target position window.scrollTo({ top: targetElement.offsetTop - 80, behavior: 'smooth' }); } }); }); // Back to Top Button const backToTopBtn = document.getElementById('backToTop'); window.addEventListener('scroll', () => { if (window.scrollY > 300) { backToTopBtn.classList.remove('opacity-0', 'invisible'); backToTopBtn.classList.add('opacity-100', 'visible'); } else { backToTopBtn.classList.add('opacity-0', 'invisible'); backToTopBtn.classList.remove('opacity-100', 'visible'); } }); backToTopBtn.addEventListener('click', () => { window.scrollTo({ top: 0, behavior: 'smooth' }); });
.templete-con17 * { margin: 0px; padding: 0px; -moz-box-sizing: border-box; box-sizing: border-box; } .templete-con17{position: relative;width: 100%;} .templete-con17 .page-content1-list{position: relative;width: 100%;font-size: 0;letter-spacing: 0;} .templete-con17 .page-content1-item{position: relative;width: 100%;} .templete-con17 .page-content1-item .item-flex{display: flex;align-items: center;justify-content: space-between;flex-wrap: wrap;} .templete-con17 .page-content1-item .item-flex .item-pic{position: relative;width: 50%;text-align: center;} .templete-con17 .page-content1-item .item-flex .item-pic img{display: inline-block;vertical-align: top;width: 100%;} .templete-con17 .page-content1-item .item-flex .item-body{position: relative;width: 41%;} .templete-con17 .page-content1-item .item-body .item-title{font-size: 34px;color: #333333;line-height: 56px;font-weight: bold;} .templete-con17 .page-content1-item .item-body .item-desc{font-size: 16px;margin-top: 30px;color: #666666;line-height: 30px;} .templete-con17 .page-content1-item .item-body .item-btn{position: relative;padding-top: 72px;} .templete-con17 .page-content1-item .item-body .item-btn .btnn{display: inline-block;vertical-align: top;text-align: center;min-width: 170px;line-height: 30px;padding: 9px 18px;font-size: 16px;font-weight: bold;color: #FFFFFF;border: 1px solid #CD0102;background: #CD0102;} .templete-con17 .page-content1-item .item-body .item-btn .btnn:hover{background: #fff;color: #CD0102;} @media screen and (max-width:1259px){ .templete-con17 .page-content1-item .item-flex .item-pic{width: 50%;} .templete-con17 .page-content1-item .item-flex .item-body{width: 41%;} .templete-con17 .page-content1-item .item-body .item-title{font-size: 32px;line-height: 48px;} .templete-con17 .page-content1-item .item-body .item-desc{font-size: 16px;margin-top: 28px;line-height: 28px;} .templete-con17 .page-content1-item .item-body .item-btn{padding-top: 60px;} .templete-con17 .page-content1-item .item-body .item-btn .btnn{min-width: 156px;line-height: 28px;padding: 8px 16px;font-size: 16px;} } @media screen and (max-width:991px){ .templete-con17 .page-content1-item .item-flex .item-pic{width: 100%;} .templete-con17 .page-content1-item .item-flex .item-pic img{width: 70%;} .templete-con17 .page-content1-item .item-flex .item-body{width: 100%;padding-top: 20px;} .templete-con17 .page-content1-item .item-body .item-title{font-size: 28px;line-height: 42px;} .templete-con17 .page-content1-item .item-body .item-desc{font-size: 15px;margin-top: 24px;line-height: 26px;} .templete-con17 .page-content1-item .item-body .item-btn{padding-top: 32px;} .templete-con17 .page-content1-item .item-body .item-btn .btnn{min-width: 142px;line-height: 26px;padding: 6px 14px;font-size: 15px;} } @media screen and (max-width:720px){ .templete-con17 .page-content1-item .item-flex .item-pic{width: 100%;} .templete-con17 .page-content1-item .item-flex .item-pic img{width: 80%;} .templete-con17 .page-content1-item .item-flex .item-body{width: 100%;padding-top: 20px;} .templete-con17 .page-content1-item .item-body .item-title{font-size: 24px;line-height: 36px;} .templete-con17 .page-content1-item .item-body .item-desc{font-size: 14px;margin-top: 16px;line-height: 24px;} .templete-con17 .page-content1-item .item-body .item-btn{padding-top: 20px;} .templete-con17 .page-content1-item .item-body .item-btn .btnn{min-width: 130px;line-height: 24px;padding: 5px 12px;font-size: 14px;} } @media screen and (max-width:420px){ .templete-con17 .page-content1-item .item-flex .item-pic img{width: 100%;} .templete-con17 .page-content1-item .item-body .item-title{font-size: 20px;line-height: 36px;} } ABOUT US We are a professional OEM manufacturer with over 30 years of experience in China's auto parts industry. As a trusted supplier for cross-border e-commerce platforms and well-known brands in North America, Southeast Asia, and the domestic Chinese market, we focus on producing high-quality, durable products. Contact Us Our core expertise lies in rubber and plastic components, including EPDM, PVC, TPV, TPE, and others. We have more than 3000 sku,specialize in automotive applications such as: Rubber sealing strips weatherstrip molding for car window Rubber hoses and tubes Chassis rubber parts and other custom components We offer product models for a wide range of vehicles, including: Japanese brands: Toyota, Honda, Nissan, Mazda, Isuzu, etc. Korean brands: Hyundai, Kia American brands: Ford, Chevrolet, Buick German brands: Volkswagen, BMW, Mercedes-Benz Malaysian brands: Proton, Perodua Chinese brands: BYD, Great Wall, Geely, Chery, and more We also support custom development and prototyping to meet specific market demands. Our products are sold across North/South America, Australia, Southeast Asia, Africa, and the Middle East. We are committed to quality, integrity, and long-term cooperation. With a full product range, strong R&D, and large inventory, we are your reliable partner in sourcing premium auto parts. We welcome inquiries and look forward to working with you. .templete-con82 * { margin: 0px; padding: 0px; -moz-box-sizing: border-box; box-sizing: border-box; } .templete-con82{position: relative;width: 100%;} .templete-con82 .con-tbody{position: relative;width: 100%;} .templete-con82 .con-tbody .con-tbody-list{position: relative;font-size: 0;letter-spacing: 0;display: flex;flex-wrap: wrap;margin-left: -20px;margin-right: -20px;} .templete-con82 .con-tbody .con-tbody-items{position: relative;display: inline-block;vertical-align: top;width: 33.3333333%;padding: 0 20px;margin-bottom: 36px;} .templete-con82 .con-tbody-items .items-box{position: relative;width: 100%;height: 100%;overflow: hidden;} .templete-con82 .con-tbody-items .items-box .items-pic{position: relative;width: 100%;text-align: center;overflow: hidden;border-radius: 10px;} .templete-con82 .con-tbody-items .items-box .items-pic img{display: inline-block;vertical-align: top;width: 100%;} .templete-con82 .con-tbody-items .items-box .items-body{position: relative;width: 100%;padding: 8px;text-align: center;} .templete-con82 .con-tbody-items .items-body .items-title{position: relative;width: 100%;font-size: 18px;color: #333;font-weight: bold;line-height: 30px;} @media screen and (max-width:1459px) { .templete-con82 .con-tbody .con-tbody-list{margin-left: -12px;margin-right: -12px;} .templete-con82 .con-tbody .con-tbody-items{width: 33.3333333%;padding: 0 12px;margin-bottom: 30px;} .templete-con82 .con-tbody-items .items-box .items-body{padding: 7px;} .templete-con82 .con-tbody-items .items-body .items-title{font-size: 18px;line-height: 30px;} } @media screen and (max-width:1259px) { .templete-con82 .con-tbody .con-tbody-list{margin-left: -6px;margin-right: -6px;} .templete-con82 .con-tbody .con-tbody-items{width: 33.3333333%;padding: 0 6px;margin-bottom: 24px;} .templete-con82 .con-tbody-items .items-box .items-body{padding: 6px;} .templete-con82 .con-tbody-items .items-body .items-title{font-size: 16px;line-height: 28px;} } @media screen and (max-width:991px) { .templete-con82 .con-tbody .con-tbody-list{margin-left: -20px;margin-right: -20px;} .templete-con82 .con-tbody .con-tbody-items{width: 50%;padding: 0 20px;margin-bottom: 24px;} .templete-con82 .con-tbody-items .items-box .items-body{padding: 5px;} .templete-con82 .con-tbody-items .items-body .items-title{font-size: 16px;line-height: 28px;} } @media screen and (max-width:720px) { .templete-con82 .con-tbody .con-tbody-list{margin-left: -12px;margin-right: -12px;} .templete-con82 .con-tbody .con-tbody-items{width: 50%;padding: 0 12px;margin-bottom: 20px;} .templete-con82 .con-tbody-items .items-box .items-body{padding: 5px;} .templete-con82 .con-tbody-items .items-body .items-title{font-size: 16px;line-height: 26px;} } @media screen and (max-width:560px) { .templete-con82 .con-tbody .con-tbody-list{margin-left: -5px;margin-right: -5px;} .templete-con82 .con-tbody .con-tbody-items{width: 50%;padding: 0 5px;margin-bottom: 20px;} .templete-con82 .con-tbody-items .items-box .items-body{padding: 4px;} .templete-con82 .con-tbody-items .items-body .items-title{font-size: 16px;line-height: 26px;} }
Guangzhou Grandview Manufacturer LTD is a Top Professional Led signage Manufacturer with 20+ years of experience who have served more than 120+ brands (BP, SHELL, Honda, Benz, TOYOTA, BAYER, HEINEKEN, KIMBO, SAMSUNG, HONDA, NESTLE, PUMA, ZARA, MONEY-GRAM, ICBC) and keep more than 96% repurchase rate. With a R&D team of 10 people, 125employees, and 10 full production line. Our factory provides service from design, mold opening to production. So far, we provide OEM & 'ODM services to more than 3580 customers. .templete-con40 * { margin: 0px; padding: 0px; -moz-box-sizing: border-box; box-sizing: border-box; } .templete-con40{position: relative;width: 100%;font-family: Arial;} .templete-con40 .con-tbody{position: relative;width: 100%;} .templete-con40 .con-tbody .con-tbody-list{position: relative;font-size: 0;letter-spacing: 0;display: flex;flex-wrap: wrap;margin-left: -30px;margin-right: -30px;} .templete-con40 .con-tbody .con-tbody-item{position: relative;display: inline-block;vertical-align: top;width: 50%;padding: 0 30px; margin-bottom: 56px;} .templete-con40 .con-tbody-item .item-box{position: relative;width: 100%;height: 100%;} .templete-con40 .con-tbody-item .item-pic{position: relative;width: 100%;text-align: center;overflow: hidden;} .templete-con40 .con-tbody-item .item-pic img{display: inline-block;vertical-align: top;width: 100%;} .templete-con40 .con-tbody-item .item-box .item-body{position: relative;width: 100%;padding-top: 12px;} .templete-con40 .con-tbody-item .item-box .item-title{position: relative;width: 100%;font-size: 24px;font-weight: bold;color: #333333;line-height: 36px;word-wrap: break-word;word-break: break-all;} .templete-con40 .con-tbody-item .item-box .item-text{position: relative;width: 100%;font-size: 16px;color: #666;line-height: 24px;word-wrap: break-word;word-break: break-all;margin-top: 10px;} .templete-con40 .con-tbody-item .item-box .item-text a{color: #666;} .templete-con40 .con-tbody-item .item-box .item-text a:hover{color: #003280;} @media screen and (max-width:1459px) { .templete-con40 .con-tbody .con-tbody-list{margin-left: -24px;margin-right: -24px;} .templete-con40 .con-tbody .con-tbody-item{width: 50%;padding: 0 24px; margin-bottom: 48px;} .templete-con40 .con-tbody-item .item-box .item-body{padding-top: 12px;} .templete-con40 .con-tbody-item .item-box .item-title{font-size: 22px;line-height: 34px;} .templete-con40 .con-tbody-item .item-box .item-text{font-size: 16px;line-height: 24px;margin-top: 10px;} } @media screen and (max-width:1259px) { .templete-con40 .con-tbody .con-tbody-list{margin-left: -16px;margin-right: -16px;} .templete-con40 .con-tbody .con-tbody-item{width: 50%;padding: 0 16px; margin-bottom: 40px;} .templete-con40 .con-tbody-item .item-box .item-body{padding-top: 10px;} .templete-con40 .con-tbody-item .item-box .item-title{font-size: 20px;line-height: 32px;} .templete-con40 .con-tbody-item .item-box .item-text{font-size: 15px;line-height: 24px;margin-top: 8px;} } @media screen and (max-width:991px) { .templete-con40 .con-tbody .con-tbody-list{margin-left: -10px;margin-right: -10px;} .templete-con40 .con-tbody .con-tbody-item{width: 50%;padding: 0 10px; margin-bottom: 32px;} .templete-con40 .con-tbody-item .item-box .item-body{padding-top: 10px;} .templete-con40 .con-tbody-item .item-box .item-title{font-size: 18px;line-height: 30px;} .templete-con40 .con-tbody-item .item-box .item-text{font-size: 14px;line-height: 22px;margin-top: 8px;} } @media screen and (max-width:660px) { .templete-con40 .con-tbody .con-tbody-list{margin-left: -6px;margin-right: -6px;} .templete-con40 .con-tbody .con-tbody-item{width: 50%;padding: 0 6px; margin-bottom: 24px;} .templete-con40 .con-tbody-item .item-box .item-body{padding-top: 10px;} .templete-con40 .con-tbody-item .item-box .item-title{font-size: 16px;line-height: 26px;} .templete-con40 .con-tbody-item .item-box .item-text{font-size: 13px;line-height: 22px;margin-top: 8px;} } @media screen and (max-width:380px) {.templete-con40 .con-tbody .con-tbody-item{width: 100%;}} We are a leading 20+ years manufacturer for outdoor & indoor One-stop Led signage with competitive price and high quality, such as Acrylic letter sign, Led backlit letter sign, Logo sign, Neon Sign, Pylon sign, Car logo sign, LED wall sign, Gas station signs,LED gas price sign, Gas station canopy signs,3D channel letter sign for store shops, etc. .templete-con40 * { margin: 0px; padding: 0px; -moz-box-sizing: border-box; box-sizing: border-box; } .templete-con40{position: relative;width: 100%;font-family: Arial;} .templete-con40 .con-tbody{position: relative;width: 100%;} .templete-con40 .con-tbody .con-tbody-list{position: relative;font-size: 0;letter-spacing: 0;display: flex;flex-wrap: wrap;margin-left: -30px;margin-right: -30px;} .templete-con40 .con-tbody .con-tbody-item{position: relative;display: inline-block;vertical-align: top;width: 50%;padding: 0 30px; margin-bottom: 56px;} .templete-con40 .con-tbody-item .item-box{position: relative;width: 100%;height: 100%;} .templete-con40 .con-tbody-item .item-pic{position: relative;width: 100%;text-align: center;overflow: hidden;} .templete-con40 .con-tbody-item .item-pic img{display: inline-block;vertical-align: top;width: 100%;} .templete-con40 .con-tbody-item .item-box .item-body{position: relative;width: 100%;padding-top: 12px;} .templete-con40 .con-tbody-item .item-box .item-title{position: relative;width: 100%;font-size: 24px;font-weight: bold;color: #333333;line-height: 36px;word-wrap: break-word;word-break: break-all;} .templete-con40 .con-tbody-item .item-box .item-text{position: relative;width: 100%;font-size: 16px;color: #666;line-height: 24px;word-wrap: break-word;word-break: break-all;margin-top: 10px;} .templete-con40 .con-tbody-item .item-box .item-text a{color: #666;} .templete-con40 .con-tbody-item .item-box .item-text a:hover{color: #003280;} @media screen and (max-width:1459px) { .templete-con40 .con-tbody .con-tbody-list{margin-left: -24px;margin-right: -24px;} .templete-con40 .con-tbody .con-tbody-item{width: 50%;padding: 0 24px; margin-bottom: 48px;} .templete-con40 .con-tbody-item .item-box .item-body{padding-top: 12px;} .templete-con40 .con-tbody-item .item-box .item-title{font-size: 22px;line-height: 34px;} .templete-con40 .con-tbody-item .item-box .item-text{font-size: 16px;line-height: 24px;margin-top: 10px;} } @media screen and (max-width:1259px) { .templete-con40 .con-tbody .con-tbody-list{margin-left: -16px;margin-right: -16px;} .templete-con40 .con-tbody .con-tbody-item{width: 50%;padding: 0 16px; margin-bottom: 40px;} .templete-con40 .con-tbody-item .item-box .item-body{padding-top: 10px;} .templete-con40 .con-tbody-item .item-box .item-title{font-size: 20px;line-height: 32px;} .templete-con40 .con-tbody-item .item-box .item-text{font-size: 15px;line-height: 24px;margin-top: 8px;} } @media screen and (max-width:991px) { .templete-con40 .con-tbody .con-tbody-list{margin-left: -10px;margin-right: -10px;} .templete-con40 .con-tbody .con-tbody-item{width: 50%;padding: 0 10px; margin-bottom: 32px;} .templete-con40 .con-tbody-item .item-box .item-body{padding-top: 10px;} .templete-con40 .con-tbody-item .item-box .item-title{font-size: 18px;line-height: 30px;} .templete-con40 .con-tbody-item .item-box .item-text{font-size: 14px;line-height: 22px;margin-top: 8px;} } @media screen and (max-width:660px) { .templete-con40 .con-tbody .con-tbody-list{margin-left: -6px;margin-right: -6px;} .templete-con40 .con-tbody .con-tbody-item{width: 50%;padding: 0 6px; margin-bottom: 24px;} .templete-con40 .con-tbody-item .item-box .item-body{padding-top: 10px;} .templete-con40 .con-tbody-item .item-box .item-title{font-size: 16px;line-height: 26px;} .templete-con40 .con-tbody-item .item-box .item-text{font-size: 13px;line-height: 22px;margin-top: 8px;} } @media screen and (max-width:380px) {.templete-con40 .con-tbody .con-tbody-item{width: 100%;}} Our products have obtained these certificates: CE, ROSH, UL, SGS to ensure product meet the standard of safety and outdoor using. What's more, Sign products are anti-rust, anti-UV, waterproof for IP65, high resistance of temperature. Lifespan for Led light is more than 80,oo0 hours and Lifespan for the whole sign is more 10 years with 2 years warranty. .templete-con40 * { margin: 0px; padding: 0px; -moz-box-sizing: border-box; box-sizing: border-box; } .templete-con40{position: relative;width: 100%;font-family: Arial;} .templete-con40 .con-tbody{position: relative;width: 100%;} .templete-con40 .con-tbody .con-tbody-list{position: relative;font-size: 0;letter-spacing: 0;display: flex;flex-wrap: wrap;margin-left: -30px;margin-right: -30px;} .templete-con40 .con-tbody .con-tbody-item{position: relative;display: inline-block;vertical-align: top;width: 50%;padding: 0 30px; margin-bottom: 56px;} .templete-con40 .con-tbody-item .item-box{position: relative;width: 100%;height: 100%;} .templete-con40 .con-tbody-item .item-pic{position: relative;width: 100%;text-align: center;overflow: hidden;} .templete-con40 .con-tbody-item .item-pic img{display: inline-block;vertical-align: top;width: 100%;} .templete-con40 .con-tbody-item .item-box .item-body{position: relative;width: 100%;padding-top: 12px;} .templete-con40 .con-tbody-item .item-box .item-title{position: relative;width: 100%;font-size: 24px;font-weight: bold;color: #333333;line-height: 36px;word-wrap: break-word;word-break: break-all;} .templete-con40 .con-tbody-item .item-box .item-text{position: relative;width: 100%;font-size: 16px;color: #666;line-height: 24px;word-wrap: break-word;word-break: break-all;margin-top: 10px;} .templete-con40 .con-tbody-item .item-box .item-text a{color: #666;} .templete-con40 .con-tbody-item .item-box .item-text a:hover{color: #003280;} @media screen and (max-width:1459px) { .templete-con40 .con-tbody .con-tbody-list{margin-left: -24px;margin-right: -24px;} .templete-con40 .con-tbody .con-tbody-item{width: 50%;padding: 0 24px; margin-bottom: 48px;} .templete-con40 .con-tbody-item .item-box .item-body{padding-top: 12px;} .templete-con40 .con-tbody-item .item-box .item-title{font-size: 22px;line-height: 34px;} .templete-con40 .con-tbody-item .item-box .item-text{font-size: 16px;line-height: 24px;margin-top: 10px;} } @media screen and (max-width:1259px) { .templete-con40 .con-tbody .con-tbody-list{margin-left: -16px;margin-right: -16px;} .templete-con40 .con-tbody .con-tbody-item{width: 50%;padding: 0 16px; margin-bottom: 40px;} .templete-con40 .con-tbody-item .item-box .item-body{padding-top: 10px;} .templete-con40 .con-tbody-item .item-box .item-title{font-size: 20px;line-height: 32px;} .templete-con40 .con-tbody-item .item-box .item-text{font-size: 15px;line-height: 24px;margin-top: 8px;} } @media screen and (max-width:991px) { .templete-con40 .con-tbody .con-tbody-list{margin-left: -10px;margin-right: -10px;} .templete-con40 .con-tbody .con-tbody-item{width: 50%;padding: 0 10px; margin-bottom: 32px;} .templete-con40 .con-tbody-item .item-box .item-body{padding-top: 10px;} .templete-con40 .con-tbody-item .item-box .item-title{font-size: 18px;line-height: 30px;} .templete-con40 .con-tbody-item .item-box .item-text{font-size: 14px;line-height: 22px;margin-top: 8px;} } @media screen and (max-width:660px) { .templete-con40 .con-tbody .con-tbody-list{margin-left: -6px;margin-right: -6px;} .templete-con40 .con-tbody .con-tbody-item{width: 50%;padding: 0 6px; margin-bottom: 24px;} .templete-con40 .con-tbody-item .item-box .item-body{padding-top: 10px;} .templete-con40 .con-tbody-item .item-box .item-title{font-size: 16px;line-height: 26px;} .templete-con40 .con-tbody-item .item-box .item-text{font-size: 13px;line-height: 22px;margin-top: 8px;} } @media screen and (max-width:380px) {.templete-con40 .con-tbody .con-tbody-item{width: 100%;}} Meet Our Expert Teams – Your End-to-End Illuminated Signage Partner At Grandview, we take pride in our integrated team of professionals who deliver exceptional illuminated signage solutions from concept to completion. .templete-con76 * { margin: 0px; padding: 0px; -moz-box-sizing: border-box; box-sizing: border-box; } .self-ellipsis-2 { display: -webkit-box !important; overflow: hidden; white-space: normal !important; text-overflow: ellipsis; word-wrap: break-word; -webkit-line-clamp: 2; -webkit-box-orient: vertical; } .self-ellipsis-3 { display: -webkit-box !important; overflow: hidden; white-space: normal !important; text-overflow: ellipsis; word-wrap: break-word; -webkit-line-clamp: 3; -webkit-box-orient: vertical; } .templete-con76{position: relative;width: 100%;} .templete-con76 .con-title{position: relative;width: 100%;text-align: left;font-weight: bold;font-size: 40px;color: #333;line-height: 52px;} .templete-con76 .con-tbody{position: relative;width: 100%;margin-top: 48px;} .templete-con76 .con-tbody .con-tbody-list{position: relative;font-size: 0;letter-spacing: 0;display: flex;flex-wrap: wrap;margin-left: -15px;margin-right: -15px;} .templete-con76 .con-tbody .con-tbody-item{position: relative;display: inline-block;vertical-align: top;width:33%;padding: 0 15px;margin-bottom: 20px;} .templete-con76 .con-tbody-item .item-box{position: relative;width: 100%;height: 100%;transition: all .3s;text-align: center;border: 1px solid #ccc;padding: 40px 18px 38px;} .templete-con76 .con-tbody-item .item-box .item-body{position: relative;width: 100%;text-align: center;} .templete-con76 .con-tbody-item .item-box .item-title{position: relative;font-weight: bold; font-size: 20px;color: #333;line-height: 32px;text-align: center;} .templete-con76 .con-tbody-item .item-box .item-text{position: relative;font-size: 16px;color: #666;line-height: 28px;margin-top: 8px;text-align: center;} .templete-con76 .con-tbody-item .item-box .item-text a{display: inline-block;vertical-align: top;} @media screen and (max-width:1459px) { .templete-con76 .con-title{font-size: 36px;line-height: 48px;} .templete-con76 .con-tbody{margin-top: 42px;} .templete-con76 .con-tbody .con-tbody-list{margin-left: -10px;margin-right: -10px;} .templete-con76 .con-tbody .con-tbody-item{width: 33%;padding: 0 10px;margin-bottom: 20px;} .templete-con76 .con-tbody-item .item-box{padding: 34px 15px 32px;} .templete-con76 .con-tbody-item .item-box .item-title{font-size: 18px;line-height: 30px;} .templete-con76 .con-tbody-item .item-box .item-text{font-size: 16px;line-height: 28px;margin-top: 8px;} } @media screen and (max-width:1259px) { .templete-con76 .con-title{font-size: 32px;line-height: 44px;} .templete-con76 .con-tbody{margin-top: 36px;} .templete-con76 .con-tbody .con-tbody-list{margin-left: -6px;margin-right: -6px;} .templete-con76 .con-tbody .con-tbody-item{width: 33%;padding: 0 6px;margin-bottom: 20px;} .templete-con76 .con-tbody-item .item-box{padding: 28px 15px 26px;} .templete-con76 .con-tbody-item .item-box .item-title{font-size: 18px;line-height: 30px;} .templete-con76 .con-tbody-item .item-box .item-text{font-size: 15px;line-height: 26px;margin-top: 8px;} } @media screen and (max-width:991px) { .templete-con76 .con-title{font-size: 28px;line-height: 40px;} .templete-con76 .con-tbody{margin-top: 30px;} .templete-con76 .con-tbody .con-tbody-list{margin-left: -6px;margin-right: -6px;} .templete-con76 .con-tbody .con-tbody-item{width: 33.333333%;padding: 0 6px;margin-bottom: 20px;} .templete-con76 .con-tbody-item .item-box{padding: 28px 15px 26px;} .templete-con76 .con-tbody-item .item-box .item-title{font-size: 18px;line-height: 30px;} .templete-con76 .con-tbody-item .item-box .item-text{font-size: 15px;line-height: 26px;margin-top: 8px;} } @media screen and (max-width: 720px) { .templete-con76 .con-title{font-size: 24px;line-height: 36px;} .templete-con76 .con-tbody{margin-top: 24px;} .templete-con76 .con-tbody .con-tbody-list{margin-left: -12px;margin-right: -12px;} .templete-con76 .con-tbody .con-tbody-item{width: 50%;padding: 0 12px;margin-bottom: 20px;} .templete-con76 .con-tbody-item .item-box{padding: 24px 15px 22px;} .templete-con76 .con-tbody-item .item-box .item-title{font-size: 18px;line-height: 28px;} .templete-con76 .con-tbody-item .item-box .item-text{font-size: 14px;line-height: 24px;margin-top: 8px;} } @media screen and (max-width:560px) { .templete-con76 .con-title{font-size: 20px;line-height: 32px;} .templete-con76 .con-tbody{margin-top: 20px;} .templete-con76 .con-tbody .con-tbody-list{margin-left: -6px;margin-right: -6px;} .templete-con76 .con-tbody .con-tbody-item{width: 50%;padding: 0 6px;margin-bottom: 16px;} .templete-con76 .con-tbody-item .item-box{padding: 20px 15px 18px;} .templete-con76 .con-tbody-item .item-box .item-title{font-size: 18px;line-height: 28px;} .templete-con76 .con-tbody-item .item-box .item-text{font-size: 14px;line-height: 24px;margin-top: 8px;} } @media screen and (max-width:400px) { .templete-con76 .con-title{font-size: 20px;line-height: 32px;} .templete-con76 .con-tbody{margin-top: 20px;} .templete-con76 .con-tbody .con-tbody-list{margin-left: -6px;margin-right: -6px;} .templete-con76 .con-tbody .con-tbody-item{width: 100%;padding: 0 6px;margin-bottom: 16px;} .templete-con76 .con-tbody-item .item-box{padding: 20px 15px 18px;} .templete-con76 .con-tbody-item .item-box .item-title{font-size: 18px;line-height: 28px;} .templete-con76 .con-tbody-item .item-box .item-text{font-size: 14px;line-height: 24px;margin-top: 8px;} } Creative Design Team Our talented designers transform your ideas into stunning visual realities. Equipped with: ● 3D modeling & lighting effect specialists ● Free unlimited design revisions ● Technical drawings optimized for production ● Trend analysis for market-competitive designs Customer-Centric Sales Team Your reliable partners featuring: ● 24/5 responsive communication ● Project consultation & cost optimization ● OEM/ODM solution experts Precision Manufacturing Team Our factory specialists ensure quality excellence with: ● 15+ years of LED signage production experience ● ISO-certified manufacturing processes ● Rigorous 5-stage quality inspection .templete-con40 * { margin: 0px; padding: 0px; -moz-box-sizing: border-box; box-sizing: border-box; } .templete-con40{position: relative;width: 100%;font-family: Arial;} .templete-con40 .con-tbody{position: relative;width: 100%;} .templete-con40 .con-tbody .con-tbody-list{position: relative;font-size: 0;letter-spacing: 0;display: flex;flex-wrap: wrap;margin-left: -30px;margin-right: -30px;} .templete-con40 .con-tbody .con-tbody-item{position: relative;display: inline-block;vertical-align: top;width: 50%;padding: 0 30px; margin-bottom: 56px;} .templete-con40 .con-tbody-item .item-box{position: relative;width: 100%;height: 100%;} .templete-con40 .con-tbody-item .item-pic{position: relative;width: 100%;text-align: center;overflow: hidden;} .templete-con40 .con-tbody-item .item-pic img{display: inline-block;vertical-align: top;width: 100%;} .templete-con40 .con-tbody-item .item-box .item-body{position: relative;width: 100%;padding-top: 12px;} .templete-con40 .con-tbody-item .item-box .item-title{position: relative;width: 100%;font-size: 24px;font-weight: bold;color: #333333;line-height: 36px;word-wrap: break-word;word-break: break-all;} .templete-con40 .con-tbody-item .item-box .item-text{position: relative;width: 100%;font-size: 16px;color: #666;line-height: 24px;word-wrap: break-word;word-break: break-all;margin-top: 10px;} .templete-con40 .con-tbody-item .item-box .item-text a{color: #666;} .templete-con40 .con-tbody-item .item-box .item-text a:hover{color: #003280;} @media screen and (max-width:1459px) { .templete-con40 .con-tbody .con-tbody-list{margin-left: -24px;margin-right: -24px;} .templete-con40 .con-tbody .con-tbody-item{width: 50%;padding: 0 24px; margin-bottom: 48px;} .templete-con40 .con-tbody-item .item-box .item-body{padding-top: 12px;} .templete-con40 .con-tbody-item .item-box .item-title{font-size: 22px;line-height: 34px;} .templete-con40 .con-tbody-item .item-box .item-text{font-size: 16px;line-height: 24px;margin-top: 10px;} } @media screen and (max-width:1259px) { .templete-con40 .con-tbody .con-tbody-list{margin-left: -16px;margin-right: -16px;} .templete-con40 .con-tbody .con-tbody-item{width: 50%;padding: 0 16px; margin-bottom: 40px;} .templete-con40 .con-tbody-item .item-box .item-body{padding-top: 10px;} .templete-con40 .con-tbody-item .item-box .item-title{font-size: 20px;line-height: 32px;} .templete-con40 .con-tbody-item .item-box .item-text{font-size: 15px;line-height: 24px;margin-top: 8px;} } @media screen and (max-width:991px) { .templete-con40 .con-tbody .con-tbody-list{margin-left: -10px;margin-right: -10px;} .templete-con40 .con-tbody .con-tbody-item{width: 50%;padding: 0 10px; margin-bottom: 32px;} .templete-con40 .con-tbody-item .item-box .item-body{padding-top: 10px;} .templete-con40 .con-tbody-item .item-box .item-title{font-size: 18px;line-height: 30px;} .templete-con40 .con-tbody-item .item-box .item-text{font-size: 14px;line-height: 22px;margin-top: 8px;} } @media screen and (max-width:660px) { .templete-con40 .con-tbody .con-tbody-list{margin-left: -6px;margin-right: -6px;} .templete-con40 .con-tbody .con-tbody-item{width: 50%;padding: 0 6px; margin-bottom: 24px;} .templete-con40 .con-tbody-item .item-box .item-body{padding-top: 10px;} .templete-con40 .con-tbody-item .item-box .item-title{font-size: 16px;line-height: 26px;} .templete-con40 .con-tbody-item .item-box .item-text{font-size: 13px;line-height: 22px;margin-top: 8px;} } @media screen and (max-width:380px) {.templete-con40 .con-tbody .con-tbody-item{width: 100%;}} Installation Paper Template & Accessories & Install Videos & Manual are Provided We will provide spare parts to prevent product damage. And after-sales problem will be responded within 1 hour and solution will be provided within 24 hours. Sending us design or share your idea with us, Grandview will provide excellent solutions on custom signs project. .templete-con40 * { margin: 0px; padding: 0px; -moz-box-sizing: border-box; box-sizing: border-box; } .templete-con40{position: relative;width: 100%;font-family: Arial;} .templete-con40 .con-tbody{position: relative;width: 100%;} .templete-con40 .con-tbody .con-tbody-list{position: relative;font-size: 0;letter-spacing: 0;display: flex;flex-wrap: wrap;margin-left: -30px;margin-right: -30px;} .templete-con40 .con-tbody .con-tbody-item{position: relative;display: inline-block;vertical-align: top;width: 50%;padding: 0 30px; margin-bottom: 56px;} .templete-con40 .con-tbody-item .item-box{position: relative;width: 100%;height: 100%;} .templete-con40 .con-tbody-item .item-pic{position: relative;width: 100%;text-align: center;overflow: hidden;} .templete-con40 .con-tbody-item .item-pic img{display: inline-block;vertical-align: top;width: 100%;} .templete-con40 .con-tbody-item .item-box .item-body{position: relative;width: 100%;padding-top: 12px;} .templete-con40 .con-tbody-item .item-box .item-title{position: relative;width: 100%;font-size: 24px;font-weight: bold;color: #333333;line-height: 36px;word-wrap: break-word;word-break: break-all;} .templete-con40 .con-tbody-item .item-box .item-text{position: relative;width: 100%;font-size: 16px;color: #666;line-height: 24px;word-wrap: break-word;word-break: break-all;margin-top: 10px;} .templete-con40 .con-tbody-item .item-box .item-text a{color: #666;} .templete-con40 .con-tbody-item .item-box .item-text a:hover{color: #003280;} @media screen and (max-width:1459px) { .templete-con40 .con-tbody .con-tbody-list{margin-left: -24px;margin-right: -24px;} .templete-con40 .con-tbody .con-tbody-item{width: 50%;padding: 0 24px; margin-bottom: 48px;} .templete-con40 .con-tbody-item .item-box .item-body{padding-top: 12px;} .templete-con40 .con-tbody-item .item-box .item-title{font-size: 22px;line-height: 34px;} .templete-con40 .con-tbody-item .item-box .item-text{font-size: 16px;line-height: 24px;margin-top: 10px;} } @media screen and (max-width:1259px) { .templete-con40 .con-tbody .con-tbody-list{margin-left: -16px;margin-right: -16px;} .templete-con40 .con-tbody .con-tbody-item{width: 50%;padding: 0 16px; margin-bottom: 40px;} .templete-con40 .con-tbody-item .item-box .item-body{padding-top: 10px;} .templete-con40 .con-tbody-item .item-box .item-title{font-size: 20px;line-height: 32px;} .templete-con40 .con-tbody-item .item-box .item-text{font-size: 15px;line-height: 24px;margin-top: 8px;} } @media screen and (max-width:991px) { .templete-con40 .con-tbody .con-tbody-list{margin-left: -10px;margin-right: -10px;} .templete-con40 .con-tbody .con-tbody-item{width: 50%;padding: 0 10px; margin-bottom: 32px;} .templete-con40 .con-tbody-item .item-box .item-body{padding-top: 10px;} .templete-con40 .con-tbody-item .item-box .item-title{font-size: 18px;line-height: 30px;} .templete-con40 .con-tbody-item .item-box .item-text{font-size: 14px;line-height: 22px;margin-top: 8px;} } @media screen and (max-width:660px) { .templete-con40 .con-tbody .con-tbody-list{margin-left: -6px;margin-right: -6px;} .templete-con40 .con-tbody .con-tbody-item{width: 50%;padding: 0 6px; margin-bottom: 24px;} .templete-con40 .con-tbody-item .item-box .item-body{padding-top: 10px;} .templete-con40 .con-tbody-item .item-box .item-title{font-size: 16px;line-height: 26px;} .templete-con40 .con-tbody-item .item-box .item-text{font-size: 13px;line-height: 22px;margin-top: 8px;} } @media screen and (max-width:380px) {.templete-con40 .con-tbody .con-tbody-item{width: 100%;}} .templete-con26 * { margin: 0px; padding: 0px; -moz-box-sizing: border-box; box-sizing: border-box; } .templete-con26{position: relative;width: 100%;background: #f5f5f5;padding: 75px 0;} .templete-con26 .con-tbody{position: relative;width: 100%;} .templete-con26 .con-tbody .con-tbody-box{position: relative;font-size: 0;letter-spacing: 0;width: 100%;text-align: center;} .templete-con26 .con-tbody-box .con-tbody-text{position: relative;width: 100%;max-width: 1180px;margin: 0 auto;font-size: 24px;color: #666;line-height: 48px;text-align: center;} .templete-con26 .con-tbody-box .con-tbody-btn{position: relative;width: 100%;text-align: center;margin-top: 34px;} .templete-con26 .con-tbody-box .con-tbody-btn .btnn{position: relative;display: inline-block;vertical-align: top;min-width: 277px;padding: 10px 20px;line-height: 28px;font-size: 18px;color: #333;border: 2px solid #333;border-radius: 26px;} .templete-con26 .con-tbody-box .con-tbody-btn a.btnn:hover{background: #333;color: #fff;} @media screen and (max-width:1459px) { .templete-con26{padding: 66px 0;} .templete-con26 .con-tbody-box .con-tbody-text{font-size: 22px;line-height: 42px;} .templete-con26 .con-tbody-box .con-tbody-btn{margin-top: 30px;} .templete-con26 .con-tbody-box .con-tbody-btn .btnn{min-width: 264px;padding: 8px 18px;line-height: 28px;font-size: 18px;border-radius: 24px;} } @media screen and (max-width:1259px) { .templete-con26{padding: 56px 0;} .templete-con26 .con-tbody .con-tbody-box{padding: 0 20px;} .templete-con26 .con-tbody-box .con-tbody-text{font-size: 20px;line-height: 36px;} .templete-con26 .con-tbody-box .con-tbody-btn{margin-top: 26px;} .templete-con26 .con-tbody-box .con-tbody-btn .btnn{min-width: 252px;padding: 6px 16px;line-height: 28px;font-size: 16px;border-radius: 22px;} } @media screen and (max-width:991px) { .templete-con26{padding: 46px 0;} .templete-con26 .con-tbody-box .con-tbody-text{font-size: 18px;line-height: 30px;} .templete-con26 .con-tbody-box .con-tbody-btn{margin-top: 20px;} .templete-con26 .con-tbody-box .con-tbody-btn .btnn{min-width: 240px;padding: 5px 14px;line-height: 28px;font-size: 15px;border-radius: 21px;} } @media screen and (max-width:660px) { .templete-con26{padding: 36px 0;} .templete-con26 .con-tbody-box .con-tbody-text{font-size: 16px;line-height: 28px;} .templete-con26 .con-tbody-box .con-tbody-btn{margin-top: 16px;} .templete-con26 .con-tbody-box .con-tbody-btn .btnn{min-width: 220px;padding: 4px 12px;line-height: 26px;font-size: 14px;border-radius: 19px;} } @media screen and (max-width:420px) { .templete-con26 .con-tbody-box .con-tbody-btn .btnn{min-width: 80px;padding: 4px 12px;line-height: 26px;font-size: 14px;border-radius: 19px;} } Want eye-catching illuminated signage that boosts brand visibility? Our custom solutions deliver stunning results – Get your free design proposal now! Contact Us Now!
Szoneier is a certified custom bag manufacturer in China. Get low MOQ, free sample, fast production, and OEM/ODM support for your brand bags. Contact us today.
Hebei Jinfa Instrument Equipment Co.,Ltd Established in 2016, we specialize in precision testing equipment for construction materials, serving clients in 100+ countries worldwide. .templete-con17 * { margin: 0px; padding: 0px; -moz-box-sizing: border-box; box-sizing: border-box; } .templete-con17{position: relative;width: 100%;} .templete-con17 .page-content1-list{position: relative;width: 100%;font-size: 0;letter-spacing: 0;} .templete-con17 .page-content1-item{position: relative;width: 100%;} .templete-con17 .page-content1-item .item-flex{display: flex;align-items: center;justify-content: space-between;flex-wrap: wrap;} .templete-con17 .page-content1-item .item-flex .item-pic{position: relative;width: 50%;text-align: center;} .templete-con17 .page-content1-item .item-flex .item-pic img{display: inline-block;vertical-align: top;width: 100%;} .templete-con17 .page-content1-item .item-flex .item-body{position: relative;width: 41%;} .templete-con17 .page-content1-item .item-body .item-title{font-size: 34px;color: #333333;line-height: 56px;font-weight: bold;} .templete-con17 .page-content1-item .item-body .item-desc{font-size: 16px;margin-top: 30px;color: #666666;line-height: 30px;} .templete-con17 .page-content1-item .item-body .item-btn{position: relative;padding-top: 72px;} .templete-con17 .page-content1-item .item-body .item-btn .btnn{display: inline-block;vertical-align: top;text-align: center;min-width: 170px;line-height: 30px;padding: 9px 18px;font-size: 16px;font-weight: bold;color: #FFFFFF;border: 1px solid #000;background: #000000;} .templete-con17 .page-content1-item .item-body .item-btn .btnn:hover{background: #fff;color: #000;} @media screen and (max-width:1259px){ .templete-con17 .page-content1-item .item-flex .item-pic{width: 50%;} .templete-con17 .page-content1-item .item-flex .item-body{width: 41%;} .templete-con17 .page-content1-item .item-body .item-title{font-size: 32px;line-height: 48px;} .templete-con17 .page-content1-item .item-body .item-desc{font-size: 16px;margin-top: 28px;line-height: 28px;} .templete-con17 .page-content1-item .item-body .item-btn{padding-top: 60px;} .templete-con17 .page-content1-item .item-body .item-btn .btnn{min-width: 156px;line-height: 28px;padding: 8px 16px;font-size: 16px;} } @media screen and (max-width:991px){ .templete-con17 .page-content1-item .item-flex .item-pic{width: 100%;} .templete-con17 .page-content1-item .item-flex .item-pic img{width: 70%;} .templete-con17 .page-content1-item .item-flex .item-body{width: 100%;padding-top: 20px;} .templete-con17 .page-content1-item .item-body .item-title{font-size: 28px;line-height: 42px;} .templete-con17 .page-content1-item .item-body .item-desc{font-size: 15px;margin-top: 24px;line-height: 26px;} .templete-con17 .page-content1-item .item-body .item-btn{padding-top: 32px;} .templete-con17 .page-content1-item .item-body .item-btn .btnn{min-width: 142px;line-height: 26px;padding: 6px 14px;font-size: 15px;} } @media screen and (max-width:720px){ .templete-con17 .page-content1-item .item-flex .item-pic{width: 100%;} .templete-con17 .page-content1-item .item-flex .item-pic img{width: 80%;} .templete-con17 .page-content1-item .item-flex .item-body{width: 100%;padding-top: 20px;} .templete-con17 .page-content1-item .item-body .item-title{font-size: 24px;line-height: 36px;} .templete-con17 .page-content1-item .item-body .item-desc{font-size: 14px;margin-top: 16px;line-height: 24px;} .templete-con17 .page-content1-item .item-body .item-btn{padding-top: 20px;} .templete-con17 .page-content1-item .item-body .item-btn .btnn{min-width: 130px;line-height: 24px;padding: 5px 12px;font-size: 14px;} } @media screen and (max-width:420px){ .templete-con17 .page-content1-item .item-flex .item-pic img{width: 100%;} .templete-con17 .page-content1-item .item-body .item-title{font-size: 20px;line-height: 36px;} } ABOUT US Hebei Jinfa Instrument Equipment Co.,Ltd. founded in 2016, is a leading Chinese manufacturer based in Hebei Province. We focus on the design, development, and production of high-precision testing equipment for construction materials, including soil, concrete, pile, rebar, aggregate, asphalt, and pavements. Through years of innovation and dedication, we have expanded our global reach, earning the trust of clients across the Middle East, Southeast Asia, South America, Africa, and beyond Contact Us WHAT WE DO Our product range covers advanced testing instruments for evaluating the quality and performance of construction materials. These include but are not limited to: ● Soil Testing Equipment: Compaction testers, permeability testers. ● Concrete Testing Tools: Compression test machines, slump test apparatus. ● Rebar & Steel Testing Instruments: Tensile strength testers, bending test machines. ● Asphalt & Pavement Testing Devices: Density gauges, viscosity testers. ● Aggregate & Particle Analysis Tools: Sieve shakers, moisture content analyzers. ● Applications: Our equipment is widely used in civil engineering, construction quality control, road and bridge infrastructure projects, and academic research. ● Value to Customers: We provide reliable, accurate, and durable testing solutions that help ensure compliance with international standards (e.g., ASTM, ISO), enhance project safety, reduce material failure risks, and optimize operational efficiency for laboratories and field operations .templete-con82 * { margin: 0px; padding: 0px; -moz-box-sizing: border-box; box-sizing: border-box; } .templete-con82{position: relative;width: 100%;} .templete-con82 .con-tbody{position: relative;width: 100%;} .templete-con82 .con-tbody .con-tbody-list{position: relative;font-size: 0;letter-spacing: 0;display: flex;flex-wrap: wrap;margin-left: -20px;margin-right: -20px;} .templete-con82 .con-tbody .con-tbody-items{position: relative;display: inline-block;vertical-align: top;width: 33.3333333%;padding: 0 20px;margin-bottom: 36px;} .templete-con82 .con-tbody-items .items-box{position: relative;width: 100%;height: 100%;overflow: hidden;} .templete-con82 .con-tbody-items .items-box .items-pic{position: relative;width: 100%;text-align: center;overflow: hidden;border-radius: 10px;} .templete-con82 .con-tbody-items .items-box .items-pic img{display: inline-block;vertical-align: top;width: 100%;} .templete-con82 .con-tbody-items .items-box .items-body{position: relative;width: 100%;padding: 8px;text-align: center;} .templete-con82 .con-tbody-items .items-body .items-title{position: relative;width: 100%;font-size: 18px;color: #333;font-weight: bold;line-height: 30px;} @media screen and (max-width:1459px) { .templete-con82 .con-tbody .con-tbody-list{margin-left: -12px;margin-right: -12px;} .templete-con82 .con-tbody .con-tbody-items{width: 33.3333333%;padding: 0 12px;margin-bottom: 30px;} .templete-con82 .con-tbody-items .items-box .items-body{padding: 7px;} .templete-con82 .con-tbody-items .items-body .items-title{font-size: 18px;line-height: 30px;} } @media screen and (max-width:1259px) { .templete-con82 .con-tbody .con-tbody-list{margin-left: -6px;margin-right: -6px;} .templete-con82 .con-tbody .con-tbody-items{width: 33.3333333%;padding: 0 6px;margin-bottom: 24px;} .templete-con82 .con-tbody-items .items-box .items-body{padding: 6px;} .templete-con82 .con-tbody-items .items-body .items-title{font-size: 16px;line-height: 28px;} } @media screen and (max-width:991px) { .templete-con82 .con-tbody .con-tbody-list{margin-left: -20px;margin-right: -20px;} .templete-con82 .con-tbody .con-tbody-items{width: 50%;padding: 0 20px;margin-bottom: 24px;} .templete-con82 .con-tbody-items .items-box .items-body{padding: 5px;} .templete-con82 .con-tbody-items .items-body .items-title{font-size: 16px;line-height: 28px;} } @media screen and (max-width:720px) { .templete-con82 .con-tbody .con-tbody-list{margin-left: -12px;margin-right: -12px;} .templete-con82 .con-tbody .con-tbody-items{width: 50%;padding: 0 12px;margin-bottom: 20px;} .templete-con82 .con-tbody-items .items-box .items-body{padding: 5px;} .templete-con82 .con-tbody-items .items-body .items-title{font-size: 16px;line-height: 26px;} } @media screen and (max-width:560px) { .templete-con82 .con-tbody .con-tbody-list{margin-left: -5px;margin-right: -5px;} .templete-con82 .con-tbody .con-tbody-items{width: 50%;padding: 0 5px;margin-bottom: 20px;} .templete-con82 .con-tbody-items .items-box .items-body{padding: 4px;} .templete-con82 .con-tbody-items .items-body .items-title{font-size: 16px;line-height: 26px;} } WHY CHOOSE US ● Production Strength: Our state-of-the-art manufacturing facility integrates advanced machinery and automated processes, enabling high-volume production without compromising quality. ● Quality Assurance: All products undergo rigorous testing and comply with ISO-certified quality management systems. We provide third-party calibration certificates to guarantee accuracy and reliability. ● Industry Experience: With nearly a decade of expertise, we understand diverse market needs and offer tailored solutions for complex testing challenges. ● Customization Support: We offer OEM and ODM services to adapt products to specific client requirements, ensuring flexibility and customer satisfaction. OUR TEAM Our team consists of experienced engineers, R&D specialists, and quality control professionals dedicated to innovation and excellence. The leadership includes: ● Technical Director: Oversees product development with 15+ years in material science. ● Global Sales Team: Provides multilingual support and technical consultation for international clients. ● QC Department: Implements strict inspections at every production stage, from raw material sourcing to final shipment .templete-con82 * { margin: 0px; padding: 0px; -moz-box-sizing: border-box; box-sizing: border-box; } .templete-con82{position: relative;width: 100%;} .templete-con82 .con-tbody{position: relative;width: 100%;} .templete-con82 .con-tbody .con-tbody-list{position: relative;font-size: 0;letter-spacing: 0;display: flex;flex-wrap: wrap;margin-left: -20px;margin-right: -20px;} .templete-con82 .con-tbody .con-tbody-items{position: relative;display: inline-block;vertical-align: top;width: 33.3333333%;padding: 0 20px;margin-bottom: 36px;} .templete-con82 .con-tbody-items .items-box{position: relative;width: 100%;height: 100%;overflow: hidden;} .templete-con82 .con-tbody-items .items-box .items-pic{position: relative;width: 100%;text-align: center;overflow: hidden;border-radius: 10px;} .templete-con82 .con-tbody-items .items-box .items-pic img{display: inline-block;vertical-align: top;width: 100%;} .templete-con82 .con-tbody-items .items-box .items-body{position: relative;width: 100%;padding: 8px;text-align: center;} .templete-con82 .con-tbody-items .items-body .items-title{position: relative;width: 100%;font-size: 18px;color: #333;font-weight: bold;line-height: 30px;} @media screen and (max-width:1459px) { .templete-con82 .con-tbody .con-tbody-list{margin-left: -12px;margin-right: -12px;} .templete-con82 .con-tbody .con-tbody-items{width: 33.3333333%;padding: 0 12px;margin-bottom: 30px;} .templete-con82 .con-tbody-items .items-box .items-body{padding: 7px;} .templete-con82 .con-tbody-items .items-body .items-title{font-size: 18px;line-height: 30px;} } @media screen and (max-width:1259px) { .templete-con82 .con-tbody .con-tbody-list{margin-left: -6px;margin-right: -6px;} .templete-con82 .con-tbody .con-tbody-items{width: 33.3333333%;padding: 0 6px;margin-bottom: 24px;} .templete-con82 .con-tbody-items .items-box .items-body{padding: 6px;} .templete-con82 .con-tbody-items .items-body .items-title{font-size: 16px;line-height: 28px;} } @media screen and (max-width:991px) { .templete-con82 .con-tbody .con-tbody-list{margin-left: -20px;margin-right: -20px;} .templete-con82 .con-tbody .con-tbody-items{width: 50%;padding: 0 20px;margin-bottom: 24px;} .templete-con82 .con-tbody-items .items-box .items-body{padding: 5px;} .templete-con82 .con-tbody-items .items-body .items-title{font-size: 16px;line-height: 28px;} } @media screen and (max-width:720px) { .templete-con82 .con-tbody .con-tbody-list{margin-left: -12px;margin-right: -12px;} .templete-con82 .con-tbody .con-tbody-items{width: 50%;padding: 0 12px;margin-bottom: 20px;} .templete-con82 .con-tbody-items .items-box .items-body{padding: 5px;} .templete-con82 .con-tbody-items .items-body .items-title{font-size: 16px;line-height: 26px;} } @media screen and (max-width:560px) { .templete-con82 .con-tbody .con-tbody-list{margin-left: -5px;margin-right: -5px;} .templete-con82 .con-tbody .con-tbody-items{width: 50%;padding: 0 5px;margin-bottom: 20px;} .templete-con82 .con-tbody-items .items-box .items-body{padding: 4px;} .templete-con82 .con-tbody-items .items-body .items-title{font-size: 16px;line-height: 26px;} } OUR FACTORY Located in Hebei, our factory is equipped with modern production lines, precision calibration tools, and a streamlined logistics system. This infrastructure ensures: ● Quality Control: Stringent checks at each stage (incoming, in-process, and final inspection). ● Competitive Pricing: Economies of scale and efficient processes reduce costs. ● Fast Delivery: Optimized supply chains enable timely order fulfillment, even for bulk requests
.templete-con36 * { margin: 0px; padding: 0px; -moz-box-sizing: border-box; box-sizing: border-box; } .self-ellipsis-2 { display: -webkit-box !important; overflow: hidden; white-space: normal !important; text-overflow: ellipsis; word-wrap: break-word; -webkit-line-clamp: 2; -webkit-box-orient: vertical; } .templete-con36 {position: relative;width: 100%;margin: 0 auto;} .templete-con36 .con-tbody{position: relative;width: 100%; padding: 10px 0;display: flex;flex-wrap: wrap;justify-content: space-between;align-items: center;} .templete-con36 .con-tbody .con-tbody-left{width: 50%;position: relative;} .templete-con36 .con-tbody .con-tbody-right{width: 47.3333333%;position: relative;} .templete-con36 .con-tbody .con-left-box{position: relative;width: 100%;font-size: 0;letter-spacing: 0;} .templete-con36 .con-tbody .con-left-img{position: relative;width: 100%;} .templete-con36 .con-tbody .con-left-box .item-pic{position: relative;width: 100%;text-align: center;overflow: hidden;border-radius: 20px;} .templete-con36 .con-tbody .con-left-box .item-pic img{display: inline-block;vertical-align: top;width: 100%;} .templete-con36 .con-tbody .con-tbody-info{position: relative;width: 100%;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-title{font-size: 30px;font-weight: bold;color: #333333;line-height: 42px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-text{font-size: 16px;margin-top: 16px;color: #666666;line-height: 30px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-list{position: relative;font-size: 0;letter-spacing: 0;margin-left: -5px;margin-right: -5px;margin-top: 38px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-item{position: relative;display: inline-block;vertical-align: top;width: 33.333333%;padding: 0 5px;margin-bottom: 24px;} .templete-con36 .con-tbody .con-tbody-item .item-box{position: relative;width: 100%;background: url(/admin_upload/customer_template/img/con36-bgi.png) no-repeat center center;background-size: 100% 100%;background-color: #F5F5F5;border-radius: 10px;padding: 4px 10px 8px;} .templete-con36 .con-tbody-item .item-box .item-title{font-size: 11px;color: #1DA4D4;line-height: 20px;height: 40px;overflow: hidden;text-transform: capitalize;} .templete-con36 .con-tbody-item .item-box .item-text{font-size: 14px;margin-top: 10px;color: #666666;line-height: 20px;height: 40px;overflow: hidden;} @media screen and (max-width:1459px) { .templete-con36 .con-tbody .con-tbody-left{width: 50%;} .templete-con36 .con-tbody .con-tbody-right{width: 47.3333333%;} .templete-con36 .con-tbody .con-left-box .item-pic{border-radius: 20px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-title{font-size: 28px;line-height: 40px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-text{font-size: 14px;margin-top: 14px;line-height: 24px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-list{margin-left: -5px;margin-right: -5px;margin-top: 38px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-item{width: 33.333333%;padding: 0 5px;margin-bottom: 20px;} .templete-con36 .con-tbody .con-tbody-item .item-box{border-radius: 10px;padding: 4px 10px 8px;} .templete-con36 .con-tbody-item .item-box .item-title{font-size: 11px;line-height: 20px;height: 40px;} .templete-con36 .con-tbody-item .item-box .item-text{font-size: 14px;margin-top: 10px;line-height: 20px;height: 40px;} } @media screen and (max-width:1259px) { .templete-con36 .con-tbody .con-tbody-left{width: 50%;} .templete-con36 .con-tbody .con-tbody-right{width: 48%;} .templete-con36 .con-tbody .con-left-box .item-pic{border-radius: 16px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-title{font-size: 24px;line-height: 36px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-text{font-size: 14px;margin-top: 10px;line-height: 23px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-list{margin-left: -5px;margin-right: -5px;margin-top: 28px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-item{width: 33.333333%;padding: 0 5px;margin-bottom: 18px;} .templete-con36 .con-tbody .con-tbody-item .item-box{border-radius: 8px;padding: 4px 8px 6px;} .templete-con36 .con-tbody-item .item-box .item-title{font-size: 10px;line-height: 18px;height: 36px;} .templete-con36 .con-tbody-item .item-box .item-text{font-size: 13px;margin-top: 8px;line-height: 18px;height: 36px;} } @media screen and (max-width:991px) { .templete-con36 .con-tbody .con-tbody-left{width: 100%;} .templete-con36 .con-tbody .con-tbody-right{width:100%;margin-top: 16px;} .templete-con36 .con-tbody .con-left-box .item-pic{border-radius: 20px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-title{font-size: 20px;line-height: 32px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-text{font-size: 14px;margin-top: 10px;line-height: 24px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-list{margin-left: -8px;margin-right: -8px;margin-top: 20px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-item{width: 33.333333%;padding: 0 8px;margin-bottom: 16px;} .templete-con36 .con-tbody .con-tbody-item .item-box{border-radius: 10px;padding: 10px;} .templete-con36 .con-tbody-item .item-box .item-title{font-size: 12px;line-height: 20px;height: 40px;} .templete-con36 .con-tbody-item .item-box .item-text{font-size: 14px;margin-top: 10px;line-height: 22px;height: 44px;} } @media screen and (max-width:720px) { .templete-con36 .con-tbody .con-tbody-left{width: 100%;} .templete-con36 .con-tbody .con-tbody-right{width:100%;margin-top: 12px;} .templete-con36 .con-tbody .con-left-box .item-pic{border-radius: 16px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-title{font-size: 18px;line-height: 30px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-text{font-size: 13px;margin-top: 8px;line-height: 22px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-list{margin-left: -5px;margin-right: -5px;margin-top: 20px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-item{width: 33.333333%;padding: 0 5px;margin-bottom: 16px;} .templete-con36 .con-tbody .con-tbody-item .item-box{border-radius: 10px;padding: 8px 10px 12px;} .templete-con36 .con-tbody-item .item-box .item-title{font-size: 12px;line-height: 18px;height: 36px;} .templete-con36 .con-tbody-item .item-box .item-text{font-size: 13px;margin-top: 8px;line-height: 20px;height: 40px;} } @media screen and (max-width:620px) { .templete-con36 .con-tbody .con-tbody-left{width: 100%;} .templete-con36 .con-tbody .con-tbody-right{width:100%;margin-top: 12px;} .templete-con36 .con-tbody .con-left-box .item-pic{border-radius: 16px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-title{font-size: 18px;line-height: 30px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-text{font-size: 13px;margin-top: 8px;line-height: 22px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-list{margin-left: -5px;margin-right: -5px;margin-top: 20px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-item{width: 50%;padding: 0 5px;margin-bottom: 16px;} .templete-con36 .con-tbody .con-tbody-item .item-box{border-radius: 10px;padding: 8px 10px 12px;} .templete-con36 .con-tbody-item .item-box .item-title{font-size: 12px;line-height: 18px;height: 36px;} .templete-con36 .con-tbody-item .item-box .item-text{font-size: 13px;margin-top: 8px;line-height: 20px;height: 40px;} } @media screen and (max-width:370px) { .templete-con36 .con-tbody .con-tbody-left{width: 100%;} .templete-con36 .con-tbody .con-tbody-right{width:100%;margin-top: 12px;} .templete-con36 .con-tbody .con-left-box .item-pic{border-radius: 16px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-title{font-size: 16px;line-height: 28px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-text{font-size: 13px;margin-top: 8px;line-height: 22px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-list{margin-left: -5px;margin-right: -5px;margin-top: 20px;} .templete-con36 .con-tbody .con-tbody-info .con-tbody-item{width: 100%;padding: 0 5px;margin-bottom: 16px;} .templete-con36 .con-tbody .con-tbody-item .item-box{border-radius: 10px;padding: 8px 10px 12px;} .templete-con36 .con-tbody-item .item-box .item-title{font-size: 12px;line-height: 18px;height: 36px;} .templete-con36 .con-tbody-item .item-box .item-text{font-size: 13px;margin-top: 8px;line-height: 20px;height: 40px;} } Guangdong Zhongxin Industrial Co., Ltd Guangdong Zhongxin Industrial Co., Ltd. specializes in the production of various types of trash cans. It is a modern high-tech enterprise integrating design, manufacturing, sales and service. The company's modernized workshop covers an area of more than 22,000 square meters . We have 16 sets of fully automatic brand HAITIAN injection molding equipment to ensure product capacity and quality. We accept OEM/ODM orders. It’s a leading manufacturer of HDPE mobile wheelie bin and outdoor classification trash can in South China. Integrity management, win-win cooperation. We warmly welcome customers from all over the world to visit, negotiate and cooperate. we will work together with you to garbage classification, build a more beautiful China, a better world, and create a more livable future. As professional trash can manufacturers, we are dedicated to delivering reliable products and tailored solutions. Choosing us means partnering with trusted trash can manufacturers with proven industry expertise. .templete-con12 * { margin: 0px; padding: 0px; -moz-box-sizing: border-box; box-sizing: border-box; } .templete-con12{position: relative;width: 100%;} .templete-con12 .con-title{font-size: 34px;font-weight: bold;color: #333333;line-height: 54px;text-align: center;text-transform: capitalize;} .templete-con12 .con-text{font-size: 20px;text-align: center;color: #666666;line-height: 32px;margin-top: 20px;} .templete-con12 .con-tbody{position: relative;width: 100%;padding-top: 46px;} .templete-con12 .con-tbody .con-tbody-list{position: relative;font-size: 0;letter-spacing: 0;margin-left: -15px;margin-right: -15px;display: flex;flex-wrap: wrap;} .templete-con12 .con-tbody .con-tbody-item{display: inline-block;vertical-align: top;width: 33.33333%;padding: 0 15px;margin-bottom: 20px;position: relative;box-sizing: border-box;} .templete-con12 .con-tbody-item .item-box{position: relative;width: 100%;height: 100%;padding: 41px 40px 46px;background: url(/admin_upload/customer_template/img/item-bgi.webp) no-repeat right bottom;background-size: 100% 100%;background-color: #F7F8FA;box-sizing: border-box;} /* .templete-con12 .con-tbody-item .item-box::before{position: absolute;content: "";right: 30px;bottom: 33px;width: 170px;height: 169px;background: url(/admin_upload/customer_template/img/con12-bgi.webp) no-repeat center center;background-size: 100% 100%;} */ .templete-con12 .con-tbody-item .item-box .item-icon{position: relative;width: 100%;text-align: left;} .templete-con12 .con-tbody-item .item-box .item-icon img{display: inline-block;vertical-align: top;width: 100%;max-width: 56px;} .templete-con12 .con-tbody-item .item-body{position: relative;width: 100%;text-align: left;padding-top:32px;} .templete-con12 .con-tbody-item .item-body .item-title{font-size: 24px;text-transform: capitalize;font-weight: 600;color: #333333;line-height: 36px;} .templete-con12 .con-tbody-item .item-body .item-desc{font-size: 16px;margin-top: 12px;color: #666666;line-height: 30px;} @media screen and (max-width:1459px) { .templete-con12 .con-title{font-size: 32px;line-height: 50px;} .templete-con12 .con-text{font-size: 18px;line-height: 30px;margin-top: 18px;} .templete-con12 .con-tbody{padding-top: 40px;} .templete-con12 .con-tbody .con-tbody-list{margin-left: -8px;margin-right: -8px;} .templete-con12 .con-tbody .con-tbody-item{width: 33.33333%;padding: 0 8px;margin-bottom: 20px;} .templete-con12 .con-tbody-item .item-box{padding: 36px 28px 40px;} .templete-con12 .con-tbody-item .item-box::before{right: 28px;bottom: 28px;width: 150px;height: 150px;} .templete-con12 .con-tbody-item .item-box .item-icon img{max-width: 52px;} .templete-con12 .con-tbody-item .item-body{padding-top:28px;} .templete-con12 .con-tbody-item .item-body .item-title{font-size: 22px;line-height: 32px;} .templete-con12 .con-tbody-item .item-body .item-desc{font-size: 16px;margin-top: 10px;line-height: 28px;} } @media screen and (max-width:1259px) { .templete-con12 .con-title{font-size: 28px;line-height: 44px;} .templete-con12 .con-text{font-size: 16px;line-height: 28px;margin-top: 16px;} .templete-con12 .con-tbody{padding-top: 32px;} .templete-con12 .con-tbody .con-tbody-list{margin-left: -5px;margin-right: -5px;} .templete-con12 .con-tbody .con-tbody-item{width: 33.33333%;padding: 0 5px;margin-bottom: 20px;} .templete-con12 .con-tbody-item .item-box{padding: 30px 15px 32px;} .templete-con12 .con-tbody-item .item-box::before{right: 24px;bottom: 24px;width: 136px;height: 136px;} .templete-con12 .con-tbody-item .item-box .item-icon img{max-width: 48px;} .templete-con12 .con-tbody-item .item-body{padding-top:24px;} .templete-con12 .con-tbody-item .item-body .item-title{font-size: 20px;line-height: 30px;} .templete-con12 .con-tbody-item .item-body .item-desc{font-size: 15px;margin-top: 8px;line-height: 26px;} } @media screen and (max-width:991px) { .templete-con12 .con-title{font-size: 24px;line-height: 40px;} .templete-con12 .con-text{font-size: 15px;line-height: 26px;margin-top: 12px;} .templete-con12 .con-tbody{padding-top: 28px;} .templete-con12 .con-tbody .con-tbody-list{margin-left: -15px;margin-right: -15px;} .templete-con12 .con-tbody .con-tbody-item{width: 50%;padding: 0 15px;margin-bottom: 20px;} .templete-con12 .con-tbody-item .item-box{padding: 24px 15px 28px;} .templete-con12 .con-tbody-item .item-box::before{right: 20px;bottom: 20px;width: 136px;height: 136px;} .templete-con12 .con-tbody-item .item-box .item-icon img{max-width: 48px;} .templete-con12 .con-tbody-item .item-body{padding-top:20px;} .templete-con12 .con-tbody-item .item-body .item-title{font-size: 18px;line-height: 28px;} .templete-con12 .con-tbody-item .item-body .item-desc{font-size: 14px;margin-top: 8px;line-height: 24px;} } @media screen and (max-width:660px) { .templete-con12 .con-title{font-size: 20px;line-height: 36px;} .templete-con12 .con-text{font-size: 14px;line-height: 24px;margin-top: 10px;} .templete-con12 .con-tbody{padding-top: 24px;} .templete-con12 .con-tbody .con-tbody-list{margin-left: -6px;margin-right: -6px;} .templete-con12 .con-tbody .con-tbody-item{width: 50%;padding: 0 6px;margin-bottom: 20px;} .templete-con12 .con-tbody-item .item-box{padding: 20px 10px 24px;} .templete-con12 .con-tbody-item .item-box::before{right: 16px;bottom: 16px;width: 110px;height: 110px;} .templete-con12 .con-tbody-item .item-box .item-icon img{max-width: 42px;} .templete-con12 .con-tbody-item .item-body{padding-top:16px;} .templete-con12 .con-tbody-item .item-body .item-title{font-size: 16px;line-height: 28px;} .templete-con12 .con-tbody-item .item-body .item-desc{font-size: 14px;margin-top: 8px;line-height: 24px;} } @media screen and (max-width:420px) { .templete-con12 .con-title{font-size: 18px;line-height: 32px;} .templete-con12 .con-text{font-size: 13px;line-height: 22px;margin-top: 8px;} .templete-con12 .con-tbody .con-tbody-item{width: 100%;} } Company Equipment The equipment used in our company's fully automatic production line is : HAITIAN. Brand HAITIAN is a very famous large-brand injection molding equipment in the industry. This ensures that the quality of our products is more stable. Company Certification Our company has passed ISO9001:2015 quality management system certification、ISO14001:2015 environmental management system certification、GB/T45001-2018 Occupational Health and Safety Management System Certification. Our products have obtained CE certification comply with EN840 standards . etc . Our Culture "Quality First, Customer First" as its core concept, focusing on teamwork, continuous improvement and innovation. .templete-con3 * { margin: 0px; padding: 0px; -moz-box-sizing: border-box; box-sizing: border-box; } .templete-con3{position: relative;width: 100%;} .templete-con3 .con-title{font-size: 34px;font-weight: bold;color: #333333;line-height: 54px;text-align: center;text-transform: capitalize;} .templete-con3 .con-text{font-size: 20px;text-align: center;color: #666666;line-height: 32px;margin-top: 20px;} .templete-con3 .con-tbody{position: relative;width: 100%;padding-top: 56px;} .templete-con3 .con-tbody .con-tbody-list{position: relative;font-size: 0;letter-spacing: 0;margin-left: -13px;margin-right: -13px;display: flex;flex-wrap: wrap;} .templete-con3 .con-tbody .con-tbody-item{position: relative;display: inline-block;vertical-align: top;width: 25%;padding: 0 13px;margin-bottom: 26px;box-sizing: border-box;} .templete-con3 .con-tbody-item .item-box{position: relative;width: 100%;height: 100%; background: #F7F8FA;} .templete-con3 .con-tbody-item .item-box .item-pic{position: relative;width: 100%;text-align: center;overflow: hidden;} .templete-con3 .con-tbody-item .item-box .item-pic img{display: inline-block;vertical-align: top;width: 100%;} .templete-con3 .con-tbody-item .item-box .item-body{position: relative;width: 100%;padding: 20px 24px 18px;} .templete-con3 .con-tbody-item .item-body .item-title{font-size: 20px;font-weight: bold;color: #333333;line-height: 28px;text-overflow: ellipsis;overflow: hidden;white-space: nowrap;} .templete-con3 .con-tbody-item .item-body .item-desc{font-size: 16px;margin-top: 6px;color: #666666;line-height: 24px;overflow: hidden;} @media screen and (max-width:1459px) { .templete-con3 .con-title{font-size: 32px;line-height: 50px;} .templete-con3 .con-text{font-size: 18px;line-height: 30px;margin-top: 18px;} .templete-con3 .con-tbody{padding-top: 48px;} .templete-con3 .con-tbody .con-tbody-list{margin-left: -8px;margin-right: -8px;} .templete-con3 .con-tbody .con-tbody-item{width: 25%;padding: 0 8px;margin-bottom: 24px;} .templete-con3 .con-tbody-item .item-box .item-body{padding: 18px 20px 16px;} .templete-con3 .con-tbody-item .item-body .item-title{font-size: 18px;line-height: 28px;} .templete-con3 .con-tbody-item .item-body .item-desc{font-size: 15px;margin-top: 6px;line-height: 24px;} } @media screen and (max-width:1259px) { .templete-con3 .con-title{font-size: 28px;line-height: 44px;} .templete-con3 .con-text{font-size: 16px;line-height: 28px;margin-top: 16px;} .templete-con3 .con-tbody{padding-top: 42px;} .templete-con3 .con-tbody .con-tbody-list{margin-left: -5px;margin-right: -5px;} .templete-con3 .con-tbody .con-tbody-item{width: 25%;padding: 0 5px;margin-bottom: 20px;} .templete-con3 .con-tbody-item .item-box .item-body{padding: 16px 18px 14px;} .templete-con3 .con-tbody-item .item-body .item-title{font-size: 16px;line-height: 28px;} .templete-con3 .con-tbody-item .item-body .item-desc{font-size: 14px;margin-top: 6px;line-height: 22px;} } @media screen and (max-width:991px) { .templete-con3 .con-title{font-size: 24px;line-height: 40px;} .templete-con3 .con-text{font-size: 15px;line-height: 26px;margin-top: 12px;} .templete-con3 .con-tbody{padding-top: 36px;} .templete-con3 .con-tbody .con-tbody-list{margin-left: -10px;margin-right: -10px;} .templete-con3 .con-tbody .con-tbody-item{width: 33.3333333%;padding: 0 10px;margin-bottom: 20px;} .templete-con3 .con-tbody-item .item-box .item-body{padding: 16px 15px 14px;} .templete-con3 .con-tbody-item .item-body .item-title{font-size: 16px;line-height: 28px;} .templete-con3 .con-tbody-item .item-body .item-desc{font-size: 14px;margin-top: 6px;line-height: 22px;} } @media screen and (max-width:680px) { .templete-con3 .con-title{font-size: 20px;line-height: 36px;} .templete-con3 .con-text{font-size: 14px;line-height: 24px;margin-top: 10px;} .templete-con3 .con-tbody{padding-top: 30px;} .templete-con3 .con-tbody .con-tbody-list{margin-left: -10px;margin-right: -10px;} .templete-con3 .con-tbody .con-tbody-item{width: 50%;padding: 0 10px;margin-bottom: 20px;} .templete-con3 .con-tbody-item .item-box .item-body{padding: 12px 15px;} .templete-con3 .con-tbody-item .item-body .item-title{font-size: 16px;line-height: 28px;} .templete-con3 .con-tbody-item .item-body .item-desc{font-size: 14px;margin-top: 6px;line-height: 22px;} } @media screen and (max-width:420px) { .templete-con3 .con-title{font-size: 18px;line-height: 32px;} .templete-con3 .con-text{font-size: 13px;line-height: 22px;margin-top: 8px;} .templete-con3 .con-tbody{padding-top: 24px;} .templete-con3 .con-tbody .con-tbody-list{margin-left: -5px;margin-right: -5px;} .templete-con3 .con-tbody .con-tbody-item{width: 100%;padding: 0 5px;margin-bottom: 20px;} .templete-con3 .con-tbody-item .item-box .item-body{padding: 8px 10px;} .templete-con3 .con-tbody-item .item-body .item-title{font-size: 16px;line-height: 28px;} .templete-con3 .con-tbody-item .item-body .item-desc{font-size: 14px;margin-top: 6px;line-height: 22px;} }
Laiyue Huanqiu Trading Hengshui Co., Ltd We are a professional manufacturer specializing in the research and development and production of sports protective gear, dedicated to providing high-quality waist, knee, and neck protectors to consumers worldwide. We believe that a healthy lifestyle begins with caring for and protecting your body, and our mission is to help every sports enthusiast and those who need daily protection achieve greater confidence, comfort, and fearlessness in both sports and everyday life. .templete-con12 * { margin: 0px; padding: 0px; -moz-box-sizing: border-box; box-sizing: border-box; } .templete-con12{position: relative;width: 100%;} .templete-con12 .con-title{font-size: 34px;font-weight: bold;color: #333333;line-height: 54px;text-align: center;text-transform: uppercase;} .templete-con12 .con-text{font-size: 20px;text-align: center;color: #666666;line-height: 32px;margin-top: 20px;} .templete-con12 .con-tbody{position: relative;width: 100%;padding-top: 46px;} .templete-con12 .con-tbody .con-tbody-list{position: relative;font-size: 0;letter-spacing: 0;margin-left: -15px;margin-right: -15px;display: flex;flex-wrap: wrap;} .templete-con12 .con-tbody .con-tbody-item{display: inline-block;vertical-align: top;width: 33.33333%;padding: 0 15px;margin-bottom: 20px;position: relative;box-sizing: border-box;} .templete-con12 .con-tbody-item .item-box{position: relative;width: 100%;height: 100%;padding: 41px 40px 46px;background-color: #F7F8FA;box-sizing: border-box;} /* .templete-con12 .con-tbody-item .item-box::before{position: absolute;content: "";right: 30px;bottom: 33px;width: 170px;height: 169px;background: url(/admin_upload/customer_template/img/con12-bgi.webp) no-repeat center center;background-size: 100% 100%;} */ .templete-con12 .con-tbody-item .item-box .item-icon{position: relative;width: 100%;text-align: left;} .templete-con12 .con-tbody-item .item-box .item-icon img{display: inline-block;vertical-align: top;width: 100%;max-width: 56px;} .templete-con12 .con-tbody-item .item-body{position: relative;width: 100%;text-align: left;padding-top:32px;} .templete-con12 .con-tbody-item .item-body .item-title{font-size: 24px;text-transform: uppercase;font-weight: 600;color: #333333;line-height: 36px;} .templete-con12 .con-tbody-item .item-body .item-desc{font-size: 16px;margin-top: 12px;color: #666666;line-height: 30px;} @media screen and (max-width:1459px) { .templete-con12 .con-title{font-size: 32px;line-height: 50px;} .templete-con12 .con-text{font-size: 18px;line-height: 30px;margin-top: 18px;} .templete-con12 .con-tbody{padding-top: 40px;} .templete-con12 .con-tbody .con-tbody-list{margin-left: -8px;margin-right: -8px;} .templete-con12 .con-tbody .con-tbody-item{width: 33.33333%;padding: 0 8px;margin-bottom: 20px;} .templete-con12 .con-tbody-item .item-box{padding: 36px 28px 40px;} .templete-con12 .con-tbody-item .item-box::before{right: 28px;bottom: 28px;width: 150px;height: 150px;} .templete-con12 .con-tbody-item .item-box .item-icon img{max-width: 52px;} .templete-con12 .con-tbody-item .item-body{padding-top:28px;} .templete-con12 .con-tbody-item .item-body .item-title{font-size: 22px;line-height: 32px;} .templete-con12 .con-tbody-item .item-body .item-desc{font-size: 16px;margin-top: 10px;line-height: 28px;} } @media screen and (max-width:1259px) { .templete-con12 .con-title{font-size: 28px;line-height: 44px;} .templete-con12 .con-text{font-size: 16px;line-height: 28px;margin-top: 16px;} .templete-con12 .con-tbody{padding-top: 32px;} .templete-con12 .con-tbody .con-tbody-list{margin-left: -5px;margin-right: -5px;} .templete-con12 .con-tbody .con-tbody-item{width: 33.33333%;padding: 0 5px;margin-bottom: 20px;} .templete-con12 .con-tbody-item .item-box{padding: 30px 15px 32px;} .templete-con12 .con-tbody-item .item-box::before{right: 24px;bottom: 24px;width: 136px;height: 136px;} .templete-con12 .con-tbody-item .item-box .item-icon img{max-width: 48px;} .templete-con12 .con-tbody-item .item-body{padding-top:24px;} .templete-con12 .con-tbody-item .item-body .item-title{font-size: 20px;line-height: 30px;} .templete-con12 .con-tbody-item .item-body .item-desc{font-size: 15px;margin-top: 8px;line-height: 26px;} } @media screen and (max-width:991px) { .templete-con12 .con-title{font-size: 24px;line-height: 40px;} .templete-con12 .con-text{font-size: 15px;line-height: 26px;margin-top: 12px;} .templete-con12 .con-tbody{padding-top: 28px;} .templete-con12 .con-tbody .con-tbody-list{margin-left: -15px;margin-right: -15px;} .templete-con12 .con-tbody .con-tbody-item{width: 50%;padding: 0 15px;margin-bottom: 20px;} .templete-con12 .con-tbody-item .item-box{padding: 24px 15px 28px;} .templete-con12 .con-tbody-item .item-box::before{right: 20px;bottom: 20px;width: 136px;height: 136px;} .templete-con12 .con-tbody-item .item-box .item-icon img{max-width: 48px;} .templete-con12 .con-tbody-item .item-body{padding-top:20px;} .templete-con12 .con-tbody-item .item-body .item-title{font-size: 18px;line-height: 28px;} .templete-con12 .con-tbody-item .item-body .item-desc{font-size: 14px;margin-top: 8px;line-height: 24px;} } @media screen and (max-width:660px) { .templete-con12 .con-title{font-size: 20px;line-height: 36px;} .templete-con12 .con-text{font-size: 14px;line-height: 24px;margin-top: 10px;} .templete-con12 .con-tbody{padding-top: 24px;} .templete-con12 .con-tbody .con-tbody-list{margin-left: -6px;margin-right: -6px;} .templete-con12 .con-tbody .con-tbody-item{width: 50%;padding: 0 6px;margin-bottom: 20px;} .templete-con12 .con-tbody-item .item-box{padding: 20px 10px 24px;} .templete-con12 .con-tbody-item .item-box::before{right: 16px;bottom: 16px;width: 110px;height: 110px;} .templete-con12 .con-tbody-item .item-box .item-icon img{max-width: 42px;} .templete-con12 .con-tbody-item .item-body{padding-top:16px;} .templete-con12 .con-tbody-item .item-body .item-title{font-size: 16px;line-height: 28px;} .templete-con12 .con-tbody-item .item-body .item-desc{font-size: 14px;margin-top: 8px;line-height: 24px;} } @media screen and (max-width:420px) { .templete-con12 .con-title{font-size: 18px;line-height: 32px;} .templete-con12 .con-text{font-size: 13px;line-height: 22px;margin-top: 8px;} .templete-con12 .con-tbody .con-tbody-item{width: 100%;} } Why Choose Us Professional Strength Creates Superior Quality In the fiercely competitive sports protective gear industry, our strong production capabilities, stringent quality control, and extensive industry experience have made us a trusted, long-term partner for numerous customers. Large-Scale Production Capabilities ● A team of over 200 professionals, three modern factories (total area of 5,000 square meters) ● A product portfolio of over 170 products, covering all sports protection scenarios ● Six proprietary patented technologies, continuously driving product innovation Internationally Certified Quality Assurance ● Strictly implements the ISO9001 quality management system ● All products are CE certified ● Multiple inspection processes, from incoming raw materials to outgoing finished products .templete-con13 * { margin: 0px; padding: 0px; -moz-box-sizing: border-box; box-sizing: border-box; } .templete-con13{position: relative;width: 100%;} .templete-con13 .con-title{font-size: 34px;font-weight: bold;color: #333333;line-height: 54px;text-align: center;text-transform: uppercase;} .templete-con13 .con-text{font-size: 20px;text-align: center;color: #666666;line-height: 32px;margin-top: 20px;} .templete-con13 .con-tbody{position: relative;width: 100%;padding-top: 46px;} .templete-con13 .con-tbody .con-tbody-list{position: relative;font-size: 0;letter-spacing: 0;margin-left: -16px;margin-right: -16px;display: flex;flex-wrap: wrap;} .templete-con13 .con-tbody .con-tbody-item{display: inline-block;vertical-align: top;width: 50%;padding: 0 16px;margin-bottom: 20px;position: relative;box-sizing: border-box;} .templete-con13 .con-tbody-item .item-box{position: relative;width: 100%;height: 100%;background: #F7F8FA;padding: 60px 40px;box-sizing: border-box;} .templete-con13 .con-tbody-item .item-body{position: relative;width: 100%;text-align: left;} .templete-con13 .con-tbody-item .item-body .item-title{font-size: 24px;text-transform: uppercase;font-weight: 600;color: #333333;line-height: 36px;padding: 12px 0;padding-left: 0px;position: relative;} .templete-con13 .con-tbody-item .item-body .item-icon{position: absolute;left: 0;top: 0;width: 60px;height: 60px;text-align: center;background: #242427;border-radius: 50%;} .templete-con13 .con-tbody-item .item-body .item-icon img{display: inline-block;vertical-align: top;width: 100%;} .templete-con13 .con-tbody-item .item-body .item-desc{font-size: 16px;margin-top: 22px;color: #666666;line-height: 30px;} @media screen and (max-width:1459px) { .templete-con13 .con-title{font-size: 32px;line-height: 50px;} .templete-con13 .con-text{font-size: 18px;line-height: 30px;margin-top: 18px;} .templete-con13 .con-tbody{padding-top: 40px;} .templete-con13 .con-tbody .con-tbody-list{margin-left: -10px;margin-right: -10px;} .templete-con13 .con-tbody .con-tbody-item{width: 50%;padding: 0 10px;margin-bottom: 20px;} .templete-con13 .con-tbody-item .item-box{padding: 52px 28px;} .templete-con13 .con-tbody-item .item-body .item-title{font-size: 22px;line-height: 32px;padding: 10px 0;padding-left: 0px;} .templete-con13 .con-tbody-item .item-body .item-icon{width: 52px;height: 52px;} .templete-con13 .con-tbody-item .item-body .item-desc{font-size: 16px;margin-top: 18px;line-height: 28px;} } @media screen and (max-width:1259px) { .templete-con13 .con-title{font-size: 28px;line-height: 44px;} .templete-con13 .con-text{font-size: 16px;line-height: 28px;margin-top: 16px;} .templete-con13 .con-tbody{padding-top: 32px;} .templete-con13 .con-tbody .con-tbody-list{margin-left: -10px;margin-right: -10px;} .templete-con13 .con-tbody .con-tbody-item{width: 50%;padding: 0 10px;margin-bottom: 20px;} .templete-con13 .con-tbody-item .item-box{padding: 44px 20px;} .templete-con13 .con-tbody-item .item-body .item-title{font-size: 20px;line-height: 30px;padding: 7px 0;padding-left: 0px;} .templete-con13 .con-tbody-item .item-body .item-icon{width: 44px;height: 44px;} .templete-con13 .con-tbody-item .item-body .item-desc{font-size: 15px;margin-top: 14px;line-height: 26px;} } @media screen and (max-width:991px) { .templete-con13 .con-title{font-size: 24px;line-height: 40px;} .templete-con13 .con-text{font-size: 15px;line-height: 26px;margin-top: 12px;} .templete-con13 .con-tbody{padding-top: 28px;} .templete-con13 .con-tbody .con-tbody-list{margin-left: -6px;margin-right: -6px;} .templete-con13 .con-tbody .con-tbody-item{width: 50%;padding: 0 6px;margin-bottom: 20px;} .templete-con13 .con-tbody-item .item-box{padding: 36px 15px;} .templete-con13 .con-tbody-item .item-body .item-title{font-size: 18px;line-height: 28px;padding: 6px 0;padding-left: 0px;} .templete-con13 .con-tbody-item .item-body .item-icon{width: 40px;height: 40px;} .templete-con13 .con-tbody-item .item-body .item-desc{font-size: 14px;margin-top: 10px;line-height: 24px;} } @media screen and (max-width:660px) { .templete-con13 .con-title{font-size: 20px;line-height: 36px;} .templete-con13 .con-text{font-size: 14px;line-height: 24px;margin-top: 10px;} .templete-con13 .con-tbody{padding-top: 20px;} .templete-con13 .con-tbody .con-tbody-list{margin-left: -6px;margin-right: -6px;} .templete-con13 .con-tbody .con-tbody-item{width: 50%;padding: 0 6px;margin-bottom: 20px;} .templete-con13 .con-tbody-item .item-box{padding: 28px 10px;} .templete-con13 .con-tbody-item .item-body .item-title{font-size: 16px;line-height: 26px;padding: 5px 0;padding-left: 0px;} .templete-con13 .con-tbody-item .item-body .item-icon{width: 36px;height: 36px;} .templete-con13 .con-tbody-item .item-body .item-desc{font-size: 14px;margin-top: 8px;line-height: 24px;} } @media screen and (max-width:420px) { .templete-con13 .con-title{font-size: 18px;line-height: 32px;} .templete-con13 .con-text{font-size: 13px;line-height: 22px;margin-top: 8px;} .templete-con13 .con-tbody .con-tbody-item{width: 100%;} } Industry-leading delivery capabilities ● Annual production capacity exceeds 5 million units, supporting OEM/ODM customization ● 48-hour sample response, 15-day rapid mass production Full-chain service advantages ● With twenty years of professional knowledge in sports protective equipment, I have a profound understanding of ergonomic requirements ● A professional after-sales team provides comprehensive support from on-demand support to after-sales maintenance .templete-con40 * { margin: 0px; padding: 0px; -moz-box-sizing: border-box; box-sizing: border-box; } .templete-con40{position: relative;width: 100%;font-family: Arial;} .templete-con40 .con-tbody{position: relative;width: 100%;} .templete-con40 .con-tbody .con-tbody-list{position: relative;font-size: 0;letter-spacing: 0;display: flex;flex-wrap: wrap;margin-left: -30px;margin-right: -30px;} .templete-con40 .con-tbody .con-tbody-item{position: relative;display: inline-block;vertical-align: top;width: 50%;padding: 0 30px; margin-bottom: 56px;} .templete-con40 .con-tbody-item .item-box{position: relative;width: 100%;height: 100%;} .templete-con40 .con-tbody-item .item-pic{position: relative;width: 100%;text-align: center;overflow: hidden;} .templete-con40 .con-tbody-item .item-pic img{display: inline-block;vertical-align: top;width: 100%;} .templete-con40 .con-tbody-item .item-box .item-body{position: relative;width: 100%;padding-top: 12px;} .templete-con40 .con-tbody-item .item-box .item-title{position: relative;width: 100%;font-size: 24px;font-weight: bold;color: #333333;line-height: 36px;word-wrap: break-word;word-break: break-all;} .templete-con40 .con-tbody-item .item-box .item-text{position: relative;width: 100%;font-size: 16px;color: #666;line-height: 24px;word-wrap: break-word;word-break: break-all;margin-top: 10px;} .templete-con40 .con-tbody-item .item-box .item-text a{color: #666;} .templete-con40 .con-tbody-item .item-box .item-text a:hover{color: #003280;} @media screen and (max-width:1459px) { .templete-con40 .con-tbody .con-tbody-list{margin-left: -24px;margin-right: -24px;} .templete-con40 .con-tbody .con-tbody-item{width: 50%;padding: 0 24px; margin-bottom: 48px;} .templete-con40 .con-tbody-item .item-box .item-body{padding-top: 12px;} .templete-con40 .con-tbody-item .item-box .item-title{font-size: 22px;line-height: 34px;} .templete-con40 .con-tbody-item .item-box .item-text{font-size: 16px;line-height: 24px;margin-top: 10px;} } @media screen and (max-width:1259px) { .templete-con40 .con-tbody .con-tbody-list{margin-left: -16px;margin-right: -16px;} .templete-con40 .con-tbody .con-tbody-item{width: 50%;padding: 0 16px; margin-bottom: 40px;} .templete-con40 .con-tbody-item .item-box .item-body{padding-top: 10px;} .templete-con40 .con-tbody-item .item-box .item-title{font-size: 20px;line-height: 32px;} .templete-con40 .con-tbody-item .item-box .item-text{font-size: 15px;line-height: 24px;margin-top: 8px;} } @media screen and (max-width:991px) { .templete-con40 .con-tbody .con-tbody-list{margin-left: -10px;margin-right: -10px;} .templete-con40 .con-tbody .con-tbody-item{width: 50%;padding: 0 10px; margin-bottom: 32px;} .templete-con40 .con-tbody-item .item-box .item-body{padding-top: 10px;} .templete-con40 .con-tbody-item .item-box .item-title{font-size: 18px;line-height: 30px;} .templete-con40 .con-tbody-item .item-box .item-text{font-size: 14px;line-height: 22px;margin-top: 8px;} } @media screen and (max-width:660px) { .templete-con40 .con-tbody .con-tbody-list{margin-left: -6px;margin-right: -6px;} .templete-con40 .con-tbody .con-tbody-item{width: 50%;padding: 0 6px; margin-bottom: 24px;} .templete-con40 .con-tbody-item .item-box .item-body{padding-top: 10px;} .templete-con40 .con-tbody-item .item-box .item-title{font-size: 16px;line-height: 26px;} .templete-con40 .con-tbody-item .item-box .item-text{font-size: 13px;line-height: 22px;margin-top: 8px;} } @media screen and (max-width:380px) {.templete-con40 .con-tbody .con-tbody-item{width: 100%;}} Our production base is located in Dongxinzhuang Industrial Park, Gucheng County, Hengshui City, Hebei Province. It boasts three modern standard factory buildings covering a total area of 5,000 square meters. We strictly adhere to the ISO9001 quality management system, establishing comprehensive process control from raw material selection to finished product shipment. Our efficient production lines encompass a complete process, including precision cutting, high-standard sewing, and compression molding. We strictly adhere to factory inspection standards, and our intelligent sorting warehouse ensures fast order response. .templete-con26 * { margin: 0px; padding: 0px; -moz-box-sizing: border-box; box-sizing: border-box; } .templete-con26{position: relative;width: 100%;background: #f5f5f5;padding: 75px 0;} .templete-con26 .con-tbody{position: relative;width: 100%;} .templete-con26 .con-tbody .con-tbody-box{position: relative;font-size: 0;letter-spacing: 0;width: 100%;text-align: center;} .templete-con26 .con-tbody-box .con-tbody-text{position: relative;width: 100%;max-width: 1180px;margin: 0 auto;font-size: 24px;color: #666;line-height: 48px;text-align: center;} .templete-con26 .con-tbody-box .con-tbody-btn{position: relative;width: 100%;text-align: center;margin-top: 34px;} .templete-con26 .con-tbody-box .con-tbody-btn .btnn{position: relative;display: inline-block;vertical-align: top;min-width: 277px;padding: 10px 20px;line-height: 28px;font-size: 18px;color: #333;border: 2px solid #333;border-radius: 26px;} .templete-con26 .con-tbody-box .con-tbody-btn a.btnn:hover{background: #333;color: #fff;} @media screen and (max-width:1459px) { .templete-con26{padding: 66px 0;} .templete-con26 .con-tbody-box .con-tbody-text{font-size: 22px;line-height: 42px;} .templete-con26 .con-tbody-box .con-tbody-btn{margin-top: 30px;} .templete-con26 .con-tbody-box .con-tbody-btn .btnn{min-width: 264px;padding: 8px 18px;line-height: 28px;font-size: 18px;border-radius: 24px;} } @media screen and (max-width:1259px) { .templete-con26{padding: 56px 0;} .templete-con26 .con-tbody .con-tbody-box{padding: 0 20px;} .templete-con26 .con-tbody-box .con-tbody-text{font-size: 20px;line-height: 36px;} .templete-con26 .con-tbody-box .con-tbody-btn{margin-top: 26px;} .templete-con26 .con-tbody-box .con-tbody-btn .btnn{min-width: 252px;padding: 6px 16px;line-height: 28px;font-size: 16px;border-radius: 22px;} } @media screen and (max-width:991px) { .templete-con26{padding: 46px 0;} .templete-con26 .con-tbody-box .con-tbody-text{font-size: 18px;line-height: 30px;} .templete-con26 .con-tbody-box .con-tbody-btn{margin-top: 20px;} .templete-con26 .con-tbody-box .con-tbody-btn .btnn{min-width: 240px;padding: 5px 14px;line-height: 28px;font-size: 15px;border-radius: 21px;} } @media screen and (max-width:660px) { .templete-con26{padding: 36px 0;} .templete-con26 .con-tbody-box .con-tbody-text{font-size: 16px;line-height: 28px;} .templete-con26 .con-tbody-box .con-tbody-btn{margin-top: 16px;} .templete-con26 .con-tbody-box .con-tbody-btn .btnn{min-width: 220px;padding: 4px 12px;line-height: 26px;font-size: 14px;border-radius: 19px;} } @media screen and (max-width:420px) { .templete-con26 .con-tbody-box .con-tbody-btn .btnn{min-width: 80px;padding: 4px 12px;line-height: 26px;font-size: 14px;border-radius: 19px;} } Still struggling to balance quality and affordability in sports protective gear? Laiyue Huanqiu offers factory-direct supply, internationally certified quality, and factory-direct pricing, ensuring a stable supply of high-quality goods at the most competitive prices. Contact us now for a personalized wholesale quote! Contact Us Now! .templete-con12 * { margin: 0px; padding: 0px; -moz-box-sizing: border-box; box-sizing: border-box; } .templete-con12{position: relative;width: 100%;} .templete-con12 .con-title{font-size: 34px;font-weight: bold;color: #333333;line-height: 54px;text-align: center;text-transform: uppercase;} .templete-con12 .con-text{font-size: 20px;text-align: center;color: #666666;line-height: 32px;margin-top: 20px;} .templete-con12 .con-tbody{position: relative;width: 100%;padding-top: 46px;} .templete-con12 .con-tbody .con-tbody-list{position: relative;font-size: 0;letter-spacing: 0;margin-left: -15px;margin-right: -15px;display: flex;flex-wrap: wrap;} .templete-con12 .con-tbody .con-tbody-item{display: inline-block;vertical-align: top;width: 33.33333%;padding: 0 15px;margin-bottom: 20px;position: relative;box-sizing: border-box;} .templete-con12 .con-tbody-item .item-box{position: relative;width: 100%;height: 100%;padding: 41px 40px 46px;background-color: #F7F8FA;box-sizing: border-box;} /* .templete-con12 .con-tbody-item .item-box::before{position: absolute;content: "";right: 30px;bottom: 33px;width: 170px;height: 169px;background: url(/admin_upload/customer_template/img/con12-bgi.webp) no-repeat center center;background-size: 100% 100%;} */ .templete-con12 .con-tbody-item .item-box .item-icon{position: relative;width: 100%;text-align: left;} .templete-con12 .con-tbody-item .item-box .item-icon img{display: inline-block;vertical-align: top;width: 100%;max-width: 56px;} .templete-con12 .con-tbody-item .item-body{position: relative;width: 100%;text-align: left;padding-top:32px;} .templete-con12 .con-tbody-item .item-body .item-title{font-size: 24px;text-transform: uppercase;font-weight: 600;color: #333333;line-height: 36px;} .templete-con12 .con-tbody-item .item-body .item-desc{font-size: 16px;margin-top: 12px;color: #666666;line-height: 30px;} @media screen and (max-width:1459px) { .templete-con12 .con-title{font-size: 32px;line-height: 50px;} .templete-con12 .con-text{font-size: 18px;line-height: 30px;margin-top: 18px;} .templete-con12 .con-tbody{padding-top: 40px;} .templete-con12 .con-tbody .con-tbody-list{margin-left: -8px;margin-right: -8px;} .templete-con12 .con-tbody .con-tbody-item{width: 33.33333%;padding: 0 8px;margin-bottom: 20px;} .templete-con12 .con-tbody-item .item-box{padding: 36px 28px 40px;} .templete-con12 .con-tbody-item .item-box::before{right: 28px;bottom: 28px;width: 150px;height: 150px;} .templete-con12 .con-tbody-item .item-box .item-icon img{max-width: 52px;} .templete-con12 .con-tbody-item .item-body{padding-top:28px;} .templete-con12 .con-tbody-item .item-body .item-title{font-size: 22px;line-height: 32px;} .templete-con12 .con-tbody-item .item-body .item-desc{font-size: 16px;margin-top: 10px;line-height: 28px;} } @media screen and (max-width:1259px) { .templete-con12 .con-title{font-size: 28px;line-height: 44px;} .templete-con12 .con-text{font-size: 16px;line-height: 28px;margin-top: 16px;} .templete-con12 .con-tbody{padding-top: 32px;} .templete-con12 .con-tbody .con-tbody-list{margin-left: -5px;margin-right: -5px;} .templete-con12 .con-tbody .con-tbody-item{width: 33.33333%;padding: 0 5px;margin-bottom: 20px;} .templete-con12 .con-tbody-item .item-box{padding: 30px 15px 32px;} .templete-con12 .con-tbody-item .item-box::before{right: 24px;bottom: 24px;width: 136px;height: 136px;} .templete-con12 .con-tbody-item .item-box .item-icon img{max-width: 48px;} .templete-con12 .con-tbody-item .item-body{padding-top:24px;} .templete-con12 .con-tbody-item .item-body .item-title{font-size: 20px;line-height: 30px;} .templete-con12 .con-tbody-item .item-body .item-desc{font-size: 15px;margin-top: 8px;line-height: 26px;} } @media screen and (max-width:991px) { .templete-con12 .con-title{font-size: 24px;line-height: 40px;} .templete-con12 .con-text{font-size: 15px;line-height: 26px;margin-top: 12px;} .templete-con12 .con-tbody{padding-top: 28px;} .templete-con12 .con-tbody .con-tbody-list{margin-left: -15px;margin-right: -15px;} .templete-con12 .con-tbody .con-tbody-item{width: 50%;padding: 0 15px;margin-bottom: 20px;} .templete-con12 .con-tbody-item .item-box{padding: 24px 15px 28px;} .templete-con12 .con-tbody-item .item-box::before{right: 20px;bottom: 20px;width: 136px;height: 136px;} .templete-con12 .con-tbody-item .item-box .item-icon img{max-width: 48px;} .templete-con12 .con-tbody-item .item-body{padding-top:20px;} .templete-con12 .con-tbody-item .item-body .item-title{font-size: 18px;line-height: 28px;} .templete-con12 .con-tbody-item .item-body .item-desc{font-size: 14px;margin-top: 8px;line-height: 24px;} } @media screen and (max-width:660px) { .templete-con12 .con-title{font-size: 20px;line-height: 36px;} .templete-con12 .con-text{font-size: 14px;line-height: 24px;margin-top: 10px;} .templete-con12 .con-tbody{padding-top: 24px;} .templete-con12 .con-tbody .con-tbody-list{margin-left: -6px;margin-right: -6px;} .templete-con12 .con-tbody .con-tbody-item{width: 50%;padding: 0 6px;margin-bottom: 20px;} .templete-con12 .con-tbody-item .item-box{padding: 20px 10px 24px;} .templete-con12 .con-tbody-item .item-box::before{right: 16px;bottom: 16px;width: 110px;height: 110px;} .templete-con12 .con-tbody-item .item-box .item-icon img{max-width: 42px;} .templete-con12 .con-tbody-item .item-body{padding-top:16px;} .templete-con12 .con-tbody-item .item-body .item-title{font-size: 16px;line-height: 28px;} .templete-con12 .con-tbody-item .item-body .item-desc{font-size: 14px;margin-top: 8px;line-height: 24px;} } @media screen and (max-width:420px) { .templete-con12 .con-title{font-size: 18px;line-height: 32px;} .templete-con12 .con-text{font-size: 13px;line-height: 22px;margin-top: 8px;} .templete-con12 .con-tbody .con-tbody-item{width: 100%;} }
.templete-con74 * { margin: 0px; padding: 0px; -moz-box-sizing: border-box; box-sizing: border-box; } .templete-con74{position: relative;width: 100%;} .templete-con74 .con-tbody{position: relative;width: 100%;} .templete-con74 .con-tbody .con-tbody-box{position: relative;font-size: 0;letter-spacing: 0;display: flex;flex-wrap: wrap;justify-content: space-between; } .templete-con74 .con-tbody .con-tbody-left{position: relative;width: 48.5%;} .templete-con74 .con-tbody .con-tbody-right{position: relative;width: 49.25%;} .templete-con74 .con-tbody .con-tbody-name{position: relative;display: block;width: 100%;padding-left: 30px;font-size: 18px;line-height: 24px;color: #656BFF;margin-bottom: 22px;font-weight: bold;} .templete-con74 .con-tbody .con-tbody-name::before{position: absolute;left: 0px;top: 2px;content: "";display: block;width: 4px;height: 16px;background: #656BFF;transform: rotate(15deg);} .templete-con74 .con-tbody .con-tbody-name::after{position: absolute;left: 7px;top: 2px;content: "";display: block;width: 4px;height: 16px;background: #656BFF;transform: rotate(15deg);} .templete-con74 .con-tbody .con-tbody-title{position: relative;display: block;width: 100%;font-size: 36px;line-height: 48px;color: #333;font-weight: bold;} .templete-con74 .con-tbody .con-tbody-text{position: relative;width: 100%;margin-top: 30px;font-size: 16px;line-height: 28px;color: #666;} .templete-con74 .con-tbody .con-tbody-img{position: relative;width: 100%;text-align: center;} .templete-con74 .con-tbody .con-tbody-img img{display: inline-block;vertical-align: top;width: 100%;} @media screen and (max-width:1459px) { .templete-con74{padding: 28px 0;} .templete-con74 .con-tbody .con-tbody-left{width: 48.5%;} .templete-con74 .con-tbody .con-tbody-right{width: 49.25%;} .templete-con74 .con-tbody .con-tbody-name{padding-left: 28px;font-size: 18px;line-height: 24px;margin-bottom: 18px;} .templete-con74 .con-tbody .con-tbody-name::before{top: 2px;width: 4px;height: 16px;} .templete-con74 .con-tbody .con-tbody-name::after{left: 7px;top: 2px;width: 4px;height: 16px;} .templete-con74 .con-tbody .con-tbody-title{font-size: 32px;line-height: 44px;} .templete-con74 .con-tbody .con-tbody-text{margin-top: 26px;font-size: 16px;line-height: 28px;} } @media screen and (max-width:1259px) { .templete-con74{padding: 24px 0;} .templete-con74 .con-tbody .con-tbody-left{width: 49%;} .templete-con74 .con-tbody .con-tbody-right{width: 49%;} .templete-con74 .con-tbody .con-tbody-name{padding-left: 26px;font-size: 16px;line-height: 22px;margin-bottom: 16px;} .templete-con74 .con-tbody .con-tbody-name::before{top: 2px;width: 4px;height: 14px;} .templete-con74 .con-tbody .con-tbody-name::after{left: 6px;top: 2px;width: 4px;height: 16px;} .templete-con74 .con-tbody .con-tbody-title{font-size: 28px;line-height: 40px;} .templete-con74 .con-tbody .con-tbody-text{margin-top: 20px;font-size: 15px;line-height: 26px;} } @media screen and (max-width:991px) { .templete-con74{padding: 20px 0;} .templete-con74 .con-tbody .con-tbody-left{width: 100%;} .templete-con74 .con-tbody .con-tbody-right{width: 100%;margin-top: 16px;} .templete-con74 .con-tbody .con-tbody-name{padding-left: 24px;font-size: 16px;line-height: 22px;margin-bottom: 16px;} .templete-con74 .con-tbody .con-tbody-name::before{top: 2px;width: 4px;height: 14px;} .templete-con74 .con-tbody .con-tbody-name::after{left: 6px;top: 2px;width: 4px;height: 16px;} .templete-con74 .con-tbody .con-tbody-title{font-size: 26px;line-height: 38px;} .templete-con74 .con-tbody .con-tbody-text{margin-top: 16px;font-size: 15px;line-height: 26px;} } @media screen and (max-width: 720px) { .templete-con74{padding: 16px 0;} .templete-con74 .con-tbody .con-tbody-left{width: 100%;} .templete-con74 .con-tbody .con-tbody-right{width: 100%;margin-top: 16px;} .templete-con74 .con-tbody .con-tbody-name{padding-left: 24px;font-size: 15px;line-height: 22px;margin-bottom: 16px;} .templete-con74 .con-tbody .con-tbody-name::before{top: 2px;width: 4px;height: 14px;} .templete-con74 .con-tbody .con-tbody-name::after{left: 6px;top: 2px;width: 4px;height: 16px;} .templete-con74 .con-tbody .con-tbody-title{font-size: 20px;line-height: 32px;} .templete-con74 .con-tbody .con-tbody-text{margin-top: 14px;font-size: 14px;line-height: 24px;} } About Us Danyang Fucheng Tools Co., Ltd – Professional Manufacturer of Precision Drill Bits Danyang Fucheng Tools Co., Ltd is located in the beautiful and fertile Yangtze River Delta, specifically in Danyang City, Jiangsu Province, China. With only 15 kilometers east of Changzhou Airport, and proximity to the Yangtze River Golden Port, Shanghai-Nanjing Expressway, and National Road 312, our location provides fast and convenient transportation access. We are only 2.5 hours from Shanghai Port, one of the busiest international ports in China—ensuring efficient logistics and timely export shipping. Since establishment, Fucheng Tools has been committed to the research, development, and manufacturing of high-performance drill bits for various industrial and construction applications. Main Products We specialize in the production of a wide range of high-quality drill bits, including: Masonry Drill Bits – Designed for high-strength concrete and stone drilling High-Speed Steel (HSS) Twist Drill Bits – Suitable for metalworking and general-purpose drilling Grinding Drill Bits – Precision-machined for accuracy and performance Straight Shank Drill Bits – Easy to mount and ideal for electric hand tools Taper Shank Drill Bits – Engineered for heavy-duty industrial machinery Our drill bits are available in various sizes and standards, supporting OEM/ODM customization for global markets. Technical Strength & Quality Assurance Fucheng Tools is equipped with advanced production equipment, a strong technical team, and a scientific and complete quality management system. Our manufacturing process adheres to strict quality control procedures, ensuring: Stable product performance High dimensional accuracy Excellent durability Over 95% product qualification rate We have built a solid reputation in the industry for consistent quality and reliability. Global Market & Service Philosophy Backed by years of experience and a customer-centric approach, our products are widely exported to Europe, North America, South America, Southeast Asia, and the Middle East. We uphold the principles of: "Develop through technology, survive through quality" as our development philosophy "Quality First, Reputation First, Customer Supreme" as our core service tenet Fucheng Tools welcomes partners, distributors, importers, and OEM clients from all over the world to visit our factory for guidance, cooperation, and long-term business development. .templete-con3 * { margin: 0px; padding: 0px; -moz-box-sizing: border-box; box-sizing: border-box; } .templete-con3{position: relative;width: 100%;} .templete-con3 .con-title{font-size: 34px;font-weight: bold;color: #333333;line-height: 54px;text-align: center;text-transform: uppercase;} .templete-con3 .con-text{font-size: 20px;text-align: center;color: #666666;line-height: 32px;margin-top: 20px;} .templete-con3 .con-tbody{position: relative;width: 100%;padding-top: 56px;} .templete-con3 .con-tbody .con-tbody-list{position: relative;font-size: 0;letter-spacing: 0;margin-left: -13px;margin-right: -13px;display: flex;flex-wrap: wrap;} .templete-con3 .con-tbody .con-tbody-item{position: relative;display: inline-block;vertical-align: top;width: 25%;padding: 0 13px;margin-bottom: 26px;box-sizing: border-box;} .templete-con3 .con-tbody-item .item-box{position: relative;width: 100%;height: 100%; background: #F7F8FA;} .templete-con3 .con-tbody-item .item-box .item-pic{position: relative;width: 100%;text-align: center;overflow: hidden;} .templete-con3 .con-tbody-item .item-box .item-pic img{display: inline-block;vertical-align: top;width: 100%;} .templete-con3 .con-tbody-item .item-box .item-body{position: relative;width: 100%;padding: 20px 24px 18px;} .templete-con3 .con-tbody-item .item-body .item-title{font-size: 20px;font-weight: bold;color: #333333;line-height: 28px;text-overflow: ellipsis;overflow: hidden;white-space: nowrap;} .templete-con3 .con-tbody-item .item-body .item-desc{font-size: 16px;margin-top: 6px;color: #666666;line-height: 24px;overflow: hidden;} @media screen and (max-width:1459px) { .templete-con3 .con-title{font-size: 32px;line-height: 50px;} .templete-con3 .con-text{font-size: 18px;line-height: 30px;margin-top: 18px;} .templete-con3 .con-tbody{padding-top: 48px;} .templete-con3 .con-tbody .con-tbody-list{margin-left: -8px;margin-right: -8px;} .templete-con3 .con-tbody .con-tbody-item{width: 25%;padding: 0 8px;margin-bottom: 24px;} .templete-con3 .con-tbody-item .item-box .item-body{padding: 18px 20px 16px;} .templete-con3 .con-tbody-item .item-body .item-title{font-size: 18px;line-height: 28px;} .templete-con3 .con-tbody-item .item-body .item-desc{font-size: 15px;margin-top: 6px;line-height: 24px;} } @media screen and (max-width:1259px) { .templete-con3 .con-title{font-size: 28px;line-height: 44px;} .templete-con3 .con-text{font-size: 16px;line-height: 28px;margin-top: 16px;} .templete-con3 .con-tbody{padding-top: 42px;} .templete-con3 .con-tbody .con-tbody-list{margin-left: -5px;margin-right: -5px;} .templete-con3 .con-tbody .con-tbody-item{width: 25%;padding: 0 5px;margin-bottom: 20px;} .templete-con3 .con-tbody-item .item-box .item-body{padding: 16px 18px 14px;} .templete-con3 .con-tbody-item .item-body .item-title{font-size: 16px;line-height: 28px;} .templete-con3 .con-tbody-item .item-body .item-desc{font-size: 14px;margin-top: 6px;line-height: 22px;} } @media screen and (max-width:991px) { .templete-con3 .con-title{font-size: 24px;line-height: 40px;} .templete-con3 .con-text{font-size: 15px;line-height: 26px;margin-top: 12px;} .templete-con3 .con-tbody{padding-top: 36px;} .templete-con3 .con-tbody .con-tbody-list{margin-left: -10px;margin-right: -10px;} .templete-con3 .con-tbody .con-tbody-item{width: 33.3333333%;padding: 0 10px;margin-bottom: 20px;} .templete-con3 .con-tbody-item .item-box .item-body{padding: 16px 15px 14px;} .templete-con3 .con-tbody-item .item-body .item-title{font-size: 16px;line-height: 28px;} .templete-con3 .con-tbody-item .item-body .item-desc{font-size: 14px;margin-top: 6px;line-height: 22px;} } @media screen and (max-width:680px) { .templete-con3 .con-title{font-size: 20px;line-height: 36px;} .templete-con3 .con-text{font-size: 14px;line-height: 24px;margin-top: 10px;} .templete-con3 .con-tbody{padding-top: 30px;} .templete-con3 .con-tbody .con-tbody-list{margin-left: -10px;margin-right: -10px;} .templete-con3 .con-tbody .con-tbody-item{width: 50%;padding: 0 10px;margin-bottom: 20px;} .templete-con3 .con-tbody-item .item-box .item-body{padding: 12px 15px;} .templete-con3 .con-tbody-item .item-body .item-title{font-size: 16px;line-height: 28px;} .templete-con3 .con-tbody-item .item-body .item-desc{font-size: 14px;margin-top: 6px;line-height: 22px;} } @media screen and (max-width:420px) { .templete-con3 .con-title{font-size: 18px;line-height: 32px;} .templete-con3 .con-text{font-size: 13px;line-height: 22px;margin-top: 8px;} .templete-con3 .con-tbody{padding-top: 24px;} .templete-con3 .con-tbody .con-tbody-list{margin-left: -5px;margin-right: -5px;} .templete-con3 .con-tbody .con-tbody-item{width: 100%;padding: 0 5px;margin-bottom: 20px;} .templete-con3 .con-tbody-item .item-box .item-body{padding: 8px 10px;} .templete-con3 .con-tbody-item .item-body .item-title{font-size: 16px;line-height: 28px;} .templete-con3 .con-tbody-item .item-body .item-desc{font-size: 14px;margin-top: 6px;line-height: 22px;} } Exhibition
Jiangsu Pengying Auto Parts CO., LTD is a professional manufacturer & Exporter of Auto parts in China. Our own factory is located in Qingcheng Industry Park, Changzhou City, which covers an area of 12,000 square meters with hundreds of workers. The company gathers mold design and development, plastic material producing, injection procedure, vacuum plating, anti-fog paint, and lamp assembling together. Our main products include Convex mirror glass, Rearview mirror, Auto lamps, Bumper, Grilles, Car side pedal, etc. Our factory passed the TS19469 quality management system and passed Emark successfully. Establishing long-time business relationships with domestic OEM auto parts manufacturers and overseas clients of Europe, the US, and the Middle East, we earn a high reputation. Product quality and customer satisfaction are our priorities, and we are committed to consistently providing our customers with the highest levels of service. We sincerely welcome all customers to visit our factory for long-term cooperation. .templete-con2 * { margin: 0px; padding: 0px; -moz-box-sizing: border-box; box-sizing: border-box; } .templete-con2{position: relative;width: 100%;} .templete-con2 .con-title{font-size: 34px;font-weight: bold;color: #333333;line-height: 54px;text-align: center;text-transform: uppercase;} .templete-con2 .con-text{font-size: 20px;text-align: center;color: #666666;line-height: 32px;margin-top: 20px;} .templete-con2 .con-tbody{position: relative;width: 100%;padding-top: 56px;} .templete-con2 .con-tbody .con-tbody-list{position: relative;font-size: 0;letter-spacing: 0;margin-left: -35px;margin-right: -35px;display: flex;flex-wrap: wrap;} .templete-con2 .con-tbody .con-tbody-item{position: relative;display: inline-block;vertical-align: top;width: 33.333333333%;padding: 0 35px;margin-bottom: 50px;box-sizing: border-box;} .templete-con2 .con-tbody-item .item-box{position: relative;width: 100%;height: 100%; background: #F7F8FA;} .templete-con2 .con-tbody-item .item-box .item-pic{position: relative;width: 100%;text-align: center;overflow: hidden;} .templete-con2 .con-tbody-item .item-box .item-pic img{display: inline-block;vertical-align: top;width: 100%;} .templete-con2 .con-tbody-item .item-box .item-body{position: relative;width: 100%;padding: 20px 26px 22px;} .templete-con2 .con-tbody-item .item-body .item-title{font-size: 20px;font-weight: bold;color: #333333;line-height: 28px;text-overflow: ellipsis;overflow: hidden;white-space: nowrap;} .templete-con2 .con-tbody-item .item-body .item-desc{font-size: 16px;margin-top: 6px;color: #666666;line-height: 24px;overflow: hidden;} @media screen and (max-width:1459px) { .templete-con2 .con-title{font-size: 32px;line-height: 50px;} .templete-con2 .con-text{font-size: 18px;line-height: 30px;margin-top: 18px;} .templete-con2 .con-tbody{padding-top: 48px;} .templete-con2 .con-tbody .con-tbody-list{margin-left: -24px;margin-right: -24px;} .templete-con2 .con-tbody .con-tbody-item{width: 33.333333333%;padding: 0 28px;margin-bottom: 42px;} .templete-con2 .con-tbody-item .item-box .item-body{padding: 18px 22px 20px;} .templete-con2 .con-tbody-item .item-body .item-title{font-size: 18px;line-height: 28px;} .templete-con2 .con-tbody-item .item-body .item-desc{font-size: 15px;margin-top: 6px;line-height: 24px;} } @media screen and (max-width:1259px) { .templete-con2 .con-title{font-size: 28px;line-height: 44px;} .templete-con2 .con-text{font-size: 16px;line-height: 28px;margin-top: 16px;} .templete-con2 .con-tbody{padding-top: 42px;} .templete-con2 .con-tbody .con-tbody-list{margin-left: -10px;margin-right: -10px;} .templete-con2 .con-tbody .con-tbody-item{width: 33.333333333%;padding: 0 10px;margin-bottom: 36px;} .templete-con2 .con-tbody-item .item-box .item-body{padding: 16px 18px 16px;} .templete-con2 .con-tbody-item .item-body .item-title{font-size: 16px;line-height: 28px;} .templete-con2 .con-tbody-item .item-body .item-desc{font-size: 14px;margin-top: 6px;line-height: 22px;} } @media screen and (max-width:991px) { .templete-con2 .con-title{font-size: 24px;line-height: 40px;} .templete-con2 .con-text{font-size: 15px;line-height: 26px;margin-top: 12px;} .templete-con2 .con-tbody{padding-top: 36px;} .templete-con2 .con-tbody .con-tbody-list{margin-left: -15px;margin-right: -15px;} .templete-con2 .con-tbody .con-tbody-item{width: 50%;padding: 0 15px;margin-bottom: 30px;} .templete-con2 .con-tbody-item .item-box .item-body{padding: 16px 18px 16px;} .templete-con2 .con-tbody-item .item-body .item-title{font-size: 16px;line-height: 28px;} .templete-con2 .con-tbody-item .item-body .item-desc{font-size: 14px;margin-top: 6px;line-height: 22px;} } @media screen and (max-width:720px) { .templete-con2 .con-title{font-size: 20px;line-height: 36px;} .templete-con2 .con-text{font-size: 14px;line-height: 24px;margin-top: 10px;} .templete-con2 .con-tbody{padding-top: 30px;} .templete-con2 .con-tbody .con-tbody-list{margin-left: -8px;margin-right: -8px;} .templete-con2 .con-tbody .con-tbody-item{width: 50%;padding: 0 8px;margin-bottom: 24px;} .templete-con2 .con-tbody-item .item-box .item-body{padding: 12px 15px;} .templete-con2 .con-tbody-item .item-body .item-title{font-size: 16px;line-height: 28px;} .templete-con2 .con-tbody-item .item-body .item-desc{font-size: 14px;margin-top: 6px;line-height: 22px;} } @media screen and (max-width:420px) { .templete-con2 .con-title{font-size: 18px;line-height: 32px;} .templete-con2 .con-text{font-size: 13px;line-height: 22px;margin-top: 8px;} .templete-con2 .con-tbody{padding-top: 24px;} .templete-con2 .con-tbody .con-tbody-list{margin-left: -5px;margin-right: -5px;} .templete-con2 .con-tbody .con-tbody-item{width: 100%;padding: 0 5px;margin-bottom: 20px;} .templete-con2 .con-tbody-item .item-box .item-body{padding: 8px 10px;} .templete-con2 .con-tbody-item .item-body .item-title{font-size: 16px;line-height: 28px;} .templete-con2 .con-tbody-item .item-body .item-desc{font-size: 14px;margin-top: 6px;line-height: 22px;} }
Sign In
Username :
Password :