'); background-size: cover; color: white; text-align: center; padding: 180px 0 100px; position: relative; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h1 { font-size: 3.5rem; margin-bottom: 20px; animation: fadeInDown 1s ease; } .hero p { font-size: 1.5rem; margin-bottom: 40px; animation: fadeInUp 1s ease 0.3s forwards; opacity: 0; } .hero-btns { animation: fadeInUp 1s ease 0.6s forwards; opacity: 0; } .hero-btns .btn { margin: 0 10px; } .hero-btns .btn-outline { background: transparent; border: 2px solid white; } /* 公司概览 */ .company-overview { background-color: var(--light); } .overview-content { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; } .overview-text { flex: 1; min-width: 300px; } .overview-stats { flex: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; min-width: 300px; } .stat-box { background: white; padding: 25px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); text-align: center; transition: transform 0.3s ease; } .stat-box:hover { transform: translateY(-10px); } .stat-box i { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; } .stat-box h3 { font-size: 2rem; color: var(--secondary); margin-bottom: 5px; } /* 产品展示 */ .products { background: white; } .category-filter { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 40px; } .category-btn { padding: 10px 25px; background: var(--light); border: none; border-radius: 30px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; } .category-btn.active, .category-btn:hover { background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; } .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); } .product-img { height: 250px; background: var(--light); display: flex; align-items: center; justify-content: center; position: relative; } .product-badge { position: absolute; top: 15px; right: 15px; background: var(--accent); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: 600; } .product-content { padding: 20px; } .product-title { font-size: 1.3rem; margin-bottom: 10px; color: var(--secondary); } .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(--primary); font-weight: bold; margin-right: 10px; } /* 公司优势 */ .advantages { background: linear-gradient(135deg, var(--light), #fff); } .advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; } .advantage-card { background: white; padding: 40px 30px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); text-align: center; transition: all 0.3s ease; position: relative; overflow: hidden; } .advantage-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); } .advantage-icon { width: 80px; height: 80px; background: rgba(255, 62, 130, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; } .advantage-icon i { font-size: 2.5rem; color: var(--primary); } /* 业务合作 */ .cooperation { background-color: var(--secondary); color: white; } .cooperation .section-title { color: white; } .cooperation-content { display: flex; flex-wrap: wrap; gap: 40px; } .payment-methods, .markets { flex: 1; min-width: 300px; } .payment-list, .market-list { list-style: none; } .payment-list li, .market-list li { padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center; } .payment-list li:before, .market-list li:before { content: '✓'; color: var(--primary); font-weight: bold; margin-right: 15px; font-size: 1.2rem; } /* 联系信息 */ .contact { background-color: white; } .contact-container { display: flex; flex-wrap: wrap; gap: 40px; } .contact-info { flex: 1; min-width: 300px; } .contact-card { background: var(--light); padding: 30px; border-radius: 15px; margin-bottom: 20px; } .contact-card h3 { color: var(--secondary); margin-bottom: 20px; padding-bottom: 15px; border-bottom: 2px solid var(--primary); } .contact-person { display: flex; align-items: center; padding: 15px 0; border-bottom: 1px solid rgba(0, 0, 0, 0.05); } .contact-person:last-child { border-bottom: none; } .person-avatar { width: 60px; height: 60px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; font-size: 1.5rem; margin-right: 15px; } .person-info h4 { margin-bottom: 5px; color: var(--dark); } .contact-form { flex: 1; min-width: 300px; background: var(--light); padding: 40px; border-radius: 15px; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--secondary); } .form-group input, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 8px; font-size: 1rem; transition: border-color 0.3s ease; } .form-group input:focus, .form-group textarea:focus { border-color: var(--primary); outline: none; } /* 品牌理念 */ .brand-philosophy { background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; text-align: center; } .philosophy-content { max-width: 800px; margin: 0 auto; } .philosophy-quotes { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; margin: 50px 0; } .quote { max-width: 400px; padding: 30px; background: rgba(255, 255, 255, 0.1); border-radius: 15px; position: relative; } .quote:before { content: '"'; position: absolute; top: -30px; left: 20px; font-size: 5rem; opacity: 0.3; font-family: Georgia, serif; } /* 页脚 */ footer { background: var(--dark); color: white; padding: 60px 0 30px; } .footer-content { display: flex; flex-wrap: wrap; gap: 40px; margin-bottom: 40px; } .footer-column { flex: 1; min-width: 250px; } .footer-column h3 { color: white; border-bottom: 2px solid var(--primary); padding-bottom: 15px; margin-bottom: 20px; font-size: 1.3rem; } .footer-links { list-style: none; } .footer-links li { margin-bottom: 12px; } .footer-links a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color 0.3s ease; } .footer-links a:hover { color: var(--primary); } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; } /* 响应式 */ @media (max-width: 992px) { .nav-menu { display: none; } .hero h1 { font-size: 2.8rem; } section { padding: 60px 0; } .hero { padding: 160px 0 80px; } } @media (max-width: 768px) { .hero h1 { font-size: 2.3rem; } .hero p { font-size: 1.2rem; } .products-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); } } @media (max-width: 576px) { .hero { padding: 140px 0 60px; } .hero h1 { font-size: 2rem; } .hero p { font-size: 1.1rem; } .stat-box { padding: 20px; } .section-title { font-size: 1.8rem; } } /* 动画 */ @keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } .animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; } .animate-on-scroll.animated { opacity: 1; transform: translateY(0); }
Guizhou Snowowl International Trade - Your Trusted Partner in Cosmetics Export
Your Reliable Partner in Beauty Product Sourcing
Established in 2024, Guizhou Snowowl International Trade Co., Ltd. is a professional trading company based in Guizhou, China, specializing in the export of high-quality cosmetics and personal care products to global markets.
With our professional team and extensive industry experience, we provide competitive pricing, stable product supply, and customized solutions tailored to meet the specific needs of international clients.
Our mission is to deliver exceptional beauty products that empower individuals to express their unique style and personality.
Customer Response Rate
Average Response Time
Professional Team Members
Operational Space
Discover Our Premium Beauty Collections
Luxurious lip gloss with pearl diamond effect that provides stunning shine and hydration.
Unique color fixing formula keeps your blush bright and fresh all day long.
High-coverage concealer that effectively hides imperfections without creasing.
Oil-free matte foundation specially formulated for oily and combination skin.
Lightweight blush cream that creates a natural, flushed look on cheeks.
Dual-action formula that extends makeup wear while nourishing the skin.
Why Choose Guizhou Snowowl International Trade
We offer highly competitive pricing without compromising on quality, ensuring you get the best value for your investment.
Our comprehensive range of cosmetics and personal care products ensures consistent supply for all your beauty needs.
We provide flexible light customization options for colors and packaging with low-risk commitments.
Benefit from our comprehensive beauty market consulting services to make informed business decisions.
Our dedicated team provides expert support and prompt responses within 24 hours to all inquiries.
Fast delivery ahead of industry standards ensures your orders reach you promptly and reliably.
Global Trade Made Simple
We're Here to Assist You
Our team is dedicated to providing:
We ensure a seamless experience throughout your entire purchasing journey.
At Guizhou Snowowl International Trade, we believe in the transformative power of beauty
We celebrate diversity and individuality, creating products that enhance unique beauty rather than conforming to narrow standards.
Express your personality and mood through our vibrant color cosmetics designed for self-expression and joy.