'); background-size: cover; background-position: center; color: var(--white); text-align: center; padding: 100px 20px; position: relative; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h2 { font-size: 3rem; margin-bottom: 20px; text-shadow: 1px 1px 3px rgba(0,0,0,0.7); } .hero p { font-size: 1.4rem; margin-bottom: 30px; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); } .stats { display: flex; justify-content: space-around; flex-wrap: wrap; margin-top: 50px; background: rgba(139, 69, 19, 0.8); padding: 20px; border-radius: 10px; } .stat-item { text-align: center; padding: 10px; min-width: 150px; } .stat-item .number { font-size: 2.5rem; font-weight: 700; display: block; margin-bottom: 5px; } .stat-item .label { font-size: 1.1rem; } /* Section Common Styles */ section { padding: 80px 0; } .section-header { text-align: center; margin-bottom: 60px; } .section-header h2 { font-size: 2.5rem; color: var(--primary); position: relative; display: inline-block; margin-bottom: 15px; } .section-header h2:after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background: var(--accent); } .section-header p { font-size: 1.2rem; color: var(--gray); max-width: 700px; margin: 20px auto 0; } /* About Section */ .about-content { display: flex; align-items: center; gap: 50px; } .about-text { flex: 1; } .about-text h3 { font-size: 1.8rem; color: var(--secondary); margin-bottom: 20px; } .about-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; } .feature-card { background: var(--white); border-radius: 8px; padding: 25px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); text-align: center; } .feature-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .feature-card h4 { color: var(--primary); margin: 15px 0 10px; } /* Products Section */ .product-tabs { display: flex; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; } .tab-btn { padding: 12px 25px; background: var(--white); border: none; border-bottom: 3px solid transparent; font-weight: 600; font-size: 1.1rem; cursor: pointer; transition: var(--transition); margin: 0 5px 10px; } .tab-btn.active, .tab-btn:hover { border-bottom: 3px solid var(--accent); color: var(--primary); } .tab-content { display: none; } .tab-content.active { display: block; } .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; } .product-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); } .product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .product-img { height: 200px; background: var(--light); display: flex; align-items: center; justify-content: center; color: var(--gray); } .product-details { padding: 20px; } .product-category { color: var(--accent); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; margin-bottom: 5px; } .product-title { font-size: 1.4rem; margin-bottom: 10px; color: var(--dark); } .product-price { font-size: 1.2rem; color: var(--primary); font-weight: 700; margin-bottom: 15px; } .product-features { list-style: none; margin: 15px 0; } .product-features li { padding: 5px 0; position: relative; padding-left: 20px; } .product-features li:before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: bold; } /* Services Section */ .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .service-card { background: var(--white); border-radius: 8px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); text-align: center; } .service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .service-icon { font-size: 3rem; color: var(--accent); margin-bottom: 20px; } .service-card h3 { color: var(--primary); margin-bottom: 15px; } /* Testimonials Section */ .testimonials { background: linear-gradient(rgba(139, 69, 19, 0.05), rgba(139, 69, 19, 0.05)), url('data:image/svg+xml;utf8,'); background-size: cover; } .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .testimonial-card { background: var(--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: var(--light); font-family: serif; line-height: 1; } .testimonial-text { margin-bottom: 20px; font-style: italic; position: relative; z-index: 1; } .testimonial-product { color: var(--accent); font-weight: 600; } /* Contact Section */ .contact-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 50px; } .contact-info { display: flex; flex-direction: column; gap: 20px; } .contact-item { display: flex; align-items: flex-start; gap: 15px; } .contact-icon { font-size: 1.5rem; color: var(--primary); min-width: 40px; } .contact-form form { display: flex; flex-direction: column; gap: 20px; } .form-group { display: flex; flex-direction: column; gap: 5px; } .form-group label { font-weight: 600; } .form-group input, .form-group textarea, .form-group select { padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; font-family: inherit; font-size: 1rem; transition: var(--transition); } .form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(205, 133, 63, 0.2); } .form-group textarea { min-height: 150px; resize: vertical; } .btn { padding: 14px 30px; background: var(--primary); color: var(--white); border: none; border-radius: 4px; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: var(--transition); text-align: center; } .btn:hover { background: var(--secondary); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); } /* Footer */ footer { background: var(--dark); color: var(--white); padding: 60px 0 30px; } .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-col h3 { font-size: 1.3rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-col h3:after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 2px; background: var(--accent); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 10px; } .footer-links a { color: #ccc; text-decoration: none; transition: var(--transition); } .footer-links a:hover { color: var(--accent); padding-left: 5px; } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: #aaa; font-size: 0.9rem; } /* Responsive */ @media (max-width: 992px) { .about-content { flex-direction: column; } .hero h2 { font-size: 2.5rem; } .hero p { font-size: 1.2rem; } } @media (max-width: 768px) { nav ul { display: none; } .section-header h2 { font-size: 2rem; } .hero h2 { font-size: 2rem; } .hero p { font-size: 1.1rem; } .stat-item .number { font-size: 2rem; } }
20+ Years of Manufacturing Excellence | Global Export to 40+ Countries
Send InquiryBeijing Wanxiangxin International Trade Co., Ltd. - Your Trusted Global Partner
Founded in 2004, Beijing Wanxiangxin International Trade Co., Ltd. has evolved into a comprehensive trading enterprise with 20 years of manufacturing expertise and 2 years of successful operation on Alibaba. We combine design, development, and sales capabilities with dedicated technical support.
Our 2500㎡ factory facility in Beijing houses a skilled workforce of 200+ professionals, including a specialized 16-member R&D team focused on innovation and quality enhancement.
Products exported to 40+ countries worldwide
TÜV Rheinland certified for international compliance
20+ years of international trade experience
Premium Quality Materials and Textile Products for Global Markets
Comprehensive OEM/ODM Solutions for Your Brand Requirements
Custom embroidery, printing, and product ID coding to establish your brand identity on every product
Custom-designed packaging including branded gift boxes, retail packaging, and neutral shipping options
Color variations, size adjustments, and specialized techniques like jacquard patterns tailored to your specifications
Flexible manufacturing for smaller orders with sample confirmation before mass production
Rigorous Standards from Raw Materials to Finished Products
Our 2500㎡ manufacturing facility maintains daily production capacity of 10,000+ wool products supported by an agile supply chain that ensures prompt order fulfillment.
Comprehensive raw material identification and traceability systems
Strictly controlled factory inspection protocols throughout manufacturing
Detailed manual inspection of all finished goods before shipping
Authentic Feedback from Our Global Clients
"The design, quality, and functionality are all excellent. The sample printing was exactly as we requested."
OEM Wool Triangle Scarf & Cashmere Blend Scarf
"After a long search for reliable suppliers, we finally found one! The products are professional quality with great attention to detail."
Multifunctional Wool Scarf
"Delivery was slightly later than expected but the product quality is outstanding. We will definitely order again."
Fashion Wool Triangle Scarf
"Excellent cooperation on our custom project. Kristine from customer service provided exceptional support throughout."
Luxury Wool Scarf Customization
Reach Out for Product Inquiries, Customization Requests, or Partnerships
Beijing, China
24/7 Online Service: Amy, Laura, Tina, Lily, Jessie
Visit our official storefront for more details
2500㎡ production facility | 200+ employees | 16+ R&D specialists