'); background-size: cover; background-position: center; color: white; height: 100vh; display: flex; align-items: center; text-align: center; } .hero-content { max-width: 800px; margin: 0 auto; padding-top: 60px; } .hero h1 { font-size: 3.5rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; } .hero p { font-size: 1.5rem; margin-bottom: 30px; } .hero-btns { display: flex; justify-content: center; gap: 20px; margin-top: 30px; } .btn-secondary { background: transparent; border: 2px solid #fff; } .btn-secondary:hover { background: rgba(255,255,255,0.1); } /* 关于我们 */ .about { background-color: var(--light); } .about-content { display: flex; gap: 50px; align-items: center; } .about-text { flex: 1; } .about-text h3 { font-size: 2rem; color: var(--primary); margin-bottom: 20px; } .about-text p { margin-bottom: 20px; font-size: 1.1rem; } .about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .feature-item { display: flex; align-items: flex-start; gap: 15px; } .feature-icon { background: var(--primary); color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.5rem; } .about-img { flex: 1; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); background-color: #ccc; height: 400px; display: flex; align-items: center; justify-content: center; color: #999; font-size: 1.2rem; } /* 产品展示 */ .products { background-color: #fff; } .product-categories { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; } .category-btn { padding: 8px 20px; background: #f1f1f1; border: none; border-radius: 30px; cursor: pointer; font-weight: 600; transition: all 0.3s; } .category-btn.active, .category-btn:hover { background: var(--secondary); color: white; } .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .product-img { height: 200px; background-color: #f8f9fa; display: flex; align-items: center; justify-content: center; color: #ccc; } .product-info { padding: 20px; } .product-info h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--primary); } .product-info p { color: var(--gray); margin-bottom: 15px; } /* 公司优势 */ .advantages { background: linear-gradient(to bottom, #0a4a7a, #0d5c99); color: white; } .advantages .section-title h2, .advantages .section-title p { 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); padding: 30px; border-radius: 10px; text-align: center; backdrop-filter: blur(10px); transition: transform 0.3s; } .advantage-card:hover { transform: translateY(-10px); } .advantage-icon { font-size: 3rem; margin-bottom: 20px; color: var(--secondary); } .advantage-card h3 { font-size: 1.5rem; margin-bottom: 15px; } /* 生产设施 */ .facilities .section-title { margin-bottom: 40px; } .facility-content { display: flex; gap: 50px; align-items: center; } .facility-text { flex: 1; } .facility-text h3 { font-size: 2rem; color: var(--primary); margin-bottom: 20px; } .facility-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .stat-item { text-align: center; } .stat-value { font-size: 2.5rem; font-weight: 700; color: var(--secondary); } .stat-label { font-size: 1.1rem; color: var(--gray); } .facility-img { flex: 1; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); background-color: #ccc; height: 400px; display: flex; align-items: center; justify-content: center; color: #999; font-size: 1.2rem; } /* 认证 */ .certifications { background-color: var(--light); } .cert-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; } .cert-item { background: white; padding: 30px; border-radius: 10px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); min-width: 200px; } .cert-icon { font-size: 3rem; color: var(--primary); margin-bottom: 15px; } .cert-item h3 { font-size: 1.2rem; color: var(--dark); } /* 联系 */ .contact { background: url('data:image/svg+xml;utf8,'); background-size: 200px; } .contact-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 50px; } .contact-info { display: flex; flex-direction: column; gap: 25px; } .contact-item { display: flex; gap: 15px; align-items: flex-start; } .contact-icon { background: var(--primary); color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.2rem; } .contact-text h3 { font-size: 1.3rem; margin-bottom: 5px; color: var(--primary); } .contact-form { background: white; padding: 40px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; } .form-control { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; } textarea.form-control { min-height: 150px; resize: vertical; } /* 页脚 */ footer { background: var(--dark); color: white; padding: 60px 0 30px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-column h3 { font-size: 1.5rem; margin-bottom: 20px; color: var(--secondary); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 10px; } .footer-links a { color: #ddd; text-decoration: none; transition: color 0.3s; } .footer-links a:hover { color: var(--secondary); } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; color: #aaa; } /* 响应式设计 */ @media (max-width: 992px) { .hero h1 { font-size: 2.8rem; } .about-content, .facility-content { flex-direction: column; } .about-img, .facility-img { width: 100%; } } @media (max-width: 768px) { section { padding: 60px 0; } .hero h1 { font-size: 2.2rem; } .hero p { font-size: 1.2rem; } .section-title h2 { font-size: 2rem; } .nav-links { display: none; } .hero-btns { flex-direction: column; align-items: center; gap: 15px; } }
Quality Hand Tools, Power Tools & Hardware Solutions
Yiwu Qiyue Tools Co., Ltd. is a professional manufacturer specializing in high-quality tools for industrial and home use
Founded in 2012 and located in Yiwu City, China, Yiwu Qiyue Tools Co., Ltd. has over a decade of experience in manufacturing high-quality hand tools, power tools, and hardware accessories.
We specialize in providing OEM and ODM services to clients worldwide, with a strong focus on quality control, innovative design, and competitive pricing.
Our 8,000 m² factory is equipped with advanced machinery and staffed by skilled technicians to ensure consistent product quality and timely delivery.
Rigorous QC process at every production stage
OEM/ODM services with flexible customization
Products exported to 50+ countries worldwide
Efficient production with on-time shipment
Discover our range of high-quality tools designed for professionals and DIY enthusiasts
Why global clients choose us as their reliable tool manufacturer
State-of-the-art production facilities with automated processes
Stringent quality inspection at every production stage
Innovative product development and design services
Products exported to 50+ countries worldwide
Modern manufacturing infrastructure ensuring high-quality output
Our 8,000 m² factory in Yiwu, Zhejiang Province is equipped with over 50 sets of advanced machinery including CNC machines, automated assembly lines, and precision testing equipment.
We maintain strict quality control throughout the production process, with dedicated QC teams overseeing each manufacturing stage.
Our commitment to quality and safety standards
Quality Management
Environmental Management
European Conformity
Safety Tested
Hazardous Substances
Get in touch with our team for inquiries or quotations
No. 123 Industrial Zone, Yiwu City, Zhejiang Province, China 322000
+86 579 8520 XXXX
Monday - Saturday: 8:00 AM - 6:00 PM (GMT+8)