'); background-size: cover; color: white; text-align: center; padding: 100px 20px; position: relative; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h2 { font-size: 2.8rem; margin-bottom: 20px; line-height: 1.2; } .hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; } .cta-button { display: inline-block; background-color: var(--accent); color: white; padding: 12px 30px; border-radius: 5px; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: all 0.3s; border: 2px solid var(--accent); } .cta-button:hover { background-color: transparent; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } .stats { display: flex; justify-content: space-around; flex-wrap: wrap; margin-top: 50px; max-width: 1000px; margin-left: auto; margin-right: auto; } .stat-item { text-align: center; padding: 20px; flex: 1; min-width: 200px; } .stat-value { font-size: 2.5rem; font-weight: 700; margin-bottom: 10px; color: var(--secondary); } .stat-label { font-size: 1.1rem; opacity: 0.9; } /* Section Styles */ section { padding: 80px 0; } .section-header { text-align: center; margin-bottom: 50px; } .section-header h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 15px; position: relative; display: inline-block; } .section-header h2::after { content: ''; position: absolute; width: 60%; height: 3px; background: var(--secondary); bottom: -10px; left: 20%; } .section-header p { max-width: 700px; margin: 20px auto 0; font-size: 1.1rem; } /* About Section */ .about-content { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; } .about-text { flex: 1; min-width: 300px; } .about-features { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; } .feature-card { background-color: var(--light); border-radius: 8px; padding: 20px; flex: 1; min-width: 250px; box-shadow: 0 3px 10px rgba(0,0,0,0.08); transition: transform 0.3s; } .feature-card:hover { transform: translateY(-5px); } .feature-card h3 { color: var(--secondary); margin-bottom: 10px; } /* Certifications */ .cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .cert-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); } .cert-header { background-color: var(--primary); color: white; padding: 15px 20px; font-weight: 600; } .cert-body { padding: 20px; } .cert-list { list-style: none; } .cert-list li { padding: 10px 0; border-bottom: 1px solid #eee; display: flex; align-items: center; } .cert-list li:last-child { border-bottom: none; } .cert-list li::before { content: "✓"; color: var(--success); font-weight: bold; margin-right: 10px; } /* Products */ .category-tabs { display: flex; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; } .tab-btn { padding: 12px 25px; background: white; border: 1px solid #ddd; cursor: pointer; font-weight: 600; transition: all 0.3s; } .tab-btn.active, .tab-btn:hover { background: var(--secondary); color: white; border-color: var(--secondary); } .products-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; } .product-card:hover { transform: translateY(-10px); 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(--dark); font-weight: 600; } .product-info { padding: 20px; } .product-info h3 { color: var(--primary); margin-bottom: 10px; } .product-meta { display: flex; justify-content: space-between; margin-top: 15px; font-weight: 500; } .price { color: var(--accent); } /* Business Section */ .capabilities { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .capability-card { background: var(--light); padding: 30px; border-radius: 8px; text-align: center; box-shadow: 0 3px 10px rgba(0,0,0,0.08); } .capability-card h3 { color: var(--secondary); margin-bottom: 15px; } .markets-map { width: 100%; height: 300px; background: var(--light); margin: 40px 0; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 600; color: var(--dark); } /* Why Choose Us */ .advantages { background: var(--light); padding: 80px 0; } .advantage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .advantage-card { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; transition: transform 0.3s; } .advantage-card:hover { transform: scale(1.03); } .advantage-icon { font-size: 2.5rem; color: var(--secondary); margin-bottom: 20px; } /* Contact */ .contact-container { display: flex; gap: 40px; flex-wrap: wrap; } .contact-info { flex: 1; min-width: 300px; } .contact-methods { margin-top: 30px; } .contact-item { display: flex; align-items: center; margin-bottom: 20px; } .contact-icon { width: 50px; height: 50px; background: var(--secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; margin-right: 15px; } .languages { margin-top: 40px; } .languages h3 { margin-bottom: 15px; color: var(--primary); } .language-list { display: flex; flex-wrap: wrap; gap: 10px; } .language-tag { background: var(--light); padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; } .contact-form { flex: 1; min-width: 300px; background: white; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 500; } .form-control { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; } textarea.form-control { min-height: 150px; resize: vertical; } /* Footer */ footer { background: var(--primary); color: white; padding: 50px 0 20px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 40px; } .footer-column h3 { margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-column h3::after { content: ''; position: absolute; width: 50px; height: 2px; background: var(--secondary); bottom: 0; left: 0; } .footer-links { list-style: none; } .footer-links li { margin-bottom: 12px; } .footer-links a { color: #ddd; text-decoration: none; transition: color 0.3s; } .footer-links a:hover { color: var(--secondary); } .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; color: #aaa; } /* Responsive Design */ @media (max-width: 768px) { .header-container { flex-direction: column; text-align: center; } nav ul { margin-top: 15px; justify-content: center; } nav li { margin: 0 10px; } .hero h2 { font-size: 2.2rem; } .stat-item { min-width: 150px; } }
Wenzhou Xiyuan Stationery Co., Ltd. specializes in high-quality whiteboard pens, markers, watercolor pens, and highlighters, exporting to over 60 countries worldwide.
Request a QuoteProfessional manufacturer with 15+ years in the stationery industry
Founded in 2007, Wenzhou Xiyuan Stationery Co., Ltd. began specializing in watercolor pens, markers, and related products in 2010. With a 6450m² manufacturing facility and a dedicated team of 42 professionals, we've grown to become a trusted global supplier in the stationery industry.
Our commitment to "integrity-based, quality-based" principles has enabled us to maintain a perfect 5.0 store rating and achieve a 94.7% on-time delivery rate. We respond to all inquiries within 3 hours, ensuring exceptional customer service throughout the purchasing process.
Serving customers in 60+ countries across North America, Western Europe, South Europe and Central America.
15-25 days delivery after sample confirmation, supported by professional engineers optimizing our production processes.
Our commitment to safety and quality through international standards
High-quality writing instruments for education, office, and creative applications
Flat brush head, suitable for school/office/home. Magnetic design.
Erasable, magnetic design with high cost-performance ratio.
Fine nib, waterproof, fade-resistant for various surfaces.
Permanent ink for DIY art, T-shirt painting with custom logo option.
Comprehensive solutions from manufacturing to global distribution
15-25 day delivery after sample confirmation. Professional engineers optimize production processes to reduce costs while maintaining quality.
Full OEM/ODM support including custom logos, packaging designs, color variations, and specialized formulations to meet your specific requirements.
Exporting to 60+ countries with dedicated 3-5 person trade team. Export accounts for 31%-40% of our business with established distribution in key markets.
Our competitive advantages in the global stationery market
International standard testing, professional QC team, non-toxic and child-safe products meeting EN71 and ASTM standards.
Engineer-optimized production processes for cost efficiency without compromising quality.
≤3 hour response time, customer-first approach with "integrity-based" business philosophy.
94.7% on-time delivery rate eliminating customer "delivery anxiety".
12+ years export experience with deep understanding of international market requirements.
Get in touch for quotes, customization options, and partnership opportunities
Professional manufacturer of high-quality writing instruments since 2007, serving global customers with reliable products and services.
86-577-86678926
+86 18257731125
xiyuanstationery.en.alibaba.com