'); background-size: cover; background-position: center; color: white; padding: 160px 0 80px; text-align: center; } .hero h1 { font-size: 3.5rem; margin-bottom: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); } .hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; } .hero-btns { display: flex; justify-content: center; gap: 20px; margin-top: 30px; } .btn-secondary { background: transparent; border: 2px solid white; } .btn-secondary:hover { background: white; color: var(--primary); } /* 关于我们 */ .about-content { display: flex; align-items: center; gap: 50px; } .about-text { flex: 1; } .about-text h3 { font-size: 1.8rem; color: var(--primary); margin-bottom: 20px; } .about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 30px; } .feature-item { display: flex; align-items: flex-start; } .feature-icon { background: var(--primary); color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; flex-shrink: 0; } .feature-text h4 { margin-bottom: 8px; } .about-image { flex: 1; position: relative; overflow: hidden; border-radius: 10px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .about-image::before { content: ''; display: block; padding-top: 80%; background: #e0e6ed; } /* 产品展示 */ .products { background: var(--light); } .product-filter { display: flex; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; gap: 10px; } .filter-btn { padding: 8px 20px; background: white; border: 1px solid #dee2e6; border-radius: 30px; cursor: pointer; transition: all 0.3s ease; } .filter-btn.active, .filter-btn:hover { background: var(--primary); color: white; border-color: var(--primary); } .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .product-image { height: 220px; background: #f1f5f9; display: flex; align-items: center; justify-content: center; padding: 20px; } .product-info { padding: 20px; } .product-info h3 { font-size: 1.2rem; margin-bottom: 10px; } .product-category { color: var(--accent); font-weight: 600; margin-bottom: 10px; display: block; } .product-features { list-style: none; margin: 15px 0; } .product-features li { margin-bottom: 8px; display: flex; align-items: flex-start; } .product-features li::before { content: '✓'; color: var(--accent); font-weight: bold; margin-right: 8px; } /* 公司优势 */ .advantages { background: linear-gradient(to right, var(--primary), var(--secondary)); color: white; } .advantages .section-title h2 { color: white; } .advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .advantage-card { background: rgba(255, 255, 255, 0.1); border-radius: 8px; padding: 30px; text-align: center; backdrop-filter: blur(5px); transition: transform 0.3s ease; } .advantage-card:hover { transform: translateY(-10px); } .advantage-icon { font-size: 3rem; margin-bottom: 20px; color: var(--accent); } /* 认证 */ .certifications { text-align: center; } .cert-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; margin-top: 40px; } .cert-logo { width: 120px; height: 120px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 15px rgba(0,0,0,0.1); padding: 20px; } .cert-name { font-weight: 600; margin-top: 15px; } /* 客户评价 */ .testimonials { background: var(--light); } .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .testimonial-card { background: white; border-radius: 8px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); position: relative; } .testimonial-card::before { content: '"'; position: absolute; top: 15px; left: 20px; font-size: 4rem; color: rgba(231, 76, 60, 0.1); font-family: Georgia, serif; } .testimonial-text { margin-bottom: 20px; font-style: italic; position: relative; z-index: 1; } .testimonial-author { display: flex; align-items: center; } .author-avatar { width: 50px; height: 50px; border-radius: 50%; background: #e0e6ed; margin-right: 15px; } /* 联系表单 */ .contact-wrapper { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; } .contact-info h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--primary); } .contact-details { margin-bottom: 30px; } .contact-item { display: flex; margin-bottom: 15px; } .contact-icon { width: 40px; height: 40px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; flex-shrink: 0; } .contact-form .form-group { margin-bottom: 20px; } .contact-form input, .contact-form textarea { width: 100%; padding: 12px 15px; border: 1px solid #dee2e6; border-radius: 4px; font-size: 1rem; } .contact-form textarea { min-height: 150px; resize: vertical; } /* 页脚 */ footer { background: var(--dark); color: white; padding: 60px 0 30px; } .footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 40px; } .footer-col h4 { font-size: 1.2rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--accent); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 10px; } .footer-links a { color: #adb5bd; text-decoration: none; transition: color 0.3s ease; } .footer-links a:hover { color: white; } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: #adb5bd; font-size: 0.9rem; } /* 响应式设计 */ @media (max-width: 992px) { .contact-wrapper { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 768px) { .nav-links { display: none; } .hero h1 { font-size: 2.5rem; } .about-content { flex-direction: column; } .footer-grid { grid-template-columns: 1fr; } }
Professional manufacturer of high-quality smart door locks, video surveillance systems, and home security products since 2010. We combine innovation with reliability to protect what matters most.
Your Trusted Security Partner Since 2010
Founded in 2010 and headquartered in Shenzhen, China, KC Tech has established itself as a leading manufacturer of smart security solutions. With our own R&D team and factory, we specialize in developing cutting-edge security products that combine advanced technology with user-friendly design.
Our commitment to quality and innovation has enabled us to serve clients worldwide, providing OEM and ODM services tailored to meet diverse market needs.
15,000+ sqm factory with advanced production lines
30+ engineers focused on innovative security solutions
Products exported to 50+ countries worldwide
OEM/ODM services with flexible customization
Advanced Security Solutions for Home and Business
Advanced fingerprint recognition technology with multiple access methods including PIN code, RFID card, and mechanical key backup.
1080p HD video with night vision, two-way audio, and motion detection alerts directly to your smartphone.
Professional-grade outdoor surveillance with 4K resolution, color night vision, and smart AI-powered person detection.
Advanced facial recognition technology with 3D sensing for enhanced security and contactless access.
Our Competitive Advantages
With our own 15,000+ sqm factory equipped with advanced production lines, we maintain strict quality control throughout the manufacturing process.
Our dedicated team of 30+ engineers continuously develops innovative security solutions with cutting-edge technology.
Rigorous testing procedures ensure our products meet international standards and perform reliably in all conditions.
Our products are certified with CE, FCC, RoHS, and more, ensuring worldwide compliance and market access.
Committed to Quality and Compliance
What Our Clients Say
"We've been working with KC Tech for three years now. Their smart locks have significantly enhanced our product line. The quality is consistent and their ODM team is very responsive to our customization requests."
"The video doorbells we ordered exceeded our expectations. The image quality is excellent and the installation was straightforward. Their team provided great support throughout the entire process."
"As a European distributor, compliance is crucial for us. KC Tech's products consistently meet CE requirements and their documentation is always complete and accurate. A reliable partner for security products."
Get in Touch for Inquiries and Quotes
Whether you're interested in our products, need technical specifications, or want to discuss OEM/ODM opportunities, our team is ready to assist you.
Building 8, Tech Innovation Park, Shenzhen, Guangdong, China 518000
+86 755 1234 5678
Monday-Friday: 8:30 AM - 6:00 PM (GMT+8)