'); background-size: cover; background-position: center; color: white; text-align: center; padding: 120px 20px; margin-bottom: 60px; } .hero h1 { font-size: 3rem; margin-bottom: 20px; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); } .hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; } .btn { display: inline-block; background-color: var(--secondary); color: white; padding: 12px 30px; border-radius: 4px; text-decoration: none; font-weight: 600; transition: background-color 0.3s; } .btn:hover { background-color: #c0392b; } /* 公司简介 */ .company-intro { display: flex; flex-wrap: wrap; align-items: center; margin-bottom: 80px; gap: 40px; } .intro-text { flex: 1; min-width: 300px; } .intro-text h2 { font-size: 2.5rem; margin-bottom: 20px; color: var(--primary); } .intro-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .stat-card { background-color: var(--light); padding: 20px; border-radius: 8px; box-shadow: 0 3px 10px rgba(0,0,0,0.08); } .stat-card h3 { font-size: 1.8rem; color: var(--primary); margin-bottom: 5px; } /* 产品展示 */ .section-title { text-align: center; margin-bottom: 50px; position: relative; } .section-title h2 { font-size: 2.5rem; color: var(--primary); display: inline-block; padding-bottom: 15px; position: relative; } .section-title h2::after { content: ''; position: absolute; width: 80px; height: 4px; background-color: var(--secondary); bottom: 0; left: 50%; transform: translateX(-50%); } .products { margin-bottom: 80px; } .product-categories { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 40px; } .category-btn { background-color: var(--light); border: 2px solid var(--primary); padding: 10px 25px; border-radius: 30px; cursor: pointer; transition: all 0.3s; font-weight: 500; } .category-btn.active, .category-btn:hover { background-color: var(--primary); color: white; } .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background-color: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: transform 0.3s; } .product-card:hover { transform: translateY(-10px); } .product-img { height: 200px; background-color: #f0f0f0; display: flex; align-items: center; justify-content: center; color: #999; font-weight: 600; } .product-info { padding: 20px; } .product-title { font-size: 1.2rem; margin-bottom: 10px; color: var(--dark); } .product-meta { display: flex; justify-content: space-between; margin-top: 15px; font-weight: 500; } .price { color: var(--secondary); font-weight: 700; } .moq { color: var(--primary); } /* 公司优势 */ .advantages { background-color: var(--light); padding: 80px 0; margin-bottom: 80px; } .advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .advantage-card { background-color: white; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; } .advantage-icon { width: 70px; height: 70px; background-color: rgba(74, 111, 165, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--primary); font-size: 1.5rem; } .advantage-card h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--primary); } /* 服务支持 */ .services { margin-bottom: 80px; } .service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .service-card { border: 1px solid #e0e0e0; border-radius: 8px; padding: 30px; text-align: center; } .service-card h3 { font-size: 1.4rem; margin-bottom: 20px; color: var(--primary); } .payment-methods { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 20px; } .payment-method { background-color: var(--light); padding: 8px 15px; border-radius: 4px; font-size: 0.9rem; } /* 联系表单 */ .contact { background-color: var(--primary); color: white; padding: 80px 0; } .contact h2 { text-align: center; margin-bottom: 40px; font-size: 2.5rem; } .contact-container { max-width: 700px; margin: 0 auto; } .contact-form { display: grid; grid-template-columns: 1fr; gap: 20px; } .form-group { display: flex; flex-direction: column; } .form-group label { margin-bottom: 8px; font-weight: 500; } .form-group input, .form-group textarea { padding: 12px; border: none; border-radius: 4px; font-family: inherit; font-size: 1rem; } .form-group textarea { height: 150px; resize: vertical; } .submit-btn { background-color: var(--secondary); color: white; border: none; padding: 14px; border-radius: 4px; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: background-color 0.3s; } .submit-btn:hover { background-color: #c0392b; } /* 页脚 */ footer { background-color: var(--dark); color: white; padding: 50px 0 20px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-col h3 { font-size: 1.3rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-col h3::after { content: ''; position: absolute; width: 50px; height: 3px; background-color: var(--secondary); bottom: 0; left: 0; } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 10px; } .footer-col a { color: #ccc; text-decoration: none; transition: color 0.3s; } .footer-col a:hover { color: white; } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid #444; font-size: 0.9rem; color: #999; } /* 响应式设计 */ @media screen and (max-width: 768px) { .hero h1 { font-size: 2.2rem; } .nav-links { display: none; } .intro-stats { grid-template-columns: 1fr; } }
Shijiazhuang Shuomi Clothing & Apparel is your trusted partner for premium DIY accessories, keychains, and jewelry beads. Offering high-quality products at competitive prices since 2023.
Explore Our ProductsEstablished in 2023, Shijiazhuang Shuomi Clothing & Apparel Co., Ltd. is a professional manufacturer and wholesaler specializing in DIY accessories, keychains, and jewelry beads. With our headquarters in Hebei, China, we serve global markets with a commitment to quality, innovation, and timely delivery.
Our mission is to empower DIY enthusiasts and businesses with premium components that inspire creativity. We pride ourselves on our ability to combine traditional craftsmanship with modern design techniques.
Industry Experience
Dedicated Employees
Production Facility
Product Varieties
Perfect gift for bubble tea shops
Customizable plush backpack accessory
Soft faux fur for car or backpack
Custom engraved dog paw design
Large bar bead keyring for DIY crafts
Mini toy style for keyrings
We maintain strict quality control across our 500 m² production facility, ensuring every product meets international standards.
Our professional design team delivers personalized solutions with quick turnaround times and efficient shipping.
Through strategic partnerships with multiple processing plants, we offer the most favorable prices without compromising quality.
We serve clients across North America, Europe, and Central America with tailored solutions for diverse markets.
We offer flexible payment options to accommodate global clients:
We proudly serve customers worldwide with focus on:
Our service principles: